composer.lock 339 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333
  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": "f991cd93bd42cbcdc76bcbc46d7bf5f3",
  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.2.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  84. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.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": "2017-12-20T14:37:45+00:00"
  124. },
  125. {
  126. "name": "chi-teck/drupal-code-generator",
  127. "version": "1.32.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246",
  136. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246",
  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. "bin": [
  147. "bin/dcg"
  148. ],
  149. "type": "library",
  150. "extra": {
  151. "branch-alias": {
  152. "dev-master": "1.x-dev"
  153. }
  154. },
  155. "autoload": {
  156. "files": [
  157. "src/bootstrap.php"
  158. ],
  159. "psr-4": {
  160. "DrupalCodeGenerator\\": "src"
  161. }
  162. },
  163. "notification-url": "https://packagist.org/downloads/",
  164. "license": [
  165. "GPL-2.0-or-later"
  166. ],
  167. "description": "Drupal code generator",
  168. "time": "2020-04-16T06:45:06+00:00"
  169. },
  170. {
  171. "name": "composer/installers",
  172. "version": "v1.7.0",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/composer/installers.git",
  176. "reference": "141b272484481432cda342727a427dc1e206bfa0"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/composer/installers/zipball/141b272484481432cda342727a427dc1e206bfa0",
  181. "reference": "141b272484481432cda342727a427dc1e206bfa0",
  182. "shasum": ""
  183. },
  184. "require": {
  185. "composer-plugin-api": "^1.0"
  186. },
  187. "replace": {
  188. "roundcube/plugin-installer": "*",
  189. "shama/baton": "*"
  190. },
  191. "require-dev": {
  192. "composer/composer": "1.0.*@dev",
  193. "phpunit/phpunit": "^4.8.36"
  194. },
  195. "type": "composer-plugin",
  196. "extra": {
  197. "class": "Composer\\Installers\\Plugin",
  198. "branch-alias": {
  199. "dev-master": "1.0-dev"
  200. }
  201. },
  202. "autoload": {
  203. "psr-4": {
  204. "Composer\\Installers\\": "src/Composer/Installers"
  205. }
  206. },
  207. "notification-url": "https://packagist.org/downloads/",
  208. "license": [
  209. "MIT"
  210. ],
  211. "authors": [
  212. {
  213. "name": "Kyle Robinson Young",
  214. "email": "kyle@dontkry.com",
  215. "homepage": "https://github.com/shama"
  216. }
  217. ],
  218. "description": "A multi-framework Composer library installer",
  219. "homepage": "https://composer.github.io/installers/",
  220. "keywords": [
  221. "Craft",
  222. "Dolibarr",
  223. "Eliasis",
  224. "Hurad",
  225. "ImageCMS",
  226. "Kanboard",
  227. "Lan Management System",
  228. "MODX Evo",
  229. "Mautic",
  230. "Maya",
  231. "OXID",
  232. "Plentymarkets",
  233. "Porto",
  234. "RadPHP",
  235. "SMF",
  236. "Thelia",
  237. "Whmcs",
  238. "WolfCMS",
  239. "agl",
  240. "aimeos",
  241. "annotatecms",
  242. "attogram",
  243. "bitrix",
  244. "cakephp",
  245. "chef",
  246. "cockpit",
  247. "codeigniter",
  248. "concrete5",
  249. "croogo",
  250. "dokuwiki",
  251. "drupal",
  252. "eZ Platform",
  253. "elgg",
  254. "expressionengine",
  255. "fuelphp",
  256. "grav",
  257. "installer",
  258. "itop",
  259. "joomla",
  260. "known",
  261. "kohana",
  262. "laravel",
  263. "lavalite",
  264. "lithium",
  265. "magento",
  266. "majima",
  267. "mako",
  268. "mediawiki",
  269. "modulework",
  270. "modx",
  271. "moodle",
  272. "osclass",
  273. "phpbb",
  274. "piwik",
  275. "ppi",
  276. "puppet",
  277. "pxcms",
  278. "reindex",
  279. "roundcube",
  280. "shopware",
  281. "silverstripe",
  282. "sydes",
  283. "symfony",
  284. "typo3",
  285. "wordpress",
  286. "yawik",
  287. "zend",
  288. "zikula"
  289. ],
  290. "time": "2019-08-12T15:00:31+00:00"
  291. },
  292. {
  293. "name": "composer/semver",
  294. "version": "1.5.0",
  295. "source": {
  296. "type": "git",
  297. "url": "https://github.com/composer/semver.git",
  298. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  299. },
  300. "dist": {
  301. "type": "zip",
  302. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  303. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  304. "shasum": ""
  305. },
  306. "require": {
  307. "php": "^5.3.2 || ^7.0"
  308. },
  309. "require-dev": {
  310. "phpunit/phpunit": "^4.5 || ^5.0.5",
  311. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  312. },
  313. "type": "library",
  314. "extra": {
  315. "branch-alias": {
  316. "dev-master": "1.x-dev"
  317. }
  318. },
  319. "autoload": {
  320. "psr-4": {
  321. "Composer\\Semver\\": "src"
  322. }
  323. },
  324. "notification-url": "https://packagist.org/downloads/",
  325. "license": [
  326. "MIT"
  327. ],
  328. "authors": [
  329. {
  330. "name": "Nils Adermann",
  331. "email": "naderman@naderman.de",
  332. "homepage": "http://www.naderman.de"
  333. },
  334. {
  335. "name": "Jordi Boggiano",
  336. "email": "j.boggiano@seld.be",
  337. "homepage": "http://seld.be"
  338. },
  339. {
  340. "name": "Rob Bast",
  341. "email": "rob.bast@gmail.com",
  342. "homepage": "http://robbast.nl"
  343. }
  344. ],
  345. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  346. "keywords": [
  347. "semantic",
  348. "semver",
  349. "validation",
  350. "versioning"
  351. ],
  352. "time": "2019-03-19T17:25:45+00:00"
  353. },
  354. {
  355. "name": "consolidation/annotated-command",
  356. "version": "2.12.0",
  357. "source": {
  358. "type": "git",
  359. "url": "https://github.com/consolidation/annotated-command.git",
  360. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  361. },
  362. "dist": {
  363. "type": "zip",
  364. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  365. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  366. "shasum": ""
  367. },
  368. "require": {
  369. "consolidation/output-formatters": "^3.4",
  370. "php": ">=5.4.5",
  371. "psr/log": "^1",
  372. "symfony/console": "^2.8|^3|^4",
  373. "symfony/event-dispatcher": "^2.5|^3|^4",
  374. "symfony/finder": "^2.5|^3|^4"
  375. },
  376. "require-dev": {
  377. "g1a/composer-test-scenarios": "^3",
  378. "php-coveralls/php-coveralls": "^1",
  379. "phpunit/phpunit": "^6",
  380. "squizlabs/php_codesniffer": "^2.7"
  381. },
  382. "type": "library",
  383. "extra": {
  384. "scenarios": {
  385. "symfony4": {
  386. "require": {
  387. "symfony/console": "^4.0"
  388. },
  389. "config": {
  390. "platform": {
  391. "php": "7.1.3"
  392. }
  393. }
  394. },
  395. "symfony2": {
  396. "require": {
  397. "symfony/console": "^2.8"
  398. },
  399. "require-dev": {
  400. "phpunit/phpunit": "^4.8.36"
  401. },
  402. "remove": [
  403. "php-coveralls/php-coveralls"
  404. ],
  405. "config": {
  406. "platform": {
  407. "php": "5.4.8"
  408. }
  409. },
  410. "scenario-options": {
  411. "create-lockfile": "false"
  412. }
  413. },
  414. "phpunit4": {
  415. "require-dev": {
  416. "phpunit/phpunit": "^4.8.36"
  417. },
  418. "remove": [
  419. "php-coveralls/php-coveralls"
  420. ],
  421. "config": {
  422. "platform": {
  423. "php": "5.4.8"
  424. }
  425. }
  426. }
  427. },
  428. "branch-alias": {
  429. "dev-master": "2.x-dev"
  430. }
  431. },
  432. "autoload": {
  433. "psr-4": {
  434. "Consolidation\\AnnotatedCommand\\": "src"
  435. }
  436. },
  437. "notification-url": "https://packagist.org/downloads/",
  438. "license": [
  439. "MIT"
  440. ],
  441. "authors": [
  442. {
  443. "name": "Greg Anderson",
  444. "email": "greg.1.anderson@greenknowe.org"
  445. }
  446. ],
  447. "description": "Initialize Symfony Console commands from annotated command class methods.",
  448. "time": "2019-03-08T16:55:03+00:00"
  449. },
  450. {
  451. "name": "consolidation/config",
  452. "version": "1.2.1",
  453. "source": {
  454. "type": "git",
  455. "url": "https://github.com/consolidation/config.git",
  456. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  457. },
  458. "dist": {
  459. "type": "zip",
  460. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  461. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  462. "shasum": ""
  463. },
  464. "require": {
  465. "dflydev/dot-access-data": "^1.1.0",
  466. "grasmash/expander": "^1",
  467. "php": ">=5.4.0"
  468. },
  469. "require-dev": {
  470. "g1a/composer-test-scenarios": "^3",
  471. "php-coveralls/php-coveralls": "^1",
  472. "phpunit/phpunit": "^5",
  473. "squizlabs/php_codesniffer": "2.*",
  474. "symfony/console": "^2.5|^3|^4",
  475. "symfony/yaml": "^2.8.11|^3|^4"
  476. },
  477. "suggest": {
  478. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  479. },
  480. "type": "library",
  481. "extra": {
  482. "scenarios": {
  483. "symfony4": {
  484. "require-dev": {
  485. "symfony/console": "^4.0"
  486. },
  487. "config": {
  488. "platform": {
  489. "php": "7.1.3"
  490. }
  491. }
  492. },
  493. "symfony2": {
  494. "require-dev": {
  495. "symfony/console": "^2.8",
  496. "symfony/event-dispatcher": "^2.8",
  497. "phpunit/phpunit": "^4.8.36"
  498. },
  499. "remove": [
  500. "php-coveralls/php-coveralls"
  501. ],
  502. "config": {
  503. "platform": {
  504. "php": "5.4.8"
  505. }
  506. }
  507. }
  508. },
  509. "branch-alias": {
  510. "dev-master": "1.x-dev"
  511. }
  512. },
  513. "autoload": {
  514. "psr-4": {
  515. "Consolidation\\Config\\": "src"
  516. }
  517. },
  518. "notification-url": "https://packagist.org/downloads/",
  519. "license": [
  520. "MIT"
  521. ],
  522. "authors": [
  523. {
  524. "name": "Greg Anderson",
  525. "email": "greg.1.anderson@greenknowe.org"
  526. }
  527. ],
  528. "description": "Provide configuration services for a commandline tool.",
  529. "time": "2019-03-03T19:37:04+00:00"
  530. },
  531. {
  532. "name": "consolidation/filter-via-dot-access-data",
  533. "version": "1.0.0",
  534. "source": {
  535. "type": "git",
  536. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  537. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  538. },
  539. "dist": {
  540. "type": "zip",
  541. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  542. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  543. "shasum": ""
  544. },
  545. "require": {
  546. "dflydev/dot-access-data": "^1.1.0",
  547. "php": ">=5.5.0"
  548. },
  549. "require-dev": {
  550. "consolidation/robo": "^1.2.3",
  551. "g1a/composer-test-scenarios": "^3",
  552. "knplabs/github-api": "^2.7",
  553. "php-coveralls/php-coveralls": "^1",
  554. "php-http/guzzle6-adapter": "^1.1",
  555. "phpunit/phpunit": "^5",
  556. "squizlabs/php_codesniffer": "^2.8",
  557. "symfony/console": "^2.8|^3|^4"
  558. },
  559. "type": "library",
  560. "extra": {
  561. "scenarios": {
  562. "phpunit5": {
  563. "require-dev": {
  564. "phpunit/phpunit": "^5.7.27"
  565. },
  566. "remove": [
  567. "php-coveralls/php-coveralls"
  568. ],
  569. "config": {
  570. "platform": {
  571. "php": "5.6.33"
  572. }
  573. }
  574. }
  575. },
  576. "branch-alias": {
  577. "dev-master": "1.x-dev"
  578. }
  579. },
  580. "autoload": {
  581. "psr-4": {
  582. "Consolidation\\Filter\\": "src"
  583. }
  584. },
  585. "notification-url": "https://packagist.org/downloads/",
  586. "license": [
  587. "MIT"
  588. ],
  589. "authors": [
  590. {
  591. "name": "Greg Anderson",
  592. "email": "greg.1.anderson@greenknowe.org"
  593. }
  594. ],
  595. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  596. "time": "2019-01-18T06:05:07+00:00"
  597. },
  598. {
  599. "name": "consolidation/log",
  600. "version": "1.1.1",
  601. "source": {
  602. "type": "git",
  603. "url": "https://github.com/consolidation/log.git",
  604. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  605. },
  606. "dist": {
  607. "type": "zip",
  608. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  609. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  610. "shasum": ""
  611. },
  612. "require": {
  613. "php": ">=5.4.5",
  614. "psr/log": "^1.0",
  615. "symfony/console": "^2.8|^3|^4"
  616. },
  617. "require-dev": {
  618. "g1a/composer-test-scenarios": "^3",
  619. "php-coveralls/php-coveralls": "^1",
  620. "phpunit/phpunit": "^6",
  621. "squizlabs/php_codesniffer": "^2"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "scenarios": {
  626. "symfony4": {
  627. "require": {
  628. "symfony/console": "^4.0"
  629. },
  630. "config": {
  631. "platform": {
  632. "php": "7.1.3"
  633. }
  634. }
  635. },
  636. "symfony2": {
  637. "require": {
  638. "symfony/console": "^2.8"
  639. },
  640. "require-dev": {
  641. "phpunit/phpunit": "^4.8.36"
  642. },
  643. "remove": [
  644. "php-coveralls/php-coveralls"
  645. ],
  646. "config": {
  647. "platform": {
  648. "php": "5.4.8"
  649. }
  650. }
  651. },
  652. "phpunit4": {
  653. "require-dev": {
  654. "phpunit/phpunit": "^4.8.36"
  655. },
  656. "remove": [
  657. "php-coveralls/php-coveralls"
  658. ],
  659. "config": {
  660. "platform": {
  661. "php": "5.4.8"
  662. }
  663. }
  664. }
  665. },
  666. "branch-alias": {
  667. "dev-master": "1.x-dev"
  668. }
  669. },
  670. "autoload": {
  671. "psr-4": {
  672. "Consolidation\\Log\\": "src"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "MIT"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Greg Anderson",
  682. "email": "greg.1.anderson@greenknowe.org"
  683. }
  684. ],
  685. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  686. "time": "2019-01-01T17:30:51+00:00"
  687. },
  688. {
  689. "name": "consolidation/output-formatters",
  690. "version": "3.5.0",
  691. "source": {
  692. "type": "git",
  693. "url": "https://github.com/consolidation/output-formatters.git",
  694. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  695. },
  696. "dist": {
  697. "type": "zip",
  698. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  699. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  700. "shasum": ""
  701. },
  702. "require": {
  703. "dflydev/dot-access-data": "^1.1.0",
  704. "php": ">=5.4.0",
  705. "symfony/console": "^2.8|^3|^4",
  706. "symfony/finder": "^2.5|^3|^4"
  707. },
  708. "require-dev": {
  709. "g1a/composer-test-scenarios": "^3",
  710. "php-coveralls/php-coveralls": "^1",
  711. "phpunit/phpunit": "^5.7.27",
  712. "squizlabs/php_codesniffer": "^2.7",
  713. "symfony/var-dumper": "^2.8|^3|^4",
  714. "victorjonsson/markdowndocs": "^1.3"
  715. },
  716. "suggest": {
  717. "symfony/var-dumper": "For using the var_dump formatter"
  718. },
  719. "type": "library",
  720. "extra": {
  721. "scenarios": {
  722. "symfony4": {
  723. "require": {
  724. "symfony/console": "^4.0"
  725. },
  726. "require-dev": {
  727. "phpunit/phpunit": "^6"
  728. },
  729. "config": {
  730. "platform": {
  731. "php": "7.1.3"
  732. }
  733. }
  734. },
  735. "symfony3": {
  736. "require": {
  737. "symfony/console": "^3.4",
  738. "symfony/finder": "^3.4",
  739. "symfony/var-dumper": "^3.4"
  740. },
  741. "config": {
  742. "platform": {
  743. "php": "5.6.32"
  744. }
  745. }
  746. },
  747. "symfony2": {
  748. "require": {
  749. "symfony/console": "^2.8"
  750. },
  751. "require-dev": {
  752. "phpunit/phpunit": "^4.8.36"
  753. },
  754. "remove": [
  755. "php-coveralls/php-coveralls"
  756. ],
  757. "config": {
  758. "platform": {
  759. "php": "5.4.8"
  760. }
  761. },
  762. "scenario-options": {
  763. "create-lockfile": "false"
  764. }
  765. }
  766. },
  767. "branch-alias": {
  768. "dev-master": "3.x-dev"
  769. }
  770. },
  771. "autoload": {
  772. "psr-4": {
  773. "Consolidation\\OutputFormatters\\": "src"
  774. }
  775. },
  776. "notification-url": "https://packagist.org/downloads/",
  777. "license": [
  778. "MIT"
  779. ],
  780. "authors": [
  781. {
  782. "name": "Greg Anderson",
  783. "email": "greg.1.anderson@greenknowe.org"
  784. }
  785. ],
  786. "description": "Format text by applying transformations provided by plug-in formatters.",
  787. "time": "2019-05-30T23:16:01+00:00"
  788. },
  789. {
  790. "name": "consolidation/robo",
  791. "version": "1.4.12",
  792. "source": {
  793. "type": "git",
  794. "url": "https://github.com/consolidation/Robo.git",
  795. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51"
  796. },
  797. "dist": {
  798. "type": "zip",
  799. "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51",
  800. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51",
  801. "shasum": ""
  802. },
  803. "require": {
  804. "consolidation/annotated-command": "^2.11.0|^4.1",
  805. "consolidation/config": "^1.2.1",
  806. "consolidation/log": "^1.1.1|^2",
  807. "consolidation/output-formatters": "^3.1.13|^4.1",
  808. "consolidation/self-update": "^1.1.5",
  809. "grasmash/yaml-expander": "^1.4",
  810. "league/container": "^2.4.1",
  811. "php": ">=5.5.0",
  812. "symfony/console": "^2.8|^3|^4",
  813. "symfony/event-dispatcher": "^2.5|^3|^4",
  814. "symfony/filesystem": "^2.5|^3|^4",
  815. "symfony/finder": "^2.5|^3|^4",
  816. "symfony/process": "^2.5|^3|^4"
  817. },
  818. "replace": {
  819. "codegyre/robo": "< 1.0"
  820. },
  821. "require-dev": {
  822. "g1a/composer-test-scenarios": "^3",
  823. "natxet/cssmin": "3.0.4",
  824. "patchwork/jsqueeze": "^2",
  825. "pear/archive_tar": "^1.4.4",
  826. "php-coveralls/php-coveralls": "^1",
  827. "phpunit/phpunit": "^5.7.27",
  828. "squizlabs/php_codesniffer": "^3"
  829. },
  830. "suggest": {
  831. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  832. "natxet/CssMin": "For minifying CSS files in taskMinify",
  833. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  834. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  835. },
  836. "bin": [
  837. "robo"
  838. ],
  839. "type": "library",
  840. "extra": {
  841. "scenarios": {
  842. "symfony4": {
  843. "require": {
  844. "symfony/console": "^4"
  845. },
  846. "config": {
  847. "platform": {
  848. "php": "7.1.3"
  849. }
  850. }
  851. },
  852. "symfony2": {
  853. "require": {
  854. "symfony/console": "^2.8"
  855. },
  856. "require-dev": {
  857. "phpunit/phpunit": "^4.8.36"
  858. },
  859. "remove": [
  860. "php-coveralls/php-coveralls"
  861. ],
  862. "config": {
  863. "platform": {
  864. "php": "5.5.9"
  865. }
  866. },
  867. "scenario-options": {
  868. "create-lockfile": "false"
  869. }
  870. }
  871. },
  872. "branch-alias": {
  873. "dev-master": "1.x-dev"
  874. }
  875. },
  876. "autoload": {
  877. "psr-4": {
  878. "Robo\\": "src"
  879. }
  880. },
  881. "notification-url": "https://packagist.org/downloads/",
  882. "license": [
  883. "MIT"
  884. ],
  885. "authors": [
  886. {
  887. "name": "Davert",
  888. "email": "davert.php@resend.cc"
  889. }
  890. ],
  891. "description": "Modern task runner",
  892. "time": "2020-02-18T17:31:26+00:00"
  893. },
  894. {
  895. "name": "consolidation/self-update",
  896. "version": "1.2.0",
  897. "source": {
  898. "type": "git",
  899. "url": "https://github.com/consolidation/self-update.git",
  900. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  901. },
  902. "dist": {
  903. "type": "zip",
  904. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  905. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  906. "shasum": ""
  907. },
  908. "require": {
  909. "php": ">=5.5.0",
  910. "symfony/console": "^2.8|^3|^4|^5",
  911. "symfony/filesystem": "^2.5|^3|^4|^5"
  912. },
  913. "bin": [
  914. "scripts/release"
  915. ],
  916. "type": "library",
  917. "extra": {
  918. "branch-alias": {
  919. "dev-master": "1.x-dev"
  920. }
  921. },
  922. "autoload": {
  923. "psr-4": {
  924. "SelfUpdate\\": "src"
  925. }
  926. },
  927. "notification-url": "https://packagist.org/downloads/",
  928. "license": [
  929. "MIT"
  930. ],
  931. "authors": [
  932. {
  933. "name": "Alexander Menk",
  934. "email": "menk@mestrona.net"
  935. },
  936. {
  937. "name": "Greg Anderson",
  938. "email": "greg.1.anderson@greenknowe.org"
  939. }
  940. ],
  941. "description": "Provides a self:update command for Symfony Console applications.",
  942. "time": "2020-04-13T02:49:20+00:00"
  943. },
  944. {
  945. "name": "consolidation/site-alias",
  946. "version": "3.0.0",
  947. "source": {
  948. "type": "git",
  949. "url": "https://github.com/consolidation/site-alias.git",
  950. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  951. },
  952. "dist": {
  953. "type": "zip",
  954. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  955. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  956. "shasum": ""
  957. },
  958. "require": {
  959. "consolidation/config": "^1.2.1",
  960. "php": ">=5.5.0"
  961. },
  962. "require-dev": {
  963. "consolidation/robo": "^1.2.3",
  964. "g1a/composer-test-scenarios": "^3",
  965. "knplabs/github-api": "^2.7",
  966. "php-coveralls/php-coveralls": "^1",
  967. "php-http/guzzle6-adapter": "^1.1",
  968. "phpunit/phpunit": "^6",
  969. "squizlabs/php_codesniffer": "^2.8",
  970. "symfony/console": "^2.8|^3|^4",
  971. "symfony/yaml": "~2.3|^3"
  972. },
  973. "type": "library",
  974. "extra": {
  975. "scenarios": {
  976. "phpunit5": {
  977. "require-dev": {
  978. "phpunit/phpunit": "^5.7.27"
  979. },
  980. "remove": [
  981. "php-coveralls/php-coveralls"
  982. ],
  983. "config": {
  984. "platform": {
  985. "php": "5.6.33"
  986. }
  987. }
  988. }
  989. },
  990. "branch-alias": {
  991. "dev-master": "3.x-dev"
  992. }
  993. },
  994. "autoload": {
  995. "psr-4": {
  996. "Consolidation\\SiteAlias\\": "src"
  997. }
  998. },
  999. "notification-url": "https://packagist.org/downloads/",
  1000. "license": [
  1001. "MIT"
  1002. ],
  1003. "authors": [
  1004. {
  1005. "name": "Moshe Weitzman",
  1006. "email": "weitzman@tejasa.com"
  1007. },
  1008. {
  1009. "name": "Greg Anderson",
  1010. "email": "greg.1.anderson@greenknowe.org"
  1011. }
  1012. ],
  1013. "description": "Manage alias records for local and remote sites.",
  1014. "time": "2019-03-12T17:31:48+00:00"
  1015. },
  1016. {
  1017. "name": "consolidation/site-process",
  1018. "version": "2.1.0",
  1019. "source": {
  1020. "type": "git",
  1021. "url": "https://github.com/consolidation/site-process.git",
  1022. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  1023. },
  1024. "dist": {
  1025. "type": "zip",
  1026. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  1027. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  1028. "shasum": ""
  1029. },
  1030. "require": {
  1031. "consolidation/config": "^1.2.1",
  1032. "consolidation/site-alias": "^3",
  1033. "php": ">=5.6.0",
  1034. "symfony/process": "^3.4"
  1035. },
  1036. "require-dev": {
  1037. "consolidation/robo": "^1.3",
  1038. "g1a/composer-test-scenarios": "^3",
  1039. "knplabs/github-api": "^2.7",
  1040. "php-coveralls/php-coveralls": "^1",
  1041. "php-http/guzzle6-adapter": "^1.1",
  1042. "phpunit/phpunit": "^6",
  1043. "squizlabs/php_codesniffer": "^2.8"
  1044. },
  1045. "type": "library",
  1046. "extra": {
  1047. "scenarios": {
  1048. "phpunit5": {
  1049. "require-dev": {
  1050. "phpunit/phpunit": "^5.7.27"
  1051. },
  1052. "remove": [
  1053. "php-coveralls/php-coveralls"
  1054. ],
  1055. "config": {
  1056. "platform": {
  1057. "php": "5.6.33"
  1058. }
  1059. }
  1060. }
  1061. },
  1062. "branch-alias": {
  1063. "dev-master": "0.x-dev"
  1064. }
  1065. },
  1066. "autoload": {
  1067. "psr-4": {
  1068. "Consolidation\\SiteProcess\\": "src"
  1069. }
  1070. },
  1071. "notification-url": "https://packagist.org/downloads/",
  1072. "license": [
  1073. "MIT"
  1074. ],
  1075. "authors": [
  1076. {
  1077. "name": "Greg Anderson",
  1078. "email": "greg.1.anderson@greenknowe.org"
  1079. },
  1080. {
  1081. "name": "Moshe Weitzman",
  1082. "email": "weitzman@tejasa.com"
  1083. }
  1084. ],
  1085. "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.",
  1086. "time": "2019-09-10T17:56:24+00:00"
  1087. },
  1088. {
  1089. "name": "container-interop/container-interop",
  1090. "version": "1.2.0",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/container-interop/container-interop.git",
  1094. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1099. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1100. "shasum": ""
  1101. },
  1102. "require": {
  1103. "psr/container": "^1.0"
  1104. },
  1105. "type": "library",
  1106. "autoload": {
  1107. "psr-4": {
  1108. "Interop\\Container\\": "src/Interop/Container/"
  1109. }
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "MIT"
  1114. ],
  1115. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1116. "homepage": "https://github.com/container-interop/container-interop",
  1117. "abandoned": "psr/container",
  1118. "time": "2017-02-14T19:40:03+00:00"
  1119. },
  1120. {
  1121. "name": "cweagans/composer-patches",
  1122. "version": "1.6.7",
  1123. "source": {
  1124. "type": "git",
  1125. "url": "https://github.com/cweagans/composer-patches.git",
  1126. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590"
  1127. },
  1128. "dist": {
  1129. "type": "zip",
  1130. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1131. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1132. "shasum": ""
  1133. },
  1134. "require": {
  1135. "composer-plugin-api": "^1.0",
  1136. "php": ">=5.3.0"
  1137. },
  1138. "require-dev": {
  1139. "composer/composer": "~1.0",
  1140. "phpunit/phpunit": "~4.6"
  1141. },
  1142. "type": "composer-plugin",
  1143. "extra": {
  1144. "class": "cweagans\\Composer\\Patches"
  1145. },
  1146. "autoload": {
  1147. "psr-4": {
  1148. "cweagans\\Composer\\": "src"
  1149. }
  1150. },
  1151. "notification-url": "https://packagist.org/downloads/",
  1152. "license": [
  1153. "BSD-3-Clause"
  1154. ],
  1155. "authors": [
  1156. {
  1157. "name": "Cameron Eagans",
  1158. "email": "me@cweagans.net"
  1159. }
  1160. ],
  1161. "description": "Provides a way to patch Composer packages.",
  1162. "time": "2019-08-29T20:11:49+00:00"
  1163. },
  1164. {
  1165. "name": "dflydev/dot-access-configuration",
  1166. "version": "v1.0.3",
  1167. "source": {
  1168. "type": "git",
  1169. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1170. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1171. },
  1172. "dist": {
  1173. "type": "zip",
  1174. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1175. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1176. "shasum": ""
  1177. },
  1178. "require": {
  1179. "dflydev/dot-access-data": "1.*",
  1180. "dflydev/placeholder-resolver": "1.*",
  1181. "php": ">=5.3.2"
  1182. },
  1183. "require-dev": {
  1184. "symfony/yaml": "~2.1"
  1185. },
  1186. "suggest": {
  1187. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1188. },
  1189. "type": "library",
  1190. "extra": {
  1191. "branch-alias": {
  1192. "dev-master": "1.0-dev"
  1193. }
  1194. },
  1195. "autoload": {
  1196. "psr-0": {
  1197. "Dflydev\\DotAccessConfiguration": "src"
  1198. }
  1199. },
  1200. "notification-url": "https://packagist.org/downloads/",
  1201. "license": [
  1202. "MIT"
  1203. ],
  1204. "authors": [
  1205. {
  1206. "name": "Dragonfly Development Inc.",
  1207. "email": "info@dflydev.com",
  1208. "homepage": "http://dflydev.com"
  1209. },
  1210. {
  1211. "name": "Beau Simensen",
  1212. "email": "beau@dflydev.com",
  1213. "homepage": "http://beausimensen.com"
  1214. }
  1215. ],
  1216. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1217. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1218. "keywords": [
  1219. "config",
  1220. "configuration"
  1221. ],
  1222. "time": "2018-09-08T23:00:17+00:00"
  1223. },
  1224. {
  1225. "name": "dflydev/dot-access-data",
  1226. "version": "v1.1.0",
  1227. "source": {
  1228. "type": "git",
  1229. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1230. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1231. },
  1232. "dist": {
  1233. "type": "zip",
  1234. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1235. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1236. "shasum": ""
  1237. },
  1238. "require": {
  1239. "php": ">=5.3.2"
  1240. },
  1241. "type": "library",
  1242. "extra": {
  1243. "branch-alias": {
  1244. "dev-master": "1.0-dev"
  1245. }
  1246. },
  1247. "autoload": {
  1248. "psr-0": {
  1249. "Dflydev\\DotAccessData": "src"
  1250. }
  1251. },
  1252. "notification-url": "https://packagist.org/downloads/",
  1253. "license": [
  1254. "MIT"
  1255. ],
  1256. "authors": [
  1257. {
  1258. "name": "Dragonfly Development Inc.",
  1259. "email": "info@dflydev.com",
  1260. "homepage": "http://dflydev.com"
  1261. },
  1262. {
  1263. "name": "Beau Simensen",
  1264. "email": "beau@dflydev.com",
  1265. "homepage": "http://beausimensen.com"
  1266. },
  1267. {
  1268. "name": "Carlos Frutos",
  1269. "email": "carlos@kiwing.it",
  1270. "homepage": "https://github.com/cfrutos"
  1271. }
  1272. ],
  1273. "description": "Given a deep data structure, access data by dot notation.",
  1274. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1275. "keywords": [
  1276. "access",
  1277. "data",
  1278. "dot",
  1279. "notation"
  1280. ],
  1281. "time": "2017-01-20T21:14:22+00:00"
  1282. },
  1283. {
  1284. "name": "dflydev/placeholder-resolver",
  1285. "version": "v1.0.2",
  1286. "source": {
  1287. "type": "git",
  1288. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1289. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1290. },
  1291. "dist": {
  1292. "type": "zip",
  1293. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1294. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1295. "shasum": ""
  1296. },
  1297. "require": {
  1298. "php": ">=5.3.2"
  1299. },
  1300. "type": "library",
  1301. "extra": {
  1302. "branch-alias": {
  1303. "dev-master": "1.0-dev"
  1304. }
  1305. },
  1306. "autoload": {
  1307. "psr-0": {
  1308. "Dflydev\\PlaceholderResolver": "src"
  1309. }
  1310. },
  1311. "notification-url": "https://packagist.org/downloads/",
  1312. "license": [
  1313. "MIT"
  1314. ],
  1315. "authors": [
  1316. {
  1317. "name": "Dragonfly Development Inc.",
  1318. "email": "info@dflydev.com",
  1319. "homepage": "http://dflydev.com"
  1320. },
  1321. {
  1322. "name": "Beau Simensen",
  1323. "email": "beau@dflydev.com",
  1324. "homepage": "http://beausimensen.com"
  1325. }
  1326. ],
  1327. "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.",
  1328. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1329. "keywords": [
  1330. "placeholder",
  1331. "resolver"
  1332. ],
  1333. "time": "2012-10-28T21:08:28+00:00"
  1334. },
  1335. {
  1336. "name": "dnoegel/php-xdg-base-dir",
  1337. "version": "v0.1.1",
  1338. "source": {
  1339. "type": "git",
  1340. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1341. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1342. },
  1343. "dist": {
  1344. "type": "zip",
  1345. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1346. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1347. "shasum": ""
  1348. },
  1349. "require": {
  1350. "php": ">=5.3.2"
  1351. },
  1352. "require-dev": {
  1353. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1354. },
  1355. "type": "library",
  1356. "autoload": {
  1357. "psr-4": {
  1358. "XdgBaseDir\\": "src/"
  1359. }
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "MIT"
  1364. ],
  1365. "description": "implementation of xdg base directory specification for php",
  1366. "time": "2019-12-04T15:06:13+00:00"
  1367. },
  1368. {
  1369. "name": "doctrine/annotations",
  1370. "version": "v1.4.0",
  1371. "source": {
  1372. "type": "git",
  1373. "url": "https://github.com/doctrine/annotations.git",
  1374. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1375. },
  1376. "dist": {
  1377. "type": "zip",
  1378. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1379. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1380. "shasum": ""
  1381. },
  1382. "require": {
  1383. "doctrine/lexer": "1.*",
  1384. "php": "^5.6 || ^7.0"
  1385. },
  1386. "require-dev": {
  1387. "doctrine/cache": "1.*",
  1388. "phpunit/phpunit": "^5.7"
  1389. },
  1390. "type": "library",
  1391. "extra": {
  1392. "branch-alias": {
  1393. "dev-master": "1.4.x-dev"
  1394. }
  1395. },
  1396. "autoload": {
  1397. "psr-4": {
  1398. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1399. }
  1400. },
  1401. "notification-url": "https://packagist.org/downloads/",
  1402. "license": [
  1403. "MIT"
  1404. ],
  1405. "authors": [
  1406. {
  1407. "name": "Roman Borschel",
  1408. "email": "roman@code-factory.org"
  1409. },
  1410. {
  1411. "name": "Benjamin Eberlei",
  1412. "email": "kontakt@beberlei.de"
  1413. },
  1414. {
  1415. "name": "Guilherme Blanco",
  1416. "email": "guilhermeblanco@gmail.com"
  1417. },
  1418. {
  1419. "name": "Jonathan Wage",
  1420. "email": "jonwage@gmail.com"
  1421. },
  1422. {
  1423. "name": "Johannes Schmitt",
  1424. "email": "schmittjoh@gmail.com"
  1425. }
  1426. ],
  1427. "description": "Docblock Annotations Parser",
  1428. "homepage": "http://www.doctrine-project.org",
  1429. "keywords": [
  1430. "annotations",
  1431. "docblock",
  1432. "parser"
  1433. ],
  1434. "time": "2017-02-24T16:22:25+00:00"
  1435. },
  1436. {
  1437. "name": "doctrine/cache",
  1438. "version": "v1.6.2",
  1439. "source": {
  1440. "type": "git",
  1441. "url": "https://github.com/doctrine/cache.git",
  1442. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1443. },
  1444. "dist": {
  1445. "type": "zip",
  1446. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1447. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1448. "shasum": ""
  1449. },
  1450. "require": {
  1451. "php": "~5.5|~7.0"
  1452. },
  1453. "conflict": {
  1454. "doctrine/common": ">2.2,<2.4"
  1455. },
  1456. "require-dev": {
  1457. "phpunit/phpunit": "~4.8|~5.0",
  1458. "predis/predis": "~1.0",
  1459. "satooshi/php-coveralls": "~0.6"
  1460. },
  1461. "type": "library",
  1462. "extra": {
  1463. "branch-alias": {
  1464. "dev-master": "1.6.x-dev"
  1465. }
  1466. },
  1467. "autoload": {
  1468. "psr-4": {
  1469. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1470. }
  1471. },
  1472. "notification-url": "https://packagist.org/downloads/",
  1473. "license": [
  1474. "MIT"
  1475. ],
  1476. "authors": [
  1477. {
  1478. "name": "Roman Borschel",
  1479. "email": "roman@code-factory.org"
  1480. },
  1481. {
  1482. "name": "Benjamin Eberlei",
  1483. "email": "kontakt@beberlei.de"
  1484. },
  1485. {
  1486. "name": "Guilherme Blanco",
  1487. "email": "guilhermeblanco@gmail.com"
  1488. },
  1489. {
  1490. "name": "Jonathan Wage",
  1491. "email": "jonwage@gmail.com"
  1492. },
  1493. {
  1494. "name": "Johannes Schmitt",
  1495. "email": "schmittjoh@gmail.com"
  1496. }
  1497. ],
  1498. "description": "Caching library offering an object-oriented API for many cache backends",
  1499. "homepage": "http://www.doctrine-project.org",
  1500. "keywords": [
  1501. "cache",
  1502. "caching"
  1503. ],
  1504. "time": "2017-07-22T12:49:21+00:00"
  1505. },
  1506. {
  1507. "name": "doctrine/collections",
  1508. "version": "v1.4.0",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/doctrine/collections.git",
  1512. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1517. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1518. "shasum": ""
  1519. },
  1520. "require": {
  1521. "php": "^5.6 || ^7.0"
  1522. },
  1523. "require-dev": {
  1524. "doctrine/coding-standard": "~0.1@dev",
  1525. "phpunit/phpunit": "^5.7"
  1526. },
  1527. "type": "library",
  1528. "extra": {
  1529. "branch-alias": {
  1530. "dev-master": "1.3.x-dev"
  1531. }
  1532. },
  1533. "autoload": {
  1534. "psr-0": {
  1535. "Doctrine\\Common\\Collections\\": "lib/"
  1536. }
  1537. },
  1538. "notification-url": "https://packagist.org/downloads/",
  1539. "license": [
  1540. "MIT"
  1541. ],
  1542. "authors": [
  1543. {
  1544. "name": "Roman Borschel",
  1545. "email": "roman@code-factory.org"
  1546. },
  1547. {
  1548. "name": "Benjamin Eberlei",
  1549. "email": "kontakt@beberlei.de"
  1550. },
  1551. {
  1552. "name": "Guilherme Blanco",
  1553. "email": "guilhermeblanco@gmail.com"
  1554. },
  1555. {
  1556. "name": "Jonathan Wage",
  1557. "email": "jonwage@gmail.com"
  1558. },
  1559. {
  1560. "name": "Johannes Schmitt",
  1561. "email": "schmittjoh@gmail.com"
  1562. }
  1563. ],
  1564. "description": "Collections Abstraction library",
  1565. "homepage": "http://www.doctrine-project.org",
  1566. "keywords": [
  1567. "array",
  1568. "collections",
  1569. "iterator"
  1570. ],
  1571. "time": "2017-01-03T10:49:41+00:00"
  1572. },
  1573. {
  1574. "name": "doctrine/common",
  1575. "version": "v2.7.3",
  1576. "source": {
  1577. "type": "git",
  1578. "url": "https://github.com/doctrine/common.git",
  1579. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1580. },
  1581. "dist": {
  1582. "type": "zip",
  1583. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1584. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1585. "shasum": ""
  1586. },
  1587. "require": {
  1588. "doctrine/annotations": "1.*",
  1589. "doctrine/cache": "1.*",
  1590. "doctrine/collections": "1.*",
  1591. "doctrine/inflector": "1.*",
  1592. "doctrine/lexer": "1.*",
  1593. "php": "~5.6|~7.0"
  1594. },
  1595. "require-dev": {
  1596. "phpunit/phpunit": "^5.4.6"
  1597. },
  1598. "type": "library",
  1599. "extra": {
  1600. "branch-alias": {
  1601. "dev-master": "2.7.x-dev"
  1602. }
  1603. },
  1604. "autoload": {
  1605. "psr-4": {
  1606. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1607. }
  1608. },
  1609. "notification-url": "https://packagist.org/downloads/",
  1610. "license": [
  1611. "MIT"
  1612. ],
  1613. "authors": [
  1614. {
  1615. "name": "Roman Borschel",
  1616. "email": "roman@code-factory.org"
  1617. },
  1618. {
  1619. "name": "Benjamin Eberlei",
  1620. "email": "kontakt@beberlei.de"
  1621. },
  1622. {
  1623. "name": "Guilherme Blanco",
  1624. "email": "guilhermeblanco@gmail.com"
  1625. },
  1626. {
  1627. "name": "Jonathan Wage",
  1628. "email": "jonwage@gmail.com"
  1629. },
  1630. {
  1631. "name": "Johannes Schmitt",
  1632. "email": "schmittjoh@gmail.com"
  1633. }
  1634. ],
  1635. "description": "Common Library for Doctrine projects",
  1636. "homepage": "http://www.doctrine-project.org",
  1637. "keywords": [
  1638. "annotations",
  1639. "collections",
  1640. "eventmanager",
  1641. "persistence",
  1642. "spl"
  1643. ],
  1644. "time": "2017-07-22T08:35:12+00:00"
  1645. },
  1646. {
  1647. "name": "doctrine/inflector",
  1648. "version": "v1.2.0",
  1649. "source": {
  1650. "type": "git",
  1651. "url": "https://github.com/doctrine/inflector.git",
  1652. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1653. },
  1654. "dist": {
  1655. "type": "zip",
  1656. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1657. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1658. "shasum": ""
  1659. },
  1660. "require": {
  1661. "php": "^7.0"
  1662. },
  1663. "require-dev": {
  1664. "phpunit/phpunit": "^6.2"
  1665. },
  1666. "type": "library",
  1667. "extra": {
  1668. "branch-alias": {
  1669. "dev-master": "1.2.x-dev"
  1670. }
  1671. },
  1672. "autoload": {
  1673. "psr-4": {
  1674. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1675. }
  1676. },
  1677. "notification-url": "https://packagist.org/downloads/",
  1678. "license": [
  1679. "MIT"
  1680. ],
  1681. "authors": [
  1682. {
  1683. "name": "Roman Borschel",
  1684. "email": "roman@code-factory.org"
  1685. },
  1686. {
  1687. "name": "Benjamin Eberlei",
  1688. "email": "kontakt@beberlei.de"
  1689. },
  1690. {
  1691. "name": "Guilherme Blanco",
  1692. "email": "guilhermeblanco@gmail.com"
  1693. },
  1694. {
  1695. "name": "Jonathan Wage",
  1696. "email": "jonwage@gmail.com"
  1697. },
  1698. {
  1699. "name": "Johannes Schmitt",
  1700. "email": "schmittjoh@gmail.com"
  1701. }
  1702. ],
  1703. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1704. "homepage": "http://www.doctrine-project.org",
  1705. "keywords": [
  1706. "inflection",
  1707. "pluralize",
  1708. "singularize",
  1709. "string"
  1710. ],
  1711. "time": "2017-07-22T12:18:28+00:00"
  1712. },
  1713. {
  1714. "name": "doctrine/lexer",
  1715. "version": "1.0.2",
  1716. "source": {
  1717. "type": "git",
  1718. "url": "https://github.com/doctrine/lexer.git",
  1719. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1720. },
  1721. "dist": {
  1722. "type": "zip",
  1723. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1724. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1725. "shasum": ""
  1726. },
  1727. "require": {
  1728. "php": ">=5.3.2"
  1729. },
  1730. "require-dev": {
  1731. "phpunit/phpunit": "^4.5"
  1732. },
  1733. "type": "library",
  1734. "extra": {
  1735. "branch-alias": {
  1736. "dev-master": "1.0.x-dev"
  1737. }
  1738. },
  1739. "autoload": {
  1740. "psr-4": {
  1741. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1742. }
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "MIT"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Roman Borschel",
  1751. "email": "roman@code-factory.org"
  1752. },
  1753. {
  1754. "name": "Guilherme Blanco",
  1755. "email": "guilhermeblanco@gmail.com"
  1756. },
  1757. {
  1758. "name": "Johannes Schmitt",
  1759. "email": "schmittjoh@gmail.com"
  1760. }
  1761. ],
  1762. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1763. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1764. "keywords": [
  1765. "annotations",
  1766. "docblock",
  1767. "lexer",
  1768. "parser",
  1769. "php"
  1770. ],
  1771. "time": "2019-06-08T11:03:04+00:00"
  1772. },
  1773. {
  1774. "name": "drupal/addtoany",
  1775. "version": "1.14.0",
  1776. "source": {
  1777. "type": "git",
  1778. "url": "https://git.drupalcode.org/project/addtoany.git",
  1779. "reference": "8.x-1.14"
  1780. },
  1781. "dist": {
  1782. "type": "zip",
  1783. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.14.zip",
  1784. "reference": "8.x-1.14",
  1785. "shasum": "269ec4d1cfaf93132d5945edebf691ec7c04901a"
  1786. },
  1787. "require": {
  1788. "drupal/core": "^8 || ^9"
  1789. },
  1790. "type": "drupal-module",
  1791. "extra": {
  1792. "drupal": {
  1793. "version": "8.x-1.14",
  1794. "datestamp": "1589571718",
  1795. "security-coverage": {
  1796. "status": "covered",
  1797. "message": "Covered by Drupal's security advisory policy"
  1798. }
  1799. }
  1800. },
  1801. "notification-url": "https://packages.drupal.org/8/downloads",
  1802. "license": [
  1803. "GPL-2.0-or-later"
  1804. ],
  1805. "authors": [
  1806. {
  1807. "name": "AddToAny",
  1808. "homepage": "https://www.drupal.org/user/2640913"
  1809. },
  1810. {
  1811. "name": "micropat",
  1812. "homepage": "https://www.drupal.org/user/260224"
  1813. }
  1814. ],
  1815. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Twitter, Pinterest, WhatsApp and many more.",
  1816. "homepage": "https://www.drupal.org/project/addtoany",
  1817. "keywords": [
  1818. "Drupal"
  1819. ],
  1820. "support": {
  1821. "source": "https://git.drupalcode.org/project/addtoany",
  1822. "issues": "https://www.drupal.org/project/issues/addtoany"
  1823. }
  1824. },
  1825. {
  1826. "name": "drupal/admin_toolbar",
  1827. "version": "2.2.0",
  1828. "source": {
  1829. "type": "git",
  1830. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1831. "reference": "8.x-2.2"
  1832. },
  1833. "dist": {
  1834. "type": "zip",
  1835. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.2.zip",
  1836. "reference": "8.x-2.2",
  1837. "shasum": "41ea0e3321e6d1e190c486be49a99e60446d8dd7"
  1838. },
  1839. "require": {
  1840. "drupal/core": "^8.8.0 || ^9.0"
  1841. },
  1842. "type": "drupal-module",
  1843. "extra": {
  1844. "drupal": {
  1845. "version": "8.x-2.2",
  1846. "datestamp": "1585017179",
  1847. "security-coverage": {
  1848. "status": "covered",
  1849. "message": "Covered by Drupal's security advisory policy"
  1850. }
  1851. }
  1852. },
  1853. "notification-url": "https://packages.drupal.org/8/downloads",
  1854. "license": [
  1855. "GPL-2.0+"
  1856. ],
  1857. "authors": [
  1858. {
  1859. "name": "Wilfrid Roze (eme)",
  1860. "homepage": "https://www.drupal.org/u/eme",
  1861. "role": "Maintainer"
  1862. },
  1863. {
  1864. "name": "Romain Jarraud (romainj)",
  1865. "homepage": "https://www.drupal.org/u/romainj",
  1866. "role": "Maintainer"
  1867. },
  1868. {
  1869. "name": "Adrian Cid Almaguer (adriancid)",
  1870. "homepage": "https://www.drupal.org/u/adriancid",
  1871. "email": "adriancid@gmail.com",
  1872. "role": "Maintainer"
  1873. },
  1874. {
  1875. "name": "Mohamed Anis Taktak (matio89)",
  1876. "homepage": "https://www.drupal.org/u/matio89",
  1877. "role": "Maintainer"
  1878. },
  1879. {
  1880. "name": "fethi.krout",
  1881. "homepage": "https://www.drupal.org/user/3206765"
  1882. },
  1883. {
  1884. "name": "matio89",
  1885. "homepage": "https://www.drupal.org/user/2320090"
  1886. },
  1887. {
  1888. "name": "romainj",
  1889. "homepage": "https://www.drupal.org/user/370706"
  1890. }
  1891. ],
  1892. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1893. "homepage": "http://drupal.org/project/admin_toolbar",
  1894. "keywords": [
  1895. "Drupal",
  1896. "Toolbar"
  1897. ],
  1898. "support": {
  1899. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1900. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1901. }
  1902. },
  1903. {
  1904. "name": "drupal/adminimal_theme",
  1905. "version": "1.5.0",
  1906. "source": {
  1907. "type": "git",
  1908. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1909. "reference": "8.x-1.5"
  1910. },
  1911. "dist": {
  1912. "type": "zip",
  1913. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.5.zip",
  1914. "reference": "8.x-1.5",
  1915. "shasum": "fb4457015d743faafecaa0776d2bebf2829a6738"
  1916. },
  1917. "require": {
  1918. "drupal/core": "~8.0"
  1919. },
  1920. "type": "drupal-theme",
  1921. "extra": {
  1922. "branch-alias": {
  1923. "dev-1.x": "1.x-dev"
  1924. },
  1925. "drupal": {
  1926. "version": "8.x-1.5",
  1927. "datestamp": "1558584484",
  1928. "security-coverage": {
  1929. "status": "covered",
  1930. "message": "Covered by Drupal's security advisory policy"
  1931. }
  1932. }
  1933. },
  1934. "notification-url": "https://packages.drupal.org/8/downloads",
  1935. "license": [
  1936. "GPL-2.0+"
  1937. ],
  1938. "authors": [
  1939. {
  1940. "name": "ANDiTKO",
  1941. "homepage": "https://www.drupal.org/user/1428124"
  1942. },
  1943. {
  1944. "name": "andrey.troeglazov",
  1945. "homepage": "https://www.drupal.org/user/3145389"
  1946. },
  1947. {
  1948. "name": "realityloop",
  1949. "homepage": "https://www.drupal.org/user/139189"
  1950. }
  1951. ],
  1952. "description": "Drupal administration theme with modern minimalist design.",
  1953. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1954. "support": {
  1955. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1956. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1957. }
  1958. },
  1959. {
  1960. "name": "drupal/audiofield",
  1961. "version": "1.9.0",
  1962. "source": {
  1963. "type": "git",
  1964. "url": "https://git.drupalcode.org/project/audiofield.git",
  1965. "reference": "8.x-1.9"
  1966. },
  1967. "dist": {
  1968. "type": "zip",
  1969. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  1970. "reference": "8.x-1.9",
  1971. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  1972. },
  1973. "require": {
  1974. "drupal/core": "~8.0"
  1975. },
  1976. "type": "drupal-module",
  1977. "extra": {
  1978. "drupal": {
  1979. "version": "8.x-1.9",
  1980. "datestamp": "1553712781",
  1981. "security-coverage": {
  1982. "status": "covered",
  1983. "message": "Covered by Drupal's security advisory policy"
  1984. }
  1985. },
  1986. "drush": {
  1987. "services": {
  1988. "drush.services.yml": "^9"
  1989. }
  1990. }
  1991. },
  1992. "notification-url": "https://packages.drupal.org/8/downloads",
  1993. "license": [
  1994. "GPL-2.0+"
  1995. ],
  1996. "authors": [
  1997. {
  1998. "name": "Daniel Moberly",
  1999. "homepage": "https://www.drupal.org/u/danielmoberly",
  2000. "role": "Maintainer"
  2001. },
  2002. {
  2003. "name": "josipsaric",
  2004. "homepage": "https://www.drupal.org/user/3063287"
  2005. },
  2006. {
  2007. "name": "tamerzg",
  2008. "homepage": "https://www.drupal.org/user/464564"
  2009. }
  2010. ],
  2011. "description": "AudioField Module",
  2012. "homepage": "https://www.drupal.org/project/audiofield",
  2013. "support": {
  2014. "source": "https://git.drupalcode.org/project/audiofield",
  2015. "issues": "https://www.drupal.org/project/issues/audiofield"
  2016. }
  2017. },
  2018. {
  2019. "name": "drupal/autologout",
  2020. "version": "1.3.0",
  2021. "source": {
  2022. "type": "git",
  2023. "url": "https://git.drupalcode.org/project/autologout.git",
  2024. "reference": "8.x-1.3"
  2025. },
  2026. "dist": {
  2027. "type": "zip",
  2028. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  2029. "reference": "8.x-1.3",
  2030. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  2031. },
  2032. "require": {
  2033. "drupal/core": "^8 || ^9"
  2034. },
  2035. "type": "drupal-module",
  2036. "extra": {
  2037. "drupal": {
  2038. "version": "8.x-1.3",
  2039. "datestamp": "1587193798",
  2040. "security-coverage": {
  2041. "status": "covered",
  2042. "message": "Covered by Drupal's security advisory policy"
  2043. }
  2044. },
  2045. "patches_applied": {
  2046. "AutologoutManager class incompatible with interface https://www.drupal.org/project/autologout/issues/3121214": "https://www.drupal.org/files/issues/2020-03-20/3121214-autologout_manager_incompatible_interface.patch"
  2047. }
  2048. },
  2049. "notification-url": "https://packages.drupal.org/8/downloads",
  2050. "license": [
  2051. "GPL-2.0+"
  2052. ],
  2053. "authors": [
  2054. {
  2055. "name": "AjK",
  2056. "homepage": "https://www.drupal.org/user/39030"
  2057. },
  2058. {
  2059. "name": "AjitS",
  2060. "homepage": "https://www.drupal.org/user/981944"
  2061. },
  2062. {
  2063. "name": "boshtian",
  2064. "homepage": "https://www.drupal.org/user/1773456"
  2065. },
  2066. {
  2067. "name": "dandrews",
  2068. "homepage": "https://www.drupal.org/user/2014490"
  2069. },
  2070. {
  2071. "name": "darksnow",
  2072. "homepage": "https://www.drupal.org/user/391915"
  2073. },
  2074. {
  2075. "name": "johnennew",
  2076. "homepage": "https://www.drupal.org/user/1150042"
  2077. },
  2078. {
  2079. "name": "jrglasgow",
  2080. "homepage": "https://www.drupal.org/user/36590"
  2081. },
  2082. {
  2083. "name": "kmasood",
  2084. "homepage": "https://www.drupal.org/user/1262860"
  2085. },
  2086. {
  2087. "name": "levelos",
  2088. "homepage": "https://www.drupal.org/user/54135"
  2089. },
  2090. {
  2091. "name": "prabeen.giri",
  2092. "homepage": "https://www.drupal.org/user/913078"
  2093. },
  2094. {
  2095. "name": "str8",
  2096. "homepage": "https://www.drupal.org/user/2865063"
  2097. }
  2098. ],
  2099. "description": "Adds automated timed logout.",
  2100. "homepage": "http://drupal.org/project/autologout",
  2101. "support": {
  2102. "source": "https://git.drupalcode.org/project/autologout"
  2103. }
  2104. },
  2105. {
  2106. "name": "drupal/basic",
  2107. "version": "1.3.0",
  2108. "source": {
  2109. "type": "git",
  2110. "url": "https://git.drupalcode.org/project/basic.git",
  2111. "reference": "8.x-1.3"
  2112. },
  2113. "dist": {
  2114. "type": "zip",
  2115. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  2116. "reference": "8.x-1.3",
  2117. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  2118. },
  2119. "require": {
  2120. "drupal/core": "~8.0"
  2121. },
  2122. "type": "drupal-theme",
  2123. "extra": {
  2124. "branch-alias": {
  2125. "dev-1.x": "1.x-dev"
  2126. },
  2127. "drupal": {
  2128. "version": "8.x-1.3",
  2129. "datestamp": "1508096944",
  2130. "security-coverage": {
  2131. "status": "covered",
  2132. "message": "Covered by Drupal's security advisory policy"
  2133. }
  2134. }
  2135. },
  2136. "notification-url": "https://packages.drupal.org/8/downloads",
  2137. "license": [
  2138. "GPL-2.0+"
  2139. ],
  2140. "authors": [
  2141. {
  2142. "name": "Steve Krueger",
  2143. "homepage": "http://thejibe.com",
  2144. "email": "steve@thejibe.com",
  2145. "role": "Maintainer"
  2146. },
  2147. {
  2148. "name": "Joël Pittet",
  2149. "homepage": "https://www.drupal.org/u/joelpittet",
  2150. "email": "joel@pittet.ca",
  2151. "role": "Maintainer"
  2152. },
  2153. {
  2154. "name": "Leah Wagner",
  2155. "homepage": "http://thejibe.com",
  2156. "email": "leah@thejibe.com",
  2157. "role": "Maintainer"
  2158. },
  2159. {
  2160. "name": "Catherine Winters",
  2161. "homepage": "http://www.catherinewinters.com",
  2162. "email": "catherine@catherinewinters.com",
  2163. "role": "Maintainer"
  2164. },
  2165. {
  2166. "name": "Johannes Schmidt",
  2167. "homepage": "http://2tabs.com",
  2168. "email": "mail@2tabs.com",
  2169. "role": "Maintainer"
  2170. },
  2171. {
  2172. "name": "johannez",
  2173. "homepage": "https://www.drupal.org/user/670988"
  2174. },
  2175. {
  2176. "name": "leahtard",
  2177. "homepage": "https://www.drupal.org/user/683812"
  2178. }
  2179. ],
  2180. "description": "HTML5, SASS, Responsive grid starter theme.",
  2181. "homepage": "http://drupal.org/project/basic",
  2182. "support": {
  2183. "source": "http://cgit.drupalcode.org/basic",
  2184. "issues": "https://www.drupal.org/project/issues/basic",
  2185. "irc": "irc://irc.freenode.org/drupal-contribute"
  2186. }
  2187. },
  2188. {
  2189. "name": "drupal/better_messages",
  2190. "version": "1.0.0-alpha2",
  2191. "source": {
  2192. "type": "git",
  2193. "url": "https://git.drupalcode.org/project/better_messages.git",
  2194. "reference": "8.x-1.0-alpha2"
  2195. },
  2196. "dist": {
  2197. "type": "zip",
  2198. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2199. "reference": "8.x-1.0-alpha2",
  2200. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2201. },
  2202. "require": {
  2203. "drupal/core": "~8.0"
  2204. },
  2205. "type": "drupal-module",
  2206. "extra": {
  2207. "branch-alias": {
  2208. "dev-1.x": "1.x-dev"
  2209. },
  2210. "drupal": {
  2211. "version": "8.x-1.0-alpha2",
  2212. "datestamp": "1517663880",
  2213. "security-coverage": {
  2214. "status": "not-covered",
  2215. "message": "Alpha releases are not covered by Drupal security advisories."
  2216. }
  2217. }
  2218. },
  2219. "notification-url": "https://packages.drupal.org/8/downloads",
  2220. "license": [
  2221. "GPL-2.0-or-later"
  2222. ],
  2223. "authors": [
  2224. {
  2225. "name": "Mohammed J. Razem",
  2226. "homepage": "https://www.drupal.org/user/255384"
  2227. },
  2228. {
  2229. "name": "bucefal91",
  2230. "homepage": "https://www.drupal.org/user/504128"
  2231. },
  2232. {
  2233. "name": "le72",
  2234. "homepage": "https://www.drupal.org/user/1866896"
  2235. }
  2236. ],
  2237. "description": "Better Messages module for Drupal 8.",
  2238. "homepage": "https://www.drupal.org/project/better_messages",
  2239. "support": {
  2240. "source": "https://git.drupalcode.org/project/better_messages"
  2241. }
  2242. },
  2243. {
  2244. "name": "drupal/bulkdelete",
  2245. "version": "dev-1.x",
  2246. "source": {
  2247. "type": "git",
  2248. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2249. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2250. },
  2251. "require": {
  2252. "drupal/core": "^8.7.7 || ^9"
  2253. },
  2254. "type": "drupal-module",
  2255. "extra": {
  2256. "branch-alias": {
  2257. "dev-1.x": "1.x-dev"
  2258. },
  2259. "drupal": {
  2260. "version": "8.x-1.x-dev",
  2261. "datestamp": "1569586386",
  2262. "security-coverage": {
  2263. "status": "not-covered",
  2264. "message": "Dev releases are not covered by Drupal security advisories."
  2265. }
  2266. }
  2267. },
  2268. "notification-url": "https://packages.drupal.org/8/downloads",
  2269. "license": [
  2270. "GPL-2.0-or-later"
  2271. ],
  2272. "authors": [
  2273. {
  2274. "name": "Kars-T",
  2275. "homepage": "https://www.drupal.org/user/224499"
  2276. },
  2277. {
  2278. "name": "Rahul Seth",
  2279. "homepage": "https://www.drupal.org/user/2694359"
  2280. },
  2281. {
  2282. "name": "adriancid",
  2283. "homepage": "https://www.drupal.org/user/1962106"
  2284. },
  2285. {
  2286. "name": "robertDouglass",
  2287. "homepage": "https://www.drupal.org/user/5449"
  2288. }
  2289. ],
  2290. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2291. "homepage": "https://www.drupal.org/project/bulkdelete",
  2292. "support": {
  2293. "source": "https://git.drupalcode.org/project/bulkdelete"
  2294. },
  2295. "time": "2020-05-24T06:01:38+00:00"
  2296. },
  2297. {
  2298. "name": "drupal/color_field",
  2299. "version": "2.2.0",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://git.drupalcode.org/project/color_field.git",
  2303. "reference": "8.x-2.2"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.2.zip",
  2308. "reference": "8.x-2.2",
  2309. "shasum": "12eb5d74f361a2ebf8bf61f750c145cbf137919b"
  2310. },
  2311. "require": {
  2312. "drupal/core": "*"
  2313. },
  2314. "require-dev": {
  2315. "drupal/token": "~1.3",
  2316. "nickwilde1990/php-composter-phpcs-drupal": "^2.0"
  2317. },
  2318. "suggest": {
  2319. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2320. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2321. },
  2322. "type": "drupal-module",
  2323. "extra": {
  2324. "branch-alias": {
  2325. "dev-2.x": "2.x-dev"
  2326. },
  2327. "drupal": {
  2328. "version": "8.x-2.2",
  2329. "datestamp": "1579552087",
  2330. "security-coverage": {
  2331. "status": "covered",
  2332. "message": "Covered by Drupal's security advisory policy"
  2333. }
  2334. }
  2335. },
  2336. "notification-url": "https://packages.drupal.org/8/downloads",
  2337. "license": [
  2338. "GPL-2.0-or-later"
  2339. ],
  2340. "authors": [
  2341. {
  2342. "name": "targoo",
  2343. "homepage": "https://www.drupal.org/user/431910",
  2344. "role": "Maintainer"
  2345. },
  2346. {
  2347. "name": "Nick Wilde",
  2348. "homepage": "https://www.drupal.org/user/nickwilde",
  2349. "role": "Maintainer"
  2350. }
  2351. ],
  2352. "description": "Provides a color field type to store the color value and opacity",
  2353. "homepage": "https://www.drupal.org/project/color_field",
  2354. "support": {
  2355. "source": "https://git.drupalcode.org/project/color_field",
  2356. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2357. }
  2358. },
  2359. {
  2360. "name": "drupal/config_devel",
  2361. "version": "1.7.0",
  2362. "source": {
  2363. "type": "git",
  2364. "url": "https://git.drupalcode.org/project/config_devel.git",
  2365. "reference": "8.x-1.7"
  2366. },
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.7.zip",
  2370. "reference": "8.x-1.7",
  2371. "shasum": "4ebcf4fb2a2842232b9bf9b0855e3728df918fc7"
  2372. },
  2373. "require": {
  2374. "drupal/core": "*"
  2375. },
  2376. "type": "drupal-module",
  2377. "extra": {
  2378. "drupal": {
  2379. "version": "8.x-1.7",
  2380. "datestamp": "1590070764",
  2381. "security-coverage": {
  2382. "status": "covered",
  2383. "message": "Covered by Drupal's security advisory policy"
  2384. }
  2385. }
  2386. },
  2387. "notification-url": "https://packages.drupal.org/8/downloads",
  2388. "license": [
  2389. "GPL-2.0+"
  2390. ],
  2391. "authors": [
  2392. {
  2393. "name": "alexpott",
  2394. "homepage": "https://www.drupal.org/user/157725"
  2395. },
  2396. {
  2397. "name": "benjy",
  2398. "homepage": "https://www.drupal.org/user/1852732"
  2399. },
  2400. {
  2401. "name": "chx",
  2402. "homepage": "https://www.drupal.org/user/9446"
  2403. },
  2404. {
  2405. "name": "joachim",
  2406. "homepage": "https://www.drupal.org/user/107701"
  2407. },
  2408. {
  2409. "name": "nedjo",
  2410. "homepage": "https://www.drupal.org/user/4481"
  2411. },
  2412. {
  2413. "name": "tim.plunkett",
  2414. "homepage": "https://www.drupal.org/user/241634"
  2415. },
  2416. {
  2417. "name": "vijaycs85",
  2418. "homepage": "https://www.drupal.org/user/93488"
  2419. }
  2420. ],
  2421. "description": "Helps developers work with configuration.",
  2422. "homepage": "https://www.drupal.org/project/config_devel",
  2423. "support": {
  2424. "source": "https://git.drupalcode.org/project/config_devel"
  2425. }
  2426. },
  2427. {
  2428. "name": "drupal/config_filter",
  2429. "version": "1.5.0",
  2430. "source": {
  2431. "type": "git",
  2432. "url": "https://git.drupalcode.org/project/config_filter.git",
  2433. "reference": "8.x-1.5"
  2434. },
  2435. "dist": {
  2436. "type": "zip",
  2437. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.5.zip",
  2438. "reference": "8.x-1.5",
  2439. "shasum": "81210684c378dab856b3c2bce5eeaa58992d2efc"
  2440. },
  2441. "require": {
  2442. "drupal/core": "^8 || ^9"
  2443. },
  2444. "suggest": {
  2445. "drupal/config_split": "Split site configuration for different environments."
  2446. },
  2447. "type": "drupal-module",
  2448. "extra": {
  2449. "branch-alias": {
  2450. "dev-1.x": "1.x-dev"
  2451. },
  2452. "drupal": {
  2453. "version": "8.x-1.5",
  2454. "datestamp": "1572542288",
  2455. "security-coverage": {
  2456. "status": "covered",
  2457. "message": "Covered by Drupal's security advisory policy"
  2458. }
  2459. }
  2460. },
  2461. "notification-url": "https://packages.drupal.org/8/downloads",
  2462. "license": [
  2463. "GPL-2.0+"
  2464. ],
  2465. "authors": [
  2466. {
  2467. "name": "Fabian Bircher",
  2468. "homepage": "https://www.drupal.org/u/bircher",
  2469. "email": "opensource@fabianbircher.com",
  2470. "role": "Maintainer"
  2471. },
  2472. {
  2473. "name": "Nuvole Web",
  2474. "homepage": "http://nuvole.org",
  2475. "email": "info@nuvole.org",
  2476. "role": "Maintainer"
  2477. },
  2478. {
  2479. "name": "pescetti",
  2480. "homepage": "https://www.drupal.org/user/436244"
  2481. }
  2482. ],
  2483. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2484. "homepage": "https://www.drupal.org/project/config_filter",
  2485. "keywords": [
  2486. "Drupal",
  2487. "configuration",
  2488. "configuration management"
  2489. ],
  2490. "support": {
  2491. "source": "http://cgit.drupalcode.org/config_filter",
  2492. "issues": "https://www.drupal.org/project/issues/config_filter",
  2493. "irc": "irc://irc.freenode.org/drupal-contribute"
  2494. }
  2495. },
  2496. {
  2497. "name": "drupal/config_ignore",
  2498. "version": "2.2.0",
  2499. "source": {
  2500. "type": "git",
  2501. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2502. "reference": "8.x-2.2"
  2503. },
  2504. "dist": {
  2505. "type": "zip",
  2506. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.2.zip",
  2507. "reference": "8.x-2.2",
  2508. "shasum": "18af5772087b90dd4b83c2c6e292d8ea2f8834e0"
  2509. },
  2510. "require": {
  2511. "drupal/config_filter": "1.*",
  2512. "drupal/core": "~8.0"
  2513. },
  2514. "type": "drupal-module",
  2515. "extra": {
  2516. "branch-alias": {
  2517. "dev-2.x": "2.x-dev"
  2518. },
  2519. "drupal": {
  2520. "version": "8.x-2.2",
  2521. "datestamp": "1576528386",
  2522. "security-coverage": {
  2523. "status": "covered",
  2524. "message": "Covered by Drupal's security advisory policy"
  2525. }
  2526. }
  2527. },
  2528. "notification-url": "https://packages.drupal.org/8/downloads",
  2529. "license": [
  2530. "GPL-2.0+"
  2531. ],
  2532. "authors": [
  2533. {
  2534. "name": "Tommy Lynge Jørgensen",
  2535. "homepage": "https://www.drupal.org/u/tlyngej",
  2536. "email": "tlyngej@gmail.com",
  2537. "role": "Maintainer"
  2538. },
  2539. {
  2540. "name": "Fabian Bircher",
  2541. "homepage": "https://www.drupal.org/u/bircher",
  2542. "role": "Maintainer"
  2543. },
  2544. {
  2545. "name": "tlyngej",
  2546. "homepage": "https://www.drupal.org/user/413139"
  2547. }
  2548. ],
  2549. "description": "Ignore certain configuration during import.",
  2550. "homepage": "http://drupal.org/project/config_ignore",
  2551. "support": {
  2552. "source": "http://cgit.drupalcode.org/config_ignore",
  2553. "issues": "http://drupal.org/project/config_ignore",
  2554. "irc": "irc://irc.freenode.org/drupal-contribute"
  2555. }
  2556. },
  2557. {
  2558. "name": "drupal/config_update",
  2559. "version": "1.7.0",
  2560. "source": {
  2561. "type": "git",
  2562. "url": "https://git.drupalcode.org/project/config_update.git",
  2563. "reference": "8.x-1.7"
  2564. },
  2565. "dist": {
  2566. "type": "zip",
  2567. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2568. "reference": "8.x-1.7",
  2569. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2570. },
  2571. "require": {
  2572. "drupal/core": "^8 || ^9"
  2573. },
  2574. "type": "drupal-module",
  2575. "extra": {
  2576. "drupal": {
  2577. "version": "8.x-1.7",
  2578. "datestamp": "1586355587",
  2579. "security-coverage": {
  2580. "status": "covered",
  2581. "message": "Covered by Drupal's security advisory policy"
  2582. }
  2583. }
  2584. },
  2585. "notification-url": "https://packages.drupal.org/8/downloads",
  2586. "license": [
  2587. "GPL-2.0-or-later"
  2588. ],
  2589. "authors": [
  2590. {
  2591. "name": "jhodgdon",
  2592. "homepage": "https://www.drupal.org/user/155601"
  2593. },
  2594. {
  2595. "name": "nedjo",
  2596. "homepage": "https://www.drupal.org/user/4481"
  2597. }
  2598. ],
  2599. "description": "Provides basic revert and update functionality for other modules",
  2600. "homepage": "https://www.drupal.org/project/config_update",
  2601. "support": {
  2602. "source": "https://git.drupalcode.org/project/config_update"
  2603. }
  2604. },
  2605. {
  2606. "name": "drupal/console",
  2607. "version": "1.9.4",
  2608. "source": {
  2609. "type": "git",
  2610. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2611. "reference": "04522b687b2149dc1f808599e716421a20d50a5b"
  2612. },
  2613. "dist": {
  2614. "type": "zip",
  2615. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/04522b687b2149dc1f808599e716421a20d50a5b",
  2616. "reference": "04522b687b2149dc1f808599e716421a20d50a5b",
  2617. "shasum": ""
  2618. },
  2619. "require": {
  2620. "alchemy/zippy": "~0.4",
  2621. "composer/installers": "~1.0",
  2622. "doctrine/annotations": "^1.2",
  2623. "doctrine/collections": "^1.3",
  2624. "drupal/console-core": "1.9.4",
  2625. "drupal/console-extend-plugin": "~0",
  2626. "php": "^5.5.9 || ^7.0",
  2627. "psy/psysh": "0.6.* || ~0.8",
  2628. "symfony/css-selector": "~2.8|~3.0",
  2629. "symfony/dom-crawler": "~2.8|~3.0",
  2630. "symfony/http-foundation": "~2.8|~3.0"
  2631. },
  2632. "suggest": {
  2633. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  2634. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  2635. },
  2636. "bin": [
  2637. "bin/drupal"
  2638. ],
  2639. "type": "library",
  2640. "autoload": {
  2641. "psr-4": {
  2642. "Drupal\\Console\\": "src"
  2643. }
  2644. },
  2645. "notification-url": "https://packagist.org/downloads/",
  2646. "license": [
  2647. "GPL-2.0-or-later"
  2648. ],
  2649. "authors": [
  2650. {
  2651. "name": "David Flores",
  2652. "email": "dmousex@gmail.com",
  2653. "homepage": "http://dmouse.net"
  2654. },
  2655. {
  2656. "name": "Jesus Manuel Olivas",
  2657. "email": "jesus.olivas@gmail.com",
  2658. "homepage": "http://jmolivas.com"
  2659. },
  2660. {
  2661. "name": "Eduardo Garcia",
  2662. "email": "enzo@enzolutions.com",
  2663. "homepage": "http://enzolutions.com/"
  2664. },
  2665. {
  2666. "name": "Omar Aguirre",
  2667. "email": "omersguchigu@gmail.com"
  2668. },
  2669. {
  2670. "name": "Drupal Console Contributors",
  2671. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2672. }
  2673. ],
  2674. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2675. "homepage": "http://drupalconsole.com/",
  2676. "keywords": [
  2677. "console",
  2678. "development",
  2679. "drupal",
  2680. "symfony"
  2681. ],
  2682. "time": "2019-11-11T19:35:01+00:00"
  2683. },
  2684. {
  2685. "name": "drupal/console-core",
  2686. "version": "1.9.4",
  2687. "source": {
  2688. "type": "git",
  2689. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2690. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed"
  2691. },
  2692. "dist": {
  2693. "type": "zip",
  2694. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  2695. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  2696. "shasum": ""
  2697. },
  2698. "require": {
  2699. "dflydev/dot-access-configuration": "^1.0",
  2700. "drupal/console-en": "1.9.4",
  2701. "guzzlehttp/guzzle": "~6.1",
  2702. "php": "^5.5.9 || ^7.0",
  2703. "stecman/symfony-console-completion": "~0.7",
  2704. "symfony/config": "~2.8|~3.0",
  2705. "symfony/console": "~2.8|~3.0",
  2706. "symfony/debug": "~2.8|~3.0",
  2707. "symfony/dependency-injection": "~2.8|~3.0",
  2708. "symfony/event-dispatcher": "~2.8|~3.0",
  2709. "symfony/filesystem": "~2.8|~3.0",
  2710. "symfony/finder": "~2.8|~3.0",
  2711. "symfony/process": "~2.8|~3.0",
  2712. "symfony/translation": "~2.8|~3.0",
  2713. "symfony/yaml": "~2.8|~3.0",
  2714. "twig/twig": "^1.23.1",
  2715. "webflo/drupal-finder": "^1.0",
  2716. "webmozart/path-util": "^2.3"
  2717. },
  2718. "type": "library",
  2719. "autoload": {
  2720. "files": [
  2721. "src/functions.php"
  2722. ],
  2723. "psr-4": {
  2724. "Drupal\\Console\\Core\\": "src"
  2725. }
  2726. },
  2727. "notification-url": "https://packagist.org/downloads/",
  2728. "license": [
  2729. "GPL-2.0-or-later"
  2730. ],
  2731. "authors": [
  2732. {
  2733. "name": "David Flores",
  2734. "email": "dmousex@gmail.com",
  2735. "homepage": "http://dmouse.net"
  2736. },
  2737. {
  2738. "name": "Jesus Manuel Olivas",
  2739. "email": "jesus.olivas@gmail.com",
  2740. "homepage": "http://jmolivas.com"
  2741. },
  2742. {
  2743. "name": "Eduardo Garcia",
  2744. "email": "enzo@enzolutions.com",
  2745. "homepage": "http://enzolutions.com/"
  2746. },
  2747. {
  2748. "name": "Omar Aguirre",
  2749. "email": "omersguchigu@gmail.com"
  2750. },
  2751. {
  2752. "name": "Drupal Console Contributors",
  2753. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2754. }
  2755. ],
  2756. "description": "Drupal Console Core",
  2757. "homepage": "http://drupalconsole.com/",
  2758. "keywords": [
  2759. "console",
  2760. "development",
  2761. "drupal",
  2762. "symfony"
  2763. ],
  2764. "time": "2019-11-11T19:26:28+00:00"
  2765. },
  2766. {
  2767. "name": "drupal/console-en",
  2768. "version": "1.9.4",
  2769. "source": {
  2770. "type": "git",
  2771. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2772. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d"
  2773. },
  2774. "dist": {
  2775. "type": "zip",
  2776. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/30813a832fdb1244e84cbcc012cd103d5e9d673d",
  2777. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d",
  2778. "shasum": ""
  2779. },
  2780. "type": "library",
  2781. "notification-url": "https://packagist.org/downloads/",
  2782. "license": [
  2783. "GPL-2.0-or-later"
  2784. ],
  2785. "authors": [
  2786. {
  2787. "name": "David Flores",
  2788. "email": "dmousex@gmail.com",
  2789. "homepage": "http://dmouse.net"
  2790. },
  2791. {
  2792. "name": "Jesus Manuel Olivas",
  2793. "email": "jesus.olivas@gmail.com",
  2794. "homepage": "http://jmolivas.com"
  2795. },
  2796. {
  2797. "name": "Eduardo Garcia",
  2798. "email": "enzo@enzolutions.com",
  2799. "homepage": "http://enzolutions.com/"
  2800. },
  2801. {
  2802. "name": "Omar Aguirre",
  2803. "email": "omersguchigu@gmail.com"
  2804. },
  2805. {
  2806. "name": "Drupal Console Contributors",
  2807. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2808. }
  2809. ],
  2810. "description": "Drupal Console English Language",
  2811. "homepage": "http://drupalconsole.com/",
  2812. "keywords": [
  2813. "console",
  2814. "development",
  2815. "drupal",
  2816. "symfony"
  2817. ],
  2818. "time": "2019-10-07T23:45:30+00:00"
  2819. },
  2820. {
  2821. "name": "drupal/console-extend-plugin",
  2822. "version": "0.9.3",
  2823. "source": {
  2824. "type": "git",
  2825. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2826. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342"
  2827. },
  2828. "dist": {
  2829. "type": "zip",
  2830. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  2831. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  2832. "shasum": ""
  2833. },
  2834. "require": {
  2835. "composer-plugin-api": "^1.0",
  2836. "composer/installers": "^1.2",
  2837. "symfony/finder": "~2.7|~3.0",
  2838. "symfony/yaml": "~2.7|~3.0"
  2839. },
  2840. "type": "composer-plugin",
  2841. "extra": {
  2842. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  2843. },
  2844. "autoload": {
  2845. "psr-4": {
  2846. "Drupal\\Console\\Composer\\Plugin\\": "src"
  2847. }
  2848. },
  2849. "notification-url": "https://packagist.org/downloads/",
  2850. "license": [
  2851. "GPL-2.0+"
  2852. ],
  2853. "authors": [
  2854. {
  2855. "name": "Jesus Manuel Olivas",
  2856. "email": "jesus.olivas@gmail.com"
  2857. }
  2858. ],
  2859. "description": "Drupal Console Extend Plugin",
  2860. "time": "2019-11-07T20:15:27+00:00"
  2861. },
  2862. {
  2863. "name": "drupal/context",
  2864. "version": "4.0.0-beta2",
  2865. "source": {
  2866. "type": "git",
  2867. "url": "https://git.drupalcode.org/project/context.git",
  2868. "reference": "8.x-4.0-beta2"
  2869. },
  2870. "dist": {
  2871. "type": "zip",
  2872. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  2873. "reference": "8.x-4.0-beta2",
  2874. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  2875. },
  2876. "require": {
  2877. "drupal/core": "~8.0"
  2878. },
  2879. "type": "drupal-module",
  2880. "extra": {
  2881. "drupal": {
  2882. "version": "8.x-4.0-beta2",
  2883. "datestamp": "1505378944",
  2884. "security-coverage": {
  2885. "status": "not-covered",
  2886. "message": "Beta releases are not covered by Drupal security advisories."
  2887. }
  2888. }
  2889. },
  2890. "notification-url": "https://packages.drupal.org/8/downloads",
  2891. "license": [
  2892. "MIT"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "Christoffer Palm",
  2897. "homepage": "http://www.oddhill.se/",
  2898. "email": "christoffer.palm@oddhill.se",
  2899. "role": "Developer"
  2900. },
  2901. {
  2902. "name": "NormySan",
  2903. "homepage": "https://www.drupal.org/user/112352"
  2904. },
  2905. {
  2906. "name": "Steven Jones",
  2907. "homepage": "https://www.drupal.org/user/99644"
  2908. },
  2909. {
  2910. "name": "alex_b",
  2911. "homepage": "https://www.drupal.org/user/53995"
  2912. },
  2913. {
  2914. "name": "boshtian",
  2915. "homepage": "https://www.drupal.org/user/1773456"
  2916. },
  2917. {
  2918. "name": "colan",
  2919. "homepage": "https://www.drupal.org/user/58704"
  2920. },
  2921. {
  2922. "name": "emanaton",
  2923. "homepage": "https://www.drupal.org/user/120853"
  2924. },
  2925. {
  2926. "name": "febbraro",
  2927. "homepage": "https://www.drupal.org/user/43670"
  2928. },
  2929. {
  2930. "name": "fizk",
  2931. "homepage": "https://www.drupal.org/user/473174"
  2932. },
  2933. {
  2934. "name": "hass",
  2935. "homepage": "https://www.drupal.org/user/85918"
  2936. },
  2937. {
  2938. "name": "hefox",
  2939. "homepage": "https://www.drupal.org/user/426416"
  2940. },
  2941. {
  2942. "name": "hyrcan",
  2943. "homepage": "https://www.drupal.org/user/26618"
  2944. },
  2945. {
  2946. "name": "jmiccolis",
  2947. "homepage": "https://www.drupal.org/user/31731"
  2948. },
  2949. {
  2950. "name": "nedjo",
  2951. "homepage": "https://www.drupal.org/user/4481"
  2952. },
  2953. {
  2954. "name": "tekante",
  2955. "homepage": "https://www.drupal.org/user/640024"
  2956. },
  2957. {
  2958. "name": "yhahn",
  2959. "homepage": "https://www.drupal.org/user/264833"
  2960. }
  2961. ],
  2962. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2963. "homepage": "https://github.com/oddhill/context",
  2964. "keywords": [
  2965. "Drupal",
  2966. "block",
  2967. "conditions",
  2968. "context",
  2969. "visibility"
  2970. ],
  2971. "support": {
  2972. "source": "https://github.com/oddhill/context",
  2973. "issues": "https://github.com/oddhill/context/issues",
  2974. "docs": "https://github.com/oddhill/context"
  2975. }
  2976. },
  2977. {
  2978. "name": "drupal/core",
  2979. "version": "8.8.6",
  2980. "source": {
  2981. "type": "git",
  2982. "url": "https://github.com/drupal/core.git",
  2983. "reference": "a5daf2aa45bbc72da72e1e64d5261f746ffb508c"
  2984. },
  2985. "dist": {
  2986. "type": "zip",
  2987. "url": "https://api.github.com/repos/drupal/core/zipball/a5daf2aa45bbc72da72e1e64d5261f746ffb508c",
  2988. "reference": "a5daf2aa45bbc72da72e1e64d5261f746ffb508c",
  2989. "shasum": ""
  2990. },
  2991. "require": {
  2992. "asm89/stack-cors": "^1.1",
  2993. "composer/semver": "^1.0",
  2994. "doctrine/annotations": "^1.4",
  2995. "doctrine/common": "^2.7",
  2996. "easyrdf/easyrdf": "^0.9",
  2997. "egulias/email-validator": "^2.0",
  2998. "ext-date": "*",
  2999. "ext-dom": "*",
  3000. "ext-filter": "*",
  3001. "ext-gd": "*",
  3002. "ext-hash": "*",
  3003. "ext-json": "*",
  3004. "ext-pcre": "*",
  3005. "ext-pdo": "*",
  3006. "ext-session": "*",
  3007. "ext-simplexml": "*",
  3008. "ext-spl": "*",
  3009. "ext-tokenizer": "*",
  3010. "ext-xml": "*",
  3011. "guzzlehttp/guzzle": "^6.3",
  3012. "masterminds/html5": "^2.1",
  3013. "pear/archive_tar": "^1.4.9",
  3014. "php": ">=7.0.8",
  3015. "stack/builder": "^1.0",
  3016. "symfony-cmf/routing": "^1.4",
  3017. "symfony/class-loader": "~3.4.0",
  3018. "symfony/console": "~3.4.0",
  3019. "symfony/dependency-injection": "~3.4.26",
  3020. "symfony/event-dispatcher": "~3.4.0",
  3021. "symfony/http-foundation": "~3.4.27",
  3022. "symfony/http-kernel": "~3.4.14",
  3023. "symfony/polyfill-iconv": "^1.0",
  3024. "symfony/process": "~3.4.0",
  3025. "symfony/psr-http-message-bridge": "^1.1.2",
  3026. "symfony/routing": "~3.4.0",
  3027. "symfony/serializer": "~3.4.0",
  3028. "symfony/translation": "~3.4.0",
  3029. "symfony/validator": "~3.4.0",
  3030. "symfony/yaml": "~3.4.5",
  3031. "twig/twig": "^1.38.2",
  3032. "typo3/phar-stream-wrapper": "^3.1.3",
  3033. "zendframework/zend-diactoros": "^1.8",
  3034. "zendframework/zend-feed": "^2.12"
  3035. },
  3036. "conflict": {
  3037. "drupal/pathauto": "<1.6",
  3038. "drush/drush": "<8.1.10"
  3039. },
  3040. "replace": {
  3041. "drupal/action": "self.version",
  3042. "drupal/aggregator": "self.version",
  3043. "drupal/automated_cron": "self.version",
  3044. "drupal/ban": "self.version",
  3045. "drupal/bartik": "self.version",
  3046. "drupal/basic_auth": "self.version",
  3047. "drupal/big_pipe": "self.version",
  3048. "drupal/block": "self.version",
  3049. "drupal/block_content": "self.version",
  3050. "drupal/block_place": "self.version",
  3051. "drupal/book": "self.version",
  3052. "drupal/breakpoint": "self.version",
  3053. "drupal/ckeditor": "self.version",
  3054. "drupal/claro": "self.version",
  3055. "drupal/classy": "self.version",
  3056. "drupal/color": "self.version",
  3057. "drupal/comment": "self.version",
  3058. "drupal/config": "self.version",
  3059. "drupal/config_translation": "self.version",
  3060. "drupal/contact": "self.version",
  3061. "drupal/content_moderation": "self.version",
  3062. "drupal/content_translation": "self.version",
  3063. "drupal/contextual": "self.version",
  3064. "drupal/core-annotation": "self.version",
  3065. "drupal/core-assertion": "self.version",
  3066. "drupal/core-bridge": "self.version",
  3067. "drupal/core-class-finder": "self.version",
  3068. "drupal/core-datetime": "self.version",
  3069. "drupal/core-dependency-injection": "self.version",
  3070. "drupal/core-diff": "self.version",
  3071. "drupal/core-discovery": "self.version",
  3072. "drupal/core-event-dispatcher": "self.version",
  3073. "drupal/core-file-cache": "self.version",
  3074. "drupal/core-file-security": "self.version",
  3075. "drupal/core-filesystem": "self.version",
  3076. "drupal/core-gettext": "self.version",
  3077. "drupal/core-graph": "self.version",
  3078. "drupal/core-http-foundation": "self.version",
  3079. "drupal/core-php-storage": "self.version",
  3080. "drupal/core-plugin": "self.version",
  3081. "drupal/core-proxy-builder": "self.version",
  3082. "drupal/core-render": "self.version",
  3083. "drupal/core-serialization": "self.version",
  3084. "drupal/core-transliteration": "self.version",
  3085. "drupal/core-utility": "self.version",
  3086. "drupal/core-uuid": "self.version",
  3087. "drupal/core-version": "self.version",
  3088. "drupal/datetime": "self.version",
  3089. "drupal/datetime_range": "self.version",
  3090. "drupal/dblog": "self.version",
  3091. "drupal/dynamic_page_cache": "self.version",
  3092. "drupal/editor": "self.version",
  3093. "drupal/entity_reference": "self.version",
  3094. "drupal/field": "self.version",
  3095. "drupal/field_layout": "self.version",
  3096. "drupal/field_ui": "self.version",
  3097. "drupal/file": "self.version",
  3098. "drupal/filter": "self.version",
  3099. "drupal/forum": "self.version",
  3100. "drupal/hal": "self.version",
  3101. "drupal/help": "self.version",
  3102. "drupal/help_topics": "self.version",
  3103. "drupal/history": "self.version",
  3104. "drupal/image": "self.version",
  3105. "drupal/inline_form_errors": "self.version",
  3106. "drupal/jsonapi": "self.version",
  3107. "drupal/language": "self.version",
  3108. "drupal/layout_builder": "self.version",
  3109. "drupal/layout_discovery": "self.version",
  3110. "drupal/link": "self.version",
  3111. "drupal/locale": "self.version",
  3112. "drupal/media": "self.version",
  3113. "drupal/media_library": "self.version",
  3114. "drupal/menu_link_content": "self.version",
  3115. "drupal/menu_ui": "self.version",
  3116. "drupal/migrate": "self.version",
  3117. "drupal/migrate_drupal": "self.version",
  3118. "drupal/migrate_drupal_multilingual": "self.version",
  3119. "drupal/migrate_drupal_ui": "self.version",
  3120. "drupal/minimal": "self.version",
  3121. "drupal/node": "self.version",
  3122. "drupal/options": "self.version",
  3123. "drupal/page_cache": "self.version",
  3124. "drupal/path": "self.version",
  3125. "drupal/path_alias": "self.version",
  3126. "drupal/quickedit": "self.version",
  3127. "drupal/rdf": "self.version",
  3128. "drupal/responsive_image": "self.version",
  3129. "drupal/rest": "self.version",
  3130. "drupal/search": "self.version",
  3131. "drupal/serialization": "self.version",
  3132. "drupal/settings_tray": "self.version",
  3133. "drupal/seven": "self.version",
  3134. "drupal/shortcut": "self.version",
  3135. "drupal/simpletest": "self.version",
  3136. "drupal/standard": "self.version",
  3137. "drupal/stark": "self.version",
  3138. "drupal/statistics": "self.version",
  3139. "drupal/syslog": "self.version",
  3140. "drupal/system": "self.version",
  3141. "drupal/taxonomy": "self.version",
  3142. "drupal/telephone": "self.version",
  3143. "drupal/text": "self.version",
  3144. "drupal/toolbar": "self.version",
  3145. "drupal/tour": "self.version",
  3146. "drupal/tracker": "self.version",
  3147. "drupal/update": "self.version",
  3148. "drupal/user": "self.version",
  3149. "drupal/views": "self.version",
  3150. "drupal/views_ui": "self.version",
  3151. "drupal/workflows": "self.version",
  3152. "drupal/workspaces": "self.version"
  3153. },
  3154. "type": "drupal-core",
  3155. "extra": {
  3156. "drupal-scaffold": {
  3157. "file-mapping": {
  3158. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3159. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3160. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3161. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3162. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3163. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3164. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3165. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3166. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3167. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3168. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  3169. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3170. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3171. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3172. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3173. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3174. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3175. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3176. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3177. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3178. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3179. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3180. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3181. }
  3182. }
  3183. },
  3184. "autoload": {
  3185. "psr-4": {
  3186. "Drupal\\Core\\": "lib/Drupal/Core",
  3187. "Drupal\\Component\\": "lib/Drupal/Component",
  3188. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3189. },
  3190. "classmap": [
  3191. "lib/Drupal.php",
  3192. "lib/Drupal/Component/Utility/Timer.php",
  3193. "lib/Drupal/Component/Utility/Unicode.php",
  3194. "lib/Drupal/Core/Database/Database.php",
  3195. "lib/Drupal/Core/DrupalKernel.php",
  3196. "lib/Drupal/Core/DrupalKernelInterface.php",
  3197. "lib/Drupal/Core/Site/Settings.php"
  3198. ]
  3199. },
  3200. "notification-url": "https://packagist.org/downloads/",
  3201. "license": [
  3202. "GPL-2.0-or-later"
  3203. ],
  3204. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3205. "time": "2020-05-20T08:22:02+00:00"
  3206. },
  3207. {
  3208. "name": "drupal/core-composer-scaffold",
  3209. "version": "8.8.6",
  3210. "source": {
  3211. "type": "git",
  3212. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3213. "reference": "4825cb5234c28dff79ad298db582dfb23ff4ca59"
  3214. },
  3215. "dist": {
  3216. "type": "zip",
  3217. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/4825cb5234c28dff79ad298db582dfb23ff4ca59",
  3218. "reference": "4825cb5234c28dff79ad298db582dfb23ff4ca59",
  3219. "shasum": ""
  3220. },
  3221. "require": {
  3222. "composer-plugin-api": "^1.0.0",
  3223. "php": ">=7.0.8"
  3224. },
  3225. "conflict": {
  3226. "drupal-composer/drupal-scaffold": "*"
  3227. },
  3228. "require-dev": {
  3229. "composer/composer": "^1.8@stable"
  3230. },
  3231. "type": "composer-plugin",
  3232. "extra": {
  3233. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3234. "branch-alias": {
  3235. "dev-master": "1.0.x-dev"
  3236. }
  3237. },
  3238. "autoload": {
  3239. "psr-4": {
  3240. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3241. }
  3242. },
  3243. "notification-url": "https://packagist.org/downloads/",
  3244. "license": [
  3245. "GPL-2.0-or-later"
  3246. ],
  3247. "description": "A flexible Composer project scaffold builder.",
  3248. "homepage": "https://www.drupal.org/project/drupal",
  3249. "keywords": [
  3250. "drupal"
  3251. ],
  3252. "time": "2020-03-10T10:15:17+00:00"
  3253. },
  3254. {
  3255. "name": "drupal/core-recommended",
  3256. "version": "8.8.6",
  3257. "source": {
  3258. "type": "git",
  3259. "url": "https://github.com/drupal/core-recommended.git",
  3260. "reference": "361d61f272767e0e34f8ac8c7a51e7c14e387714"
  3261. },
  3262. "dist": {
  3263. "type": "zip",
  3264. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/361d61f272767e0e34f8ac8c7a51e7c14e387714",
  3265. "reference": "361d61f272767e0e34f8ac8c7a51e7c14e387714",
  3266. "shasum": ""
  3267. },
  3268. "require": {
  3269. "asm89/stack-cors": "1.2.0",
  3270. "composer/installers": "v1.7.0",
  3271. "composer/semver": "1.5.0",
  3272. "doctrine/annotations": "v1.4.0",
  3273. "doctrine/cache": "v1.6.2",
  3274. "doctrine/collections": "v1.4.0",
  3275. "doctrine/common": "v2.7.3",
  3276. "doctrine/inflector": "v1.2.0",
  3277. "doctrine/lexer": "1.0.2",
  3278. "drupal/core": "8.8.6",
  3279. "easyrdf/easyrdf": "0.9.1",
  3280. "egulias/email-validator": "2.1.11",
  3281. "guzzlehttp/guzzle": "6.3.3",
  3282. "guzzlehttp/promises": "v1.3.1",
  3283. "guzzlehttp/psr7": "1.6.1",
  3284. "masterminds/html5": "2.3.0",
  3285. "paragonie/random_compat": "v9.99.99",
  3286. "pear/archive_tar": "1.4.9",
  3287. "pear/console_getopt": "v1.4.2",
  3288. "pear/pear-core-minimal": "v1.10.9",
  3289. "pear/pear_exception": "v1.0.0",
  3290. "psr/container": "1.0.0",
  3291. "psr/http-message": "1.0.1",
  3292. "psr/log": "1.1.0",
  3293. "ralouphie/getallheaders": "3.0.3",
  3294. "stack/builder": "v1.0.5",
  3295. "symfony-cmf/routing": "1.4.1",
  3296. "symfony/class-loader": "v3.4.35",
  3297. "symfony/console": "v3.4.35",
  3298. "symfony/debug": "v3.4.35",
  3299. "symfony/dependency-injection": "v3.4.35",
  3300. "symfony/event-dispatcher": "v3.4.35",
  3301. "symfony/http-foundation": "v3.4.35",
  3302. "symfony/http-kernel": "v3.4.35",
  3303. "symfony/polyfill-ctype": "v1.12.0",
  3304. "symfony/polyfill-iconv": "v1.12.0",
  3305. "symfony/polyfill-mbstring": "v1.12.0",
  3306. "symfony/polyfill-php56": "v1.12.0",
  3307. "symfony/polyfill-php70": "v1.12.0",
  3308. "symfony/polyfill-util": "v1.12.0",
  3309. "symfony/process": "v3.4.35",
  3310. "symfony/psr-http-message-bridge": "v1.1.2",
  3311. "symfony/routing": "v3.4.35",
  3312. "symfony/serializer": "v3.4.35",
  3313. "symfony/translation": "v3.4.35",
  3314. "symfony/validator": "v3.4.35",
  3315. "symfony/yaml": "v3.4.35",
  3316. "twig/twig": "v1.42.3",
  3317. "typo3/phar-stream-wrapper": "v3.1.3",
  3318. "zendframework/zend-diactoros": "1.8.7",
  3319. "zendframework/zend-escaper": "2.6.1",
  3320. "zendframework/zend-feed": "2.12.0",
  3321. "zendframework/zend-stdlib": "3.2.1"
  3322. },
  3323. "conflict": {
  3324. "webflo/drupal-core-strict": "*"
  3325. },
  3326. "type": "metapackage",
  3327. "notification-url": "https://packagist.org/downloads/",
  3328. "license": [
  3329. "GPL-2.0-or-later"
  3330. ],
  3331. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  3332. "time": "2020-05-20T08:22:02+00:00"
  3333. },
  3334. {
  3335. "name": "drupal/ctools",
  3336. "version": "3.4.0",
  3337. "source": {
  3338. "type": "git",
  3339. "url": "https://git.drupalcode.org/project/ctools.git",
  3340. "reference": "8.x-3.4"
  3341. },
  3342. "dist": {
  3343. "type": "zip",
  3344. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  3345. "reference": "8.x-3.4",
  3346. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  3347. },
  3348. "require": {
  3349. "drupal/core": "^8.7.7 || ^9"
  3350. },
  3351. "type": "drupal-module",
  3352. "extra": {
  3353. "drupal": {
  3354. "version": "8.x-3.4",
  3355. "datestamp": "1585763383",
  3356. "security-coverage": {
  3357. "status": "covered",
  3358. "message": "Covered by Drupal's security advisory policy"
  3359. }
  3360. }
  3361. },
  3362. "notification-url": "https://packages.drupal.org/8/downloads",
  3363. "license": [
  3364. "GPL-2.0+"
  3365. ],
  3366. "authors": [
  3367. {
  3368. "name": "Kris Vanderwater (EclipseGc)",
  3369. "homepage": "https://www.drupal.org/u/eclipsegc",
  3370. "role": "Maintainer"
  3371. },
  3372. {
  3373. "name": "Jakob Perry (japerry)",
  3374. "homepage": "https://www.drupal.org/u/japerry",
  3375. "role": "Maintainer"
  3376. },
  3377. {
  3378. "name": "Tim Plunkett (tim.plunkett)",
  3379. "homepage": "https://www.drupal.org/u/timplunkett",
  3380. "role": "Maintainer"
  3381. },
  3382. {
  3383. "name": "James Gilliland (neclimdul)",
  3384. "homepage": "https://www.drupal.org/u/neclimdul",
  3385. "role": "Maintainer"
  3386. },
  3387. {
  3388. "name": "Daniel Wehner (dawehner)",
  3389. "homepage": "https://www.drupal.org/u/dawehner",
  3390. "role": "Maintainer"
  3391. },
  3392. {
  3393. "name": "joelpittet",
  3394. "homepage": "https://www.drupal.org/user/160302"
  3395. },
  3396. {
  3397. "name": "merlinofchaos",
  3398. "homepage": "https://www.drupal.org/user/26979"
  3399. },
  3400. {
  3401. "name": "neclimdul",
  3402. "homepage": "https://www.drupal.org/user/48673"
  3403. },
  3404. {
  3405. "name": "sdboyer",
  3406. "homepage": "https://www.drupal.org/user/146719"
  3407. },
  3408. {
  3409. "name": "sun",
  3410. "homepage": "https://www.drupal.org/user/54136"
  3411. },
  3412. {
  3413. "name": "tim.plunkett",
  3414. "homepage": "https://www.drupal.org/user/241634"
  3415. }
  3416. ],
  3417. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3418. "homepage": "https://www.drupal.org/project/ctools",
  3419. "support": {
  3420. "source": "https://git.drupalcode.org/project/ctools",
  3421. "issues": "https://www.drupal.org/project/issues/ctools"
  3422. }
  3423. },
  3424. {
  3425. "name": "drupal/date_range_formatter",
  3426. "version": "3.1.0",
  3427. "source": {
  3428. "type": "git",
  3429. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3430. "reference": "8.x-3.1"
  3431. },
  3432. "dist": {
  3433. "type": "zip",
  3434. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3435. "reference": "8.x-3.1",
  3436. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3437. },
  3438. "require": {
  3439. "drupal/core": "*"
  3440. },
  3441. "type": "drupal-module",
  3442. "extra": {
  3443. "drupal": {
  3444. "version": "8.x-3.1",
  3445. "datestamp": "1502454544",
  3446. "security-coverage": {
  3447. "status": "covered",
  3448. "message": "Covered by Drupal's security advisory policy"
  3449. }
  3450. }
  3451. },
  3452. "notification-url": "https://packages.drupal.org/8/downloads",
  3453. "license": [
  3454. "GPL-2.0-or-later"
  3455. ],
  3456. "authors": [
  3457. {
  3458. "name": "maximpodorov",
  3459. "homepage": "https://www.drupal.org/user/515310"
  3460. },
  3461. {
  3462. "name": "sudishth",
  3463. "homepage": "https://www.drupal.org/user/1440562"
  3464. }
  3465. ],
  3466. "description": "Formats date ranges.",
  3467. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3468. "support": {
  3469. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3470. }
  3471. },
  3472. {
  3473. "name": "drupal/devel",
  3474. "version": "2.1.0",
  3475. "source": {
  3476. "type": "git",
  3477. "url": "https://git.drupalcode.org/project/devel.git",
  3478. "reference": "8.x-2.1"
  3479. },
  3480. "dist": {
  3481. "type": "zip",
  3482. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3483. "reference": "8.x-2.1",
  3484. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3485. },
  3486. "require": {
  3487. "drupal/core": "~8.0",
  3488. "symfony/var-dumper": "~2.7|^3|^4"
  3489. },
  3490. "type": "drupal-module",
  3491. "extra": {
  3492. "drupal": {
  3493. "version": "8.x-2.1",
  3494. "datestamp": "1556799496",
  3495. "security-coverage": {
  3496. "status": "covered",
  3497. "message": "Covered by Drupal's security advisory policy"
  3498. }
  3499. },
  3500. "drush": {
  3501. "services": {
  3502. "drush.services.yml": "^9"
  3503. }
  3504. }
  3505. },
  3506. "notification-url": "https://packages.drupal.org/8/downloads",
  3507. "license": [
  3508. "GPL-2.0+"
  3509. ],
  3510. "authors": [
  3511. {
  3512. "name": "Moshe Weitzman",
  3513. "homepage": "https://github.com/weitzman",
  3514. "email": "weitzman@tejasa.com",
  3515. "role": "Maintainer"
  3516. },
  3517. {
  3518. "name": "Hans Salvisberg",
  3519. "homepage": "https://www.drupal.org/u/salvis",
  3520. "email": "drupal@salvisberg.com",
  3521. "role": "Maintainer"
  3522. },
  3523. {
  3524. "name": "Luca Lusso",
  3525. "homepage": "https://www.drupal.org/u/lussoluca",
  3526. "role": "Maintainer"
  3527. },
  3528. {
  3529. "name": "Marco (willzyx)",
  3530. "homepage": "https://www.drupal.org/u/willzyx",
  3531. "role": "Maintainer"
  3532. },
  3533. {
  3534. "name": "See contributors",
  3535. "homepage": "https://www.drupal.org/node/3236/committers"
  3536. }
  3537. ],
  3538. "description": "Various blocks, pages, and functions for developers.",
  3539. "homepage": "http://drupal.org/project/devel",
  3540. "support": {
  3541. "source": "http://cgit.drupalcode.org/devel",
  3542. "issues": "http://drupal.org/project/devel",
  3543. "irc": "irc://irc.freenode.org/drupal-contribute"
  3544. }
  3545. },
  3546. {
  3547. "name": "drupal/domain",
  3548. "version": "1.0.0-alpha16",
  3549. "source": {
  3550. "type": "git",
  3551. "url": "https://git.drupalcode.org/project/domain.git",
  3552. "reference": "8.x-1.0-alpha16"
  3553. },
  3554. "dist": {
  3555. "type": "zip",
  3556. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha16.zip",
  3557. "reference": "8.x-1.0-alpha16",
  3558. "shasum": "d0088936af09e922ec873080d7960a1dc020bef8"
  3559. },
  3560. "require": {
  3561. "drupal/core": "^8.5"
  3562. },
  3563. "require-dev": {
  3564. "drupal/domain_access": "*"
  3565. },
  3566. "type": "drupal-module",
  3567. "extra": {
  3568. "drupal": {
  3569. "version": "8.x-1.0-alpha16",
  3570. "datestamp": "1561126081",
  3571. "security-coverage": {
  3572. "status": "not-covered",
  3573. "message": "Alpha releases are not covered by Drupal security advisories."
  3574. }
  3575. }
  3576. },
  3577. "notification-url": "https://packages.drupal.org/8/downloads",
  3578. "license": [
  3579. "GPL-2.0-or-later"
  3580. ],
  3581. "authors": [
  3582. {
  3583. "name": "agentrickard",
  3584. "homepage": "https://www.drupal.org/user/20975"
  3585. },
  3586. {
  3587. "name": "nonsie",
  3588. "homepage": "https://www.drupal.org/user/29899"
  3589. }
  3590. ],
  3591. "description": "Creates domain records within a Drupal installation.",
  3592. "homepage": "https://www.drupal.org/project/domain",
  3593. "support": {
  3594. "source": "https://git.drupalcode.org/project/domain"
  3595. }
  3596. },
  3597. {
  3598. "name": "drupal/domain_access",
  3599. "version": "1.0.0-alpha16",
  3600. "require": {
  3601. "drupal/core": "*",
  3602. "drupal/domain": "self.version"
  3603. },
  3604. "type": "metapackage",
  3605. "extra": {
  3606. "drupal": {
  3607. "version": "8.x-1.0-alpha16",
  3608. "datestamp": "1561126081",
  3609. "security-coverage": {
  3610. "status": "not-covered",
  3611. "message": "Alpha releases are not covered by Drupal security advisories."
  3612. }
  3613. }
  3614. },
  3615. "notification-url": "https://packages.drupal.org/8/downloads",
  3616. "license": [
  3617. "GPL-2.0-or-later"
  3618. ],
  3619. "authors": [
  3620. {
  3621. "name": "agentrickard",
  3622. "homepage": "https://www.drupal.org/user/20975"
  3623. },
  3624. {
  3625. "name": "nonsie",
  3626. "homepage": "https://www.drupal.org/user/29899"
  3627. }
  3628. ],
  3629. "description": "Domain-based access control for content.",
  3630. "homepage": "https://www.drupal.org/project/domain",
  3631. "support": {
  3632. "source": "https://git.drupalcode.org/project/domain"
  3633. }
  3634. },
  3635. {
  3636. "name": "drupal/domain_config",
  3637. "version": "1.0.0-alpha16",
  3638. "require": {
  3639. "drupal/core": "~8.0",
  3640. "drupal/domain": "self.version"
  3641. },
  3642. "type": "metapackage",
  3643. "extra": {
  3644. "drupal": {
  3645. "version": "8.x-1.0-alpha16",
  3646. "datestamp": "1561126081",
  3647. "security-coverage": {
  3648. "status": "not-covered",
  3649. "message": "Alpha releases are not covered by Drupal security advisories."
  3650. }
  3651. }
  3652. },
  3653. "notification-url": "https://packages.drupal.org/8/downloads",
  3654. "license": [
  3655. "GPL-2.0-or-later"
  3656. ],
  3657. "authors": [
  3658. {
  3659. "name": "agentrickard",
  3660. "homepage": "https://www.drupal.org/user/20975"
  3661. },
  3662. {
  3663. "name": "nonsie",
  3664. "homepage": "https://www.drupal.org/user/29899"
  3665. }
  3666. ],
  3667. "description": "Allows domain specific configuration.",
  3668. "homepage": "https://www.drupal.org/project/domain",
  3669. "support": {
  3670. "source": "https://git.drupalcode.org/project/domain"
  3671. }
  3672. },
  3673. {
  3674. "name": "drupal/domain_menu_access",
  3675. "version": "dev-1.x",
  3676. "source": {
  3677. "type": "git",
  3678. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3679. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  3680. },
  3681. "require": {
  3682. "drupal/core": "~8.0",
  3683. "drupal/domain": "^1",
  3684. "drupal/domain_access": "^1"
  3685. },
  3686. "type": "drupal-module",
  3687. "extra": {
  3688. "branch-alias": {
  3689. "dev-1.x": "1.x-dev"
  3690. },
  3691. "drupal": {
  3692. "version": "8.x-1.0-alpha2+3-dev",
  3693. "datestamp": "1551553085",
  3694. "security-coverage": {
  3695. "status": "not-covered",
  3696. "message": "Dev releases are not covered by Drupal security advisories."
  3697. }
  3698. }
  3699. },
  3700. "notification-url": "https://packages.drupal.org/8/downloads",
  3701. "license": [
  3702. "GPL-2.0+"
  3703. ],
  3704. "authors": [
  3705. {
  3706. "name": "Sebastien @Actualys",
  3707. "homepage": "https://www.drupal.org/user/380104"
  3708. },
  3709. {
  3710. "name": "maciej.zgadzaj",
  3711. "homepage": "https://www.drupal.org/user/271491"
  3712. },
  3713. {
  3714. "name": "pifagor",
  3715. "homepage": "https://www.drupal.org/user/2375692"
  3716. }
  3717. ],
  3718. "description": "Domain-based access control for menu link.",
  3719. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3720. "support": {
  3721. "source": "https://git.drupalcode.org/project/domain_menu_access"
  3722. },
  3723. "time": "2019-04-11T06:07:16+00:00"
  3724. },
  3725. {
  3726. "name": "drupal/domain_site_settings",
  3727. "version": "1.3.0",
  3728. "source": {
  3729. "type": "git",
  3730. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3731. "reference": "8.x-1.3"
  3732. },
  3733. "dist": {
  3734. "type": "zip",
  3735. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3736. "reference": "8.x-1.3",
  3737. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3738. },
  3739. "require": {
  3740. "drupal/core": "~8.0",
  3741. "drupal/domain": "*",
  3742. "drupal/domain_config": "*"
  3743. },
  3744. "type": "drupal-module",
  3745. "extra": {
  3746. "branch-alias": {
  3747. "dev-1.x": "1.x-dev"
  3748. },
  3749. "drupal": {
  3750. "version": "8.x-1.3",
  3751. "datestamp": "1537684980",
  3752. "security-coverage": {
  3753. "status": "covered",
  3754. "message": "Covered by Drupal's security advisory policy"
  3755. }
  3756. },
  3757. "patches_applied": {
  3758. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  3759. }
  3760. },
  3761. "notification-url": "https://packages.drupal.org/8/downloads",
  3762. "license": [
  3763. "GPL-2.0+"
  3764. ],
  3765. "authors": [
  3766. {
  3767. "name": "aloknarwaria",
  3768. "homepage": "https://www.drupal.org/user/906640"
  3769. },
  3770. {
  3771. "name": "malaynayak",
  3772. "homepage": "https://www.drupal.org/user/3529755"
  3773. }
  3774. ],
  3775. "description": "Basic Site Setting for Domains.",
  3776. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3777. "keywords": [
  3778. "Drupal"
  3779. ],
  3780. "support": {
  3781. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3782. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3783. }
  3784. },
  3785. {
  3786. "name": "drupal/email_registration",
  3787. "version": "1.0.0",
  3788. "source": {
  3789. "type": "git",
  3790. "url": "https://git.drupalcode.org/project/email_registration.git",
  3791. "reference": "8.x-1.0"
  3792. },
  3793. "dist": {
  3794. "type": "zip",
  3795. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0.zip",
  3796. "reference": "8.x-1.0",
  3797. "shasum": "f960f489f4273212b924a2d54e6cb8e43adb633e"
  3798. },
  3799. "require": {
  3800. "drupal/core": "*"
  3801. },
  3802. "conflict": {
  3803. "drupal/commerce": "<2.12"
  3804. },
  3805. "require-dev": {
  3806. "drupal/commerce": "^2.0"
  3807. },
  3808. "type": "drupal-module",
  3809. "extra": {
  3810. "branch-alias": {
  3811. "dev-1.x": "1.x-dev"
  3812. },
  3813. "drupal": {
  3814. "version": "8.x-1.0",
  3815. "datestamp": "1580243964",
  3816. "security-coverage": {
  3817. "status": "covered",
  3818. "message": "Covered by Drupal's security advisory policy"
  3819. }
  3820. }
  3821. },
  3822. "notification-url": "https://packages.drupal.org/8/downloads",
  3823. "license": [
  3824. "GPL-2.0+"
  3825. ],
  3826. "authors": [
  3827. {
  3828. "name": "Greg Knaddison (greggles)",
  3829. "homepage": "https://www.drupal.org/u/greggles",
  3830. "role": "Maintainer"
  3831. },
  3832. {
  3833. "name": "Andrey Postnikov (andypost)",
  3834. "homepage": "https://www.drupal.org/u/andypost",
  3835. "role": "Maintainer"
  3836. },
  3837. {
  3838. "name": "Chris Herberte",
  3839. "homepage": "https://www.drupal.org/u/chris-herberte",
  3840. "role": "Maintainer"
  3841. },
  3842. {
  3843. "name": "Moshe Weitzman (moshe weitzman)",
  3844. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3845. "role": "Maintainer"
  3846. }
  3847. ],
  3848. "description": "Allows users to register with an email address as their username.",
  3849. "homepage": "https://www.drupal.org/project/email_registration",
  3850. "support": {
  3851. "source": "http://cgit.drupalcode.org/email_registration",
  3852. "issues": "http://drupal.org/project/issues/email_registration"
  3853. }
  3854. },
  3855. {
  3856. "name": "drupal/entity",
  3857. "version": "1.0.0",
  3858. "source": {
  3859. "type": "git",
  3860. "url": "https://git.drupalcode.org/project/entity.git",
  3861. "reference": "8.x-1.0"
  3862. },
  3863. "dist": {
  3864. "type": "zip",
  3865. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0.zip",
  3866. "reference": "8.x-1.0",
  3867. "shasum": "ac359ada43416ca3a8d0e44f2985b0a9fae07625"
  3868. },
  3869. "require": {
  3870. "drupal/core": "^8.7.7 || ^9"
  3871. },
  3872. "type": "drupal-module",
  3873. "extra": {
  3874. "branch-alias": {
  3875. "dev-1.x": "1.x-dev"
  3876. },
  3877. "drupal": {
  3878. "version": "8.x-1.0",
  3879. "datestamp": "1582735747",
  3880. "security-coverage": {
  3881. "status": "covered",
  3882. "message": "Covered by Drupal's security advisory policy"
  3883. }
  3884. }
  3885. },
  3886. "notification-url": "https://packages.drupal.org/8/downloads",
  3887. "license": [
  3888. "GPL-2.0+"
  3889. ],
  3890. "authors": [
  3891. {
  3892. "name": "Berdir",
  3893. "homepage": "https://www.drupal.org/user/214652"
  3894. },
  3895. {
  3896. "name": "bojanz",
  3897. "homepage": "https://www.drupal.org/user/86106"
  3898. },
  3899. {
  3900. "name": "dawehner",
  3901. "homepage": "https://www.drupal.org/user/99340"
  3902. },
  3903. {
  3904. "name": "dixon_",
  3905. "homepage": "https://www.drupal.org/user/239911"
  3906. },
  3907. {
  3908. "name": "fago",
  3909. "homepage": "https://www.drupal.org/user/16747"
  3910. }
  3911. ],
  3912. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3913. "homepage": "http://drupal.org/project/entity",
  3914. "support": {
  3915. "source": "https://git.drupalcode.org/project/entity"
  3916. }
  3917. },
  3918. {
  3919. "name": "drupal/features",
  3920. "version": "3.8.0",
  3921. "source": {
  3922. "type": "git",
  3923. "url": "https://git.drupalcode.org/project/features.git",
  3924. "reference": "8.x-3.8"
  3925. },
  3926. "dist": {
  3927. "type": "zip",
  3928. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
  3929. "reference": "8.x-3.8",
  3930. "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
  3931. },
  3932. "require": {
  3933. "drupal/config_update": "^1.4",
  3934. "drupal/core": "*"
  3935. },
  3936. "type": "drupal-module",
  3937. "extra": {
  3938. "drupal": {
  3939. "version": "8.x-3.8",
  3940. "datestamp": "1536512284",
  3941. "security-coverage": {
  3942. "status": "covered",
  3943. "message": "Covered by Drupal's security advisory policy"
  3944. }
  3945. },
  3946. "drush": {
  3947. "services": {
  3948. "drush.services.yml": "^9"
  3949. }
  3950. }
  3951. },
  3952. "notification-url": "https://packages.drupal.org/8/downloads",
  3953. "license": [
  3954. "GPL-2.0+"
  3955. ],
  3956. "authors": [
  3957. {
  3958. "name": "dawehner",
  3959. "homepage": "https://www.drupal.org/user/99340"
  3960. },
  3961. {
  3962. "name": "donquixote",
  3963. "homepage": "https://www.drupal.org/user/459338"
  3964. },
  3965. {
  3966. "name": "e2thex",
  3967. "homepage": "https://www.drupal.org/user/189123"
  3968. },
  3969. {
  3970. "name": "febbraro",
  3971. "homepage": "https://www.drupal.org/user/43670"
  3972. },
  3973. {
  3974. "name": "flocondetoile",
  3975. "homepage": "https://www.drupal.org/user/2006064"
  3976. },
  3977. {
  3978. "name": "jmiccolis",
  3979. "homepage": "https://www.drupal.org/user/31731"
  3980. },
  3981. {
  3982. "name": "joseph.olstad",
  3983. "homepage": "https://www.drupal.org/user/1321830"
  3984. },
  3985. {
  3986. "name": "mpotter",
  3987. "homepage": "https://www.drupal.org/user/616192"
  3988. },
  3989. {
  3990. "name": "nedjo",
  3991. "homepage": "https://www.drupal.org/user/4481"
  3992. },
  3993. {
  3994. "name": "tim.plunkett",
  3995. "homepage": "https://www.drupal.org/user/241634"
  3996. }
  3997. ],
  3998. "description": "Enables administrators to package configuration into modules",
  3999. "homepage": "https://www.drupal.org/project/features",
  4000. "support": {
  4001. "source": "https://git.drupalcode.org/project/features"
  4002. }
  4003. },
  4004. {
  4005. "name": "drupal/field_group",
  4006. "version": "3.0.0",
  4007. "source": {
  4008. "type": "git",
  4009. "url": "https://git.drupalcode.org/project/field_group.git",
  4010. "reference": "8.x-3.0"
  4011. },
  4012. "dist": {
  4013. "type": "zip",
  4014. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0.zip",
  4015. "reference": "8.x-3.0",
  4016. "shasum": "8d87cdc4abc417aa4d411bffcaeb0a3ef1afa497"
  4017. },
  4018. "require": {
  4019. "drupal/core": "^8 || ^9"
  4020. },
  4021. "type": "drupal-module",
  4022. "extra": {
  4023. "drupal": {
  4024. "version": "8.x-3.0",
  4025. "datestamp": "1580250787",
  4026. "security-coverage": {
  4027. "status": "covered",
  4028. "message": "Covered by Drupal's security advisory policy"
  4029. }
  4030. }
  4031. },
  4032. "notification-url": "https://packages.drupal.org/8/downloads",
  4033. "license": [
  4034. "GPL-2.0+"
  4035. ],
  4036. "authors": [
  4037. {
  4038. "name": "Hydra",
  4039. "homepage": "https://www.drupal.org/user/647364"
  4040. },
  4041. {
  4042. "name": "Stalski",
  4043. "homepage": "https://www.drupal.org/user/322618"
  4044. },
  4045. {
  4046. "name": "jyve",
  4047. "homepage": "https://www.drupal.org/user/591438"
  4048. },
  4049. {
  4050. "name": "nils.destoop",
  4051. "homepage": "https://www.drupal.org/user/361625"
  4052. },
  4053. {
  4054. "name": "swentel",
  4055. "homepage": "https://www.drupal.org/user/107403"
  4056. }
  4057. ],
  4058. "description": "Provides the field_group module.",
  4059. "homepage": "https://www.drupal.org/project/field_group",
  4060. "support": {
  4061. "source": "https://git.drupalcode.org/project/field_group"
  4062. }
  4063. },
  4064. {
  4065. "name": "drupal/filefield_sources",
  4066. "version": "dev-1.x",
  4067. "source": {
  4068. "type": "git",
  4069. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4070. "reference": "38dfa6622a8876854887feefd3c348583ef0586f"
  4071. },
  4072. "require": {
  4073. "drupal/core": "*"
  4074. },
  4075. "require-dev": {
  4076. "drupal/imce": "*"
  4077. },
  4078. "type": "drupal-module",
  4079. "extra": {
  4080. "branch-alias": {
  4081. "dev-1.x": "1.x-dev"
  4082. },
  4083. "drupal": {
  4084. "version": "8.x-1.0-alpha2+2-dev",
  4085. "datestamp": "1579885386",
  4086. "security-coverage": {
  4087. "status": "not-covered",
  4088. "message": "Dev releases are not covered by Drupal security advisories."
  4089. }
  4090. }
  4091. },
  4092. "notification-url": "https://packages.drupal.org/8/downloads",
  4093. "license": [
  4094. "GPL-2.0-or-later"
  4095. ],
  4096. "authors": [
  4097. {
  4098. "name": "Nate Lampton (quicksketch)",
  4099. "homepage": "https://www.drupal.org/u/quicksketch",
  4100. "role": "Maintainer"
  4101. },
  4102. {
  4103. "name": "Andrey Khromyshev (profak)",
  4104. "homepage": "https://www.drupal.org/u/profak",
  4105. "role": "Maintainer"
  4106. },
  4107. {
  4108. "name": "David Valdez (gnuget)",
  4109. "homepage": "https://www.drupal.org/u/gnuget",
  4110. "role": "Maintainer"
  4111. }
  4112. ],
  4113. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4114. "homepage": "https://www.drupal.org/project/filefield_sources",
  4115. "support": {
  4116. "source": "https://git.drupalcode.org/project/filefield_sources",
  4117. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4118. "irc": "irc://irc.freenode.org/drupal-contribute"
  4119. },
  4120. "time": "2020-01-30T15:32:54+00:00"
  4121. },
  4122. {
  4123. "name": "drupal/filter_perms",
  4124. "version": "dev-1.x",
  4125. "source": {
  4126. "type": "git",
  4127. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4128. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4129. },
  4130. "require": {
  4131. "drupal/core": "*"
  4132. },
  4133. "type": "drupal-module",
  4134. "extra": {
  4135. "branch-alias": {
  4136. "dev-1.x": "1.x-dev"
  4137. },
  4138. "drupal": {
  4139. "version": "8.x-1.x-dev",
  4140. "datestamp": "1469645939",
  4141. "security-coverage": {
  4142. "status": "not-covered",
  4143. "message": "Dev releases are not covered by Drupal security advisories."
  4144. }
  4145. }
  4146. },
  4147. "notification-url": "https://packages.drupal.org/8/downloads",
  4148. "license": [
  4149. "GPL-2.0-or-later"
  4150. ],
  4151. "authors": [
  4152. {
  4153. "name": "cYu",
  4154. "homepage": "https://www.drupal.org/user/202205"
  4155. },
  4156. {
  4157. "name": "deekayen",
  4158. "homepage": "https://www.drupal.org/user/972"
  4159. },
  4160. {
  4161. "name": "willzyx",
  4162. "homepage": "https://www.drupal.org/user/1043862"
  4163. }
  4164. ],
  4165. "description": "Provides role and module filters to simplify the user permissions page.",
  4166. "homepage": "https://www.drupal.org/project/filter_perms",
  4167. "support": {
  4168. "source": "https://git.drupalcode.org/project/filter_perms"
  4169. },
  4170. "time": "2016-07-27T19:01:11+00:00"
  4171. },
  4172. {
  4173. "name": "drupal/honeypot",
  4174. "version": "1.30.0",
  4175. "source": {
  4176. "type": "git",
  4177. "url": "https://git.drupalcode.org/project/honeypot.git",
  4178. "reference": "8.x-1.30"
  4179. },
  4180. "dist": {
  4181. "type": "zip",
  4182. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.30.zip",
  4183. "reference": "8.x-1.30",
  4184. "shasum": "1d7983e8e07feee4f13e4b05c9a10db15ae2097e"
  4185. },
  4186. "require": {
  4187. "drupal/core": "~8.0"
  4188. },
  4189. "type": "drupal-module",
  4190. "extra": {
  4191. "drupal": {
  4192. "version": "8.x-1.30",
  4193. "datestamp": "1576274288",
  4194. "security-coverage": {
  4195. "status": "covered",
  4196. "message": "Covered by Drupal's security advisory policy"
  4197. }
  4198. }
  4199. },
  4200. "notification-url": "https://packages.drupal.org/8/downloads",
  4201. "license": [
  4202. "GPL-2.0+"
  4203. ],
  4204. "authors": [
  4205. {
  4206. "name": "Jeff Geerling",
  4207. "homepage": "https://www.drupal.org/user/213194",
  4208. "email": "geerlingguy@mac.com"
  4209. },
  4210. {
  4211. "name": "geerlingguy",
  4212. "homepage": "https://www.drupal.org/user/389011"
  4213. },
  4214. {
  4215. "name": "vijaycs85",
  4216. "homepage": "https://www.drupal.org/user/93488"
  4217. }
  4218. ],
  4219. "description": "Mitigates spam form submissions using the honeypot method.",
  4220. "homepage": "https://www.drupal.org/project/honeypot",
  4221. "keywords": [
  4222. "deterrent",
  4223. "form",
  4224. "honeypot",
  4225. "honeytrap",
  4226. "php",
  4227. "spam"
  4228. ],
  4229. "support": {
  4230. "source": "https://git.drupalcode.org/project/honeypot"
  4231. }
  4232. },
  4233. {
  4234. "name": "drupal/linkit",
  4235. "version": "5.0.0-beta10",
  4236. "source": {
  4237. "type": "git",
  4238. "url": "https://git.drupalcode.org/project/linkit.git",
  4239. "reference": "8.x-5.0-beta10"
  4240. },
  4241. "dist": {
  4242. "type": "zip",
  4243. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta10.zip",
  4244. "reference": "8.x-5.0-beta10",
  4245. "shasum": "9980707514ec63fd1bdc27eebd4af243efda97a6"
  4246. },
  4247. "require": {
  4248. "drupal/core": "~8.0"
  4249. },
  4250. "require-dev": {
  4251. "drupal/imce": "*"
  4252. },
  4253. "type": "drupal-module",
  4254. "extra": {
  4255. "drupal": {
  4256. "version": "8.x-5.0-beta10",
  4257. "datestamp": "1573783085",
  4258. "security-coverage": {
  4259. "status": "not-covered",
  4260. "message": "Beta releases are not covered by Drupal security advisories."
  4261. }
  4262. }
  4263. },
  4264. "notification-url": "https://packages.drupal.org/8/downloads",
  4265. "license": [
  4266. "GPL-2.0+"
  4267. ],
  4268. "authors": [
  4269. {
  4270. "name": "Emil Stjerneman",
  4271. "homepage": "https://stjerneman.com",
  4272. "email": "emil@stjerneman.com",
  4273. "role": "Maintainer"
  4274. }
  4275. ],
  4276. "description": "Linkit - Enriched linking experience",
  4277. "homepage": "http://drupal.org/project/linkit",
  4278. "support": {
  4279. "source": "http://cgit.drupalcode.org/linkit",
  4280. "issues": "http://drupal.org/project/linkit"
  4281. }
  4282. },
  4283. {
  4284. "name": "drupal/login_emailusername",
  4285. "version": "1.1.0",
  4286. "source": {
  4287. "type": "git",
  4288. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4289. "reference": "8.x-1.1"
  4290. },
  4291. "dist": {
  4292. "type": "zip",
  4293. "url": "https://ftp.drupal.org/files/projects/login_emailusername-8.x-1.1.zip",
  4294. "reference": "8.x-1.1",
  4295. "shasum": "f484b76b538f4dbbae5a75b49577f4ddf576809e"
  4296. },
  4297. "require": {
  4298. "drupal/core": "~8.0"
  4299. },
  4300. "type": "drupal-module",
  4301. "extra": {
  4302. "branch-alias": {
  4303. "dev-1.x": "1.x-dev"
  4304. },
  4305. "drupal": {
  4306. "version": "8.x-1.1",
  4307. "datestamp": "1483456142",
  4308. "security-coverage": {
  4309. "status": "covered",
  4310. "message": "Covered by Drupal's security advisory policy"
  4311. }
  4312. },
  4313. "patches_applied": {
  4314. "rest login email or user name https://www.drupal.org/project/login_emailusername/issues/2910511#comment-12564801": "https://www.drupal.org/files/issues/2018-04-10/allow-rest-login-with-email-2910511-9.patch"
  4315. }
  4316. },
  4317. "notification-url": "https://packages.drupal.org/8/downloads",
  4318. "license": [
  4319. "GPL-2.0-or-later"
  4320. ],
  4321. "authors": [
  4322. {
  4323. "name": "rjjakes",
  4324. "homepage": "https://www.drupal.org/user/3457245"
  4325. }
  4326. ],
  4327. "description": "Allow users to log in with either their username OR email address using the same input box on the login form.",
  4328. "homepage": "https://www.drupal.org/project/login_emailusername",
  4329. "support": {
  4330. "source": "https://git.drupalcode.org/project/login_emailusername"
  4331. }
  4332. },
  4333. {
  4334. "name": "drupal/maillog",
  4335. "version": "dev-1.x",
  4336. "source": {
  4337. "type": "git",
  4338. "url": "https://git.drupalcode.org/project/maillog.git",
  4339. "reference": "3ec675bd7842c04bc01860fa8b3f424f95a17d93"
  4340. },
  4341. "require": {
  4342. "drupal/core": "*"
  4343. },
  4344. "type": "drupal-module",
  4345. "extra": {
  4346. "branch-alias": {
  4347. "dev-1.x": "1.x-dev"
  4348. },
  4349. "drupal": {
  4350. "version": "8.x-1.x-dev",
  4351. "datestamp": "1470431939",
  4352. "security-coverage": {
  4353. "status": "not-covered",
  4354. "message": "Project has not opted into security advisory coverage!"
  4355. }
  4356. }
  4357. },
  4358. "notification-url": "https://packages.drupal.org/8/downloads",
  4359. "license": [
  4360. "GPL-2.0-or-later"
  4361. ],
  4362. "authors": [
  4363. {
  4364. "name": "Berdir",
  4365. "homepage": "https://www.drupal.org/user/214652"
  4366. },
  4367. {
  4368. "name": "DamienMcKenna",
  4369. "homepage": "https://www.drupal.org/user/108450"
  4370. },
  4371. {
  4372. "name": "miro_dietiker",
  4373. "homepage": "https://www.drupal.org/user/227761"
  4374. },
  4375. {
  4376. "name": "pluess",
  4377. "homepage": "https://www.drupal.org/user/84659"
  4378. }
  4379. ],
  4380. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4381. "homepage": "https://www.drupal.org/project/maillog",
  4382. "support": {
  4383. "source": "https://git.drupalcode.org/project/maillog"
  4384. },
  4385. "time": "2020-05-19T01:33:41+00:00"
  4386. },
  4387. {
  4388. "name": "drupal/matomo",
  4389. "version": "1.9.0",
  4390. "source": {
  4391. "type": "git",
  4392. "url": "https://git.drupalcode.org/project/matomo.git",
  4393. "reference": "8.x-1.9"
  4394. },
  4395. "dist": {
  4396. "type": "zip",
  4397. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4398. "reference": "8.x-1.9",
  4399. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4400. },
  4401. "require": {
  4402. "drupal/core": "~8.5"
  4403. },
  4404. "require-dev": {
  4405. "drupal/php": "*",
  4406. "drupal/token": "*"
  4407. },
  4408. "type": "drupal-module",
  4409. "extra": {
  4410. "branch-alias": {
  4411. "dev-1.x": "1.x-dev"
  4412. },
  4413. "drupal": {
  4414. "version": "8.x-1.9",
  4415. "datestamp": "1549615080",
  4416. "security-coverage": {
  4417. "status": "covered",
  4418. "message": "Covered by Drupal's security advisory policy"
  4419. }
  4420. }
  4421. },
  4422. "notification-url": "https://packages.drupal.org/8/downloads",
  4423. "license": [
  4424. "GPL-2.0+"
  4425. ],
  4426. "authors": [
  4427. {
  4428. "name": "hass",
  4429. "homepage": "https://www.drupal.org/u/hass"
  4430. },
  4431. {
  4432. "name": "See other contributors",
  4433. "homepage": "https://www.drupal.org/node/247808/committers"
  4434. }
  4435. ],
  4436. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4437. "homepage": "https://www.drupal.org/project/matomo",
  4438. "support": {
  4439. "source": "https://git.drupal.org/project/matomo.git",
  4440. "issues": "https://www.drupal.org/project/issues/matomo"
  4441. }
  4442. },
  4443. {
  4444. "name": "drupal/menu_admin_per_menu",
  4445. "version": "1.0.0",
  4446. "source": {
  4447. "type": "git",
  4448. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4449. "reference": "8.x-1.0"
  4450. },
  4451. "dist": {
  4452. "type": "zip",
  4453. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4454. "reference": "8.x-1.0",
  4455. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4456. },
  4457. "require": {
  4458. "drupal/core": "*"
  4459. },
  4460. "type": "drupal-module",
  4461. "extra": {
  4462. "branch-alias": {
  4463. "dev-1.x": "1.x-dev"
  4464. },
  4465. "drupal": {
  4466. "version": "8.x-1.0",
  4467. "datestamp": "1507184944",
  4468. "security-coverage": {
  4469. "status": "covered",
  4470. "message": "Covered by Drupal's security advisory policy"
  4471. }
  4472. }
  4473. },
  4474. "notification-url": "https://packages.drupal.org/8/downloads",
  4475. "license": [
  4476. "GPL-2.0-or-later"
  4477. ],
  4478. "authors": [
  4479. {
  4480. "name": "anrikun",
  4481. "homepage": "https://www.drupal.org/user/410199"
  4482. },
  4483. {
  4484. "name": "mkdok",
  4485. "homepage": "https://www.drupal.org/user/3308753"
  4486. }
  4487. ],
  4488. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4489. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4490. "support": {
  4491. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4492. }
  4493. },
  4494. {
  4495. "name": "drupal/metatag",
  4496. "version": "1.13.0",
  4497. "source": {
  4498. "type": "git",
  4499. "url": "https://git.drupalcode.org/project/metatag.git",
  4500. "reference": "8.x-1.13"
  4501. },
  4502. "dist": {
  4503. "type": "zip",
  4504. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.13.zip",
  4505. "reference": "8.x-1.13",
  4506. "shasum": "c471d9982a6540fd7baccc94572947923634fb6b"
  4507. },
  4508. "require": {
  4509. "drupal/core": "^8 || ^9",
  4510. "drupal/token": "^1.0"
  4511. },
  4512. "require-dev": {
  4513. "drupal/metatag_dc": "*",
  4514. "drupal/metatag_open_graph": "*",
  4515. "drupal/page_manager": "4.x-dev",
  4516. "drupal/redirect": "1.x-dev"
  4517. },
  4518. "type": "drupal-module",
  4519. "extra": {
  4520. "drupal": {
  4521. "version": "8.x-1.13",
  4522. "datestamp": "1587478404",
  4523. "security-coverage": {
  4524. "status": "covered",
  4525. "message": "Covered by Drupal's security advisory policy"
  4526. }
  4527. }
  4528. },
  4529. "notification-url": "https://packages.drupal.org/8/downloads",
  4530. "license": [
  4531. "GPL-2.0+"
  4532. ],
  4533. "authors": [
  4534. {
  4535. "name": "See contributors",
  4536. "homepage": "https://www.drupal.org/node/640498/committers",
  4537. "role": "Developer"
  4538. },
  4539. {
  4540. "name": "Dave Reid",
  4541. "homepage": "https://www.drupal.org/user/53892"
  4542. }
  4543. ],
  4544. "description": "Manage meta tags for all entities.",
  4545. "homepage": "https://www.drupal.org/project/metatag",
  4546. "keywords": [
  4547. "Drupal",
  4548. "seo"
  4549. ],
  4550. "support": {
  4551. "source": "https://git.drupalcode.org/project/metatag",
  4552. "issues": "https://www.drupal.org/project/issues/metatag",
  4553. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4554. }
  4555. },
  4556. {
  4557. "name": "drupal/migrate_plus",
  4558. "version": "5.0.0",
  4559. "source": {
  4560. "type": "git",
  4561. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4562. "reference": "8.x-5.0"
  4563. },
  4564. "dist": {
  4565. "type": "zip",
  4566. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.0.zip",
  4567. "reference": "8.x-5.0",
  4568. "shasum": "5509c76498e4c6141c29db626d20904e1e8593c6"
  4569. },
  4570. "require": {
  4571. "drupal/core": "^8 || ^9"
  4572. },
  4573. "require-dev": {
  4574. "drupal/migrate_example_advanced_setup": "*",
  4575. "drupal/migrate_example_setup": "*"
  4576. },
  4577. "suggest": {
  4578. "ext-soap": "*",
  4579. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4580. },
  4581. "type": "drupal-module",
  4582. "extra": {
  4583. "drupal": {
  4584. "version": "8.x-5.0",
  4585. "datestamp": "1586234154",
  4586. "security-coverage": {
  4587. "status": "covered",
  4588. "message": "Covered by Drupal's security advisory policy"
  4589. }
  4590. }
  4591. },
  4592. "notification-url": "https://packages.drupal.org/8/downloads",
  4593. "license": [
  4594. "GPL-2.0+"
  4595. ],
  4596. "authors": [
  4597. {
  4598. "name": "Mike Ryan",
  4599. "homepage": "https://www.drupal.org/u/mikeryan",
  4600. "role": "Maintainer"
  4601. },
  4602. {
  4603. "name": "Lucas Hedding",
  4604. "homepage": "https://www.drupal.org/u/heddn",
  4605. "role": "Maintainer"
  4606. }
  4607. ],
  4608. "description": "Enhancements to core migration support.",
  4609. "homepage": "https://www.drupal.org/project/migrate_plus",
  4610. "support": {
  4611. "source": "https://git.drupalcode.org/project/migrate_plus",
  4612. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4613. "slack": "#migrate"
  4614. }
  4615. },
  4616. {
  4617. "name": "drupal/migrate_tools",
  4618. "version": "4.5.0",
  4619. "source": {
  4620. "type": "git",
  4621. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4622. "reference": "8.x-4.5"
  4623. },
  4624. "dist": {
  4625. "type": "zip",
  4626. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4627. "reference": "8.x-4.5",
  4628. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4629. },
  4630. "require": {
  4631. "drupal/core": "^8 || ^9",
  4632. "drupal/migrate_plus": "^4 || ^5"
  4633. },
  4634. "require-dev": {
  4635. "drupal/migrate_plus": "4.x-dev",
  4636. "drupal/migrate_source_csv": "^2.2",
  4637. "drush/drush": "^10"
  4638. },
  4639. "type": "drupal-module",
  4640. "extra": {
  4641. "drupal": {
  4642. "version": "8.x-4.5",
  4643. "datestamp": "1574693285",
  4644. "security-coverage": {
  4645. "status": "covered",
  4646. "message": "Covered by Drupal's security advisory policy"
  4647. }
  4648. },
  4649. "drush": {
  4650. "services": {
  4651. "drush.services.yml": "^9 || ^10"
  4652. }
  4653. }
  4654. },
  4655. "notification-url": "https://packages.drupal.org/8/downloads",
  4656. "license": [
  4657. "GPL-2.0-or-later"
  4658. ],
  4659. "authors": [
  4660. {
  4661. "name": "heddn",
  4662. "homepage": "https://www.drupal.org/user/1463982"
  4663. },
  4664. {
  4665. "name": "mikeryan",
  4666. "homepage": "https://www.drupal.org/user/4420"
  4667. },
  4668. {
  4669. "name": "moshe weitzman",
  4670. "homepage": "https://www.drupal.org/user/23"
  4671. }
  4672. ],
  4673. "description": "Tools to assist in developing and running migrations.",
  4674. "homepage": "http://drupal.org/project/migrate_tools",
  4675. "support": {
  4676. "source": "http://cgit.drupalcode.org/migrate_tools",
  4677. "issues": "http://drupal.org/project/migrate_tools",
  4678. "irc": "irc://irc.freenode.org/drupal-migrate"
  4679. }
  4680. },
  4681. {
  4682. "name": "drupal/path_alias_xt",
  4683. "version": "dev-1.x",
  4684. "source": {
  4685. "type": "git",
  4686. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4687. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  4688. },
  4689. "require": {
  4690. "drupal/core": "^8.7.7 || ^9"
  4691. },
  4692. "type": "drupal-module",
  4693. "extra": {
  4694. "branch-alias": {
  4695. "dev-1.x": "1.x-dev"
  4696. },
  4697. "drupal": {
  4698. "version": "8.x-1.x-dev",
  4699. "datestamp": "1582322571",
  4700. "security-coverage": {
  4701. "status": "not-covered",
  4702. "message": "Dev releases are not covered by Drupal security advisories."
  4703. }
  4704. }
  4705. },
  4706. "notification-url": "https://packages.drupal.org/8/downloads",
  4707. "license": [
  4708. "GPL-2.0-or-later"
  4709. ],
  4710. "authors": [
  4711. {
  4712. "name": "RdeBoer",
  4713. "homepage": "https://www.drupal.org/user/404007"
  4714. },
  4715. {
  4716. "name": "adriancid",
  4717. "homepage": "https://www.drupal.org/user/1962106"
  4718. },
  4719. {
  4720. "name": "sdstyles",
  4721. "homepage": "https://www.drupal.org/user/1420228"
  4722. }
  4723. ],
  4724. "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.",
  4725. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4726. "support": {
  4727. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4728. },
  4729. "time": "2020-05-24T05:57:09+00:00"
  4730. },
  4731. {
  4732. "name": "drupal/pathauto",
  4733. "version": "1.8.0",
  4734. "source": {
  4735. "type": "git",
  4736. "url": "https://git.drupalcode.org/project/pathauto.git",
  4737. "reference": "8.x-1.8"
  4738. },
  4739. "dist": {
  4740. "type": "zip",
  4741. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  4742. "reference": "8.x-1.8",
  4743. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  4744. },
  4745. "require": {
  4746. "drupal/core": "^8.8 || ^9",
  4747. "drupal/ctools": "*",
  4748. "drupal/token": "*"
  4749. },
  4750. "suggest": {
  4751. "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."
  4752. },
  4753. "type": "drupal-module",
  4754. "extra": {
  4755. "drupal": {
  4756. "version": "8.x-1.8",
  4757. "datestamp": "1588103046",
  4758. "security-coverage": {
  4759. "status": "covered",
  4760. "message": "Covered by Drupal's security advisory policy"
  4761. }
  4762. },
  4763. "drush": {
  4764. "services": {
  4765. "drush.services.yml": "^9 || ^10"
  4766. }
  4767. }
  4768. },
  4769. "notification-url": "https://packages.drupal.org/8/downloads",
  4770. "license": [
  4771. "GPL-2.0-or-later"
  4772. ],
  4773. "authors": [
  4774. {
  4775. "name": "Berdir",
  4776. "homepage": "https://www.drupal.org/user/214652"
  4777. },
  4778. {
  4779. "name": "Dave Reid",
  4780. "homepage": "https://www.drupal.org/user/53892"
  4781. },
  4782. {
  4783. "name": "Freso",
  4784. "homepage": "https://www.drupal.org/user/27504"
  4785. },
  4786. {
  4787. "name": "greggles",
  4788. "homepage": "https://www.drupal.org/user/36762"
  4789. }
  4790. ],
  4791. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4792. "homepage": "https://www.drupal.org/project/pathauto",
  4793. "support": {
  4794. "source": "https://cgit.drupalcode.org/pathauto",
  4795. "issues": "https://www.drupal.org/project/issues/pathauto",
  4796. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4797. }
  4798. },
  4799. {
  4800. "name": "drupal/piwik",
  4801. "version": "1.4.0",
  4802. "source": {
  4803. "type": "git",
  4804. "url": "https://git.drupalcode.org/project/piwik.git",
  4805. "reference": "8.x-1.4"
  4806. },
  4807. "dist": {
  4808. "type": "zip",
  4809. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  4810. "reference": "8.x-1.4",
  4811. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  4812. },
  4813. "require": {
  4814. "drupal/core": "~8.0",
  4815. "drupal/matomo": "^1.0"
  4816. },
  4817. "require-dev": {
  4818. "drupal/php": "*",
  4819. "drupal/token": "*"
  4820. },
  4821. "type": "drupal-module",
  4822. "extra": {
  4823. "branch-alias": {
  4824. "dev-1.x": "1.x-dev"
  4825. },
  4826. "drupal": {
  4827. "version": "8.x-1.4",
  4828. "datestamp": "1530437786",
  4829. "security-coverage": {
  4830. "status": "covered",
  4831. "message": "Covered by Drupal's security advisory policy"
  4832. }
  4833. }
  4834. },
  4835. "notification-url": "https://packages.drupal.org/8/downloads",
  4836. "license": [
  4837. "GPL-2.0+"
  4838. ],
  4839. "authors": [
  4840. {
  4841. "name": "hass",
  4842. "homepage": "https://www.drupal.org/u/hass"
  4843. },
  4844. {
  4845. "name": "See other contributors",
  4846. "homepage": "https://www.drupal.org/node/247808/committers"
  4847. }
  4848. ],
  4849. "description": "Adds Piwik javascript tracking code to all your site's pages",
  4850. "homepage": "https://www.drupal.org/project/piwik",
  4851. "support": {
  4852. "source": "http://git.drupal.org/project/piwik.git",
  4853. "issues": "https://www.drupal.org/project/issues/piwik"
  4854. }
  4855. },
  4856. {
  4857. "name": "drupal/profile",
  4858. "version": "1.1.0",
  4859. "source": {
  4860. "type": "git",
  4861. "url": "https://git.drupalcode.org/project/profile.git",
  4862. "reference": "8.x-1.1"
  4863. },
  4864. "dist": {
  4865. "type": "zip",
  4866. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.1.zip",
  4867. "reference": "8.x-1.1",
  4868. "shasum": "b8f6aca4f432228e614dca0a50cb187e936e4825"
  4869. },
  4870. "require": {
  4871. "drupal/core": "^8.7.7 || ^9",
  4872. "drupal/entity": "^1.0-rc2"
  4873. },
  4874. "require-dev": {
  4875. "drupal/token": "^1.0"
  4876. },
  4877. "type": "drupal-module",
  4878. "extra": {
  4879. "drupal": {
  4880. "version": "8.x-1.1",
  4881. "datestamp": "1582134004",
  4882. "security-coverage": {
  4883. "status": "covered",
  4884. "message": "Covered by Drupal's security advisory policy"
  4885. }
  4886. }
  4887. },
  4888. "notification-url": "https://packages.drupal.org/8/downloads",
  4889. "license": [
  4890. "GPL-2.0+"
  4891. ],
  4892. "authors": [
  4893. {
  4894. "name": "bojanz",
  4895. "homepage": "https://www.drupal.org/user/86106"
  4896. },
  4897. {
  4898. "name": "daggerhart",
  4899. "homepage": "https://www.drupal.org/user/167806"
  4900. },
  4901. {
  4902. "name": "fago",
  4903. "homepage": "https://www.drupal.org/user/16747"
  4904. },
  4905. {
  4906. "name": "jsacksick",
  4907. "homepage": "https://www.drupal.org/user/972218"
  4908. },
  4909. {
  4910. "name": "mglaman",
  4911. "homepage": "https://www.drupal.org/user/2416470"
  4912. },
  4913. {
  4914. "name": "pcambra",
  4915. "homepage": "https://www.drupal.org/user/122101"
  4916. }
  4917. ],
  4918. "description": "Provides configurable user profiles.",
  4919. "homepage": "http://drupal.org/project/profile",
  4920. "support": {
  4921. "source": "https://git.drupalcode.org/project/profile"
  4922. }
  4923. },
  4924. {
  4925. "name": "drupal/redirect",
  4926. "version": "1.6.0",
  4927. "source": {
  4928. "type": "git",
  4929. "url": "https://git.drupalcode.org/project/redirect.git",
  4930. "reference": "8.x-1.6"
  4931. },
  4932. "dist": {
  4933. "type": "zip",
  4934. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  4935. "reference": "8.x-1.6",
  4936. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  4937. },
  4938. "require": {
  4939. "drupal/core": "^8.8 || ^9"
  4940. },
  4941. "type": "drupal-module",
  4942. "extra": {
  4943. "drupal": {
  4944. "version": "8.x-1.6",
  4945. "datestamp": "1589312204",
  4946. "security-coverage": {
  4947. "status": "covered",
  4948. "message": "Covered by Drupal's security advisory policy"
  4949. }
  4950. }
  4951. },
  4952. "notification-url": "https://packages.drupal.org/8/downloads",
  4953. "license": [
  4954. "GPL-2.0-or-later"
  4955. ],
  4956. "authors": [
  4957. {
  4958. "name": "Berdir",
  4959. "homepage": "https://www.drupal.org/user/214652"
  4960. },
  4961. {
  4962. "name": "Dave Reid",
  4963. "homepage": "https://www.drupal.org/user/53892"
  4964. },
  4965. {
  4966. "name": "pifagor",
  4967. "homepage": "https://www.drupal.org/user/2375692"
  4968. }
  4969. ],
  4970. "description": "Allows users to redirect from old URLs to new URLs.",
  4971. "homepage": "https://www.drupal.org/project/redirect",
  4972. "support": {
  4973. "source": "https://git.drupalcode.org/project/redirect"
  4974. }
  4975. },
  4976. {
  4977. "name": "drupal/redis",
  4978. "version": "1.4.0",
  4979. "source": {
  4980. "type": "git",
  4981. "url": "https://git.drupalcode.org/project/redis.git",
  4982. "reference": "8.x-1.4"
  4983. },
  4984. "dist": {
  4985. "type": "zip",
  4986. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.4.zip",
  4987. "reference": "8.x-1.4",
  4988. "shasum": "87165acdda18873c1e3994c670bcb4cdafd3d0ff"
  4989. },
  4990. "require": {
  4991. "drupal/core": "^8.8 || ^9"
  4992. },
  4993. "suggest": {
  4994. "predis/predis": "^1.1.1"
  4995. },
  4996. "type": "drupal-module",
  4997. "extra": {
  4998. "branch-alias": {
  4999. "dev-1.x": "1.x-dev"
  5000. },
  5001. "drupal": {
  5002. "version": "8.x-1.4",
  5003. "datestamp": "1581504947",
  5004. "security-coverage": {
  5005. "status": "covered",
  5006. "message": "Covered by Drupal's security advisory policy"
  5007. }
  5008. }
  5009. },
  5010. "autoload": {
  5011. "psr-4": {
  5012. "Drupal\\redis\\": "src"
  5013. }
  5014. },
  5015. "notification-url": "https://packages.drupal.org/8/downloads",
  5016. "license": [
  5017. "GPL-2.0"
  5018. ],
  5019. "authors": [
  5020. {
  5021. "name": "Berdir",
  5022. "homepage": "https://www.drupal.org/user/214652"
  5023. },
  5024. {
  5025. "name": "pounard",
  5026. "homepage": "https://www.drupal.org/user/240164"
  5027. }
  5028. ],
  5029. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5030. "homepage": "https://www.drupal.org/project/redis",
  5031. "support": {
  5032. "source": "https://git.drupalcode.org/project/redis"
  5033. }
  5034. },
  5035. {
  5036. "name": "drupal/restui",
  5037. "version": "1.18.0",
  5038. "source": {
  5039. "type": "git",
  5040. "url": "https://git.drupalcode.org/project/restui.git",
  5041. "reference": "8.x-1.18"
  5042. },
  5043. "dist": {
  5044. "type": "zip",
  5045. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.18.zip",
  5046. "reference": "8.x-1.18",
  5047. "shasum": "40edbe907d5ec6d6c6a00abd219c7305d90d19e5"
  5048. },
  5049. "require": {
  5050. "drupal/core": "^8.7.7 || ^9"
  5051. },
  5052. "type": "drupal-module",
  5053. "extra": {
  5054. "drupal": {
  5055. "version": "8.x-1.18",
  5056. "datestamp": "1586170645",
  5057. "security-coverage": {
  5058. "status": "covered",
  5059. "message": "Covered by Drupal's security advisory policy"
  5060. }
  5061. }
  5062. },
  5063. "notification-url": "https://packages.drupal.org/8/downloads",
  5064. "license": [
  5065. "GPL-2.0-or-later"
  5066. ],
  5067. "authors": [
  5068. {
  5069. "name": "-enzo-",
  5070. "homepage": "https://www.drupal.org/user/294937"
  5071. },
  5072. {
  5073. "name": "clemens.tolboom",
  5074. "homepage": "https://www.drupal.org/user/125814"
  5075. },
  5076. {
  5077. "name": "juampynr",
  5078. "homepage": "https://www.drupal.org/user/682736"
  5079. },
  5080. {
  5081. "name": "klausi",
  5082. "homepage": "https://www.drupal.org/user/262198"
  5083. }
  5084. ],
  5085. "description": "Provides a user interface to manage REST resources.",
  5086. "homepage": "https://www.drupal.org/project/restui",
  5087. "support": {
  5088. "source": "https://git.drupalcode.org/project/restui"
  5089. }
  5090. },
  5091. {
  5092. "name": "drupal/search_api",
  5093. "version": "1.16.0",
  5094. "source": {
  5095. "type": "git",
  5096. "url": "https://git.drupalcode.org/project/search_api.git",
  5097. "reference": "8.x-1.16"
  5098. },
  5099. "dist": {
  5100. "type": "zip",
  5101. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.16.zip",
  5102. "reference": "8.x-1.16",
  5103. "shasum": "59bf49fd506d532b0da62e30165d06057ab90013"
  5104. },
  5105. "require": {
  5106. "drupal/core": "^8.7.4"
  5107. },
  5108. "conflict": {
  5109. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5110. },
  5111. "require-dev": {
  5112. "drupal/language_fallback_fix": "@dev",
  5113. "drupal/search_api_autocomplete": "@dev",
  5114. "drupal/search_api_db": "*"
  5115. },
  5116. "suggest": {
  5117. "drupal/facets": "Adds the ability to create faceted searches.",
  5118. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5119. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5120. },
  5121. "type": "drupal-module",
  5122. "extra": {
  5123. "drupal": {
  5124. "version": "8.x-1.16",
  5125. "datestamp": "1588361091",
  5126. "security-coverage": {
  5127. "status": "covered",
  5128. "message": "Covered by Drupal's security advisory policy"
  5129. }
  5130. },
  5131. "drush": {
  5132. "services": {
  5133. "drush.services.yml": "^9"
  5134. }
  5135. }
  5136. },
  5137. "notification-url": "https://packages.drupal.org/8/downloads",
  5138. "license": [
  5139. "GPL-2.0+"
  5140. ],
  5141. "authors": [
  5142. {
  5143. "name": "Thomas Seidl",
  5144. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5145. },
  5146. {
  5147. "name": "Nick Veenhof",
  5148. "homepage": "https://www.drupal.org/u/nick_vh"
  5149. },
  5150. {
  5151. "name": "See other contributors",
  5152. "homepage": "https://www.drupal.org/node/790418/committers"
  5153. }
  5154. ],
  5155. "description": "Provides a generic framework for modules offering search capabilities.",
  5156. "homepage": "https://www.drupal.org/project/search_api",
  5157. "support": {
  5158. "source": "https://git.drupalcode.org/project/search_api",
  5159. "issues": "https://www.drupal.org/project/issues/search_api",
  5160. "irc": "irc://irc.freenode.org/drupal-search-api"
  5161. }
  5162. },
  5163. {
  5164. "name": "drupal/simple_sitemap",
  5165. "version": "3.6.0",
  5166. "source": {
  5167. "type": "git",
  5168. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5169. "reference": "8.x-3.6"
  5170. },
  5171. "dist": {
  5172. "type": "zip",
  5173. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.6.zip",
  5174. "reference": "8.x-3.6",
  5175. "shasum": "37fc0ae98a4ccb23316cb089ae4839913e80cbf6"
  5176. },
  5177. "require": {
  5178. "drupal/core": "^8 || ^9",
  5179. "ext-xmlwriter": "*"
  5180. },
  5181. "type": "drupal-module",
  5182. "extra": {
  5183. "drupal": {
  5184. "version": "8.x-3.6",
  5185. "datestamp": "1586469908",
  5186. "security-coverage": {
  5187. "status": "covered",
  5188. "message": "Covered by Drupal's security advisory policy"
  5189. }
  5190. },
  5191. "drush": {
  5192. "services": {
  5193. "drush.services.yml": "^9 || ^10"
  5194. }
  5195. }
  5196. },
  5197. "notification-url": "https://packages.drupal.org/8/downloads",
  5198. "license": [
  5199. "GPL-2.0+"
  5200. ],
  5201. "authors": [
  5202. {
  5203. "name": "Pawel Ginalski (gbyte.co)",
  5204. "homepage": "https://www.drupal.org/u/gbyte.co",
  5205. "email": "contact@gbyte.co",
  5206. "role": "Maintainer"
  5207. }
  5208. ],
  5209. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5210. "homepage": "https://drupal.org/project/simple_sitemap",
  5211. "support": {
  5212. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5213. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5214. "irc": "irc://irc.freenode.org/drupal-contribute"
  5215. }
  5216. },
  5217. {
  5218. "name": "drupal/synonyms",
  5219. "version": "dev-1.x",
  5220. "source": {
  5221. "type": "git",
  5222. "url": "https://git.drupalcode.org/project/synonyms.git",
  5223. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5224. },
  5225. "require": {
  5226. "drupal/core": "^8.2"
  5227. },
  5228. "type": "drupal-module",
  5229. "extra": {
  5230. "branch-alias": {
  5231. "dev-1.x": "1.x-dev"
  5232. },
  5233. "drupal": {
  5234. "version": "8.x-1.0-alpha1+5-dev",
  5235. "datestamp": "1540141681",
  5236. "security-coverage": {
  5237. "status": "not-covered",
  5238. "message": "Dev releases are not covered by Drupal security advisories."
  5239. }
  5240. }
  5241. },
  5242. "notification-url": "https://packages.drupal.org/8/downloads",
  5243. "license": [
  5244. "GPL-2.0-or-later"
  5245. ],
  5246. "authors": [
  5247. {
  5248. "name": "Zen",
  5249. "homepage": "https://www.drupal.org/user/21209"
  5250. },
  5251. {
  5252. "name": "bojanz",
  5253. "homepage": "https://www.drupal.org/user/86106"
  5254. },
  5255. {
  5256. "name": "bucefal91",
  5257. "homepage": "https://www.drupal.org/user/504128"
  5258. }
  5259. ],
  5260. "description": "Provides synonyms feature for content entities.",
  5261. "homepage": "https://www.drupal.org/project/synonyms",
  5262. "support": {
  5263. "source": "https://git.drupalcode.org/project/synonyms"
  5264. },
  5265. "time": "2018-10-21T17:05:25+00:00"
  5266. },
  5267. {
  5268. "name": "drupal/token",
  5269. "version": "1.7.0",
  5270. "source": {
  5271. "type": "git",
  5272. "url": "https://git.drupalcode.org/project/token.git",
  5273. "reference": "8.x-1.7"
  5274. },
  5275. "dist": {
  5276. "type": "zip",
  5277. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  5278. "reference": "8.x-1.7",
  5279. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  5280. },
  5281. "require": {
  5282. "drupal/core": "^8.8 || ^9"
  5283. },
  5284. "type": "drupal-module",
  5285. "extra": {
  5286. "drupal": {
  5287. "version": "8.x-1.7",
  5288. "datestamp": "1589314266",
  5289. "security-coverage": {
  5290. "status": "covered",
  5291. "message": "Covered by Drupal's security advisory policy"
  5292. }
  5293. },
  5294. "drush": {
  5295. "services": {
  5296. "drush.services.yml": "^9 || ^10"
  5297. }
  5298. }
  5299. },
  5300. "notification-url": "https://packages.drupal.org/8/downloads",
  5301. "license": [
  5302. "GPL-2.0+"
  5303. ],
  5304. "authors": [
  5305. {
  5306. "name": "Berdir",
  5307. "homepage": "https://www.drupal.org/user/214652"
  5308. },
  5309. {
  5310. "name": "Dave Reid",
  5311. "homepage": "https://www.drupal.org/user/53892"
  5312. },
  5313. {
  5314. "name": "eaton",
  5315. "homepage": "https://www.drupal.org/user/16496"
  5316. },
  5317. {
  5318. "name": "fago",
  5319. "homepage": "https://www.drupal.org/user/16747"
  5320. },
  5321. {
  5322. "name": "greggles",
  5323. "homepage": "https://www.drupal.org/user/36762"
  5324. },
  5325. {
  5326. "name": "mikeryan",
  5327. "homepage": "https://www.drupal.org/user/4420"
  5328. }
  5329. ],
  5330. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5331. "homepage": "https://www.drupal.org/project/token",
  5332. "support": {
  5333. "source": "https://git.drupalcode.org/project/token"
  5334. }
  5335. },
  5336. {
  5337. "name": "drupal/toolbar_themes",
  5338. "version": "dev-1.x",
  5339. "source": {
  5340. "type": "git",
  5341. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5342. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5343. },
  5344. "require": {
  5345. "drupal/core": "*"
  5346. },
  5347. "type": "drupal-module",
  5348. "extra": {
  5349. "branch-alias": {
  5350. "dev-1.x": "1.x-dev"
  5351. },
  5352. "drupal": {
  5353. "version": "8.x-1.0-alpha4+10-dev",
  5354. "datestamp": "1510689485",
  5355. "security-coverage": {
  5356. "status": "not-covered",
  5357. "message": "Project has not opted into security advisory coverage!"
  5358. }
  5359. }
  5360. },
  5361. "notification-url": "https://packages.drupal.org/8/downloads",
  5362. "license": [
  5363. "GPL-2.0-or-later"
  5364. ],
  5365. "authors": [
  5366. {
  5367. "name": "Jeff Burnz",
  5368. "homepage": "https://www.drupal.org/user/61393"
  5369. }
  5370. ],
  5371. "description": "Apply themes to the toolbar.",
  5372. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5373. "support": {
  5374. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5375. },
  5376. "time": "2017-11-14T19:57:02+00:00"
  5377. },
  5378. {
  5379. "name": "drupal/translation_views",
  5380. "version": "1.0.0-alpha10",
  5381. "source": {
  5382. "type": "git",
  5383. "url": "https://git.drupalcode.org/project/translation_views.git",
  5384. "reference": "8.x-1.0-alpha10"
  5385. },
  5386. "dist": {
  5387. "type": "zip",
  5388. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  5389. "reference": "8.x-1.0-alpha10",
  5390. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  5391. },
  5392. "require": {
  5393. "drupal/core": "^8.8 || ^9"
  5394. },
  5395. "require-dev": {
  5396. "drupal/translators": "*",
  5397. "drupal/translators_content": "*"
  5398. },
  5399. "type": "drupal-module",
  5400. "extra": {
  5401. "drupal": {
  5402. "version": "8.x-1.0-alpha10",
  5403. "datestamp": "1584303687",
  5404. "security-coverage": {
  5405. "status": "not-covered",
  5406. "message": "Project has not opted into security advisory coverage!"
  5407. }
  5408. }
  5409. },
  5410. "notification-url": "https://packages.drupal.org/8/downloads",
  5411. "license": [
  5412. "GPL-2.0-or-later"
  5413. ],
  5414. "authors": [
  5415. {
  5416. "name": "matsbla",
  5417. "homepage": "https://www.drupal.org/user/2325394"
  5418. },
  5419. {
  5420. "name": "vlad.dancer",
  5421. "homepage": "https://www.drupal.org/user/903844"
  5422. }
  5423. ],
  5424. "description": "Create customized lists and queries of translations from your database.",
  5425. "homepage": "https://www.drupal.org/project/translation_views",
  5426. "support": {
  5427. "source": "https://git.drupalcode.org/project/translation_views"
  5428. }
  5429. },
  5430. {
  5431. "name": "drupal/url_to_video_filter",
  5432. "version": "1.4.0",
  5433. "source": {
  5434. "type": "git",
  5435. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5436. "reference": "8.x-1.4"
  5437. },
  5438. "dist": {
  5439. "type": "zip",
  5440. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.4.zip",
  5441. "reference": "8.x-1.4",
  5442. "shasum": "adeb30c7ad0e0838c222879c467e054e4b6ebcdd"
  5443. },
  5444. "require": {
  5445. "drupal/core": "~8.0"
  5446. },
  5447. "type": "drupal-module",
  5448. "extra": {
  5449. "drupal": {
  5450. "version": "8.x-1.4",
  5451. "datestamp": "1587532095",
  5452. "security-coverage": {
  5453. "status": "covered",
  5454. "message": "Covered by Drupal's security advisory policy"
  5455. }
  5456. }
  5457. },
  5458. "notification-url": "https://packages.drupal.org/8/downloads",
  5459. "license": [
  5460. "GPL-2.0-or-later"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "Jaypan",
  5465. "homepage": "https://www.drupal.org/user/324696"
  5466. }
  5467. ],
  5468. "description": "Text filter to convert URLs to embedded videos",
  5469. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5470. "support": {
  5471. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5472. }
  5473. },
  5474. {
  5475. "name": "drupal/views_bulk_edit",
  5476. "version": "2.4.0",
  5477. "source": {
  5478. "type": "git",
  5479. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5480. "reference": "8.x-2.4"
  5481. },
  5482. "dist": {
  5483. "type": "zip",
  5484. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.4.zip",
  5485. "reference": "8.x-2.4",
  5486. "shasum": "039ebf9c6ae3cdd0555c7bfb97c629ebfee61ddb"
  5487. },
  5488. "require": {
  5489. "drupal/core": "*",
  5490. "drupal/views_bulk_operations": "~1.0 | ~2.0 | ~3.0"
  5491. },
  5492. "type": "drupal-module",
  5493. "extra": {
  5494. "drupal": {
  5495. "version": "8.x-2.4",
  5496. "datestamp": "1570030085",
  5497. "security-coverage": {
  5498. "status": "covered",
  5499. "message": "Covered by Drupal's security advisory policy"
  5500. }
  5501. }
  5502. },
  5503. "notification-url": "https://packages.drupal.org/8/downloads",
  5504. "license": [
  5505. "GPL-2.0+"
  5506. ],
  5507. "authors": [
  5508. {
  5509. "name": "Marcin Grabias",
  5510. "homepage": "https://www.drupal.org/u/graber"
  5511. },
  5512. {
  5513. "name": "benjy",
  5514. "homepage": "https://www.drupal.org/user/1852732"
  5515. }
  5516. ],
  5517. "description": "Allows bulk edition of entity field values.",
  5518. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5519. "support": {
  5520. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5521. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5522. }
  5523. },
  5524. {
  5525. "name": "drupal/views_bulk_operations",
  5526. "version": "3.6.0",
  5527. "source": {
  5528. "type": "git",
  5529. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5530. "reference": "8.x-3.6"
  5531. },
  5532. "dist": {
  5533. "type": "zip",
  5534. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.6.zip",
  5535. "reference": "8.x-3.6",
  5536. "shasum": "e73974b85f33b6b569912b5bd880510586bd5486"
  5537. },
  5538. "require": {
  5539. "drupal/core": "~8.8"
  5540. },
  5541. "type": "drupal-module",
  5542. "extra": {
  5543. "drupal": {
  5544. "version": "8.x-3.6",
  5545. "datestamp": "1583133990",
  5546. "security-coverage": {
  5547. "status": "covered",
  5548. "message": "Covered by Drupal's security advisory policy"
  5549. }
  5550. },
  5551. "drush": {
  5552. "services": {
  5553. "drush.services.yml": "^9"
  5554. }
  5555. }
  5556. },
  5557. "notification-url": "https://packages.drupal.org/8/downloads",
  5558. "license": [
  5559. "GPL-2.0+"
  5560. ],
  5561. "authors": [
  5562. {
  5563. "name": "Marcin Grabias",
  5564. "homepage": "https://www.drupal.org/u/graber"
  5565. },
  5566. {
  5567. "name": "Jon Pugh",
  5568. "homepage": "https://www.drupal.org/user/17028"
  5569. },
  5570. {
  5571. "name": "bojanz",
  5572. "homepage": "https://www.drupal.org/user/86106"
  5573. },
  5574. {
  5575. "name": "infojunkie",
  5576. "homepage": "https://www.drupal.org/user/48424"
  5577. },
  5578. {
  5579. "name": "joelpittet",
  5580. "homepage": "https://www.drupal.org/user/160302"
  5581. }
  5582. ],
  5583. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5584. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5585. "support": {
  5586. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5587. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5588. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5589. }
  5590. },
  5591. {
  5592. "name": "drupal/workflow",
  5593. "version": "dev-1.x",
  5594. "source": {
  5595. "type": "git",
  5596. "url": "https://git.drupalcode.org/project/workflow.git",
  5597. "reference": "d75c801c73cec1f73c6a4273abce42686734503c"
  5598. },
  5599. "require": {
  5600. "drupal/core": "^8 || ^9"
  5601. },
  5602. "type": "drupal-module",
  5603. "extra": {
  5604. "branch-alias": {
  5605. "dev-1.x": "1.x-dev"
  5606. },
  5607. "drupal": {
  5608. "version": "8.x-1.1+59-dev",
  5609. "datestamp": "1590561418",
  5610. "security-coverage": {
  5611. "status": "not-covered",
  5612. "message": "Dev releases are not covered by Drupal security advisories."
  5613. }
  5614. }
  5615. },
  5616. "notification-url": "https://packages.drupal.org/8/downloads",
  5617. "license": [
  5618. "GPL-2.0-or-later"
  5619. ],
  5620. "authors": [
  5621. {
  5622. "name": "Bastlynn",
  5623. "homepage": "https://www.drupal.org/user/275249"
  5624. },
  5625. {
  5626. "name": "Heine",
  5627. "homepage": "https://www.drupal.org/user/17943"
  5628. },
  5629. {
  5630. "name": "JacobSingh",
  5631. "homepage": "https://www.drupal.org/user/68912"
  5632. },
  5633. {
  5634. "name": "NancyDru",
  5635. "homepage": "https://www.drupal.org/user/101412"
  5636. },
  5637. {
  5638. "name": "eaton",
  5639. "homepage": "https://www.drupal.org/user/16496"
  5640. },
  5641. {
  5642. "name": "johnv",
  5643. "homepage": "https://www.drupal.org/user/591042"
  5644. },
  5645. {
  5646. "name": "jvandyk",
  5647. "homepage": "https://www.drupal.org/user/2375"
  5648. },
  5649. {
  5650. "name": "mfredrickson",
  5651. "homepage": "https://www.drupal.org/user/31994"
  5652. },
  5653. {
  5654. "name": "q0rban",
  5655. "homepage": "https://www.drupal.org/user/31022"
  5656. }
  5657. ],
  5658. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5659. "homepage": "https://www.drupal.org/project/workflow",
  5660. "support": {
  5661. "source": "https://git.drupalcode.org/project/workflow"
  5662. },
  5663. "time": "2020-05-27T07:25:14+00:00"
  5664. },
  5665. {
  5666. "name": "drush/drush",
  5667. "version": "9.7.2",
  5668. "source": {
  5669. "type": "git",
  5670. "url": "https://github.com/drush-ops/drush.git",
  5671. "reference": "ab5e345a72c9187a7d770486a09691f6526826aa"
  5672. },
  5673. "dist": {
  5674. "type": "zip",
  5675. "url": "https://api.github.com/repos/drush-ops/drush/zipball/ab5e345a72c9187a7d770486a09691f6526826aa",
  5676. "reference": "ab5e345a72c9187a7d770486a09691f6526826aa",
  5677. "shasum": ""
  5678. },
  5679. "require": {
  5680. "chi-teck/drupal-code-generator": "^1.28.1",
  5681. "composer/semver": "^1.4",
  5682. "consolidation/annotated-command": "^2.12",
  5683. "consolidation/config": "^1.2",
  5684. "consolidation/filter-via-dot-access-data": "^1",
  5685. "consolidation/output-formatters": "^3.3.1",
  5686. "consolidation/robo": "^1.4.6",
  5687. "consolidation/site-alias": "^3.0.0@stable",
  5688. "consolidation/site-process": "^2.0.3",
  5689. "ext-dom": "*",
  5690. "grasmash/yaml-expander": "^1.1.1",
  5691. "league/container": "~2",
  5692. "php": ">=5.6.0",
  5693. "psr/log": "~1.0",
  5694. "psy/psysh": "~0.6",
  5695. "symfony/console": "^3.4",
  5696. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5697. "symfony/finder": "^3.4 || ^4.0",
  5698. "symfony/process": "^3.4",
  5699. "symfony/var-dumper": "^3.4 || ^4.0",
  5700. "symfony/yaml": "^3.4",
  5701. "webflo/drupal-finder": "^1.1",
  5702. "webmozart/path-util": "^2.1.0"
  5703. },
  5704. "require-dev": {
  5705. "composer/installers": "^1.2",
  5706. "cweagans/composer-patches": "~1.0",
  5707. "drupal/alinks": "1.0.0",
  5708. "drupal/devel": "^2",
  5709. "drupal/empty_theme": "1.0",
  5710. "g1a/composer-test-scenarios": "^3",
  5711. "lox/xhprof": "dev-master",
  5712. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5713. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5714. "vlucas/phpdotenv": "^2.4",
  5715. "webflo/drupal-core-require-dev": "8.7.x-dev",
  5716. "webflo/drupal-core-strict": "8.7.x-dev"
  5717. },
  5718. "bin": [
  5719. "drush"
  5720. ],
  5721. "type": "library",
  5722. "extra": {
  5723. "installer-paths": {
  5724. "sut/core": [
  5725. "type:drupal-core"
  5726. ],
  5727. "sut/libraries/{$name}": [
  5728. "type:drupal-library"
  5729. ],
  5730. "sut/modules/unish/{$name}": [
  5731. "drupal/devel"
  5732. ],
  5733. "sut/themes/unish/{$name}": [
  5734. "drupal/empty_theme"
  5735. ],
  5736. "sut/modules/contrib/{$name}": [
  5737. "type:drupal-module"
  5738. ],
  5739. "sut/profiles/contrib/{$name}": [
  5740. "type:drupal-profile"
  5741. ],
  5742. "sut/themes/contrib/{$name}": [
  5743. "type:drupal-theme"
  5744. ],
  5745. "sut/drush/contrib/{$name}": [
  5746. "type:drupal-drush"
  5747. ]
  5748. },
  5749. "scenarios": {
  5750. "php5": {
  5751. "config": {
  5752. "platform": {
  5753. "php": "5.6.38"
  5754. }
  5755. },
  5756. "require-dev": {
  5757. "webflo/drupal-core-strict": "8.6.x-dev",
  5758. "webflo/drupal-core-require-dev": "8.6.x-dev"
  5759. }
  5760. }
  5761. },
  5762. "branch-alias": {
  5763. "dev-master": "9.x-dev"
  5764. }
  5765. },
  5766. "autoload": {
  5767. "psr-4": {
  5768. "Drush\\": "src/",
  5769. "Drush\\Internal\\": "src/internal-forks"
  5770. }
  5771. },
  5772. "notification-url": "https://packagist.org/downloads/",
  5773. "license": [
  5774. "GPL-2.0-or-later"
  5775. ],
  5776. "authors": [
  5777. {
  5778. "name": "Moshe Weitzman",
  5779. "email": "weitzman@tejasa.com"
  5780. },
  5781. {
  5782. "name": "Owen Barton",
  5783. "email": "drupal@owenbarton.com"
  5784. },
  5785. {
  5786. "name": "Greg Anderson",
  5787. "email": "greg.1.anderson@greenknowe.org"
  5788. },
  5789. {
  5790. "name": "Jonathan Araña Cruz",
  5791. "email": "jonhattan@faita.net"
  5792. },
  5793. {
  5794. "name": "Jonathan Hedstrom",
  5795. "email": "jhedstrom@gmail.com"
  5796. },
  5797. {
  5798. "name": "Christopher Gervais",
  5799. "email": "chris@ergonlogic.com"
  5800. },
  5801. {
  5802. "name": "Dave Reid",
  5803. "email": "dave@davereid.net"
  5804. },
  5805. {
  5806. "name": "Damian Lee",
  5807. "email": "damiankloip@googlemail.com"
  5808. }
  5809. ],
  5810. "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.",
  5811. "homepage": "http://www.drush.org",
  5812. "time": "2020-02-09T17:29:51+00:00"
  5813. },
  5814. {
  5815. "name": "easyrdf/easyrdf",
  5816. "version": "0.9.1",
  5817. "source": {
  5818. "type": "git",
  5819. "url": "https://github.com/njh/easyrdf.git",
  5820. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5821. },
  5822. "dist": {
  5823. "type": "zip",
  5824. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5825. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5826. "shasum": ""
  5827. },
  5828. "require": {
  5829. "ext-mbstring": "*",
  5830. "ext-pcre": "*",
  5831. "php": ">=5.2.8"
  5832. },
  5833. "require-dev": {
  5834. "phpunit/phpunit": "~3.5",
  5835. "sami/sami": "~1.4",
  5836. "squizlabs/php_codesniffer": "~1.4.3"
  5837. },
  5838. "suggest": {
  5839. "ml/json-ld": "~1.0"
  5840. },
  5841. "type": "library",
  5842. "autoload": {
  5843. "psr-0": {
  5844. "EasyRdf_": "lib/"
  5845. }
  5846. },
  5847. "notification-url": "https://packagist.org/downloads/",
  5848. "license": [
  5849. "BSD-3-Clause"
  5850. ],
  5851. "authors": [
  5852. {
  5853. "name": "Nicholas Humfrey",
  5854. "email": "njh@aelius.com",
  5855. "homepage": "http://www.aelius.com/njh/",
  5856. "role": "Developer"
  5857. },
  5858. {
  5859. "name": "Alexey Zakhlestin",
  5860. "email": "indeyets@gmail.com",
  5861. "role": "Developer"
  5862. }
  5863. ],
  5864. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5865. "homepage": "http://www.easyrdf.org/",
  5866. "keywords": [
  5867. "Linked Data",
  5868. "RDF",
  5869. "Semantic Web",
  5870. "Turtle",
  5871. "rdfa",
  5872. "sparql"
  5873. ],
  5874. "time": "2015-02-27T09:45:49+00:00"
  5875. },
  5876. {
  5877. "name": "egulias/email-validator",
  5878. "version": "2.1.11",
  5879. "source": {
  5880. "type": "git",
  5881. "url": "https://github.com/egulias/EmailValidator.git",
  5882. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23"
  5883. },
  5884. "dist": {
  5885. "type": "zip",
  5886. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23",
  5887. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23",
  5888. "shasum": ""
  5889. },
  5890. "require": {
  5891. "doctrine/lexer": "^1.0.1",
  5892. "php": ">= 5.5"
  5893. },
  5894. "require-dev": {
  5895. "dominicsayers/isemail": "dev-master",
  5896. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  5897. "satooshi/php-coveralls": "^1.0.1",
  5898. "symfony/phpunit-bridge": "^4.4@dev"
  5899. },
  5900. "suggest": {
  5901. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5902. },
  5903. "type": "library",
  5904. "extra": {
  5905. "branch-alias": {
  5906. "dev-master": "2.1.x-dev"
  5907. }
  5908. },
  5909. "autoload": {
  5910. "psr-4": {
  5911. "Egulias\\EmailValidator\\": "EmailValidator"
  5912. }
  5913. },
  5914. "notification-url": "https://packagist.org/downloads/",
  5915. "license": [
  5916. "MIT"
  5917. ],
  5918. "authors": [
  5919. {
  5920. "name": "Eduardo Gulias Davis"
  5921. }
  5922. ],
  5923. "description": "A library for validating emails against several RFCs",
  5924. "homepage": "https://github.com/egulias/EmailValidator",
  5925. "keywords": [
  5926. "email",
  5927. "emailvalidation",
  5928. "emailvalidator",
  5929. "validation",
  5930. "validator"
  5931. ],
  5932. "time": "2019-08-13T17:33:27+00:00"
  5933. },
  5934. {
  5935. "name": "grasmash/expander",
  5936. "version": "1.0.0",
  5937. "source": {
  5938. "type": "git",
  5939. "url": "https://github.com/grasmash/expander.git",
  5940. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5941. },
  5942. "dist": {
  5943. "type": "zip",
  5944. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5945. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5946. "shasum": ""
  5947. },
  5948. "require": {
  5949. "dflydev/dot-access-data": "^1.1.0",
  5950. "php": ">=5.4"
  5951. },
  5952. "require-dev": {
  5953. "greg-1-anderson/composer-test-scenarios": "^1",
  5954. "phpunit/phpunit": "^4|^5.5.4",
  5955. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5956. "squizlabs/php_codesniffer": "^2.7"
  5957. },
  5958. "type": "library",
  5959. "extra": {
  5960. "branch-alias": {
  5961. "dev-master": "1.x-dev"
  5962. }
  5963. },
  5964. "autoload": {
  5965. "psr-4": {
  5966. "Grasmash\\Expander\\": "src/"
  5967. }
  5968. },
  5969. "notification-url": "https://packagist.org/downloads/",
  5970. "license": [
  5971. "MIT"
  5972. ],
  5973. "authors": [
  5974. {
  5975. "name": "Matthew Grasmick"
  5976. }
  5977. ],
  5978. "description": "Expands internal property references in PHP arrays file.",
  5979. "time": "2017-12-21T22:14:55+00:00"
  5980. },
  5981. {
  5982. "name": "grasmash/yaml-expander",
  5983. "version": "1.4.0",
  5984. "source": {
  5985. "type": "git",
  5986. "url": "https://github.com/grasmash/yaml-expander.git",
  5987. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5988. },
  5989. "dist": {
  5990. "type": "zip",
  5991. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5992. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5993. "shasum": ""
  5994. },
  5995. "require": {
  5996. "dflydev/dot-access-data": "^1.1.0",
  5997. "php": ">=5.4",
  5998. "symfony/yaml": "^2.8.11|^3|^4"
  5999. },
  6000. "require-dev": {
  6001. "greg-1-anderson/composer-test-scenarios": "^1",
  6002. "phpunit/phpunit": "^4.8|^5.5.4",
  6003. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6004. "squizlabs/php_codesniffer": "^2.7"
  6005. },
  6006. "type": "library",
  6007. "extra": {
  6008. "branch-alias": {
  6009. "dev-master": "1.x-dev"
  6010. }
  6011. },
  6012. "autoload": {
  6013. "psr-4": {
  6014. "Grasmash\\YamlExpander\\": "src/"
  6015. }
  6016. },
  6017. "notification-url": "https://packagist.org/downloads/",
  6018. "license": [
  6019. "MIT"
  6020. ],
  6021. "authors": [
  6022. {
  6023. "name": "Matthew Grasmick"
  6024. }
  6025. ],
  6026. "description": "Expands internal property references in a yaml file.",
  6027. "time": "2017-12-16T16:06:03+00:00"
  6028. },
  6029. {
  6030. "name": "guzzlehttp/guzzle",
  6031. "version": "6.3.3",
  6032. "source": {
  6033. "type": "git",
  6034. "url": "https://github.com/guzzle/guzzle.git",
  6035. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  6036. },
  6037. "dist": {
  6038. "type": "zip",
  6039. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  6040. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  6041. "shasum": ""
  6042. },
  6043. "require": {
  6044. "guzzlehttp/promises": "^1.0",
  6045. "guzzlehttp/psr7": "^1.4",
  6046. "php": ">=5.5"
  6047. },
  6048. "require-dev": {
  6049. "ext-curl": "*",
  6050. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6051. "psr/log": "^1.0"
  6052. },
  6053. "suggest": {
  6054. "psr/log": "Required for using the Log middleware"
  6055. },
  6056. "type": "library",
  6057. "extra": {
  6058. "branch-alias": {
  6059. "dev-master": "6.3-dev"
  6060. }
  6061. },
  6062. "autoload": {
  6063. "files": [
  6064. "src/functions_include.php"
  6065. ],
  6066. "psr-4": {
  6067. "GuzzleHttp\\": "src/"
  6068. }
  6069. },
  6070. "notification-url": "https://packagist.org/downloads/",
  6071. "license": [
  6072. "MIT"
  6073. ],
  6074. "authors": [
  6075. {
  6076. "name": "Michael Dowling",
  6077. "email": "mtdowling@gmail.com",
  6078. "homepage": "https://github.com/mtdowling"
  6079. }
  6080. ],
  6081. "description": "Guzzle is a PHP HTTP client library",
  6082. "homepage": "http://guzzlephp.org/",
  6083. "keywords": [
  6084. "client",
  6085. "curl",
  6086. "framework",
  6087. "http",
  6088. "http client",
  6089. "rest",
  6090. "web service"
  6091. ],
  6092. "time": "2018-04-22T15:46:56+00:00"
  6093. },
  6094. {
  6095. "name": "guzzlehttp/promises",
  6096. "version": "v1.3.1",
  6097. "source": {
  6098. "type": "git",
  6099. "url": "https://github.com/guzzle/promises.git",
  6100. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6101. },
  6102. "dist": {
  6103. "type": "zip",
  6104. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6105. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6106. "shasum": ""
  6107. },
  6108. "require": {
  6109. "php": ">=5.5.0"
  6110. },
  6111. "require-dev": {
  6112. "phpunit/phpunit": "^4.0"
  6113. },
  6114. "type": "library",
  6115. "extra": {
  6116. "branch-alias": {
  6117. "dev-master": "1.4-dev"
  6118. }
  6119. },
  6120. "autoload": {
  6121. "psr-4": {
  6122. "GuzzleHttp\\Promise\\": "src/"
  6123. },
  6124. "files": [
  6125. "src/functions_include.php"
  6126. ]
  6127. },
  6128. "notification-url": "https://packagist.org/downloads/",
  6129. "license": [
  6130. "MIT"
  6131. ],
  6132. "authors": [
  6133. {
  6134. "name": "Michael Dowling",
  6135. "email": "mtdowling@gmail.com",
  6136. "homepage": "https://github.com/mtdowling"
  6137. }
  6138. ],
  6139. "description": "Guzzle promises library",
  6140. "keywords": [
  6141. "promise"
  6142. ],
  6143. "time": "2016-12-20T10:07:11+00:00"
  6144. },
  6145. {
  6146. "name": "guzzlehttp/psr7",
  6147. "version": "1.6.1",
  6148. "source": {
  6149. "type": "git",
  6150. "url": "https://github.com/guzzle/psr7.git",
  6151. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6152. },
  6153. "dist": {
  6154. "type": "zip",
  6155. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6156. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6157. "shasum": ""
  6158. },
  6159. "require": {
  6160. "php": ">=5.4.0",
  6161. "psr/http-message": "~1.0",
  6162. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6163. },
  6164. "provide": {
  6165. "psr/http-message-implementation": "1.0"
  6166. },
  6167. "require-dev": {
  6168. "ext-zlib": "*",
  6169. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6170. },
  6171. "suggest": {
  6172. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6173. },
  6174. "type": "library",
  6175. "extra": {
  6176. "branch-alias": {
  6177. "dev-master": "1.6-dev"
  6178. }
  6179. },
  6180. "autoload": {
  6181. "psr-4": {
  6182. "GuzzleHttp\\Psr7\\": "src/"
  6183. },
  6184. "files": [
  6185. "src/functions_include.php"
  6186. ]
  6187. },
  6188. "notification-url": "https://packagist.org/downloads/",
  6189. "license": [
  6190. "MIT"
  6191. ],
  6192. "authors": [
  6193. {
  6194. "name": "Michael Dowling",
  6195. "email": "mtdowling@gmail.com",
  6196. "homepage": "https://github.com/mtdowling"
  6197. },
  6198. {
  6199. "name": "Tobias Schultze",
  6200. "homepage": "https://github.com/Tobion"
  6201. }
  6202. ],
  6203. "description": "PSR-7 message implementation that also provides common utility methods",
  6204. "keywords": [
  6205. "http",
  6206. "message",
  6207. "psr-7",
  6208. "request",
  6209. "response",
  6210. "stream",
  6211. "uri",
  6212. "url"
  6213. ],
  6214. "time": "2019-07-01T23:21:34+00:00"
  6215. },
  6216. {
  6217. "name": "league/container",
  6218. "version": "2.4.1",
  6219. "source": {
  6220. "type": "git",
  6221. "url": "https://github.com/thephpleague/container.git",
  6222. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6223. },
  6224. "dist": {
  6225. "type": "zip",
  6226. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6227. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6228. "shasum": ""
  6229. },
  6230. "require": {
  6231. "container-interop/container-interop": "^1.2",
  6232. "php": "^5.4.0 || ^7.0"
  6233. },
  6234. "provide": {
  6235. "container-interop/container-interop-implementation": "^1.2",
  6236. "psr/container-implementation": "^1.0"
  6237. },
  6238. "replace": {
  6239. "orno/di": "~2.0"
  6240. },
  6241. "require-dev": {
  6242. "phpunit/phpunit": "4.*"
  6243. },
  6244. "type": "library",
  6245. "extra": {
  6246. "branch-alias": {
  6247. "dev-2.x": "2.x-dev",
  6248. "dev-1.x": "1.x-dev"
  6249. }
  6250. },
  6251. "autoload": {
  6252. "psr-4": {
  6253. "League\\Container\\": "src"
  6254. }
  6255. },
  6256. "notification-url": "https://packagist.org/downloads/",
  6257. "license": [
  6258. "MIT"
  6259. ],
  6260. "authors": [
  6261. {
  6262. "name": "Phil Bennett",
  6263. "email": "philipobenito@gmail.com",
  6264. "homepage": "http://www.philipobenito.com",
  6265. "role": "Developer"
  6266. }
  6267. ],
  6268. "description": "A fast and intuitive dependency injection container.",
  6269. "homepage": "https://github.com/thephpleague/container",
  6270. "keywords": [
  6271. "container",
  6272. "dependency",
  6273. "di",
  6274. "injection",
  6275. "league",
  6276. "provider",
  6277. "service"
  6278. ],
  6279. "time": "2017-05-10T09:20:27+00:00"
  6280. },
  6281. {
  6282. "name": "masterminds/html5",
  6283. "version": "2.3.0",
  6284. "source": {
  6285. "type": "git",
  6286. "url": "https://github.com/Masterminds/html5-php.git",
  6287. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6288. },
  6289. "dist": {
  6290. "type": "zip",
  6291. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6292. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6293. "shasum": ""
  6294. },
  6295. "require": {
  6296. "ext-libxml": "*",
  6297. "php": ">=5.3.0"
  6298. },
  6299. "require-dev": {
  6300. "phpunit/phpunit": "4.*",
  6301. "sami/sami": "~2.0",
  6302. "satooshi/php-coveralls": "1.0.*"
  6303. },
  6304. "type": "library",
  6305. "extra": {
  6306. "branch-alias": {
  6307. "dev-master": "2.2-dev"
  6308. }
  6309. },
  6310. "autoload": {
  6311. "psr-4": {
  6312. "Masterminds\\": "src"
  6313. }
  6314. },
  6315. "notification-url": "https://packagist.org/downloads/",
  6316. "license": [
  6317. "MIT"
  6318. ],
  6319. "authors": [
  6320. {
  6321. "name": "Matt Butcher",
  6322. "email": "technosophos@gmail.com"
  6323. },
  6324. {
  6325. "name": "Asmir Mustafic",
  6326. "email": "goetas@gmail.com"
  6327. },
  6328. {
  6329. "name": "Matt Farina",
  6330. "email": "matt@mattfarina.com"
  6331. }
  6332. ],
  6333. "description": "An HTML5 parser and serializer.",
  6334. "homepage": "http://masterminds.github.io/html5-php",
  6335. "keywords": [
  6336. "HTML5",
  6337. "dom",
  6338. "html",
  6339. "parser",
  6340. "querypath",
  6341. "serializer",
  6342. "xml"
  6343. ],
  6344. "time": "2017-09-04T12:26:28+00:00"
  6345. },
  6346. {
  6347. "name": "nikic/php-parser",
  6348. "version": "v4.4.0",
  6349. "source": {
  6350. "type": "git",
  6351. "url": "https://github.com/nikic/PHP-Parser.git",
  6352. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  6353. },
  6354. "dist": {
  6355. "type": "zip",
  6356. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6357. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  6358. "shasum": ""
  6359. },
  6360. "require": {
  6361. "ext-tokenizer": "*",
  6362. "php": ">=7.0"
  6363. },
  6364. "require-dev": {
  6365. "ircmaxell/php-yacc": "0.0.5",
  6366. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  6367. },
  6368. "bin": [
  6369. "bin/php-parse"
  6370. ],
  6371. "type": "library",
  6372. "extra": {
  6373. "branch-alias": {
  6374. "dev-master": "4.3-dev"
  6375. }
  6376. },
  6377. "autoload": {
  6378. "psr-4": {
  6379. "PhpParser\\": "lib/PhpParser"
  6380. }
  6381. },
  6382. "notification-url": "https://packagist.org/downloads/",
  6383. "license": [
  6384. "BSD-3-Clause"
  6385. ],
  6386. "authors": [
  6387. {
  6388. "name": "Nikita Popov"
  6389. }
  6390. ],
  6391. "description": "A PHP parser written in PHP",
  6392. "keywords": [
  6393. "parser",
  6394. "php"
  6395. ],
  6396. "time": "2020-04-10T16:34:50+00:00"
  6397. },
  6398. {
  6399. "name": "oomphinc/composer-installers-extender",
  6400. "version": "v1.1.2",
  6401. "source": {
  6402. "type": "git",
  6403. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  6404. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  6405. },
  6406. "dist": {
  6407. "type": "zip",
  6408. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6409. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6410. "shasum": ""
  6411. },
  6412. "require": {
  6413. "composer-plugin-api": "^1.0",
  6414. "composer/installers": "^1.0"
  6415. },
  6416. "type": "composer-plugin",
  6417. "extra": {
  6418. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  6419. },
  6420. "autoload": {
  6421. "psr-4": {
  6422. "OomphInc\\ComposerInstallersExtender\\": "src/"
  6423. }
  6424. },
  6425. "notification-url": "https://packagist.org/downloads/",
  6426. "license": [
  6427. "MIT"
  6428. ],
  6429. "authors": [
  6430. {
  6431. "name": "Stephen Beemsterboer",
  6432. "email": "stephen@oomphinc.com",
  6433. "homepage": "https://github.com/balbuf"
  6434. }
  6435. ],
  6436. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  6437. "homepage": "http://www.oomphinc.com/",
  6438. "time": "2017-03-31T16:57:39+00:00"
  6439. },
  6440. {
  6441. "name": "paragonie/random_compat",
  6442. "version": "v9.99.99",
  6443. "source": {
  6444. "type": "git",
  6445. "url": "https://github.com/paragonie/random_compat.git",
  6446. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  6447. },
  6448. "dist": {
  6449. "type": "zip",
  6450. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6451. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  6452. "shasum": ""
  6453. },
  6454. "require": {
  6455. "php": "^7"
  6456. },
  6457. "require-dev": {
  6458. "phpunit/phpunit": "4.*|5.*",
  6459. "vimeo/psalm": "^1"
  6460. },
  6461. "suggest": {
  6462. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6463. },
  6464. "type": "library",
  6465. "notification-url": "https://packagist.org/downloads/",
  6466. "license": [
  6467. "MIT"
  6468. ],
  6469. "authors": [
  6470. {
  6471. "name": "Paragon Initiative Enterprises",
  6472. "email": "security@paragonie.com",
  6473. "homepage": "https://paragonie.com"
  6474. }
  6475. ],
  6476. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6477. "keywords": [
  6478. "csprng",
  6479. "polyfill",
  6480. "pseudorandom",
  6481. "random"
  6482. ],
  6483. "time": "2018-07-02T15:55:56+00:00"
  6484. },
  6485. {
  6486. "name": "pear/archive_tar",
  6487. "version": "1.4.9",
  6488. "source": {
  6489. "type": "git",
  6490. "url": "https://github.com/pear/Archive_Tar.git",
  6491. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0"
  6492. },
  6493. "dist": {
  6494. "type": "zip",
  6495. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0",
  6496. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0",
  6497. "shasum": ""
  6498. },
  6499. "require": {
  6500. "pear/pear-core-minimal": "^1.10.0alpha2",
  6501. "php": ">=5.2.0"
  6502. },
  6503. "require-dev": {
  6504. "phpunit/phpunit": "*"
  6505. },
  6506. "suggest": {
  6507. "ext-bz2": "Bz2 compression support.",
  6508. "ext-xz": "Lzma2 compression support.",
  6509. "ext-zlib": "Gzip compression support."
  6510. },
  6511. "type": "library",
  6512. "extra": {
  6513. "branch-alias": {
  6514. "dev-master": "1.4.x-dev"
  6515. }
  6516. },
  6517. "autoload": {
  6518. "psr-0": {
  6519. "Archive_Tar": ""
  6520. }
  6521. },
  6522. "notification-url": "https://packagist.org/downloads/",
  6523. "include-path": [
  6524. "./"
  6525. ],
  6526. "license": [
  6527. "BSD-3-Clause"
  6528. ],
  6529. "authors": [
  6530. {
  6531. "name": "Vincent Blavet",
  6532. "email": "vincent@phpconcept.net"
  6533. },
  6534. {
  6535. "name": "Greg Beaver",
  6536. "email": "greg@chiaraquartet.net"
  6537. },
  6538. {
  6539. "name": "Michiel Rook",
  6540. "email": "mrook@php.net"
  6541. }
  6542. ],
  6543. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6544. "homepage": "https://github.com/pear/Archive_Tar",
  6545. "keywords": [
  6546. "archive",
  6547. "tar"
  6548. ],
  6549. "time": "2019-12-04T10:17:28+00:00"
  6550. },
  6551. {
  6552. "name": "pear/console_getopt",
  6553. "version": "v1.4.2",
  6554. "source": {
  6555. "type": "git",
  6556. "url": "https://github.com/pear/Console_Getopt.git",
  6557. "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0"
  6558. },
  6559. "dist": {
  6560. "type": "zip",
  6561. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/6c77aeb625b32bd752e89ee17972d103588b90c0",
  6562. "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0",
  6563. "shasum": ""
  6564. },
  6565. "type": "library",
  6566. "autoload": {
  6567. "psr-0": {
  6568. "Console": "./"
  6569. }
  6570. },
  6571. "notification-url": "https://packagist.org/downloads/",
  6572. "include-path": [
  6573. "./"
  6574. ],
  6575. "license": [
  6576. "BSD-2-Clause"
  6577. ],
  6578. "authors": [
  6579. {
  6580. "name": "Greg Beaver",
  6581. "email": "cellog@php.net",
  6582. "role": "Helper"
  6583. },
  6584. {
  6585. "name": "Andrei Zmievski",
  6586. "email": "andrei@php.net",
  6587. "role": "Lead"
  6588. },
  6589. {
  6590. "name": "Stig Bakken",
  6591. "email": "stig@php.net",
  6592. "role": "Developer"
  6593. }
  6594. ],
  6595. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6596. "time": "2019-02-06T16:52:33+00:00"
  6597. },
  6598. {
  6599. "name": "pear/pear-core-minimal",
  6600. "version": "v1.10.9",
  6601. "source": {
  6602. "type": "git",
  6603. "url": "https://github.com/pear/pear-core-minimal.git",
  6604. "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f"
  6605. },
  6606. "dist": {
  6607. "type": "zip",
  6608. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/742be8dd68c746a01e4b0a422258e9c9cae1c37f",
  6609. "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f",
  6610. "shasum": ""
  6611. },
  6612. "require": {
  6613. "pear/console_getopt": "~1.4",
  6614. "pear/pear_exception": "~1.0"
  6615. },
  6616. "replace": {
  6617. "rsky/pear-core-min": "self.version"
  6618. },
  6619. "type": "library",
  6620. "autoload": {
  6621. "psr-0": {
  6622. "": "src/"
  6623. }
  6624. },
  6625. "notification-url": "https://packagist.org/downloads/",
  6626. "include-path": [
  6627. "src/"
  6628. ],
  6629. "license": [
  6630. "BSD-3-Clause"
  6631. ],
  6632. "authors": [
  6633. {
  6634. "name": "Christian Weiske",
  6635. "email": "cweiske@php.net",
  6636. "role": "Lead"
  6637. }
  6638. ],
  6639. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6640. "time": "2019-03-13T18:15:44+00:00"
  6641. },
  6642. {
  6643. "name": "pear/pear_exception",
  6644. "version": "v1.0.0",
  6645. "source": {
  6646. "type": "git",
  6647. "url": "https://github.com/pear/PEAR_Exception.git",
  6648. "reference": "8c18719fdae000b690e3912be401c76e406dd13b"
  6649. },
  6650. "dist": {
  6651. "type": "zip",
  6652. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/8c18719fdae000b690e3912be401c76e406dd13b",
  6653. "reference": "8c18719fdae000b690e3912be401c76e406dd13b",
  6654. "shasum": ""
  6655. },
  6656. "require": {
  6657. "php": ">=4.4.0"
  6658. },
  6659. "require-dev": {
  6660. "phpunit/phpunit": "*"
  6661. },
  6662. "type": "class",
  6663. "extra": {
  6664. "branch-alias": {
  6665. "dev-master": "1.0.x-dev"
  6666. }
  6667. },
  6668. "autoload": {
  6669. "psr-0": {
  6670. "PEAR": ""
  6671. }
  6672. },
  6673. "notification-url": "https://packagist.org/downloads/",
  6674. "include-path": [
  6675. "."
  6676. ],
  6677. "license": [
  6678. "BSD-2-Clause"
  6679. ],
  6680. "authors": [
  6681. {
  6682. "name": "Helgi Thormar",
  6683. "email": "dufuz@php.net"
  6684. },
  6685. {
  6686. "name": "Greg Beaver",
  6687. "email": "cellog@php.net"
  6688. }
  6689. ],
  6690. "description": "The PEAR Exception base class.",
  6691. "homepage": "https://github.com/pear/PEAR_Exception",
  6692. "keywords": [
  6693. "exception"
  6694. ],
  6695. "time": "2015-02-10T20:07:52+00:00"
  6696. },
  6697. {
  6698. "name": "psr/container",
  6699. "version": "1.0.0",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://github.com/php-fig/container.git",
  6703. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6708. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6709. "shasum": ""
  6710. },
  6711. "require": {
  6712. "php": ">=5.3.0"
  6713. },
  6714. "type": "library",
  6715. "extra": {
  6716. "branch-alias": {
  6717. "dev-master": "1.0.x-dev"
  6718. }
  6719. },
  6720. "autoload": {
  6721. "psr-4": {
  6722. "Psr\\Container\\": "src/"
  6723. }
  6724. },
  6725. "notification-url": "https://packagist.org/downloads/",
  6726. "license": [
  6727. "MIT"
  6728. ],
  6729. "authors": [
  6730. {
  6731. "name": "PHP-FIG",
  6732. "homepage": "http://www.php-fig.org/"
  6733. }
  6734. ],
  6735. "description": "Common Container Interface (PHP FIG PSR-11)",
  6736. "homepage": "https://github.com/php-fig/container",
  6737. "keywords": [
  6738. "PSR-11",
  6739. "container",
  6740. "container-interface",
  6741. "container-interop",
  6742. "psr"
  6743. ],
  6744. "time": "2017-02-14T16:28:37+00:00"
  6745. },
  6746. {
  6747. "name": "psr/http-message",
  6748. "version": "1.0.1",
  6749. "source": {
  6750. "type": "git",
  6751. "url": "https://github.com/php-fig/http-message.git",
  6752. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  6753. },
  6754. "dist": {
  6755. "type": "zip",
  6756. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  6757. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  6758. "shasum": ""
  6759. },
  6760. "require": {
  6761. "php": ">=5.3.0"
  6762. },
  6763. "type": "library",
  6764. "extra": {
  6765. "branch-alias": {
  6766. "dev-master": "1.0.x-dev"
  6767. }
  6768. },
  6769. "autoload": {
  6770. "psr-4": {
  6771. "Psr\\Http\\Message\\": "src/"
  6772. }
  6773. },
  6774. "notification-url": "https://packagist.org/downloads/",
  6775. "license": [
  6776. "MIT"
  6777. ],
  6778. "authors": [
  6779. {
  6780. "name": "PHP-FIG",
  6781. "homepage": "http://www.php-fig.org/"
  6782. }
  6783. ],
  6784. "description": "Common interface for HTTP messages",
  6785. "homepage": "https://github.com/php-fig/http-message",
  6786. "keywords": [
  6787. "http",
  6788. "http-message",
  6789. "psr",
  6790. "psr-7",
  6791. "request",
  6792. "response"
  6793. ],
  6794. "time": "2016-08-06T14:39:51+00:00"
  6795. },
  6796. {
  6797. "name": "psr/log",
  6798. "version": "1.1.0",
  6799. "source": {
  6800. "type": "git",
  6801. "url": "https://github.com/php-fig/log.git",
  6802. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  6803. },
  6804. "dist": {
  6805. "type": "zip",
  6806. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  6807. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  6808. "shasum": ""
  6809. },
  6810. "require": {
  6811. "php": ">=5.3.0"
  6812. },
  6813. "type": "library",
  6814. "extra": {
  6815. "branch-alias": {
  6816. "dev-master": "1.0.x-dev"
  6817. }
  6818. },
  6819. "autoload": {
  6820. "psr-4": {
  6821. "Psr\\Log\\": "Psr/Log/"
  6822. }
  6823. },
  6824. "notification-url": "https://packagist.org/downloads/",
  6825. "license": [
  6826. "MIT"
  6827. ],
  6828. "authors": [
  6829. {
  6830. "name": "PHP-FIG",
  6831. "homepage": "http://www.php-fig.org/"
  6832. }
  6833. ],
  6834. "description": "Common interface for logging libraries",
  6835. "homepage": "https://github.com/php-fig/log",
  6836. "keywords": [
  6837. "log",
  6838. "psr",
  6839. "psr-3"
  6840. ],
  6841. "time": "2018-11-20T15:27:04+00:00"
  6842. },
  6843. {
  6844. "name": "psy/psysh",
  6845. "version": "v0.10.4",
  6846. "source": {
  6847. "type": "git",
  6848. "url": "https://github.com/bobthecow/psysh.git",
  6849. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  6850. },
  6851. "dist": {
  6852. "type": "zip",
  6853. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  6854. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  6855. "shasum": ""
  6856. },
  6857. "require": {
  6858. "dnoegel/php-xdg-base-dir": "0.1.*",
  6859. "ext-json": "*",
  6860. "ext-tokenizer": "*",
  6861. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  6862. "php": "^8.0 || ^7.0 || ^5.5.9",
  6863. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  6864. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  6865. },
  6866. "require-dev": {
  6867. "bamarni/composer-bin-plugin": "^1.2",
  6868. "hoa/console": "3.17.*"
  6869. },
  6870. "suggest": {
  6871. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6872. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6873. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6874. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  6875. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  6876. },
  6877. "bin": [
  6878. "bin/psysh"
  6879. ],
  6880. "type": "library",
  6881. "extra": {
  6882. "branch-alias": {
  6883. "dev-master": "0.10.x-dev"
  6884. }
  6885. },
  6886. "autoload": {
  6887. "files": [
  6888. "src/functions.php"
  6889. ],
  6890. "psr-4": {
  6891. "Psy\\": "src/"
  6892. }
  6893. },
  6894. "notification-url": "https://packagist.org/downloads/",
  6895. "license": [
  6896. "MIT"
  6897. ],
  6898. "authors": [
  6899. {
  6900. "name": "Justin Hileman",
  6901. "email": "justin@justinhileman.info",
  6902. "homepage": "http://justinhileman.com"
  6903. }
  6904. ],
  6905. "description": "An interactive shell for modern PHP.",
  6906. "homepage": "http://psysh.org",
  6907. "keywords": [
  6908. "REPL",
  6909. "console",
  6910. "interactive",
  6911. "shell"
  6912. ],
  6913. "time": "2020-05-03T19:32:03+00:00"
  6914. },
  6915. {
  6916. "name": "ralouphie/getallheaders",
  6917. "version": "3.0.3",
  6918. "source": {
  6919. "type": "git",
  6920. "url": "https://github.com/ralouphie/getallheaders.git",
  6921. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6922. },
  6923. "dist": {
  6924. "type": "zip",
  6925. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6926. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6927. "shasum": ""
  6928. },
  6929. "require": {
  6930. "php": ">=5.6"
  6931. },
  6932. "require-dev": {
  6933. "php-coveralls/php-coveralls": "^2.1",
  6934. "phpunit/phpunit": "^5 || ^6.5"
  6935. },
  6936. "type": "library",
  6937. "autoload": {
  6938. "files": [
  6939. "src/getallheaders.php"
  6940. ]
  6941. },
  6942. "notification-url": "https://packagist.org/downloads/",
  6943. "license": [
  6944. "MIT"
  6945. ],
  6946. "authors": [
  6947. {
  6948. "name": "Ralph Khattar",
  6949. "email": "ralph.khattar@gmail.com"
  6950. }
  6951. ],
  6952. "description": "A polyfill for getallheaders.",
  6953. "time": "2019-03-08T08:55:37+00:00"
  6954. },
  6955. {
  6956. "name": "stack/builder",
  6957. "version": "v1.0.5",
  6958. "source": {
  6959. "type": "git",
  6960. "url": "https://github.com/stackphp/builder.git",
  6961. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  6962. },
  6963. "dist": {
  6964. "type": "zip",
  6965. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  6966. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  6967. "shasum": ""
  6968. },
  6969. "require": {
  6970. "php": ">=5.3.0",
  6971. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  6972. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  6973. },
  6974. "require-dev": {
  6975. "silex/silex": "~1.0"
  6976. },
  6977. "type": "library",
  6978. "extra": {
  6979. "branch-alias": {
  6980. "dev-master": "1.0-dev"
  6981. }
  6982. },
  6983. "autoload": {
  6984. "psr-0": {
  6985. "Stack": "src"
  6986. }
  6987. },
  6988. "notification-url": "https://packagist.org/downloads/",
  6989. "license": [
  6990. "MIT"
  6991. ],
  6992. "authors": [
  6993. {
  6994. "name": "Igor Wiedler",
  6995. "email": "igor@wiedler.ch"
  6996. }
  6997. ],
  6998. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  6999. "keywords": [
  7000. "stack"
  7001. ],
  7002. "time": "2017-11-18T14:57:29+00:00"
  7003. },
  7004. {
  7005. "name": "stecman/symfony-console-completion",
  7006. "version": "0.11.0",
  7007. "source": {
  7008. "type": "git",
  7009. "url": "https://github.com/stecman/symfony-console-completion.git",
  7010. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518"
  7011. },
  7012. "dist": {
  7013. "type": "zip",
  7014. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/a9502dab59405e275a9f264536c4e1cb61fc3518",
  7015. "reference": "a9502dab59405e275a9f264536c4e1cb61fc3518",
  7016. "shasum": ""
  7017. },
  7018. "require": {
  7019. "php": ">=5.3.2",
  7020. "symfony/console": "~2.3 || ~3.0 || ~4.0 || ~5.0"
  7021. },
  7022. "require-dev": {
  7023. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  7024. },
  7025. "type": "library",
  7026. "extra": {
  7027. "branch-alias": {
  7028. "dev-master": "0.10.x-dev"
  7029. }
  7030. },
  7031. "autoload": {
  7032. "psr-4": {
  7033. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  7034. }
  7035. },
  7036. "notification-url": "https://packagist.org/downloads/",
  7037. "license": [
  7038. "MIT"
  7039. ],
  7040. "authors": [
  7041. {
  7042. "name": "Stephen Holdaway",
  7043. "email": "stephen@stecman.co.nz"
  7044. }
  7045. ],
  7046. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  7047. "time": "2019-11-24T17:03:06+00:00"
  7048. },
  7049. {
  7050. "name": "symfony-cmf/routing",
  7051. "version": "1.4.1",
  7052. "source": {
  7053. "type": "git",
  7054. "url": "https://github.com/symfony-cmf/routing.git",
  7055. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7056. },
  7057. "dist": {
  7058. "type": "zip",
  7059. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7060. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7061. "shasum": ""
  7062. },
  7063. "require": {
  7064. "php": "^5.3.9|^7.0",
  7065. "psr/log": "1.*",
  7066. "symfony/http-kernel": "^2.2|3.*",
  7067. "symfony/routing": "^2.2|3.*"
  7068. },
  7069. "require-dev": {
  7070. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7071. "symfony-cmf/testing": "^1.3",
  7072. "symfony/config": "^2.2|3.*",
  7073. "symfony/dependency-injection": "^2.0.5|3.*",
  7074. "symfony/event-dispatcher": "^2.1|3.*"
  7075. },
  7076. "suggest": {
  7077. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7078. },
  7079. "type": "library",
  7080. "extra": {
  7081. "branch-alias": {
  7082. "dev-master": "1.4-dev"
  7083. }
  7084. },
  7085. "autoload": {
  7086. "psr-4": {
  7087. "Symfony\\Cmf\\Component\\Routing\\": ""
  7088. }
  7089. },
  7090. "notification-url": "https://packagist.org/downloads/",
  7091. "license": [
  7092. "MIT"
  7093. ],
  7094. "authors": [
  7095. {
  7096. "name": "Symfony CMF Community",
  7097. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7098. }
  7099. ],
  7100. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7101. "homepage": "http://cmf.symfony.com",
  7102. "keywords": [
  7103. "database",
  7104. "routing"
  7105. ],
  7106. "time": "2017-05-09T08:10:41+00:00"
  7107. },
  7108. {
  7109. "name": "symfony/class-loader",
  7110. "version": "v3.4.35",
  7111. "source": {
  7112. "type": "git",
  7113. "url": "https://github.com/symfony/class-loader.git",
  7114. "reference": "e212b06996819a2bce026a63da03b7182d05a690"
  7115. },
  7116. "dist": {
  7117. "type": "zip",
  7118. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690",
  7119. "reference": "e212b06996819a2bce026a63da03b7182d05a690",
  7120. "shasum": ""
  7121. },
  7122. "require": {
  7123. "php": "^5.5.9|>=7.0.8"
  7124. },
  7125. "require-dev": {
  7126. "symfony/finder": "~2.8|~3.0|~4.0",
  7127. "symfony/polyfill-apcu": "~1.1"
  7128. },
  7129. "suggest": {
  7130. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7131. },
  7132. "type": "library",
  7133. "extra": {
  7134. "branch-alias": {
  7135. "dev-master": "3.4-dev"
  7136. }
  7137. },
  7138. "autoload": {
  7139. "psr-4": {
  7140. "Symfony\\Component\\ClassLoader\\": ""
  7141. },
  7142. "exclude-from-classmap": [
  7143. "/Tests/"
  7144. ]
  7145. },
  7146. "notification-url": "https://packagist.org/downloads/",
  7147. "license": [
  7148. "MIT"
  7149. ],
  7150. "authors": [
  7151. {
  7152. "name": "Fabien Potencier",
  7153. "email": "fabien@symfony.com"
  7154. },
  7155. {
  7156. "name": "Symfony Community",
  7157. "homepage": "https://symfony.com/contributors"
  7158. }
  7159. ],
  7160. "description": "Symfony ClassLoader Component",
  7161. "homepage": "https://symfony.com",
  7162. "time": "2019-08-20T13:31:17+00:00"
  7163. },
  7164. {
  7165. "name": "symfony/config",
  7166. "version": "v3.4.40",
  7167. "source": {
  7168. "type": "git",
  7169. "url": "https://github.com/symfony/config.git",
  7170. "reference": "3634991bea549e73c45a964c38f30ceeae6ed877"
  7171. },
  7172. "dist": {
  7173. "type": "zip",
  7174. "url": "https://api.github.com/repos/symfony/config/zipball/3634991bea549e73c45a964c38f30ceeae6ed877",
  7175. "reference": "3634991bea549e73c45a964c38f30ceeae6ed877",
  7176. "shasum": ""
  7177. },
  7178. "require": {
  7179. "php": "^5.5.9|>=7.0.8",
  7180. "symfony/filesystem": "~2.8|~3.0|~4.0",
  7181. "symfony/polyfill-ctype": "~1.8"
  7182. },
  7183. "conflict": {
  7184. "symfony/dependency-injection": "<3.3",
  7185. "symfony/finder": "<3.3"
  7186. },
  7187. "require-dev": {
  7188. "symfony/dependency-injection": "~3.3|~4.0",
  7189. "symfony/event-dispatcher": "~3.3|~4.0",
  7190. "symfony/finder": "~3.3|~4.0",
  7191. "symfony/yaml": "~3.0|~4.0"
  7192. },
  7193. "suggest": {
  7194. "symfony/yaml": "To use the yaml reference dumper"
  7195. },
  7196. "type": "library",
  7197. "extra": {
  7198. "branch-alias": {
  7199. "dev-master": "3.4-dev"
  7200. }
  7201. },
  7202. "autoload": {
  7203. "psr-4": {
  7204. "Symfony\\Component\\Config\\": ""
  7205. },
  7206. "exclude-from-classmap": [
  7207. "/Tests/"
  7208. ]
  7209. },
  7210. "notification-url": "https://packagist.org/downloads/",
  7211. "license": [
  7212. "MIT"
  7213. ],
  7214. "authors": [
  7215. {
  7216. "name": "Fabien Potencier",
  7217. "email": "fabien@symfony.com"
  7218. },
  7219. {
  7220. "name": "Symfony Community",
  7221. "homepage": "https://symfony.com/contributors"
  7222. }
  7223. ],
  7224. "description": "Symfony Config Component",
  7225. "homepage": "https://symfony.com",
  7226. "time": "2020-04-12T14:33:46+00:00"
  7227. },
  7228. {
  7229. "name": "symfony/console",
  7230. "version": "v3.4.35",
  7231. "source": {
  7232. "type": "git",
  7233. "url": "https://github.com/symfony/console.git",
  7234. "reference": "17b154f932c5874cdbda6d05796b6490eec9f9f7"
  7235. },
  7236. "dist": {
  7237. "type": "zip",
  7238. "url": "https://api.github.com/repos/symfony/console/zipball/17b154f932c5874cdbda6d05796b6490eec9f9f7",
  7239. "reference": "17b154f932c5874cdbda6d05796b6490eec9f9f7",
  7240. "shasum": ""
  7241. },
  7242. "require": {
  7243. "php": "^5.5.9|>=7.0.8",
  7244. "symfony/debug": "~2.8|~3.0|~4.0",
  7245. "symfony/polyfill-mbstring": "~1.0"
  7246. },
  7247. "conflict": {
  7248. "symfony/dependency-injection": "<3.4",
  7249. "symfony/process": "<3.3"
  7250. },
  7251. "provide": {
  7252. "psr/log-implementation": "1.0"
  7253. },
  7254. "require-dev": {
  7255. "psr/log": "~1.0",
  7256. "symfony/config": "~3.3|~4.0",
  7257. "symfony/dependency-injection": "~3.4|~4.0",
  7258. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7259. "symfony/lock": "~3.4|~4.0",
  7260. "symfony/process": "~3.3|~4.0"
  7261. },
  7262. "suggest": {
  7263. "psr/log": "For using the console logger",
  7264. "symfony/event-dispatcher": "",
  7265. "symfony/lock": "",
  7266. "symfony/process": ""
  7267. },
  7268. "type": "library",
  7269. "extra": {
  7270. "branch-alias": {
  7271. "dev-master": "3.4-dev"
  7272. }
  7273. },
  7274. "autoload": {
  7275. "psr-4": {
  7276. "Symfony\\Component\\Console\\": ""
  7277. },
  7278. "exclude-from-classmap": [
  7279. "/Tests/"
  7280. ]
  7281. },
  7282. "notification-url": "https://packagist.org/downloads/",
  7283. "license": [
  7284. "MIT"
  7285. ],
  7286. "authors": [
  7287. {
  7288. "name": "Fabien Potencier",
  7289. "email": "fabien@symfony.com"
  7290. },
  7291. {
  7292. "name": "Symfony Community",
  7293. "homepage": "https://symfony.com/contributors"
  7294. }
  7295. ],
  7296. "description": "Symfony Console Component",
  7297. "homepage": "https://symfony.com",
  7298. "time": "2019-11-13T07:12:39+00:00"
  7299. },
  7300. {
  7301. "name": "symfony/css-selector",
  7302. "version": "v3.4.40",
  7303. "source": {
  7304. "type": "git",
  7305. "url": "https://github.com/symfony/css-selector.git",
  7306. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518"
  7307. },
  7308. "dist": {
  7309. "type": "zip",
  7310. "url": "https://api.github.com/repos/symfony/css-selector/zipball/9ccf6e78077a3fc1596e6c7b5958008965a11518",
  7311. "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518",
  7312. "shasum": ""
  7313. },
  7314. "require": {
  7315. "php": "^5.5.9|>=7.0.8"
  7316. },
  7317. "type": "library",
  7318. "extra": {
  7319. "branch-alias": {
  7320. "dev-master": "3.4-dev"
  7321. }
  7322. },
  7323. "autoload": {
  7324. "psr-4": {
  7325. "Symfony\\Component\\CssSelector\\": ""
  7326. },
  7327. "exclude-from-classmap": [
  7328. "/Tests/"
  7329. ]
  7330. },
  7331. "notification-url": "https://packagist.org/downloads/",
  7332. "license": [
  7333. "MIT"
  7334. ],
  7335. "authors": [
  7336. {
  7337. "name": "Fabien Potencier",
  7338. "email": "fabien@symfony.com"
  7339. },
  7340. {
  7341. "name": "Jean-François Simon",
  7342. "email": "jeanfrancois.simon@sensiolabs.com"
  7343. },
  7344. {
  7345. "name": "Symfony Community",
  7346. "homepage": "https://symfony.com/contributors"
  7347. }
  7348. ],
  7349. "description": "Symfony CssSelector Component",
  7350. "homepage": "https://symfony.com",
  7351. "time": "2020-03-16T08:31:04+00:00"
  7352. },
  7353. {
  7354. "name": "symfony/debug",
  7355. "version": "v3.4.35",
  7356. "source": {
  7357. "type": "git",
  7358. "url": "https://github.com/symfony/debug.git",
  7359. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086"
  7360. },
  7361. "dist": {
  7362. "type": "zip",
  7363. "url": "https://api.github.com/repos/symfony/debug/zipball/f72e33fdb1170b326e72c3157f0cd456351dd086",
  7364. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086",
  7365. "shasum": ""
  7366. },
  7367. "require": {
  7368. "php": "^5.5.9|>=7.0.8",
  7369. "psr/log": "~1.0"
  7370. },
  7371. "conflict": {
  7372. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7373. },
  7374. "require-dev": {
  7375. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7376. },
  7377. "type": "library",
  7378. "extra": {
  7379. "branch-alias": {
  7380. "dev-master": "3.4-dev"
  7381. }
  7382. },
  7383. "autoload": {
  7384. "psr-4": {
  7385. "Symfony\\Component\\Debug\\": ""
  7386. },
  7387. "exclude-from-classmap": [
  7388. "/Tests/"
  7389. ]
  7390. },
  7391. "notification-url": "https://packagist.org/downloads/",
  7392. "license": [
  7393. "MIT"
  7394. ],
  7395. "authors": [
  7396. {
  7397. "name": "Fabien Potencier",
  7398. "email": "fabien@symfony.com"
  7399. },
  7400. {
  7401. "name": "Symfony Community",
  7402. "homepage": "https://symfony.com/contributors"
  7403. }
  7404. ],
  7405. "description": "Symfony Debug Component",
  7406. "homepage": "https://symfony.com",
  7407. "time": "2019-10-24T15:33:53+00:00"
  7408. },
  7409. {
  7410. "name": "symfony/dependency-injection",
  7411. "version": "v3.4.35",
  7412. "source": {
  7413. "type": "git",
  7414. "url": "https://github.com/symfony/dependency-injection.git",
  7415. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920"
  7416. },
  7417. "dist": {
  7418. "type": "zip",
  7419. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0ea4d39ca82409a25a43b61ce828048a90000920",
  7420. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920",
  7421. "shasum": ""
  7422. },
  7423. "require": {
  7424. "php": "^5.5.9|>=7.0.8",
  7425. "psr/container": "^1.0"
  7426. },
  7427. "conflict": {
  7428. "symfony/config": "<3.3.7",
  7429. "symfony/finder": "<3.3",
  7430. "symfony/proxy-manager-bridge": "<3.4",
  7431. "symfony/yaml": "<3.4"
  7432. },
  7433. "provide": {
  7434. "psr/container-implementation": "1.0"
  7435. },
  7436. "require-dev": {
  7437. "symfony/config": "~3.3|~4.0",
  7438. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7439. "symfony/yaml": "~3.4|~4.0"
  7440. },
  7441. "suggest": {
  7442. "symfony/config": "",
  7443. "symfony/expression-language": "For using expressions in service container configuration",
  7444. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7445. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7446. "symfony/yaml": ""
  7447. },
  7448. "type": "library",
  7449. "extra": {
  7450. "branch-alias": {
  7451. "dev-master": "3.4-dev"
  7452. }
  7453. },
  7454. "autoload": {
  7455. "psr-4": {
  7456. "Symfony\\Component\\DependencyInjection\\": ""
  7457. },
  7458. "exclude-from-classmap": [
  7459. "/Tests/"
  7460. ]
  7461. },
  7462. "notification-url": "https://packagist.org/downloads/",
  7463. "license": [
  7464. "MIT"
  7465. ],
  7466. "authors": [
  7467. {
  7468. "name": "Fabien Potencier",
  7469. "email": "fabien@symfony.com"
  7470. },
  7471. {
  7472. "name": "Symfony Community",
  7473. "homepage": "https://symfony.com/contributors"
  7474. }
  7475. ],
  7476. "description": "Symfony DependencyInjection Component",
  7477. "homepage": "https://symfony.com",
  7478. "time": "2019-11-08T16:18:30+00:00"
  7479. },
  7480. {
  7481. "name": "symfony/dom-crawler",
  7482. "version": "v3.4.40",
  7483. "source": {
  7484. "type": "git",
  7485. "url": "https://github.com/symfony/dom-crawler.git",
  7486. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358"
  7487. },
  7488. "dist": {
  7489. "type": "zip",
  7490. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  7491. "reference": "ceacdab4abf7695ef6bec77c8b7983e1544c6358",
  7492. "shasum": ""
  7493. },
  7494. "require": {
  7495. "php": "^5.5.9|>=7.0.8",
  7496. "symfony/polyfill-ctype": "~1.8",
  7497. "symfony/polyfill-mbstring": "~1.0"
  7498. },
  7499. "require-dev": {
  7500. "symfony/css-selector": "~2.8|~3.0|~4.0"
  7501. },
  7502. "suggest": {
  7503. "symfony/css-selector": ""
  7504. },
  7505. "type": "library",
  7506. "extra": {
  7507. "branch-alias": {
  7508. "dev-master": "3.4-dev"
  7509. }
  7510. },
  7511. "autoload": {
  7512. "psr-4": {
  7513. "Symfony\\Component\\DomCrawler\\": ""
  7514. },
  7515. "exclude-from-classmap": [
  7516. "/Tests/"
  7517. ]
  7518. },
  7519. "notification-url": "https://packagist.org/downloads/",
  7520. "license": [
  7521. "MIT"
  7522. ],
  7523. "authors": [
  7524. {
  7525. "name": "Fabien Potencier",
  7526. "email": "fabien@symfony.com"
  7527. },
  7528. {
  7529. "name": "Symfony Community",
  7530. "homepage": "https://symfony.com/contributors"
  7531. }
  7532. ],
  7533. "description": "Symfony DomCrawler Component",
  7534. "homepage": "https://symfony.com",
  7535. "time": "2020-03-16T08:31:04+00:00"
  7536. },
  7537. {
  7538. "name": "symfony/event-dispatcher",
  7539. "version": "v3.4.35",
  7540. "source": {
  7541. "type": "git",
  7542. "url": "https://github.com/symfony/event-dispatcher.git",
  7543. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177"
  7544. },
  7545. "dist": {
  7546. "type": "zip",
  7547. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177",
  7548. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177",
  7549. "shasum": ""
  7550. },
  7551. "require": {
  7552. "php": "^5.5.9|>=7.0.8"
  7553. },
  7554. "conflict": {
  7555. "symfony/dependency-injection": "<3.3"
  7556. },
  7557. "require-dev": {
  7558. "psr/log": "~1.0",
  7559. "symfony/config": "~2.8|~3.0|~4.0",
  7560. "symfony/dependency-injection": "~3.3|~4.0",
  7561. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7562. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7563. },
  7564. "suggest": {
  7565. "symfony/dependency-injection": "",
  7566. "symfony/http-kernel": ""
  7567. },
  7568. "type": "library",
  7569. "extra": {
  7570. "branch-alias": {
  7571. "dev-master": "3.4-dev"
  7572. }
  7573. },
  7574. "autoload": {
  7575. "psr-4": {
  7576. "Symfony\\Component\\EventDispatcher\\": ""
  7577. },
  7578. "exclude-from-classmap": [
  7579. "/Tests/"
  7580. ]
  7581. },
  7582. "notification-url": "https://packagist.org/downloads/",
  7583. "license": [
  7584. "MIT"
  7585. ],
  7586. "authors": [
  7587. {
  7588. "name": "Fabien Potencier",
  7589. "email": "fabien@symfony.com"
  7590. },
  7591. {
  7592. "name": "Symfony Community",
  7593. "homepage": "https://symfony.com/contributors"
  7594. }
  7595. ],
  7596. "description": "Symfony EventDispatcher Component",
  7597. "homepage": "https://symfony.com",
  7598. "time": "2019-10-24T15:33:53+00:00"
  7599. },
  7600. {
  7601. "name": "symfony/filesystem",
  7602. "version": "v3.4.40",
  7603. "source": {
  7604. "type": "git",
  7605. "url": "https://github.com/symfony/filesystem.git",
  7606. "reference": "78a93e5606a19d0fb490afc3c4a9b7ecd86e1515"
  7607. },
  7608. "dist": {
  7609. "type": "zip",
  7610. "url": "https://api.github.com/repos/symfony/filesystem/zipball/78a93e5606a19d0fb490afc3c4a9b7ecd86e1515",
  7611. "reference": "78a93e5606a19d0fb490afc3c4a9b7ecd86e1515",
  7612. "shasum": ""
  7613. },
  7614. "require": {
  7615. "php": "^5.5.9|>=7.0.8",
  7616. "symfony/polyfill-ctype": "~1.8"
  7617. },
  7618. "type": "library",
  7619. "extra": {
  7620. "branch-alias": {
  7621. "dev-master": "3.4-dev"
  7622. }
  7623. },
  7624. "autoload": {
  7625. "psr-4": {
  7626. "Symfony\\Component\\Filesystem\\": ""
  7627. },
  7628. "exclude-from-classmap": [
  7629. "/Tests/"
  7630. ]
  7631. },
  7632. "notification-url": "https://packagist.org/downloads/",
  7633. "license": [
  7634. "MIT"
  7635. ],
  7636. "authors": [
  7637. {
  7638. "name": "Fabien Potencier",
  7639. "email": "fabien@symfony.com"
  7640. },
  7641. {
  7642. "name": "Symfony Community",
  7643. "homepage": "https://symfony.com/contributors"
  7644. }
  7645. ],
  7646. "description": "Symfony Filesystem Component",
  7647. "homepage": "https://symfony.com",
  7648. "time": "2020-04-12T16:54:01+00:00"
  7649. },
  7650. {
  7651. "name": "symfony/finder",
  7652. "version": "v3.4.40",
  7653. "source": {
  7654. "type": "git",
  7655. "url": "https://github.com/symfony/finder.git",
  7656. "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200"
  7657. },
  7658. "dist": {
  7659. "type": "zip",
  7660. "url": "https://api.github.com/repos/symfony/finder/zipball/5ec813ccafa8164ef21757e8c725d3a57da59200",
  7661. "reference": "5ec813ccafa8164ef21757e8c725d3a57da59200",
  7662. "shasum": ""
  7663. },
  7664. "require": {
  7665. "php": "^5.5.9|>=7.0.8"
  7666. },
  7667. "type": "library",
  7668. "extra": {
  7669. "branch-alias": {
  7670. "dev-master": "3.4-dev"
  7671. }
  7672. },
  7673. "autoload": {
  7674. "psr-4": {
  7675. "Symfony\\Component\\Finder\\": ""
  7676. },
  7677. "exclude-from-classmap": [
  7678. "/Tests/"
  7679. ]
  7680. },
  7681. "notification-url": "https://packagist.org/downloads/",
  7682. "license": [
  7683. "MIT"
  7684. ],
  7685. "authors": [
  7686. {
  7687. "name": "Fabien Potencier",
  7688. "email": "fabien@symfony.com"
  7689. },
  7690. {
  7691. "name": "Symfony Community",
  7692. "homepage": "https://symfony.com/contributors"
  7693. }
  7694. ],
  7695. "description": "Symfony Finder Component",
  7696. "homepage": "https://symfony.com",
  7697. "time": "2020-02-14T07:34:21+00:00"
  7698. },
  7699. {
  7700. "name": "symfony/http-foundation",
  7701. "version": "v3.4.35",
  7702. "source": {
  7703. "type": "git",
  7704. "url": "https://github.com/symfony/http-foundation.git",
  7705. "reference": "9e4b3ac8fa3348b4811674d23de32d201de225ce"
  7706. },
  7707. "dist": {
  7708. "type": "zip",
  7709. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9e4b3ac8fa3348b4811674d23de32d201de225ce",
  7710. "reference": "9e4b3ac8fa3348b4811674d23de32d201de225ce",
  7711. "shasum": ""
  7712. },
  7713. "require": {
  7714. "php": "^5.5.9|>=7.0.8",
  7715. "symfony/polyfill-mbstring": "~1.1",
  7716. "symfony/polyfill-php70": "~1.6"
  7717. },
  7718. "require-dev": {
  7719. "symfony/expression-language": "~2.8|~3.0|~4.0"
  7720. },
  7721. "type": "library",
  7722. "extra": {
  7723. "branch-alias": {
  7724. "dev-master": "3.4-dev"
  7725. }
  7726. },
  7727. "autoload": {
  7728. "psr-4": {
  7729. "Symfony\\Component\\HttpFoundation\\": ""
  7730. },
  7731. "exclude-from-classmap": [
  7732. "/Tests/"
  7733. ]
  7734. },
  7735. "notification-url": "https://packagist.org/downloads/",
  7736. "license": [
  7737. "MIT"
  7738. ],
  7739. "authors": [
  7740. {
  7741. "name": "Fabien Potencier",
  7742. "email": "fabien@symfony.com"
  7743. },
  7744. {
  7745. "name": "Symfony Community",
  7746. "homepage": "https://symfony.com/contributors"
  7747. }
  7748. ],
  7749. "description": "Symfony HttpFoundation Component",
  7750. "homepage": "https://symfony.com",
  7751. "time": "2019-11-11T12:53:10+00:00"
  7752. },
  7753. {
  7754. "name": "symfony/http-kernel",
  7755. "version": "v3.4.35",
  7756. "source": {
  7757. "type": "git",
  7758. "url": "https://github.com/symfony/http-kernel.git",
  7759. "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9"
  7760. },
  7761. "dist": {
  7762. "type": "zip",
  7763. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e1764b3de00ec5636dd03d02fd44bcb1147d70d9",
  7764. "reference": "e1764b3de00ec5636dd03d02fd44bcb1147d70d9",
  7765. "shasum": ""
  7766. },
  7767. "require": {
  7768. "php": "^5.5.9|>=7.0.8",
  7769. "psr/log": "~1.0",
  7770. "symfony/debug": "^3.3.3|~4.0",
  7771. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7772. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  7773. "symfony/polyfill-ctype": "~1.8",
  7774. "symfony/polyfill-php56": "~1.8"
  7775. },
  7776. "conflict": {
  7777. "symfony/config": "<2.8",
  7778. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  7779. "symfony/var-dumper": "<3.3",
  7780. "twig/twig": "<1.34|<2.4,>=2"
  7781. },
  7782. "provide": {
  7783. "psr/log-implementation": "1.0"
  7784. },
  7785. "require-dev": {
  7786. "psr/cache": "~1.0",
  7787. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  7788. "symfony/class-loader": "~2.8|~3.0",
  7789. "symfony/config": "~2.8|~3.0|~4.0",
  7790. "symfony/console": "~2.8|~3.0|~4.0",
  7791. "symfony/css-selector": "~2.8|~3.0|~4.0",
  7792. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  7793. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  7794. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7795. "symfony/finder": "~2.8|~3.0|~4.0",
  7796. "symfony/process": "~2.8|~3.0|~4.0",
  7797. "symfony/routing": "~3.4|~4.0",
  7798. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  7799. "symfony/templating": "~2.8|~3.0|~4.0",
  7800. "symfony/translation": "~2.8|~3.0|~4.0",
  7801. "symfony/var-dumper": "~3.3|~4.0"
  7802. },
  7803. "suggest": {
  7804. "symfony/browser-kit": "",
  7805. "symfony/config": "",
  7806. "symfony/console": "",
  7807. "symfony/dependency-injection": "",
  7808. "symfony/finder": "",
  7809. "symfony/var-dumper": ""
  7810. },
  7811. "type": "library",
  7812. "extra": {
  7813. "branch-alias": {
  7814. "dev-master": "3.4-dev"
  7815. }
  7816. },
  7817. "autoload": {
  7818. "psr-4": {
  7819. "Symfony\\Component\\HttpKernel\\": ""
  7820. },
  7821. "exclude-from-classmap": [
  7822. "/Tests/"
  7823. ]
  7824. },
  7825. "notification-url": "https://packagist.org/downloads/",
  7826. "license": [
  7827. "MIT"
  7828. ],
  7829. "authors": [
  7830. {
  7831. "name": "Fabien Potencier",
  7832. "email": "fabien@symfony.com"
  7833. },
  7834. {
  7835. "name": "Symfony Community",
  7836. "homepage": "https://symfony.com/contributors"
  7837. }
  7838. ],
  7839. "description": "Symfony HttpKernel Component",
  7840. "homepage": "https://symfony.com",
  7841. "time": "2019-11-13T08:44:50+00:00"
  7842. },
  7843. {
  7844. "name": "symfony/polyfill-ctype",
  7845. "version": "v1.12.0",
  7846. "source": {
  7847. "type": "git",
  7848. "url": "https://github.com/symfony/polyfill-ctype.git",
  7849. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  7850. },
  7851. "dist": {
  7852. "type": "zip",
  7853. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  7854. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  7855. "shasum": ""
  7856. },
  7857. "require": {
  7858. "php": ">=5.3.3"
  7859. },
  7860. "suggest": {
  7861. "ext-ctype": "For best performance"
  7862. },
  7863. "type": "library",
  7864. "extra": {
  7865. "branch-alias": {
  7866. "dev-master": "1.12-dev"
  7867. }
  7868. },
  7869. "autoload": {
  7870. "psr-4": {
  7871. "Symfony\\Polyfill\\Ctype\\": ""
  7872. },
  7873. "files": [
  7874. "bootstrap.php"
  7875. ]
  7876. },
  7877. "notification-url": "https://packagist.org/downloads/",
  7878. "license": [
  7879. "MIT"
  7880. ],
  7881. "authors": [
  7882. {
  7883. "name": "Gert de Pagter",
  7884. "email": "BackEndTea@gmail.com"
  7885. },
  7886. {
  7887. "name": "Symfony Community",
  7888. "homepage": "https://symfony.com/contributors"
  7889. }
  7890. ],
  7891. "description": "Symfony polyfill for ctype functions",
  7892. "homepage": "https://symfony.com",
  7893. "keywords": [
  7894. "compatibility",
  7895. "ctype",
  7896. "polyfill",
  7897. "portable"
  7898. ],
  7899. "time": "2019-08-06T08:03:45+00:00"
  7900. },
  7901. {
  7902. "name": "symfony/polyfill-iconv",
  7903. "version": "v1.12.0",
  7904. "source": {
  7905. "type": "git",
  7906. "url": "https://github.com/symfony/polyfill-iconv.git",
  7907. "reference": "685968b11e61a347c18bf25db32effa478be610f"
  7908. },
  7909. "dist": {
  7910. "type": "zip",
  7911. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f",
  7912. "reference": "685968b11e61a347c18bf25db32effa478be610f",
  7913. "shasum": ""
  7914. },
  7915. "require": {
  7916. "php": ">=5.3.3"
  7917. },
  7918. "suggest": {
  7919. "ext-iconv": "For best performance"
  7920. },
  7921. "type": "library",
  7922. "extra": {
  7923. "branch-alias": {
  7924. "dev-master": "1.12-dev"
  7925. }
  7926. },
  7927. "autoload": {
  7928. "psr-4": {
  7929. "Symfony\\Polyfill\\Iconv\\": ""
  7930. },
  7931. "files": [
  7932. "bootstrap.php"
  7933. ]
  7934. },
  7935. "notification-url": "https://packagist.org/downloads/",
  7936. "license": [
  7937. "MIT"
  7938. ],
  7939. "authors": [
  7940. {
  7941. "name": "Nicolas Grekas",
  7942. "email": "p@tchwork.com"
  7943. },
  7944. {
  7945. "name": "Symfony Community",
  7946. "homepage": "https://symfony.com/contributors"
  7947. }
  7948. ],
  7949. "description": "Symfony polyfill for the Iconv extension",
  7950. "homepage": "https://symfony.com",
  7951. "keywords": [
  7952. "compatibility",
  7953. "iconv",
  7954. "polyfill",
  7955. "portable",
  7956. "shim"
  7957. ],
  7958. "time": "2019-08-06T08:03:45+00:00"
  7959. },
  7960. {
  7961. "name": "symfony/polyfill-mbstring",
  7962. "version": "v1.12.0",
  7963. "source": {
  7964. "type": "git",
  7965. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7966. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
  7967. },
  7968. "dist": {
  7969. "type": "zip",
  7970. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  7971. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  7972. "shasum": ""
  7973. },
  7974. "require": {
  7975. "php": ">=5.3.3"
  7976. },
  7977. "suggest": {
  7978. "ext-mbstring": "For best performance"
  7979. },
  7980. "type": "library",
  7981. "extra": {
  7982. "branch-alias": {
  7983. "dev-master": "1.12-dev"
  7984. }
  7985. },
  7986. "autoload": {
  7987. "psr-4": {
  7988. "Symfony\\Polyfill\\Mbstring\\": ""
  7989. },
  7990. "files": [
  7991. "bootstrap.php"
  7992. ]
  7993. },
  7994. "notification-url": "https://packagist.org/downloads/",
  7995. "license": [
  7996. "MIT"
  7997. ],
  7998. "authors": [
  7999. {
  8000. "name": "Nicolas Grekas",
  8001. "email": "p@tchwork.com"
  8002. },
  8003. {
  8004. "name": "Symfony Community",
  8005. "homepage": "https://symfony.com/contributors"
  8006. }
  8007. ],
  8008. "description": "Symfony polyfill for the Mbstring extension",
  8009. "homepage": "https://symfony.com",
  8010. "keywords": [
  8011. "compatibility",
  8012. "mbstring",
  8013. "polyfill",
  8014. "portable",
  8015. "shim"
  8016. ],
  8017. "time": "2019-08-06T08:03:45+00:00"
  8018. },
  8019. {
  8020. "name": "symfony/polyfill-php56",
  8021. "version": "v1.12.0",
  8022. "source": {
  8023. "type": "git",
  8024. "url": "https://github.com/symfony/polyfill-php56.git",
  8025. "reference": "0e3b212e96a51338639d8ce175c046d7729c3403"
  8026. },
  8027. "dist": {
  8028. "type": "zip",
  8029. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/0e3b212e96a51338639d8ce175c046d7729c3403",
  8030. "reference": "0e3b212e96a51338639d8ce175c046d7729c3403",
  8031. "shasum": ""
  8032. },
  8033. "require": {
  8034. "php": ">=5.3.3",
  8035. "symfony/polyfill-util": "~1.0"
  8036. },
  8037. "type": "library",
  8038. "extra": {
  8039. "branch-alias": {
  8040. "dev-master": "1.12-dev"
  8041. }
  8042. },
  8043. "autoload": {
  8044. "psr-4": {
  8045. "Symfony\\Polyfill\\Php56\\": ""
  8046. },
  8047. "files": [
  8048. "bootstrap.php"
  8049. ]
  8050. },
  8051. "notification-url": "https://packagist.org/downloads/",
  8052. "license": [
  8053. "MIT"
  8054. ],
  8055. "authors": [
  8056. {
  8057. "name": "Nicolas Grekas",
  8058. "email": "p@tchwork.com"
  8059. },
  8060. {
  8061. "name": "Symfony Community",
  8062. "homepage": "https://symfony.com/contributors"
  8063. }
  8064. ],
  8065. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8066. "homepage": "https://symfony.com",
  8067. "keywords": [
  8068. "compatibility",
  8069. "polyfill",
  8070. "portable",
  8071. "shim"
  8072. ],
  8073. "time": "2019-08-06T08:03:45+00:00"
  8074. },
  8075. {
  8076. "name": "symfony/polyfill-php70",
  8077. "version": "v1.12.0",
  8078. "source": {
  8079. "type": "git",
  8080. "url": "https://github.com/symfony/polyfill-php70.git",
  8081. "reference": "54b4c428a0054e254223797d2713c31e08610831"
  8082. },
  8083. "dist": {
  8084. "type": "zip",
  8085. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831",
  8086. "reference": "54b4c428a0054e254223797d2713c31e08610831",
  8087. "shasum": ""
  8088. },
  8089. "require": {
  8090. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8091. "php": ">=5.3.3"
  8092. },
  8093. "type": "library",
  8094. "extra": {
  8095. "branch-alias": {
  8096. "dev-master": "1.12-dev"
  8097. }
  8098. },
  8099. "autoload": {
  8100. "psr-4": {
  8101. "Symfony\\Polyfill\\Php70\\": ""
  8102. },
  8103. "files": [
  8104. "bootstrap.php"
  8105. ],
  8106. "classmap": [
  8107. "Resources/stubs"
  8108. ]
  8109. },
  8110. "notification-url": "https://packagist.org/downloads/",
  8111. "license": [
  8112. "MIT"
  8113. ],
  8114. "authors": [
  8115. {
  8116. "name": "Nicolas Grekas",
  8117. "email": "p@tchwork.com"
  8118. },
  8119. {
  8120. "name": "Symfony Community",
  8121. "homepage": "https://symfony.com/contributors"
  8122. }
  8123. ],
  8124. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8125. "homepage": "https://symfony.com",
  8126. "keywords": [
  8127. "compatibility",
  8128. "polyfill",
  8129. "portable",
  8130. "shim"
  8131. ],
  8132. "time": "2019-08-06T08:03:45+00:00"
  8133. },
  8134. {
  8135. "name": "symfony/polyfill-util",
  8136. "version": "v1.12.0",
  8137. "source": {
  8138. "type": "git",
  8139. "url": "https://github.com/symfony/polyfill-util.git",
  8140. "reference": "4317de1386717b4c22caed7725350a8887ab205c"
  8141. },
  8142. "dist": {
  8143. "type": "zip",
  8144. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4317de1386717b4c22caed7725350a8887ab205c",
  8145. "reference": "4317de1386717b4c22caed7725350a8887ab205c",
  8146. "shasum": ""
  8147. },
  8148. "require": {
  8149. "php": ">=5.3.3"
  8150. },
  8151. "type": "library",
  8152. "extra": {
  8153. "branch-alias": {
  8154. "dev-master": "1.12-dev"
  8155. }
  8156. },
  8157. "autoload": {
  8158. "psr-4": {
  8159. "Symfony\\Polyfill\\Util\\": ""
  8160. }
  8161. },
  8162. "notification-url": "https://packagist.org/downloads/",
  8163. "license": [
  8164. "MIT"
  8165. ],
  8166. "authors": [
  8167. {
  8168. "name": "Nicolas Grekas",
  8169. "email": "p@tchwork.com"
  8170. },
  8171. {
  8172. "name": "Symfony Community",
  8173. "homepage": "https://symfony.com/contributors"
  8174. }
  8175. ],
  8176. "description": "Symfony utilities for portability of PHP codes",
  8177. "homepage": "https://symfony.com",
  8178. "keywords": [
  8179. "compat",
  8180. "compatibility",
  8181. "polyfill",
  8182. "shim"
  8183. ],
  8184. "time": "2019-08-06T08:03:45+00:00"
  8185. },
  8186. {
  8187. "name": "symfony/process",
  8188. "version": "v3.4.35",
  8189. "source": {
  8190. "type": "git",
  8191. "url": "https://github.com/symfony/process.git",
  8192. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e"
  8193. },
  8194. "dist": {
  8195. "type": "zip",
  8196. "url": "https://api.github.com/repos/symfony/process/zipball/c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  8197. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  8198. "shasum": ""
  8199. },
  8200. "require": {
  8201. "php": "^5.5.9|>=7.0.8"
  8202. },
  8203. "type": "library",
  8204. "extra": {
  8205. "branch-alias": {
  8206. "dev-master": "3.4-dev"
  8207. }
  8208. },
  8209. "autoload": {
  8210. "psr-4": {
  8211. "Symfony\\Component\\Process\\": ""
  8212. },
  8213. "exclude-from-classmap": [
  8214. "/Tests/"
  8215. ]
  8216. },
  8217. "notification-url": "https://packagist.org/downloads/",
  8218. "license": [
  8219. "MIT"
  8220. ],
  8221. "authors": [
  8222. {
  8223. "name": "Fabien Potencier",
  8224. "email": "fabien@symfony.com"
  8225. },
  8226. {
  8227. "name": "Symfony Community",
  8228. "homepage": "https://symfony.com/contributors"
  8229. }
  8230. ],
  8231. "description": "Symfony Process Component",
  8232. "homepage": "https://symfony.com",
  8233. "time": "2019-10-24T15:33:53+00:00"
  8234. },
  8235. {
  8236. "name": "symfony/psr-http-message-bridge",
  8237. "version": "v1.1.2",
  8238. "source": {
  8239. "type": "git",
  8240. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8241. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  8242. },
  8243. "dist": {
  8244. "type": "zip",
  8245. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  8246. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  8247. "shasum": ""
  8248. },
  8249. "require": {
  8250. "php": "^5.3.3 || ^7.0",
  8251. "psr/http-message": "^1.0",
  8252. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  8253. },
  8254. "require-dev": {
  8255. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  8256. },
  8257. "suggest": {
  8258. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8259. },
  8260. "type": "symfony-bridge",
  8261. "extra": {
  8262. "branch-alias": {
  8263. "dev-master": "1.1-dev"
  8264. }
  8265. },
  8266. "autoload": {
  8267. "psr-4": {
  8268. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8269. },
  8270. "exclude-from-classmap": [
  8271. "/Tests/"
  8272. ]
  8273. },
  8274. "notification-url": "https://packagist.org/downloads/",
  8275. "license": [
  8276. "MIT"
  8277. ],
  8278. "authors": [
  8279. {
  8280. "name": "Symfony Community",
  8281. "homepage": "http://symfony.com/contributors"
  8282. },
  8283. {
  8284. "name": "Fabien Potencier",
  8285. "email": "fabien@symfony.com"
  8286. }
  8287. ],
  8288. "description": "PSR HTTP message bridge",
  8289. "homepage": "http://symfony.com",
  8290. "keywords": [
  8291. "http",
  8292. "http-message",
  8293. "psr-17",
  8294. "psr-7"
  8295. ],
  8296. "time": "2019-04-03T17:09:40+00:00"
  8297. },
  8298. {
  8299. "name": "symfony/routing",
  8300. "version": "v3.4.35",
  8301. "source": {
  8302. "type": "git",
  8303. "url": "https://github.com/symfony/routing.git",
  8304. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5"
  8305. },
  8306. "dist": {
  8307. "type": "zip",
  8308. "url": "https://api.github.com/repos/symfony/routing/zipball/afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  8309. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  8310. "shasum": ""
  8311. },
  8312. "require": {
  8313. "php": "^5.5.9|>=7.0.8"
  8314. },
  8315. "conflict": {
  8316. "symfony/config": "<3.3.1",
  8317. "symfony/dependency-injection": "<3.3",
  8318. "symfony/yaml": "<3.4"
  8319. },
  8320. "require-dev": {
  8321. "doctrine/annotations": "~1.0",
  8322. "psr/log": "~1.0",
  8323. "symfony/config": "^3.3.1|~4.0",
  8324. "symfony/dependency-injection": "~3.3|~4.0",
  8325. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8326. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8327. "symfony/yaml": "~3.4|~4.0"
  8328. },
  8329. "suggest": {
  8330. "doctrine/annotations": "For using the annotation loader",
  8331. "symfony/config": "For using the all-in-one router or any loader",
  8332. "symfony/expression-language": "For using expression matching",
  8333. "symfony/http-foundation": "For using a Symfony Request object",
  8334. "symfony/yaml": "For using the YAML loader"
  8335. },
  8336. "type": "library",
  8337. "extra": {
  8338. "branch-alias": {
  8339. "dev-master": "3.4-dev"
  8340. }
  8341. },
  8342. "autoload": {
  8343. "psr-4": {
  8344. "Symfony\\Component\\Routing\\": ""
  8345. },
  8346. "exclude-from-classmap": [
  8347. "/Tests/"
  8348. ]
  8349. },
  8350. "notification-url": "https://packagist.org/downloads/",
  8351. "license": [
  8352. "MIT"
  8353. ],
  8354. "authors": [
  8355. {
  8356. "name": "Fabien Potencier",
  8357. "email": "fabien@symfony.com"
  8358. },
  8359. {
  8360. "name": "Symfony Community",
  8361. "homepage": "https://symfony.com/contributors"
  8362. }
  8363. ],
  8364. "description": "Symfony Routing Component",
  8365. "homepage": "https://symfony.com",
  8366. "keywords": [
  8367. "router",
  8368. "routing",
  8369. "uri",
  8370. "url"
  8371. ],
  8372. "time": "2019-11-08T17:25:00+00:00"
  8373. },
  8374. {
  8375. "name": "symfony/serializer",
  8376. "version": "v3.4.35",
  8377. "source": {
  8378. "type": "git",
  8379. "url": "https://github.com/symfony/serializer.git",
  8380. "reference": "9d14f7ff2c585a8a9f6f980253066285ddc2f675"
  8381. },
  8382. "dist": {
  8383. "type": "zip",
  8384. "url": "https://api.github.com/repos/symfony/serializer/zipball/9d14f7ff2c585a8a9f6f980253066285ddc2f675",
  8385. "reference": "9d14f7ff2c585a8a9f6f980253066285ddc2f675",
  8386. "shasum": ""
  8387. },
  8388. "require": {
  8389. "php": "^5.5.9|>=7.0.8",
  8390. "symfony/polyfill-ctype": "~1.8"
  8391. },
  8392. "conflict": {
  8393. "phpdocumentor/type-resolver": "<0.2.1",
  8394. "symfony/dependency-injection": "<3.2",
  8395. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  8396. "symfony/property-info": "<3.1",
  8397. "symfony/yaml": "<3.4"
  8398. },
  8399. "require-dev": {
  8400. "doctrine/annotations": "~1.0",
  8401. "doctrine/cache": "~1.0",
  8402. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  8403. "symfony/cache": "~3.1|~4.0",
  8404. "symfony/config": "~2.8|~3.0|~4.0",
  8405. "symfony/dependency-injection": "~3.2|~4.0",
  8406. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8407. "symfony/property-access": "~2.8|~3.0|~4.0",
  8408. "symfony/property-info": "^3.4.13|~4.0",
  8409. "symfony/yaml": "~3.4|~4.0"
  8410. },
  8411. "suggest": {
  8412. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8413. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8414. "psr/cache-implementation": "For using the metadata cache.",
  8415. "symfony/config": "For using the XML mapping loader.",
  8416. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  8417. "symfony/property-access": "For using the ObjectNormalizer.",
  8418. "symfony/property-info": "To deserialize relations.",
  8419. "symfony/yaml": "For using the default YAML mapping loader."
  8420. },
  8421. "type": "library",
  8422. "extra": {
  8423. "branch-alias": {
  8424. "dev-master": "3.4-dev"
  8425. }
  8426. },
  8427. "autoload": {
  8428. "psr-4": {
  8429. "Symfony\\Component\\Serializer\\": ""
  8430. },
  8431. "exclude-from-classmap": [
  8432. "/Tests/"
  8433. ]
  8434. },
  8435. "notification-url": "https://packagist.org/downloads/",
  8436. "license": [
  8437. "MIT"
  8438. ],
  8439. "authors": [
  8440. {
  8441. "name": "Fabien Potencier",
  8442. "email": "fabien@symfony.com"
  8443. },
  8444. {
  8445. "name": "Symfony Community",
  8446. "homepage": "https://symfony.com/contributors"
  8447. }
  8448. ],
  8449. "description": "Symfony Serializer Component",
  8450. "homepage": "https://symfony.com",
  8451. "time": "2019-11-12T17:51:12+00:00"
  8452. },
  8453. {
  8454. "name": "symfony/translation",
  8455. "version": "v3.4.35",
  8456. "source": {
  8457. "type": "git",
  8458. "url": "https://github.com/symfony/translation.git",
  8459. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772"
  8460. },
  8461. "dist": {
  8462. "type": "zip",
  8463. "url": "https://api.github.com/repos/symfony/translation/zipball/2031c895bc97ac1787d418d90bd1ed7d299f2772",
  8464. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772",
  8465. "shasum": ""
  8466. },
  8467. "require": {
  8468. "php": "^5.5.9|>=7.0.8",
  8469. "symfony/polyfill-mbstring": "~1.0"
  8470. },
  8471. "conflict": {
  8472. "symfony/config": "<2.8",
  8473. "symfony/dependency-injection": "<3.4",
  8474. "symfony/yaml": "<3.4"
  8475. },
  8476. "require-dev": {
  8477. "psr/log": "~1.0",
  8478. "symfony/config": "~2.8|~3.0|~4.0",
  8479. "symfony/dependency-injection": "~3.4|~4.0",
  8480. "symfony/finder": "~2.8|~3.0|~4.0",
  8481. "symfony/http-kernel": "~3.4|~4.0",
  8482. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8483. "symfony/var-dumper": "~3.4|~4.0",
  8484. "symfony/yaml": "~3.4|~4.0"
  8485. },
  8486. "suggest": {
  8487. "psr/log-implementation": "To use logging capability in translator",
  8488. "symfony/config": "",
  8489. "symfony/yaml": ""
  8490. },
  8491. "type": "library",
  8492. "extra": {
  8493. "branch-alias": {
  8494. "dev-master": "3.4-dev"
  8495. }
  8496. },
  8497. "autoload": {
  8498. "psr-4": {
  8499. "Symfony\\Component\\Translation\\": ""
  8500. },
  8501. "exclude-from-classmap": [
  8502. "/Tests/"
  8503. ]
  8504. },
  8505. "notification-url": "https://packagist.org/downloads/",
  8506. "license": [
  8507. "MIT"
  8508. ],
  8509. "authors": [
  8510. {
  8511. "name": "Fabien Potencier",
  8512. "email": "fabien@symfony.com"
  8513. },
  8514. {
  8515. "name": "Symfony Community",
  8516. "homepage": "https://symfony.com/contributors"
  8517. }
  8518. ],
  8519. "description": "Symfony Translation Component",
  8520. "homepage": "https://symfony.com",
  8521. "time": "2019-10-30T12:43:22+00:00"
  8522. },
  8523. {
  8524. "name": "symfony/validator",
  8525. "version": "v3.4.35",
  8526. "source": {
  8527. "type": "git",
  8528. "url": "https://github.com/symfony/validator.git",
  8529. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80"
  8530. },
  8531. "dist": {
  8532. "type": "zip",
  8533. "url": "https://api.github.com/repos/symfony/validator/zipball/b11f45742c5c9a228cedc46b70c6317780a1ac80",
  8534. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80",
  8535. "shasum": ""
  8536. },
  8537. "require": {
  8538. "php": "^5.5.9|>=7.0.8",
  8539. "symfony/polyfill-ctype": "~1.8",
  8540. "symfony/polyfill-mbstring": "~1.0",
  8541. "symfony/translation": "~2.8|~3.0|~4.0"
  8542. },
  8543. "conflict": {
  8544. "doctrine/lexer": "<1.0.2",
  8545. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8546. "symfony/dependency-injection": "<3.3",
  8547. "symfony/http-kernel": "<3.3.5",
  8548. "symfony/yaml": "<3.4"
  8549. },
  8550. "require-dev": {
  8551. "doctrine/annotations": "~1.7",
  8552. "doctrine/cache": "~1.0",
  8553. "egulias/email-validator": "^2.1.10",
  8554. "symfony/cache": "~3.1|~4.0",
  8555. "symfony/config": "~2.8|~3.0|~4.0",
  8556. "symfony/dependency-injection": "~3.3|~4.0",
  8557. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8558. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8559. "symfony/http-kernel": "^3.3.5|~4.0",
  8560. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8561. "symfony/property-access": "~2.8|~3.0|~4.0",
  8562. "symfony/var-dumper": "~3.3|~4.0",
  8563. "symfony/yaml": "~3.4|~4.0"
  8564. },
  8565. "suggest": {
  8566. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8567. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8568. "egulias/email-validator": "Strict (RFC compliant) email validation",
  8569. "psr/cache-implementation": "For using the metadata cache.",
  8570. "symfony/config": "",
  8571. "symfony/expression-language": "For using the Expression validator",
  8572. "symfony/http-foundation": "",
  8573. "symfony/intl": "",
  8574. "symfony/property-access": "For accessing properties within comparison constraints",
  8575. "symfony/yaml": ""
  8576. },
  8577. "type": "library",
  8578. "extra": {
  8579. "branch-alias": {
  8580. "dev-master": "3.4-dev"
  8581. }
  8582. },
  8583. "autoload": {
  8584. "psr-4": {
  8585. "Symfony\\Component\\Validator\\": ""
  8586. },
  8587. "exclude-from-classmap": [
  8588. "/Tests/"
  8589. ]
  8590. },
  8591. "notification-url": "https://packagist.org/downloads/",
  8592. "license": [
  8593. "MIT"
  8594. ],
  8595. "authors": [
  8596. {
  8597. "name": "Fabien Potencier",
  8598. "email": "fabien@symfony.com"
  8599. },
  8600. {
  8601. "name": "Symfony Community",
  8602. "homepage": "https://symfony.com/contributors"
  8603. }
  8604. ],
  8605. "description": "Symfony Validator Component",
  8606. "homepage": "https://symfony.com",
  8607. "time": "2019-11-05T22:03:38+00:00"
  8608. },
  8609. {
  8610. "name": "symfony/var-dumper",
  8611. "version": "v3.4.40",
  8612. "source": {
  8613. "type": "git",
  8614. "url": "https://github.com/symfony/var-dumper.git",
  8615. "reference": "13c03169ae485fc7f1a5143256622ce1bd3c77eb"
  8616. },
  8617. "dist": {
  8618. "type": "zip",
  8619. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/13c03169ae485fc7f1a5143256622ce1bd3c77eb",
  8620. "reference": "13c03169ae485fc7f1a5143256622ce1bd3c77eb",
  8621. "shasum": ""
  8622. },
  8623. "require": {
  8624. "php": "^5.5.9|>=7.0.8",
  8625. "symfony/polyfill-mbstring": "~1.0"
  8626. },
  8627. "conflict": {
  8628. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  8629. },
  8630. "require-dev": {
  8631. "ext-iconv": "*",
  8632. "twig/twig": "~1.34|~2.4"
  8633. },
  8634. "suggest": {
  8635. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8636. "ext-intl": "To show region name in time zone dump",
  8637. "ext-symfony_debug": ""
  8638. },
  8639. "type": "library",
  8640. "extra": {
  8641. "branch-alias": {
  8642. "dev-master": "3.4-dev"
  8643. }
  8644. },
  8645. "autoload": {
  8646. "files": [
  8647. "Resources/functions/dump.php"
  8648. ],
  8649. "psr-4": {
  8650. "Symfony\\Component\\VarDumper\\": ""
  8651. },
  8652. "exclude-from-classmap": [
  8653. "/Tests/"
  8654. ]
  8655. },
  8656. "notification-url": "https://packagist.org/downloads/",
  8657. "license": [
  8658. "MIT"
  8659. ],
  8660. "authors": [
  8661. {
  8662. "name": "Nicolas Grekas",
  8663. "email": "p@tchwork.com"
  8664. },
  8665. {
  8666. "name": "Symfony Community",
  8667. "homepage": "https://symfony.com/contributors"
  8668. }
  8669. ],
  8670. "description": "Symfony mechanism for exploring and dumping PHP variables",
  8671. "homepage": "https://symfony.com",
  8672. "keywords": [
  8673. "debug",
  8674. "dump"
  8675. ],
  8676. "time": "2020-03-17T22:27:36+00:00"
  8677. },
  8678. {
  8679. "name": "symfony/yaml",
  8680. "version": "v3.4.35",
  8681. "source": {
  8682. "type": "git",
  8683. "url": "https://github.com/symfony/yaml.git",
  8684. "reference": "dab657db15207879217fc81df4f875947bf68804"
  8685. },
  8686. "dist": {
  8687. "type": "zip",
  8688. "url": "https://api.github.com/repos/symfony/yaml/zipball/dab657db15207879217fc81df4f875947bf68804",
  8689. "reference": "dab657db15207879217fc81df4f875947bf68804",
  8690. "shasum": ""
  8691. },
  8692. "require": {
  8693. "php": "^5.5.9|>=7.0.8",
  8694. "symfony/polyfill-ctype": "~1.8"
  8695. },
  8696. "conflict": {
  8697. "symfony/console": "<3.4"
  8698. },
  8699. "require-dev": {
  8700. "symfony/console": "~3.4|~4.0"
  8701. },
  8702. "suggest": {
  8703. "symfony/console": "For validating YAML files using the lint command"
  8704. },
  8705. "type": "library",
  8706. "extra": {
  8707. "branch-alias": {
  8708. "dev-master": "3.4-dev"
  8709. }
  8710. },
  8711. "autoload": {
  8712. "psr-4": {
  8713. "Symfony\\Component\\Yaml\\": ""
  8714. },
  8715. "exclude-from-classmap": [
  8716. "/Tests/"
  8717. ]
  8718. },
  8719. "notification-url": "https://packagist.org/downloads/",
  8720. "license": [
  8721. "MIT"
  8722. ],
  8723. "authors": [
  8724. {
  8725. "name": "Fabien Potencier",
  8726. "email": "fabien@symfony.com"
  8727. },
  8728. {
  8729. "name": "Symfony Community",
  8730. "homepage": "https://symfony.com/contributors"
  8731. }
  8732. ],
  8733. "description": "Symfony Yaml Component",
  8734. "homepage": "https://symfony.com",
  8735. "time": "2019-10-24T15:33:53+00:00"
  8736. },
  8737. {
  8738. "name": "twig/twig",
  8739. "version": "v1.42.3",
  8740. "source": {
  8741. "type": "git",
  8742. "url": "https://github.com/twigphp/Twig.git",
  8743. "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e"
  8744. },
  8745. "dist": {
  8746. "type": "zip",
  8747. "url": "https://api.github.com/repos/twigphp/Twig/zipball/201baee843e0ffe8b0b956f336dd42b2a92fae4e",
  8748. "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e",
  8749. "shasum": ""
  8750. },
  8751. "require": {
  8752. "php": ">=5.5.0",
  8753. "symfony/polyfill-ctype": "^1.8"
  8754. },
  8755. "require-dev": {
  8756. "psr/container": "^1.0",
  8757. "symfony/debug": "^3.4|^4.2",
  8758. "symfony/phpunit-bridge": "^4.4@dev|^5.0"
  8759. },
  8760. "type": "library",
  8761. "extra": {
  8762. "branch-alias": {
  8763. "dev-master": "1.42-dev"
  8764. }
  8765. },
  8766. "autoload": {
  8767. "psr-0": {
  8768. "Twig_": "lib/"
  8769. },
  8770. "psr-4": {
  8771. "Twig\\": "src/"
  8772. }
  8773. },
  8774. "notification-url": "https://packagist.org/downloads/",
  8775. "license": [
  8776. "BSD-3-Clause"
  8777. ],
  8778. "authors": [
  8779. {
  8780. "name": "Fabien Potencier",
  8781. "email": "fabien@symfony.com",
  8782. "homepage": "http://fabien.potencier.org",
  8783. "role": "Lead Developer"
  8784. },
  8785. {
  8786. "name": "Twig Team",
  8787. "homepage": "https://twig.symfony.com/contributors",
  8788. "role": "Contributors"
  8789. },
  8790. {
  8791. "name": "Armin Ronacher",
  8792. "email": "armin.ronacher@active-4.com",
  8793. "role": "Project Founder"
  8794. }
  8795. ],
  8796. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8797. "homepage": "https://twig.symfony.com",
  8798. "keywords": [
  8799. "templating"
  8800. ],
  8801. "time": "2019-08-24T12:51:03+00:00"
  8802. },
  8803. {
  8804. "name": "typo3/phar-stream-wrapper",
  8805. "version": "v3.1.3",
  8806. "source": {
  8807. "type": "git",
  8808. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  8809. "reference": "586ff60beea128e069a5dc271d3d8133a9bc460a"
  8810. },
  8811. "dist": {
  8812. "type": "zip",
  8813. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/586ff60beea128e069a5dc271d3d8133a9bc460a",
  8814. "reference": "586ff60beea128e069a5dc271d3d8133a9bc460a",
  8815. "shasum": ""
  8816. },
  8817. "require": {
  8818. "ext-json": "*",
  8819. "php": "^7.0"
  8820. },
  8821. "require-dev": {
  8822. "ext-xdebug": "*",
  8823. "phpunit/phpunit": "^6.5"
  8824. },
  8825. "suggest": {
  8826. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  8827. },
  8828. "type": "library",
  8829. "extra": {
  8830. "branch-alias": {
  8831. "dev-master": "v3.x-dev"
  8832. }
  8833. },
  8834. "autoload": {
  8835. "psr-4": {
  8836. "TYPO3\\PharStreamWrapper\\": "src/"
  8837. }
  8838. },
  8839. "notification-url": "https://packagist.org/downloads/",
  8840. "license": [
  8841. "MIT"
  8842. ],
  8843. "description": "Interceptors for PHP's native phar:// stream handling",
  8844. "homepage": "https://typo3.org/",
  8845. "keywords": [
  8846. "phar",
  8847. "php",
  8848. "security",
  8849. "stream-wrapper"
  8850. ],
  8851. "time": "2019-10-18T11:57:16+00:00"
  8852. },
  8853. {
  8854. "name": "vlucas/phpdotenv",
  8855. "version": "v2.6.4",
  8856. "source": {
  8857. "type": "git",
  8858. "url": "https://github.com/vlucas/phpdotenv.git",
  8859. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  8860. },
  8861. "dist": {
  8862. "type": "zip",
  8863. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  8864. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  8865. "shasum": ""
  8866. },
  8867. "require": {
  8868. "php": "^5.3.9 || ^7.0 || ^8.0",
  8869. "symfony/polyfill-ctype": "^1.9"
  8870. },
  8871. "require-dev": {
  8872. "ext-filter": "*",
  8873. "ext-pcre": "*",
  8874. "phpunit/phpunit": "^4.8.35 || ^5.0"
  8875. },
  8876. "suggest": {
  8877. "ext-filter": "Required to use the boolean validator.",
  8878. "ext-pcre": "Required to use most of the library."
  8879. },
  8880. "type": "library",
  8881. "extra": {
  8882. "branch-alias": {
  8883. "dev-master": "2.6-dev"
  8884. }
  8885. },
  8886. "autoload": {
  8887. "psr-4": {
  8888. "Dotenv\\": "src/"
  8889. }
  8890. },
  8891. "notification-url": "https://packagist.org/downloads/",
  8892. "license": [
  8893. "BSD-3-Clause"
  8894. ],
  8895. "authors": [
  8896. {
  8897. "name": "Graham Campbell",
  8898. "email": "graham@alt-three.com",
  8899. "homepage": "https://gjcampbell.co.uk/"
  8900. },
  8901. {
  8902. "name": "Vance Lucas",
  8903. "email": "vance@vancelucas.com",
  8904. "homepage": "https://vancelucas.com/"
  8905. }
  8906. ],
  8907. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8908. "keywords": [
  8909. "dotenv",
  8910. "env",
  8911. "environment"
  8912. ],
  8913. "time": "2020-05-02T13:38:00+00:00"
  8914. },
  8915. {
  8916. "name": "webflo/drupal-finder",
  8917. "version": "1.2.0",
  8918. "source": {
  8919. "type": "git",
  8920. "url": "https://github.com/webflo/drupal-finder.git",
  8921. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  8922. },
  8923. "dist": {
  8924. "type": "zip",
  8925. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  8926. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  8927. "shasum": ""
  8928. },
  8929. "require": {
  8930. "ext-json": "*"
  8931. },
  8932. "require-dev": {
  8933. "mikey179/vfsstream": "^1.6",
  8934. "phpunit/phpunit": "^4.8"
  8935. },
  8936. "type": "library",
  8937. "autoload": {
  8938. "classmap": [
  8939. "src/DrupalFinder.php"
  8940. ]
  8941. },
  8942. "notification-url": "https://packagist.org/downloads/",
  8943. "license": [
  8944. "GPL-2.0+"
  8945. ],
  8946. "authors": [
  8947. {
  8948. "name": "Florian Weber",
  8949. "email": "florian@webflo.org"
  8950. }
  8951. ],
  8952. "description": "Helper class to locate a Drupal installation from a given path.",
  8953. "time": "2019-08-02T08:06:18+00:00"
  8954. },
  8955. {
  8956. "name": "webmozart/assert",
  8957. "version": "1.8.0",
  8958. "source": {
  8959. "type": "git",
  8960. "url": "https://github.com/webmozart/assert.git",
  8961. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  8962. },
  8963. "dist": {
  8964. "type": "zip",
  8965. "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  8966. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  8967. "shasum": ""
  8968. },
  8969. "require": {
  8970. "php": "^5.3.3 || ^7.0",
  8971. "symfony/polyfill-ctype": "^1.8"
  8972. },
  8973. "conflict": {
  8974. "vimeo/psalm": "<3.9.1"
  8975. },
  8976. "require-dev": {
  8977. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8978. },
  8979. "type": "library",
  8980. "autoload": {
  8981. "psr-4": {
  8982. "Webmozart\\Assert\\": "src/"
  8983. }
  8984. },
  8985. "notification-url": "https://packagist.org/downloads/",
  8986. "license": [
  8987. "MIT"
  8988. ],
  8989. "authors": [
  8990. {
  8991. "name": "Bernhard Schussek",
  8992. "email": "bschussek@gmail.com"
  8993. }
  8994. ],
  8995. "description": "Assertions to validate method input/output with nice error messages.",
  8996. "keywords": [
  8997. "assert",
  8998. "check",
  8999. "validate"
  9000. ],
  9001. "time": "2020-04-18T12:12:48+00:00"
  9002. },
  9003. {
  9004. "name": "webmozart/path-util",
  9005. "version": "2.3.0",
  9006. "source": {
  9007. "type": "git",
  9008. "url": "https://github.com/webmozart/path-util.git",
  9009. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9010. },
  9011. "dist": {
  9012. "type": "zip",
  9013. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9014. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9015. "shasum": ""
  9016. },
  9017. "require": {
  9018. "php": ">=5.3.3",
  9019. "webmozart/assert": "~1.0"
  9020. },
  9021. "require-dev": {
  9022. "phpunit/phpunit": "^4.6",
  9023. "sebastian/version": "^1.0.1"
  9024. },
  9025. "type": "library",
  9026. "extra": {
  9027. "branch-alias": {
  9028. "dev-master": "2.3-dev"
  9029. }
  9030. },
  9031. "autoload": {
  9032. "psr-4": {
  9033. "Webmozart\\PathUtil\\": "src/"
  9034. }
  9035. },
  9036. "notification-url": "https://packagist.org/downloads/",
  9037. "license": [
  9038. "MIT"
  9039. ],
  9040. "authors": [
  9041. {
  9042. "name": "Bernhard Schussek",
  9043. "email": "bschussek@gmail.com"
  9044. }
  9045. ],
  9046. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9047. "time": "2015-12-17T08:42:14+00:00"
  9048. },
  9049. {
  9050. "name": "zaporylie/composer-drupal-optimizations",
  9051. "version": "1.1.1",
  9052. "source": {
  9053. "type": "git",
  9054. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  9055. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d"
  9056. },
  9057. "dist": {
  9058. "type": "zip",
  9059. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/fb231d92adc862a2c9276bccbc90f684816dc75d",
  9060. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d",
  9061. "shasum": ""
  9062. },
  9063. "require": {
  9064. "composer-plugin-api": "^1.1"
  9065. },
  9066. "require-dev": {
  9067. "composer/composer": "^1.6",
  9068. "phpunit/phpunit": "^6"
  9069. },
  9070. "type": "composer-plugin",
  9071. "extra": {
  9072. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  9073. },
  9074. "autoload": {
  9075. "psr-4": {
  9076. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  9077. }
  9078. },
  9079. "notification-url": "https://packagist.org/downloads/",
  9080. "license": [
  9081. "GPL-2.0-or-later"
  9082. ],
  9083. "authors": [
  9084. {
  9085. "name": "Jakub Piasecki",
  9086. "email": "jakub@piaseccy.pl"
  9087. }
  9088. ],
  9089. "description": "Composer plugin to improve composer performance for Drupal projects",
  9090. "time": "2019-10-02T17:01:11+00:00"
  9091. },
  9092. {
  9093. "name": "zendframework/zend-diactoros",
  9094. "version": "1.8.7",
  9095. "source": {
  9096. "type": "git",
  9097. "url": "https://github.com/zendframework/zend-diactoros.git",
  9098. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b"
  9099. },
  9100. "dist": {
  9101. "type": "zip",
  9102. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  9103. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  9104. "shasum": ""
  9105. },
  9106. "require": {
  9107. "php": "^5.6 || ^7.0",
  9108. "psr/http-message": "^1.0"
  9109. },
  9110. "provide": {
  9111. "psr/http-message-implementation": "1.0"
  9112. },
  9113. "require-dev": {
  9114. "ext-dom": "*",
  9115. "ext-libxml": "*",
  9116. "php-http/psr7-integration-tests": "dev-master",
  9117. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  9118. "zendframework/zend-coding-standard": "~1.0"
  9119. },
  9120. "type": "library",
  9121. "extra": {
  9122. "branch-alias": {
  9123. "dev-release-1.8": "1.8.x-dev"
  9124. }
  9125. },
  9126. "autoload": {
  9127. "files": [
  9128. "src/functions/create_uploaded_file.php",
  9129. "src/functions/marshal_headers_from_sapi.php",
  9130. "src/functions/marshal_method_from_sapi.php",
  9131. "src/functions/marshal_protocol_version_from_sapi.php",
  9132. "src/functions/marshal_uri_from_sapi.php",
  9133. "src/functions/normalize_server.php",
  9134. "src/functions/normalize_uploaded_files.php",
  9135. "src/functions/parse_cookie_header.php"
  9136. ],
  9137. "psr-4": {
  9138. "Zend\\Diactoros\\": "src/"
  9139. }
  9140. },
  9141. "notification-url": "https://packagist.org/downloads/",
  9142. "license": [
  9143. "BSD-2-Clause"
  9144. ],
  9145. "description": "PSR HTTP Message implementations",
  9146. "homepage": "https://github.com/zendframework/zend-diactoros",
  9147. "keywords": [
  9148. "http",
  9149. "psr",
  9150. "psr-7"
  9151. ],
  9152. "abandoned": "laminas/laminas-diactoros",
  9153. "time": "2019-08-06T17:53:53+00:00"
  9154. },
  9155. {
  9156. "name": "zendframework/zend-escaper",
  9157. "version": "2.6.1",
  9158. "source": {
  9159. "type": "git",
  9160. "url": "https://github.com/zendframework/zend-escaper.git",
  9161. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  9162. },
  9163. "dist": {
  9164. "type": "zip",
  9165. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  9166. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  9167. "shasum": ""
  9168. },
  9169. "require": {
  9170. "php": "^5.6 || ^7.0"
  9171. },
  9172. "require-dev": {
  9173. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  9174. "zendframework/zend-coding-standard": "~1.0.0"
  9175. },
  9176. "type": "library",
  9177. "extra": {
  9178. "branch-alias": {
  9179. "dev-master": "2.6.x-dev",
  9180. "dev-develop": "2.7.x-dev"
  9181. }
  9182. },
  9183. "autoload": {
  9184. "psr-4": {
  9185. "Zend\\Escaper\\": "src/"
  9186. }
  9187. },
  9188. "notification-url": "https://packagist.org/downloads/",
  9189. "license": [
  9190. "BSD-3-Clause"
  9191. ],
  9192. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  9193. "keywords": [
  9194. "ZendFramework",
  9195. "escaper",
  9196. "zf"
  9197. ],
  9198. "abandoned": "laminas/laminas-escaper",
  9199. "time": "2019-09-05T20:03:20+00:00"
  9200. },
  9201. {
  9202. "name": "zendframework/zend-feed",
  9203. "version": "2.12.0",
  9204. "source": {
  9205. "type": "git",
  9206. "url": "https://github.com/zendframework/zend-feed.git",
  9207. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  9208. },
  9209. "dist": {
  9210. "type": "zip",
  9211. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  9212. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  9213. "shasum": ""
  9214. },
  9215. "require": {
  9216. "ext-dom": "*",
  9217. "ext-libxml": "*",
  9218. "php": "^5.6 || ^7.0",
  9219. "zendframework/zend-escaper": "^2.5.2",
  9220. "zendframework/zend-stdlib": "^3.2.1"
  9221. },
  9222. "require-dev": {
  9223. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  9224. "psr/http-message": "^1.0.1",
  9225. "zendframework/zend-cache": "^2.7.2",
  9226. "zendframework/zend-coding-standard": "~1.0.0",
  9227. "zendframework/zend-db": "^2.8.2",
  9228. "zendframework/zend-http": "^2.7",
  9229. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  9230. "zendframework/zend-validator": "^2.10.1"
  9231. },
  9232. "suggest": {
  9233. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  9234. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  9235. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  9236. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  9237. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  9238. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  9239. },
  9240. "type": "library",
  9241. "extra": {
  9242. "branch-alias": {
  9243. "dev-master": "2.12.x-dev",
  9244. "dev-develop": "2.13.x-dev"
  9245. }
  9246. },
  9247. "autoload": {
  9248. "psr-4": {
  9249. "Zend\\Feed\\": "src/"
  9250. }
  9251. },
  9252. "notification-url": "https://packagist.org/downloads/",
  9253. "license": [
  9254. "BSD-3-Clause"
  9255. ],
  9256. "description": "provides functionality for consuming RSS and Atom feeds",
  9257. "keywords": [
  9258. "ZendFramework",
  9259. "feed",
  9260. "zf"
  9261. ],
  9262. "abandoned": "laminas/laminas-feed",
  9263. "time": "2019-03-05T20:08:49+00:00"
  9264. },
  9265. {
  9266. "name": "zendframework/zend-stdlib",
  9267. "version": "3.2.1",
  9268. "source": {
  9269. "type": "git",
  9270. "url": "https://github.com/zendframework/zend-stdlib.git",
  9271. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  9272. },
  9273. "dist": {
  9274. "type": "zip",
  9275. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  9276. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  9277. "shasum": ""
  9278. },
  9279. "require": {
  9280. "php": "^5.6 || ^7.0"
  9281. },
  9282. "require-dev": {
  9283. "phpbench/phpbench": "^0.13",
  9284. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  9285. "zendframework/zend-coding-standard": "~1.0.0"
  9286. },
  9287. "type": "library",
  9288. "extra": {
  9289. "branch-alias": {
  9290. "dev-master": "3.2.x-dev",
  9291. "dev-develop": "3.3.x-dev"
  9292. }
  9293. },
  9294. "autoload": {
  9295. "psr-4": {
  9296. "Zend\\Stdlib\\": "src/"
  9297. }
  9298. },
  9299. "notification-url": "https://packagist.org/downloads/",
  9300. "license": [
  9301. "BSD-3-Clause"
  9302. ],
  9303. "description": "SPL extensions, array utilities, error handlers, and more",
  9304. "keywords": [
  9305. "ZendFramework",
  9306. "stdlib",
  9307. "zf"
  9308. ],
  9309. "abandoned": "laminas/laminas-stdlib",
  9310. "time": "2018-08-28T21:34:05+00:00"
  9311. }
  9312. ],
  9313. "packages-dev": [],
  9314. "aliases": [],
  9315. "minimum-stability": "dev",
  9316. "stability-flags": {
  9317. "drupal/bulkdelete": 20,
  9318. "drupal/domain_menu_access": 20,
  9319. "drupal/filefield_sources": 20,
  9320. "drupal/filter_perms": 20,
  9321. "drupal/maillog": 20,
  9322. "drupal/path_alias_xt": 20,
  9323. "drupal/synonyms": 20,
  9324. "drupal/toolbar_themes": 20,
  9325. "drupal/workflow": 20
  9326. },
  9327. "prefer-stable": true,
  9328. "prefer-lowest": false,
  9329. "platform": {
  9330. "php": ">=5.6"
  9331. },
  9332. "platform-dev": []
  9333. }