composer.lock 402 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190
  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": "778b33a2a648b1dac52f177e42734dc2",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/5ffdc93de0af2770d396bf433d8b2667c77277ea",
  20. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "ext-mbstring": "*",
  26. "php": ">=5.5",
  27. "symfony/filesystem": "^2.0.5|^3.0",
  28. "symfony/process": "^2.1|^3.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"
  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": "2016-11-03T16:10:31+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": "brumann/polyfill-unserialize",
  127. "version": "v1.0.3",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/dbrumann/polyfill-unserialize.git",
  131. "reference": "844d7e44b62a1a3d5c68cfb7ebbd59c17ea0fd7b"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/844d7e44b62a1a3d5c68cfb7ebbd59c17ea0fd7b",
  136. "reference": "844d7e44b62a1a3d5c68cfb7ebbd59c17ea0fd7b",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": "^5.3|^7.0"
  141. },
  142. "type": "library",
  143. "autoload": {
  144. "psr-4": {
  145. "Brumann\\Polyfill\\": "src/"
  146. }
  147. },
  148. "notification-url": "https://packagist.org/downloads/",
  149. "license": [
  150. "MIT"
  151. ],
  152. "authors": [
  153. {
  154. "name": "Denis Brumann",
  155. "email": "denis.brumann@sensiolabs.de"
  156. }
  157. ],
  158. "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.",
  159. "time": "2017-02-03T09:55:47+00:00"
  160. },
  161. {
  162. "name": "chi-teck/drupal-code-generator",
  163. "version": "1.29.1",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  167. "reference": "f1da0370113ee246cd8f6d744d4835e8d53ea61c"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/f1da0370113ee246cd8f6d744d4835e8d53ea61c",
  172. "reference": "f1da0370113ee246cd8f6d744d4835e8d53ea61c",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "ext-json": "*",
  177. "php": ">=5.5.9",
  178. "symfony/console": "^3.4 || ^4.0",
  179. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  180. "twig/twig": "^1.35"
  181. },
  182. "bin": [
  183. "bin/dcg"
  184. ],
  185. "type": "library",
  186. "extra": {
  187. "branch-alias": {
  188. "dev-master": "1.x-dev"
  189. }
  190. },
  191. "autoload": {
  192. "files": [
  193. "src/bootstrap.php"
  194. ],
  195. "psr-4": {
  196. "DrupalCodeGenerator\\": "src"
  197. }
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "GPL-2.0-or-later"
  202. ],
  203. "description": "Drupal code generator",
  204. "time": "2019-04-26T08:30:10+00:00"
  205. },
  206. {
  207. "name": "composer/installers",
  208. "version": "v1.6.0",
  209. "source": {
  210. "type": "git",
  211. "url": "https://github.com/composer/installers.git",
  212. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  213. },
  214. "dist": {
  215. "type": "zip",
  216. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  217. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  218. "shasum": ""
  219. },
  220. "require": {
  221. "composer-plugin-api": "^1.0"
  222. },
  223. "replace": {
  224. "roundcube/plugin-installer": "*",
  225. "shama/baton": "*"
  226. },
  227. "require-dev": {
  228. "composer/composer": "1.0.*@dev",
  229. "phpunit/phpunit": "^4.8.36"
  230. },
  231. "type": "composer-plugin",
  232. "extra": {
  233. "class": "Composer\\Installers\\Plugin",
  234. "branch-alias": {
  235. "dev-master": "1.0-dev"
  236. }
  237. },
  238. "autoload": {
  239. "psr-4": {
  240. "Composer\\Installers\\": "src/Composer/Installers"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "MIT"
  246. ],
  247. "authors": [
  248. {
  249. "name": "Kyle Robinson Young",
  250. "email": "kyle@dontkry.com",
  251. "homepage": "https://github.com/shama"
  252. }
  253. ],
  254. "description": "A multi-framework Composer library installer",
  255. "homepage": "https://composer.github.io/installers/",
  256. "keywords": [
  257. "Craft",
  258. "Dolibarr",
  259. "Eliasis",
  260. "Hurad",
  261. "ImageCMS",
  262. "Kanboard",
  263. "Lan Management System",
  264. "MODX Evo",
  265. "Mautic",
  266. "Maya",
  267. "OXID",
  268. "Plentymarkets",
  269. "Porto",
  270. "RadPHP",
  271. "SMF",
  272. "Thelia",
  273. "WolfCMS",
  274. "agl",
  275. "aimeos",
  276. "annotatecms",
  277. "attogram",
  278. "bitrix",
  279. "cakephp",
  280. "chef",
  281. "cockpit",
  282. "codeigniter",
  283. "concrete5",
  284. "croogo",
  285. "dokuwiki",
  286. "drupal",
  287. "eZ Platform",
  288. "elgg",
  289. "expressionengine",
  290. "fuelphp",
  291. "grav",
  292. "installer",
  293. "itop",
  294. "joomla",
  295. "kohana",
  296. "laravel",
  297. "lavalite",
  298. "lithium",
  299. "magento",
  300. "majima",
  301. "mako",
  302. "mediawiki",
  303. "modulework",
  304. "modx",
  305. "moodle",
  306. "osclass",
  307. "phpbb",
  308. "piwik",
  309. "ppi",
  310. "puppet",
  311. "pxcms",
  312. "reindex",
  313. "roundcube",
  314. "shopware",
  315. "silverstripe",
  316. "sydes",
  317. "symfony",
  318. "typo3",
  319. "wordpress",
  320. "yawik",
  321. "zend",
  322. "zikula"
  323. ],
  324. "time": "2018-08-27T06:10:37+00:00"
  325. },
  326. {
  327. "name": "composer/semver",
  328. "version": "1.5.0",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/composer/semver.git",
  332. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  337. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "php": "^5.3.2 || ^7.0"
  342. },
  343. "require-dev": {
  344. "phpunit/phpunit": "^4.5 || ^5.0.5",
  345. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  346. },
  347. "type": "library",
  348. "extra": {
  349. "branch-alias": {
  350. "dev-master": "1.x-dev"
  351. }
  352. },
  353. "autoload": {
  354. "psr-4": {
  355. "Composer\\Semver\\": "src"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Nils Adermann",
  365. "email": "naderman@naderman.de",
  366. "homepage": "http://www.naderman.de"
  367. },
  368. {
  369. "name": "Jordi Boggiano",
  370. "email": "j.boggiano@seld.be",
  371. "homepage": "http://seld.be"
  372. },
  373. {
  374. "name": "Rob Bast",
  375. "email": "rob.bast@gmail.com",
  376. "homepage": "http://robbast.nl"
  377. }
  378. ],
  379. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  380. "keywords": [
  381. "semantic",
  382. "semver",
  383. "validation",
  384. "versioning"
  385. ],
  386. "time": "2019-03-19T17:25:45+00:00"
  387. },
  388. {
  389. "name": "consolidation/annotated-command",
  390. "version": "2.12.0",
  391. "source": {
  392. "type": "git",
  393. "url": "https://github.com/consolidation/annotated-command.git",
  394. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  395. },
  396. "dist": {
  397. "type": "zip",
  398. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  399. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  400. "shasum": ""
  401. },
  402. "require": {
  403. "consolidation/output-formatters": "^3.4",
  404. "php": ">=5.4.5",
  405. "psr/log": "^1",
  406. "symfony/console": "^2.8|^3|^4",
  407. "symfony/event-dispatcher": "^2.5|^3|^4",
  408. "symfony/finder": "^2.5|^3|^4"
  409. },
  410. "require-dev": {
  411. "g1a/composer-test-scenarios": "^3",
  412. "php-coveralls/php-coveralls": "^1",
  413. "phpunit/phpunit": "^6",
  414. "squizlabs/php_codesniffer": "^2.7"
  415. },
  416. "type": "library",
  417. "extra": {
  418. "scenarios": {
  419. "symfony4": {
  420. "require": {
  421. "symfony/console": "^4.0"
  422. },
  423. "config": {
  424. "platform": {
  425. "php": "7.1.3"
  426. }
  427. }
  428. },
  429. "symfony2": {
  430. "require": {
  431. "symfony/console": "^2.8"
  432. },
  433. "require-dev": {
  434. "phpunit/phpunit": "^4.8.36"
  435. },
  436. "remove": [
  437. "php-coveralls/php-coveralls"
  438. ],
  439. "config": {
  440. "platform": {
  441. "php": "5.4.8"
  442. }
  443. },
  444. "scenario-options": {
  445. "create-lockfile": "false"
  446. }
  447. },
  448. "phpunit4": {
  449. "require-dev": {
  450. "phpunit/phpunit": "^4.8.36"
  451. },
  452. "remove": [
  453. "php-coveralls/php-coveralls"
  454. ],
  455. "config": {
  456. "platform": {
  457. "php": "5.4.8"
  458. }
  459. }
  460. }
  461. },
  462. "branch-alias": {
  463. "dev-master": "2.x-dev"
  464. }
  465. },
  466. "autoload": {
  467. "psr-4": {
  468. "Consolidation\\AnnotatedCommand\\": "src"
  469. }
  470. },
  471. "notification-url": "https://packagist.org/downloads/",
  472. "license": [
  473. "MIT"
  474. ],
  475. "authors": [
  476. {
  477. "name": "Greg Anderson",
  478. "email": "greg.1.anderson@greenknowe.org"
  479. }
  480. ],
  481. "description": "Initialize Symfony Console commands from annotated command class methods.",
  482. "time": "2019-03-08T16:55:03+00:00"
  483. },
  484. {
  485. "name": "consolidation/config",
  486. "version": "1.2.1",
  487. "source": {
  488. "type": "git",
  489. "url": "https://github.com/consolidation/config.git",
  490. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  491. },
  492. "dist": {
  493. "type": "zip",
  494. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  495. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  496. "shasum": ""
  497. },
  498. "require": {
  499. "dflydev/dot-access-data": "^1.1.0",
  500. "grasmash/expander": "^1",
  501. "php": ">=5.4.0"
  502. },
  503. "require-dev": {
  504. "g1a/composer-test-scenarios": "^3",
  505. "php-coveralls/php-coveralls": "^1",
  506. "phpunit/phpunit": "^5",
  507. "squizlabs/php_codesniffer": "2.*",
  508. "symfony/console": "^2.5|^3|^4",
  509. "symfony/yaml": "^2.8.11|^3|^4"
  510. },
  511. "suggest": {
  512. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  513. },
  514. "type": "library",
  515. "extra": {
  516. "scenarios": {
  517. "symfony4": {
  518. "require-dev": {
  519. "symfony/console": "^4.0"
  520. },
  521. "config": {
  522. "platform": {
  523. "php": "7.1.3"
  524. }
  525. }
  526. },
  527. "symfony2": {
  528. "require-dev": {
  529. "symfony/console": "^2.8",
  530. "symfony/event-dispatcher": "^2.8",
  531. "phpunit/phpunit": "^4.8.36"
  532. },
  533. "remove": [
  534. "php-coveralls/php-coveralls"
  535. ],
  536. "config": {
  537. "platform": {
  538. "php": "5.4.8"
  539. }
  540. }
  541. }
  542. },
  543. "branch-alias": {
  544. "dev-master": "1.x-dev"
  545. }
  546. },
  547. "autoload": {
  548. "psr-4": {
  549. "Consolidation\\Config\\": "src"
  550. }
  551. },
  552. "notification-url": "https://packagist.org/downloads/",
  553. "license": [
  554. "MIT"
  555. ],
  556. "authors": [
  557. {
  558. "name": "Greg Anderson",
  559. "email": "greg.1.anderson@greenknowe.org"
  560. }
  561. ],
  562. "description": "Provide configuration services for a commandline tool.",
  563. "time": "2019-03-03T19:37:04+00:00"
  564. },
  565. {
  566. "name": "consolidation/filter-via-dot-access-data",
  567. "version": "1.0.0",
  568. "source": {
  569. "type": "git",
  570. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  571. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  572. },
  573. "dist": {
  574. "type": "zip",
  575. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  576. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  577. "shasum": ""
  578. },
  579. "require": {
  580. "dflydev/dot-access-data": "^1.1.0",
  581. "php": ">=5.5.0"
  582. },
  583. "require-dev": {
  584. "consolidation/robo": "^1.2.3",
  585. "g1a/composer-test-scenarios": "^3",
  586. "knplabs/github-api": "^2.7",
  587. "php-coveralls/php-coveralls": "^1",
  588. "php-http/guzzle6-adapter": "^1.1",
  589. "phpunit/phpunit": "^5",
  590. "squizlabs/php_codesniffer": "^2.8",
  591. "symfony/console": "^2.8|^3|^4"
  592. },
  593. "type": "library",
  594. "extra": {
  595. "scenarios": {
  596. "phpunit5": {
  597. "require-dev": {
  598. "phpunit/phpunit": "^5.7.27"
  599. },
  600. "remove": [
  601. "php-coveralls/php-coveralls"
  602. ],
  603. "config": {
  604. "platform": {
  605. "php": "5.6.33"
  606. }
  607. }
  608. }
  609. },
  610. "branch-alias": {
  611. "dev-master": "1.x-dev"
  612. }
  613. },
  614. "autoload": {
  615. "psr-4": {
  616. "Consolidation\\Filter\\": "src"
  617. }
  618. },
  619. "notification-url": "https://packagist.org/downloads/",
  620. "license": [
  621. "MIT"
  622. ],
  623. "authors": [
  624. {
  625. "name": "Greg Anderson",
  626. "email": "greg.1.anderson@greenknowe.org"
  627. }
  628. ],
  629. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  630. "time": "2019-01-18T06:05:07+00:00"
  631. },
  632. {
  633. "name": "consolidation/log",
  634. "version": "1.1.1",
  635. "source": {
  636. "type": "git",
  637. "url": "https://github.com/consolidation/log.git",
  638. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  639. },
  640. "dist": {
  641. "type": "zip",
  642. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  643. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  644. "shasum": ""
  645. },
  646. "require": {
  647. "php": ">=5.4.5",
  648. "psr/log": "^1.0",
  649. "symfony/console": "^2.8|^3|^4"
  650. },
  651. "require-dev": {
  652. "g1a/composer-test-scenarios": "^3",
  653. "php-coveralls/php-coveralls": "^1",
  654. "phpunit/phpunit": "^6",
  655. "squizlabs/php_codesniffer": "^2"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "scenarios": {
  660. "symfony4": {
  661. "require": {
  662. "symfony/console": "^4.0"
  663. },
  664. "config": {
  665. "platform": {
  666. "php": "7.1.3"
  667. }
  668. }
  669. },
  670. "symfony2": {
  671. "require": {
  672. "symfony/console": "^2.8"
  673. },
  674. "require-dev": {
  675. "phpunit/phpunit": "^4.8.36"
  676. },
  677. "remove": [
  678. "php-coveralls/php-coveralls"
  679. ],
  680. "config": {
  681. "platform": {
  682. "php": "5.4.8"
  683. }
  684. }
  685. },
  686. "phpunit4": {
  687. "require-dev": {
  688. "phpunit/phpunit": "^4.8.36"
  689. },
  690. "remove": [
  691. "php-coveralls/php-coveralls"
  692. ],
  693. "config": {
  694. "platform": {
  695. "php": "5.4.8"
  696. }
  697. }
  698. }
  699. },
  700. "branch-alias": {
  701. "dev-master": "1.x-dev"
  702. }
  703. },
  704. "autoload": {
  705. "psr-4": {
  706. "Consolidation\\Log\\": "src"
  707. }
  708. },
  709. "notification-url": "https://packagist.org/downloads/",
  710. "license": [
  711. "MIT"
  712. ],
  713. "authors": [
  714. {
  715. "name": "Greg Anderson",
  716. "email": "greg.1.anderson@greenknowe.org"
  717. }
  718. ],
  719. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  720. "time": "2019-01-01T17:30:51+00:00"
  721. },
  722. {
  723. "name": "consolidation/output-formatters",
  724. "version": "3.4.1",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/consolidation/output-formatters.git",
  728. "reference": "0881112642ad9059071f13f397f571035b527cb9"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0881112642ad9059071f13f397f571035b527cb9",
  733. "reference": "0881112642ad9059071f13f397f571035b527cb9",
  734. "shasum": ""
  735. },
  736. "require": {
  737. "dflydev/dot-access-data": "^1.1.0",
  738. "php": ">=5.4.0",
  739. "symfony/console": "^2.8|^3|^4",
  740. "symfony/finder": "^2.5|^3|^4"
  741. },
  742. "require-dev": {
  743. "g1a/composer-test-scenarios": "^3",
  744. "php-coveralls/php-coveralls": "^1",
  745. "phpunit/phpunit": "^5.7.27",
  746. "squizlabs/php_codesniffer": "^2.7",
  747. "symfony/var-dumper": "^2.8|^3|^4",
  748. "victorjonsson/markdowndocs": "^1.3"
  749. },
  750. "suggest": {
  751. "symfony/var-dumper": "For using the var_dump formatter"
  752. },
  753. "type": "library",
  754. "extra": {
  755. "scenarios": {
  756. "symfony4": {
  757. "require": {
  758. "symfony/console": "^4.0"
  759. },
  760. "require-dev": {
  761. "phpunit/phpunit": "^6"
  762. },
  763. "config": {
  764. "platform": {
  765. "php": "7.1.3"
  766. }
  767. }
  768. },
  769. "symfony3": {
  770. "require": {
  771. "symfony/console": "^3.4",
  772. "symfony/finder": "^3.4",
  773. "symfony/var-dumper": "^3.4"
  774. },
  775. "config": {
  776. "platform": {
  777. "php": "5.6.32"
  778. }
  779. }
  780. },
  781. "symfony2": {
  782. "require": {
  783. "symfony/console": "^2.8"
  784. },
  785. "require-dev": {
  786. "phpunit/phpunit": "^4.8.36"
  787. },
  788. "remove": [
  789. "php-coveralls/php-coveralls"
  790. ],
  791. "config": {
  792. "platform": {
  793. "php": "5.4.8"
  794. }
  795. },
  796. "scenario-options": {
  797. "create-lockfile": "false"
  798. }
  799. }
  800. },
  801. "branch-alias": {
  802. "dev-master": "3.x-dev"
  803. }
  804. },
  805. "autoload": {
  806. "psr-4": {
  807. "Consolidation\\OutputFormatters\\": "src"
  808. }
  809. },
  810. "notification-url": "https://packagist.org/downloads/",
  811. "license": [
  812. "MIT"
  813. ],
  814. "authors": [
  815. {
  816. "name": "Greg Anderson",
  817. "email": "greg.1.anderson@greenknowe.org"
  818. }
  819. ],
  820. "description": "Format text by applying transformations provided by plug-in formatters.",
  821. "time": "2019-03-14T03:45:44+00:00"
  822. },
  823. {
  824. "name": "consolidation/robo",
  825. "version": "1.4.9",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/consolidation/Robo.git",
  829. "reference": "5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/consolidation/Robo/zipball/5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345",
  834. "reference": "5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345",
  835. "shasum": ""
  836. },
  837. "require": {
  838. "consolidation/annotated-command": "^2.10.2",
  839. "consolidation/config": "^1.2",
  840. "consolidation/log": "~1",
  841. "consolidation/output-formatters": "^3.1.13",
  842. "consolidation/self-update": "^1",
  843. "grasmash/yaml-expander": "^1.3",
  844. "league/container": "^2.2",
  845. "php": ">=5.5.0",
  846. "symfony/console": "^2.8|^3|^4",
  847. "symfony/event-dispatcher": "^2.5|^3|^4",
  848. "symfony/filesystem": "^2.5|^3|^4",
  849. "symfony/finder": "^2.5|^3|^4",
  850. "symfony/process": "^2.5|^3|^4"
  851. },
  852. "replace": {
  853. "codegyre/robo": "< 1.0"
  854. },
  855. "require-dev": {
  856. "codeception/aspect-mock": "^1|^2.1.1",
  857. "codeception/base": "^2.3.7",
  858. "codeception/verify": "^0.3.2",
  859. "g1a/composer-test-scenarios": "^3",
  860. "goaop/framework": "~2.1.2",
  861. "goaop/parser-reflection": "^1.1.0",
  862. "natxet/cssmin": "3.0.4",
  863. "nikic/php-parser": "^3.1.5",
  864. "patchwork/jsqueeze": "~2",
  865. "pear/archive_tar": "^1.4.4",
  866. "php-coveralls/php-coveralls": "^1",
  867. "phpunit/php-code-coverage": "~2|~4",
  868. "squizlabs/php_codesniffer": "^2.8"
  869. },
  870. "suggest": {
  871. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  872. "natxet/CssMin": "For minifying CSS files in taskMinify",
  873. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  874. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  875. },
  876. "bin": [
  877. "robo"
  878. ],
  879. "type": "library",
  880. "extra": {
  881. "scenarios": {
  882. "symfony4": {
  883. "require": {
  884. "symfony/console": "^4"
  885. },
  886. "config": {
  887. "platform": {
  888. "php": "7.1.3"
  889. }
  890. }
  891. },
  892. "symfony2": {
  893. "require": {
  894. "symfony/console": "^2.8"
  895. },
  896. "remove": [
  897. "goaop/framework"
  898. ],
  899. "config": {
  900. "platform": {
  901. "php": "5.5.9"
  902. }
  903. },
  904. "scenario-options": {
  905. "create-lockfile": "false"
  906. }
  907. }
  908. },
  909. "branch-alias": {
  910. "dev-master": "2.x-dev"
  911. }
  912. },
  913. "autoload": {
  914. "psr-4": {
  915. "Robo\\": "src"
  916. }
  917. },
  918. "notification-url": "https://packagist.org/downloads/",
  919. "license": [
  920. "MIT"
  921. ],
  922. "authors": [
  923. {
  924. "name": "Davert",
  925. "email": "davert.php@resend.cc"
  926. }
  927. ],
  928. "description": "Modern task runner",
  929. "time": "2019-03-19T18:07:19+00:00"
  930. },
  931. {
  932. "name": "consolidation/self-update",
  933. "version": "1.1.5",
  934. "source": {
  935. "type": "git",
  936. "url": "https://github.com/consolidation/self-update.git",
  937. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  938. },
  939. "dist": {
  940. "type": "zip",
  941. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  942. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  943. "shasum": ""
  944. },
  945. "require": {
  946. "php": ">=5.5.0",
  947. "symfony/console": "^2.8|^3|^4",
  948. "symfony/filesystem": "^2.5|^3|^4"
  949. },
  950. "bin": [
  951. "scripts/release"
  952. ],
  953. "type": "library",
  954. "extra": {
  955. "branch-alias": {
  956. "dev-master": "1.x-dev"
  957. }
  958. },
  959. "autoload": {
  960. "psr-4": {
  961. "SelfUpdate\\": "src"
  962. }
  963. },
  964. "notification-url": "https://packagist.org/downloads/",
  965. "license": [
  966. "MIT"
  967. ],
  968. "authors": [
  969. {
  970. "name": "Greg Anderson",
  971. "email": "greg.1.anderson@greenknowe.org"
  972. },
  973. {
  974. "name": "Alexander Menk",
  975. "email": "menk@mestrona.net"
  976. }
  977. ],
  978. "description": "Provides a self:update command for Symfony Console applications.",
  979. "time": "2018-10-28T01:52:03+00:00"
  980. },
  981. {
  982. "name": "consolidation/site-alias",
  983. "version": "3.0.0",
  984. "source": {
  985. "type": "git",
  986. "url": "https://github.com/consolidation/site-alias.git",
  987. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  988. },
  989. "dist": {
  990. "type": "zip",
  991. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  992. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  993. "shasum": ""
  994. },
  995. "require": {
  996. "consolidation/config": "^1.2.1",
  997. "php": ">=5.5.0"
  998. },
  999. "require-dev": {
  1000. "consolidation/robo": "^1.2.3",
  1001. "g1a/composer-test-scenarios": "^3",
  1002. "knplabs/github-api": "^2.7",
  1003. "php-coveralls/php-coveralls": "^1",
  1004. "php-http/guzzle6-adapter": "^1.1",
  1005. "phpunit/phpunit": "^6",
  1006. "squizlabs/php_codesniffer": "^2.8",
  1007. "symfony/console": "^2.8|^3|^4",
  1008. "symfony/yaml": "~2.3|^3"
  1009. },
  1010. "type": "library",
  1011. "extra": {
  1012. "scenarios": {
  1013. "phpunit5": {
  1014. "require-dev": {
  1015. "phpunit/phpunit": "^5.7.27"
  1016. },
  1017. "remove": [
  1018. "php-coveralls/php-coveralls"
  1019. ],
  1020. "config": {
  1021. "platform": {
  1022. "php": "5.6.33"
  1023. }
  1024. }
  1025. }
  1026. },
  1027. "branch-alias": {
  1028. "dev-master": "3.x-dev"
  1029. }
  1030. },
  1031. "autoload": {
  1032. "psr-4": {
  1033. "Consolidation\\SiteAlias\\": "src"
  1034. }
  1035. },
  1036. "notification-url": "https://packagist.org/downloads/",
  1037. "license": [
  1038. "MIT"
  1039. ],
  1040. "authors": [
  1041. {
  1042. "name": "Moshe Weitzman",
  1043. "email": "weitzman@tejasa.com"
  1044. },
  1045. {
  1046. "name": "Greg Anderson",
  1047. "email": "greg.1.anderson@greenknowe.org"
  1048. }
  1049. ],
  1050. "description": "Manage alias records for local and remote sites.",
  1051. "time": "2019-03-12T17:31:48+00:00"
  1052. },
  1053. {
  1054. "name": "consolidation/site-process",
  1055. "version": "2.0.2",
  1056. "source": {
  1057. "type": "git",
  1058. "url": "https://github.com/consolidation/site-process.git",
  1059. "reference": "8957b9b3f4d48c183b7b11a29089d52875442e2f"
  1060. },
  1061. "dist": {
  1062. "type": "zip",
  1063. "url": "https://api.github.com/repos/consolidation/site-process/zipball/8957b9b3f4d48c183b7b11a29089d52875442e2f",
  1064. "reference": "8957b9b3f4d48c183b7b11a29089d52875442e2f",
  1065. "shasum": ""
  1066. },
  1067. "require": {
  1068. "consolidation/config": "^1.2.1",
  1069. "consolidation/site-alias": "^3",
  1070. "php": ">=5.6.0",
  1071. "symfony/process": "^3.4"
  1072. },
  1073. "require-dev": {
  1074. "consolidation/robo": "^1.3",
  1075. "g1a/composer-test-scenarios": "^3",
  1076. "knplabs/github-api": "^2.7",
  1077. "php-coveralls/php-coveralls": "^1",
  1078. "php-http/guzzle6-adapter": "^1.1",
  1079. "phpunit/phpunit": "^6",
  1080. "squizlabs/php_codesniffer": "^2.8"
  1081. },
  1082. "type": "library",
  1083. "extra": {
  1084. "scenarios": {
  1085. "phpunit5": {
  1086. "require-dev": {
  1087. "phpunit/phpunit": "^5.7.27"
  1088. },
  1089. "remove": [
  1090. "php-coveralls/php-coveralls"
  1091. ],
  1092. "config": {
  1093. "platform": {
  1094. "php": "5.6.33"
  1095. }
  1096. }
  1097. }
  1098. },
  1099. "branch-alias": {
  1100. "dev-master": "0.x-dev"
  1101. }
  1102. },
  1103. "autoload": {
  1104. "psr-4": {
  1105. "Consolidation\\SiteProcess\\": "src"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "MIT"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Moshe Weitzman",
  1115. "email": "weitzman@tejasa.com"
  1116. },
  1117. {
  1118. "name": "Greg Anderson",
  1119. "email": "greg.1.anderson@greenknowe.org"
  1120. }
  1121. ],
  1122. "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.",
  1123. "time": "2019-04-05T20:16:00+00:00"
  1124. },
  1125. {
  1126. "name": "container-interop/container-interop",
  1127. "version": "1.2.0",
  1128. "source": {
  1129. "type": "git",
  1130. "url": "https://github.com/container-interop/container-interop.git",
  1131. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1132. },
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1136. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1137. "shasum": ""
  1138. },
  1139. "require": {
  1140. "psr/container": "^1.0"
  1141. },
  1142. "type": "library",
  1143. "autoload": {
  1144. "psr-4": {
  1145. "Interop\\Container\\": "src/Interop/Container/"
  1146. }
  1147. },
  1148. "notification-url": "https://packagist.org/downloads/",
  1149. "license": [
  1150. "MIT"
  1151. ],
  1152. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1153. "homepage": "https://github.com/container-interop/container-interop",
  1154. "time": "2017-02-14T19:40:03+00:00"
  1155. },
  1156. {
  1157. "name": "cweagans/composer-patches",
  1158. "version": "1.6.5",
  1159. "source": {
  1160. "type": "git",
  1161. "url": "https://github.com/cweagans/composer-patches.git",
  1162. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  1163. },
  1164. "dist": {
  1165. "type": "zip",
  1166. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  1167. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  1168. "shasum": ""
  1169. },
  1170. "require": {
  1171. "composer-plugin-api": "^1.0",
  1172. "php": ">=5.3.0"
  1173. },
  1174. "require-dev": {
  1175. "composer/composer": "~1.0",
  1176. "phpunit/phpunit": "~4.6"
  1177. },
  1178. "type": "composer-plugin",
  1179. "extra": {
  1180. "class": "cweagans\\Composer\\Patches"
  1181. },
  1182. "autoload": {
  1183. "psr-4": {
  1184. "cweagans\\Composer\\": "src"
  1185. }
  1186. },
  1187. "notification-url": "https://packagist.org/downloads/",
  1188. "license": [
  1189. "BSD-3-Clause"
  1190. ],
  1191. "authors": [
  1192. {
  1193. "name": "Cameron Eagans",
  1194. "email": "me@cweagans.net"
  1195. }
  1196. ],
  1197. "description": "Provides a way to patch Composer packages.",
  1198. "time": "2018-05-11T18:00:16+00:00"
  1199. },
  1200. {
  1201. "name": "dflydev/dot-access-configuration",
  1202. "version": "v1.0.3",
  1203. "source": {
  1204. "type": "git",
  1205. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1206. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1207. },
  1208. "dist": {
  1209. "type": "zip",
  1210. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1211. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1212. "shasum": ""
  1213. },
  1214. "require": {
  1215. "dflydev/dot-access-data": "1.*",
  1216. "dflydev/placeholder-resolver": "1.*",
  1217. "php": ">=5.3.2"
  1218. },
  1219. "require-dev": {
  1220. "symfony/yaml": "~2.1"
  1221. },
  1222. "suggest": {
  1223. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1224. },
  1225. "type": "library",
  1226. "extra": {
  1227. "branch-alias": {
  1228. "dev-master": "1.0-dev"
  1229. }
  1230. },
  1231. "autoload": {
  1232. "psr-0": {
  1233. "Dflydev\\DotAccessConfiguration": "src"
  1234. }
  1235. },
  1236. "notification-url": "https://packagist.org/downloads/",
  1237. "license": [
  1238. "MIT"
  1239. ],
  1240. "authors": [
  1241. {
  1242. "name": "Dragonfly Development Inc.",
  1243. "email": "info@dflydev.com",
  1244. "homepage": "http://dflydev.com"
  1245. },
  1246. {
  1247. "name": "Beau Simensen",
  1248. "email": "beau@dflydev.com",
  1249. "homepage": "http://beausimensen.com"
  1250. }
  1251. ],
  1252. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1253. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1254. "keywords": [
  1255. "config",
  1256. "configuration"
  1257. ],
  1258. "time": "2018-09-08T23:00:17+00:00"
  1259. },
  1260. {
  1261. "name": "dflydev/dot-access-data",
  1262. "version": "v1.1.0",
  1263. "source": {
  1264. "type": "git",
  1265. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1266. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1267. },
  1268. "dist": {
  1269. "type": "zip",
  1270. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1271. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1272. "shasum": ""
  1273. },
  1274. "require": {
  1275. "php": ">=5.3.2"
  1276. },
  1277. "type": "library",
  1278. "extra": {
  1279. "branch-alias": {
  1280. "dev-master": "1.0-dev"
  1281. }
  1282. },
  1283. "autoload": {
  1284. "psr-0": {
  1285. "Dflydev\\DotAccessData": "src"
  1286. }
  1287. },
  1288. "notification-url": "https://packagist.org/downloads/",
  1289. "license": [
  1290. "MIT"
  1291. ],
  1292. "authors": [
  1293. {
  1294. "name": "Dragonfly Development Inc.",
  1295. "email": "info@dflydev.com",
  1296. "homepage": "http://dflydev.com"
  1297. },
  1298. {
  1299. "name": "Beau Simensen",
  1300. "email": "beau@dflydev.com",
  1301. "homepage": "http://beausimensen.com"
  1302. },
  1303. {
  1304. "name": "Carlos Frutos",
  1305. "email": "carlos@kiwing.it",
  1306. "homepage": "https://github.com/cfrutos"
  1307. }
  1308. ],
  1309. "description": "Given a deep data structure, access data by dot notation.",
  1310. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1311. "keywords": [
  1312. "access",
  1313. "data",
  1314. "dot",
  1315. "notation"
  1316. ],
  1317. "time": "2017-01-20T21:14:22+00:00"
  1318. },
  1319. {
  1320. "name": "dflydev/placeholder-resolver",
  1321. "version": "v1.0.2",
  1322. "source": {
  1323. "type": "git",
  1324. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1325. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1326. },
  1327. "dist": {
  1328. "type": "zip",
  1329. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1330. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1331. "shasum": ""
  1332. },
  1333. "require": {
  1334. "php": ">=5.3.2"
  1335. },
  1336. "type": "library",
  1337. "extra": {
  1338. "branch-alias": {
  1339. "dev-master": "1.0-dev"
  1340. }
  1341. },
  1342. "autoload": {
  1343. "psr-0": {
  1344. "Dflydev\\PlaceholderResolver": "src"
  1345. }
  1346. },
  1347. "notification-url": "https://packagist.org/downloads/",
  1348. "license": [
  1349. "MIT"
  1350. ],
  1351. "authors": [
  1352. {
  1353. "name": "Dragonfly Development Inc.",
  1354. "email": "info@dflydev.com",
  1355. "homepage": "http://dflydev.com"
  1356. },
  1357. {
  1358. "name": "Beau Simensen",
  1359. "email": "beau@dflydev.com",
  1360. "homepage": "http://beausimensen.com"
  1361. }
  1362. ],
  1363. "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.",
  1364. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1365. "keywords": [
  1366. "placeholder",
  1367. "resolver"
  1368. ],
  1369. "time": "2012-10-28T21:08:28+00:00"
  1370. },
  1371. {
  1372. "name": "dnoegel/php-xdg-base-dir",
  1373. "version": "0.1",
  1374. "source": {
  1375. "type": "git",
  1376. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1377. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1378. },
  1379. "dist": {
  1380. "type": "zip",
  1381. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1382. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1383. "shasum": ""
  1384. },
  1385. "require": {
  1386. "php": ">=5.3.2"
  1387. },
  1388. "require-dev": {
  1389. "phpunit/phpunit": "@stable"
  1390. },
  1391. "type": "project",
  1392. "autoload": {
  1393. "psr-4": {
  1394. "XdgBaseDir\\": "src/"
  1395. }
  1396. },
  1397. "notification-url": "https://packagist.org/downloads/",
  1398. "license": [
  1399. "MIT"
  1400. ],
  1401. "description": "implementation of xdg base directory specification for php",
  1402. "time": "2014-10-24T07:27:01+00:00"
  1403. },
  1404. {
  1405. "name": "doctrine/annotations",
  1406. "version": "v1.4.0",
  1407. "source": {
  1408. "type": "git",
  1409. "url": "https://github.com/doctrine/annotations.git",
  1410. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1411. },
  1412. "dist": {
  1413. "type": "zip",
  1414. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1415. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1416. "shasum": ""
  1417. },
  1418. "require": {
  1419. "doctrine/lexer": "1.*",
  1420. "php": "^5.6 || ^7.0"
  1421. },
  1422. "require-dev": {
  1423. "doctrine/cache": "1.*",
  1424. "phpunit/phpunit": "^5.7"
  1425. },
  1426. "type": "library",
  1427. "extra": {
  1428. "branch-alias": {
  1429. "dev-master": "1.4.x-dev"
  1430. }
  1431. },
  1432. "autoload": {
  1433. "psr-4": {
  1434. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1435. }
  1436. },
  1437. "notification-url": "https://packagist.org/downloads/",
  1438. "license": [
  1439. "MIT"
  1440. ],
  1441. "authors": [
  1442. {
  1443. "name": "Roman Borschel",
  1444. "email": "roman@code-factory.org"
  1445. },
  1446. {
  1447. "name": "Benjamin Eberlei",
  1448. "email": "kontakt@beberlei.de"
  1449. },
  1450. {
  1451. "name": "Guilherme Blanco",
  1452. "email": "guilhermeblanco@gmail.com"
  1453. },
  1454. {
  1455. "name": "Jonathan Wage",
  1456. "email": "jonwage@gmail.com"
  1457. },
  1458. {
  1459. "name": "Johannes Schmitt",
  1460. "email": "schmittjoh@gmail.com"
  1461. }
  1462. ],
  1463. "description": "Docblock Annotations Parser",
  1464. "homepage": "http://www.doctrine-project.org",
  1465. "keywords": [
  1466. "annotations",
  1467. "docblock",
  1468. "parser"
  1469. ],
  1470. "time": "2017-02-24T16:22:25+00:00"
  1471. },
  1472. {
  1473. "name": "doctrine/cache",
  1474. "version": "v1.6.2",
  1475. "source": {
  1476. "type": "git",
  1477. "url": "https://github.com/doctrine/cache.git",
  1478. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1479. },
  1480. "dist": {
  1481. "type": "zip",
  1482. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1483. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1484. "shasum": ""
  1485. },
  1486. "require": {
  1487. "php": "~5.5|~7.0"
  1488. },
  1489. "conflict": {
  1490. "doctrine/common": ">2.2,<2.4"
  1491. },
  1492. "require-dev": {
  1493. "phpunit/phpunit": "~4.8|~5.0",
  1494. "predis/predis": "~1.0",
  1495. "satooshi/php-coveralls": "~0.6"
  1496. },
  1497. "type": "library",
  1498. "extra": {
  1499. "branch-alias": {
  1500. "dev-master": "1.6.x-dev"
  1501. }
  1502. },
  1503. "autoload": {
  1504. "psr-4": {
  1505. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1506. }
  1507. },
  1508. "notification-url": "https://packagist.org/downloads/",
  1509. "license": [
  1510. "MIT"
  1511. ],
  1512. "authors": [
  1513. {
  1514. "name": "Roman Borschel",
  1515. "email": "roman@code-factory.org"
  1516. },
  1517. {
  1518. "name": "Benjamin Eberlei",
  1519. "email": "kontakt@beberlei.de"
  1520. },
  1521. {
  1522. "name": "Guilherme Blanco",
  1523. "email": "guilhermeblanco@gmail.com"
  1524. },
  1525. {
  1526. "name": "Jonathan Wage",
  1527. "email": "jonwage@gmail.com"
  1528. },
  1529. {
  1530. "name": "Johannes Schmitt",
  1531. "email": "schmittjoh@gmail.com"
  1532. }
  1533. ],
  1534. "description": "Caching library offering an object-oriented API for many cache backends",
  1535. "homepage": "http://www.doctrine-project.org",
  1536. "keywords": [
  1537. "cache",
  1538. "caching"
  1539. ],
  1540. "time": "2017-07-22T12:49:21+00:00"
  1541. },
  1542. {
  1543. "name": "doctrine/collections",
  1544. "version": "v1.4.0",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/doctrine/collections.git",
  1548. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1553. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "php": "^5.6 || ^7.0"
  1558. },
  1559. "require-dev": {
  1560. "doctrine/coding-standard": "~0.1@dev",
  1561. "phpunit/phpunit": "^5.7"
  1562. },
  1563. "type": "library",
  1564. "extra": {
  1565. "branch-alias": {
  1566. "dev-master": "1.3.x-dev"
  1567. }
  1568. },
  1569. "autoload": {
  1570. "psr-0": {
  1571. "Doctrine\\Common\\Collections\\": "lib/"
  1572. }
  1573. },
  1574. "notification-url": "https://packagist.org/downloads/",
  1575. "license": [
  1576. "MIT"
  1577. ],
  1578. "authors": [
  1579. {
  1580. "name": "Roman Borschel",
  1581. "email": "roman@code-factory.org"
  1582. },
  1583. {
  1584. "name": "Benjamin Eberlei",
  1585. "email": "kontakt@beberlei.de"
  1586. },
  1587. {
  1588. "name": "Guilherme Blanco",
  1589. "email": "guilhermeblanco@gmail.com"
  1590. },
  1591. {
  1592. "name": "Jonathan Wage",
  1593. "email": "jonwage@gmail.com"
  1594. },
  1595. {
  1596. "name": "Johannes Schmitt",
  1597. "email": "schmittjoh@gmail.com"
  1598. }
  1599. ],
  1600. "description": "Collections Abstraction library",
  1601. "homepage": "http://www.doctrine-project.org",
  1602. "keywords": [
  1603. "array",
  1604. "collections",
  1605. "iterator"
  1606. ],
  1607. "time": "2017-01-03T10:49:41+00:00"
  1608. },
  1609. {
  1610. "name": "doctrine/common",
  1611. "version": "v2.7.3",
  1612. "source": {
  1613. "type": "git",
  1614. "url": "https://github.com/doctrine/common.git",
  1615. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1616. },
  1617. "dist": {
  1618. "type": "zip",
  1619. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1620. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1621. "shasum": ""
  1622. },
  1623. "require": {
  1624. "doctrine/annotations": "1.*",
  1625. "doctrine/cache": "1.*",
  1626. "doctrine/collections": "1.*",
  1627. "doctrine/inflector": "1.*",
  1628. "doctrine/lexer": "1.*",
  1629. "php": "~5.6|~7.0"
  1630. },
  1631. "require-dev": {
  1632. "phpunit/phpunit": "^5.4.6"
  1633. },
  1634. "type": "library",
  1635. "extra": {
  1636. "branch-alias": {
  1637. "dev-master": "2.7.x-dev"
  1638. }
  1639. },
  1640. "autoload": {
  1641. "psr-4": {
  1642. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1643. }
  1644. },
  1645. "notification-url": "https://packagist.org/downloads/",
  1646. "license": [
  1647. "MIT"
  1648. ],
  1649. "authors": [
  1650. {
  1651. "name": "Roman Borschel",
  1652. "email": "roman@code-factory.org"
  1653. },
  1654. {
  1655. "name": "Benjamin Eberlei",
  1656. "email": "kontakt@beberlei.de"
  1657. },
  1658. {
  1659. "name": "Guilherme Blanco",
  1660. "email": "guilhermeblanco@gmail.com"
  1661. },
  1662. {
  1663. "name": "Jonathan Wage",
  1664. "email": "jonwage@gmail.com"
  1665. },
  1666. {
  1667. "name": "Johannes Schmitt",
  1668. "email": "schmittjoh@gmail.com"
  1669. }
  1670. ],
  1671. "description": "Common Library for Doctrine projects",
  1672. "homepage": "http://www.doctrine-project.org",
  1673. "keywords": [
  1674. "annotations",
  1675. "collections",
  1676. "eventmanager",
  1677. "persistence",
  1678. "spl"
  1679. ],
  1680. "time": "2017-07-22T08:35:12+00:00"
  1681. },
  1682. {
  1683. "name": "doctrine/inflector",
  1684. "version": "v1.2.0",
  1685. "source": {
  1686. "type": "git",
  1687. "url": "https://github.com/doctrine/inflector.git",
  1688. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1689. },
  1690. "dist": {
  1691. "type": "zip",
  1692. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1693. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1694. "shasum": ""
  1695. },
  1696. "require": {
  1697. "php": "^7.0"
  1698. },
  1699. "require-dev": {
  1700. "phpunit/phpunit": "^6.2"
  1701. },
  1702. "type": "library",
  1703. "extra": {
  1704. "branch-alias": {
  1705. "dev-master": "1.2.x-dev"
  1706. }
  1707. },
  1708. "autoload": {
  1709. "psr-4": {
  1710. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1711. }
  1712. },
  1713. "notification-url": "https://packagist.org/downloads/",
  1714. "license": [
  1715. "MIT"
  1716. ],
  1717. "authors": [
  1718. {
  1719. "name": "Roman Borschel",
  1720. "email": "roman@code-factory.org"
  1721. },
  1722. {
  1723. "name": "Benjamin Eberlei",
  1724. "email": "kontakt@beberlei.de"
  1725. },
  1726. {
  1727. "name": "Guilherme Blanco",
  1728. "email": "guilhermeblanco@gmail.com"
  1729. },
  1730. {
  1731. "name": "Jonathan Wage",
  1732. "email": "jonwage@gmail.com"
  1733. },
  1734. {
  1735. "name": "Johannes Schmitt",
  1736. "email": "schmittjoh@gmail.com"
  1737. }
  1738. ],
  1739. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1740. "homepage": "http://www.doctrine-project.org",
  1741. "keywords": [
  1742. "inflection",
  1743. "pluralize",
  1744. "singularize",
  1745. "string"
  1746. ],
  1747. "time": "2017-07-22T12:18:28+00:00"
  1748. },
  1749. {
  1750. "name": "doctrine/lexer",
  1751. "version": "v1.0.1",
  1752. "source": {
  1753. "type": "git",
  1754. "url": "https://github.com/doctrine/lexer.git",
  1755. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1756. },
  1757. "dist": {
  1758. "type": "zip",
  1759. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1760. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1761. "shasum": ""
  1762. },
  1763. "require": {
  1764. "php": ">=5.3.2"
  1765. },
  1766. "type": "library",
  1767. "extra": {
  1768. "branch-alias": {
  1769. "dev-master": "1.0.x-dev"
  1770. }
  1771. },
  1772. "autoload": {
  1773. "psr-0": {
  1774. "Doctrine\\Common\\Lexer\\": "lib/"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Roman Borschel",
  1784. "email": "roman@code-factory.org"
  1785. },
  1786. {
  1787. "name": "Guilherme Blanco",
  1788. "email": "guilhermeblanco@gmail.com"
  1789. },
  1790. {
  1791. "name": "Johannes Schmitt",
  1792. "email": "schmittjoh@gmail.com"
  1793. }
  1794. ],
  1795. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1796. "homepage": "http://www.doctrine-project.org",
  1797. "keywords": [
  1798. "lexer",
  1799. "parser"
  1800. ],
  1801. "time": "2014-09-09T13:34:57+00:00"
  1802. },
  1803. {
  1804. "name": "drupal-composer/drupal-scaffold",
  1805. "version": "2.6.1",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  1809. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  1814. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  1815. "shasum": ""
  1816. },
  1817. "require": {
  1818. "composer-plugin-api": "^1.0.0",
  1819. "composer/semver": "^1.4",
  1820. "php": "^5.5.9|>=7.0.8"
  1821. },
  1822. "require-dev": {
  1823. "composer/composer": "dev-master",
  1824. "g1a/composer-test-scenarios": "^2.1.0",
  1825. "phpunit/phpunit": "^6",
  1826. "squizlabs/php_codesniffer": "^2.8"
  1827. },
  1828. "type": "composer-plugin",
  1829. "extra": {
  1830. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  1831. "branch-alias": {
  1832. "dev-master": "2.0.x-dev"
  1833. }
  1834. },
  1835. "autoload": {
  1836. "psr-4": {
  1837. "DrupalComposer\\DrupalScaffold\\": "src/"
  1838. }
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "GPL-2.0-or-later"
  1843. ],
  1844. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  1845. "time": "2019-03-30T10:41:38+00:00"
  1846. },
  1847. {
  1848. "name": "drupal/addtoany",
  1849. "version": "1.12.0",
  1850. "source": {
  1851. "type": "git",
  1852. "url": "https://git.drupalcode.org/project/addtoany.git",
  1853. "reference": "8.x-1.12"
  1854. },
  1855. "dist": {
  1856. "type": "zip",
  1857. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.12.zip",
  1858. "reference": "8.x-1.12",
  1859. "shasum": "f66b3cb0a95b500e4802e8ff9c29af04554327d8"
  1860. },
  1861. "require": {
  1862. "drupal/core": "*"
  1863. },
  1864. "type": "drupal-module",
  1865. "extra": {
  1866. "branch-alias": {
  1867. "dev-1.x": "1.x-dev"
  1868. },
  1869. "drupal": {
  1870. "version": "8.x-1.12",
  1871. "datestamp": "1554702781",
  1872. "security-coverage": {
  1873. "status": "covered",
  1874. "message": "Covered by Drupal's security advisory policy"
  1875. }
  1876. }
  1877. },
  1878. "notification-url": "https://packages.drupal.org/8/downloads",
  1879. "license": [
  1880. "GPL-2.0-or-later"
  1881. ],
  1882. "authors": [
  1883. {
  1884. "name": "AddToAny",
  1885. "homepage": "https://www.drupal.org/user/2640913"
  1886. },
  1887. {
  1888. "name": "micropat",
  1889. "homepage": "https://www.drupal.org/user/260224"
  1890. }
  1891. ],
  1892. "description": "Share buttons by AddToAny, including the AddToAny universal sharing button, Facebook, Twitter, Google+, Pinterest, and over 100 more on the <a href=\"https://www.addtoany.com/\" target=\"_blank\">AddToAny</a> platform.",
  1893. "homepage": "https://www.drupal.org/project/addtoany",
  1894. "support": {
  1895. "source": "https://git.drupalcode.org/project/addtoany"
  1896. }
  1897. },
  1898. {
  1899. "name": "drupal/admin_toolbar",
  1900. "version": "1.26.0",
  1901. "source": {
  1902. "type": "git",
  1903. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1904. "reference": "8.x-1.26"
  1905. },
  1906. "dist": {
  1907. "type": "zip",
  1908. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.26.zip",
  1909. "reference": "8.x-1.26",
  1910. "shasum": "7be9f91008bf17cf49b43d1c8e2211e7a8e40ce4"
  1911. },
  1912. "require": {
  1913. "drupal/core": "*"
  1914. },
  1915. "type": "drupal-module",
  1916. "extra": {
  1917. "branch-alias": {
  1918. "dev-1.x": "1.x-dev"
  1919. },
  1920. "drupal": {
  1921. "version": "8.x-1.26",
  1922. "datestamp": "1549559402",
  1923. "security-coverage": {
  1924. "status": "covered",
  1925. "message": "Covered by Drupal's security advisory policy"
  1926. }
  1927. }
  1928. },
  1929. "notification-url": "https://packages.drupal.org/8/downloads",
  1930. "license": [
  1931. "GPL-2.0+"
  1932. ],
  1933. "authors": [
  1934. {
  1935. "name": "Wilfrid Roze (eme)",
  1936. "homepage": "https://www.drupal.org/u/eme",
  1937. "role": "Maintainer"
  1938. },
  1939. {
  1940. "name": "Romain Jarraud (romainj)",
  1941. "homepage": "https://www.drupal.org/u/romainj",
  1942. "role": "Maintainer"
  1943. },
  1944. {
  1945. "name": "Adrian Cid Almaguer (adriancid)",
  1946. "homepage": "https://www.drupal.org/u/adriancid",
  1947. "email": "adriancid@gmail.com",
  1948. "role": "Maintainer"
  1949. },
  1950. {
  1951. "name": "Mohamed Anis Taktak (matio89)",
  1952. "homepage": "https://www.drupal.org/u/matio89",
  1953. "role": "Maintainer"
  1954. },
  1955. {
  1956. "name": "fethi.krout",
  1957. "homepage": "https://www.drupal.org/user/3206765"
  1958. },
  1959. {
  1960. "name": "matio89",
  1961. "homepage": "https://www.drupal.org/user/2320090"
  1962. },
  1963. {
  1964. "name": "romainj",
  1965. "homepage": "https://www.drupal.org/user/370706"
  1966. }
  1967. ],
  1968. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1969. "homepage": "http://drupal.org/project/admin_toolbar",
  1970. "keywords": [
  1971. "Drupal",
  1972. "Toolbar"
  1973. ],
  1974. "support": {
  1975. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1976. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1977. }
  1978. },
  1979. {
  1980. "name": "drupal/adminimal_theme",
  1981. "version": "1.4.0",
  1982. "source": {
  1983. "type": "git",
  1984. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1985. "reference": "8.x-1.4"
  1986. },
  1987. "dist": {
  1988. "type": "zip",
  1989. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.4.zip",
  1990. "reference": "8.x-1.4",
  1991. "shasum": "af9cbce473d0bd9590889992200ed175cb7e1159"
  1992. },
  1993. "require": {
  1994. "drupal/core": "~8.0"
  1995. },
  1996. "type": "drupal-theme",
  1997. "extra": {
  1998. "branch-alias": {
  1999. "dev-1.x": "1.x-dev"
  2000. },
  2001. "drupal": {
  2002. "version": "8.x-1.4",
  2003. "datestamp": "1547996580",
  2004. "security-coverage": {
  2005. "status": "covered",
  2006. "message": "Covered by Drupal's security advisory policy"
  2007. }
  2008. }
  2009. },
  2010. "notification-url": "https://packages.drupal.org/8/downloads",
  2011. "license": [
  2012. "GPL-2.0+"
  2013. ],
  2014. "authors": [
  2015. {
  2016. "name": "ANDiTKO",
  2017. "homepage": "https://www.drupal.org/user/1428124"
  2018. },
  2019. {
  2020. "name": "andrey.troeglazov",
  2021. "homepage": "https://www.drupal.org/user/3145389"
  2022. },
  2023. {
  2024. "name": "realityloop",
  2025. "homepage": "https://www.drupal.org/user/139189"
  2026. }
  2027. ],
  2028. "description": "Drupal administration theme with modern minimalist design.",
  2029. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2030. "support": {
  2031. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2032. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2033. }
  2034. },
  2035. {
  2036. "name": "drupal/audiofield",
  2037. "version": "1.8.0",
  2038. "source": {
  2039. "type": "git",
  2040. "url": "https://git.drupalcode.org/project/audiofield.git",
  2041. "reference": "8.x-1.8"
  2042. },
  2043. "dist": {
  2044. "type": "zip",
  2045. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.8.zip",
  2046. "reference": "8.x-1.8",
  2047. "shasum": "a2e4c5b7f81ec6d3d015b22a63560fd1a8f56682"
  2048. },
  2049. "require": {
  2050. "drupal/core": "~8.0"
  2051. },
  2052. "type": "drupal-module",
  2053. "extra": {
  2054. "branch-alias": {
  2055. "dev-1.x": "1.x-dev"
  2056. },
  2057. "drupal": {
  2058. "version": "8.x-1.8",
  2059. "datestamp": "1553712781",
  2060. "security-coverage": {
  2061. "status": "covered",
  2062. "message": "Covered by Drupal's security advisory policy"
  2063. }
  2064. },
  2065. "drush": {
  2066. "services": {
  2067. "drush.services.yml": "^9"
  2068. }
  2069. }
  2070. },
  2071. "notification-url": "https://packages.drupal.org/8/downloads",
  2072. "license": [
  2073. "GPL-2.0+"
  2074. ],
  2075. "authors": [
  2076. {
  2077. "name": "Daniel Moberly",
  2078. "homepage": "https://www.drupal.org/u/danielmoberly",
  2079. "role": "Maintainer"
  2080. },
  2081. {
  2082. "name": "josipsaric",
  2083. "homepage": "https://www.drupal.org/user/3063287"
  2084. },
  2085. {
  2086. "name": "tamerzg",
  2087. "homepage": "https://www.drupal.org/user/464564"
  2088. }
  2089. ],
  2090. "description": "AudioField Module",
  2091. "homepage": "https://www.drupal.org/project/audiofield",
  2092. "support": {
  2093. "source": "https://git.drupalcode.org/project/audiofield",
  2094. "issues": "https://www.drupal.org/project/issues/audiofield"
  2095. }
  2096. },
  2097. {
  2098. "name": "drupal/autologout",
  2099. "version": "1.0.0",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://git.drupalcode.org/project/autologout.git",
  2103. "reference": "8.x-1.0"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2108. "reference": "8.x-1.0",
  2109. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2110. },
  2111. "require": {
  2112. "drupal/core": "~8.0"
  2113. },
  2114. "type": "drupal-module",
  2115. "extra": {
  2116. "branch-alias": {
  2117. "dev-1.x": "1.x-dev"
  2118. },
  2119. "drupal": {
  2120. "version": "8.x-1.0",
  2121. "datestamp": "1494237185",
  2122. "security-coverage": {
  2123. "status": "covered",
  2124. "message": "Covered by Drupal's security advisory policy"
  2125. }
  2126. }
  2127. },
  2128. "notification-url": "https://packages.drupal.org/8/downloads",
  2129. "license": [
  2130. "GPL-2.0+"
  2131. ],
  2132. "authors": [
  2133. {
  2134. "name": "AjK",
  2135. "homepage": "https://www.drupal.org/user/39030"
  2136. },
  2137. {
  2138. "name": "AjitS",
  2139. "homepage": "https://www.drupal.org/user/981944"
  2140. },
  2141. {
  2142. "name": "boshtian",
  2143. "homepage": "https://www.drupal.org/user/1773456"
  2144. },
  2145. {
  2146. "name": "dandrews",
  2147. "homepage": "https://www.drupal.org/user/2014490"
  2148. },
  2149. {
  2150. "name": "darksnow",
  2151. "homepage": "https://www.drupal.org/user/391915"
  2152. },
  2153. {
  2154. "name": "johnennew",
  2155. "homepage": "https://www.drupal.org/user/1150042"
  2156. },
  2157. {
  2158. "name": "jrglasgow",
  2159. "homepage": "https://www.drupal.org/user/36590"
  2160. },
  2161. {
  2162. "name": "kmasood",
  2163. "homepage": "https://www.drupal.org/user/1262860"
  2164. },
  2165. {
  2166. "name": "levelos",
  2167. "homepage": "https://www.drupal.org/user/54135"
  2168. },
  2169. {
  2170. "name": "prabeen.giri",
  2171. "homepage": "https://www.drupal.org/user/913078"
  2172. },
  2173. {
  2174. "name": "str8",
  2175. "homepage": "https://www.drupal.org/user/2865063"
  2176. }
  2177. ],
  2178. "description": "Adds automated timed logout.",
  2179. "homepage": "http://drupal.org/project/autologout",
  2180. "support": {
  2181. "source": "https://git.drupalcode.org/project/autologout"
  2182. }
  2183. },
  2184. {
  2185. "name": "drupal/basic",
  2186. "version": "1.3.0",
  2187. "source": {
  2188. "type": "git",
  2189. "url": "https://git.drupalcode.org/project/basic.git",
  2190. "reference": "8.x-1.3"
  2191. },
  2192. "dist": {
  2193. "type": "zip",
  2194. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  2195. "reference": "8.x-1.3",
  2196. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  2197. },
  2198. "require": {
  2199. "drupal/core": "~8.0"
  2200. },
  2201. "type": "drupal-theme",
  2202. "extra": {
  2203. "branch-alias": {
  2204. "dev-1.x": "1.x-dev"
  2205. },
  2206. "drupal": {
  2207. "version": "8.x-1.3",
  2208. "datestamp": "1508096944",
  2209. "security-coverage": {
  2210. "status": "covered",
  2211. "message": "Covered by Drupal's security advisory policy"
  2212. }
  2213. }
  2214. },
  2215. "notification-url": "https://packages.drupal.org/8/downloads",
  2216. "license": [
  2217. "GPL-2.0+"
  2218. ],
  2219. "authors": [
  2220. {
  2221. "name": "Steve Krueger",
  2222. "homepage": "http://thejibe.com",
  2223. "email": "steve@thejibe.com",
  2224. "role": "Maintainer"
  2225. },
  2226. {
  2227. "name": "Joël Pittet",
  2228. "homepage": "https://www.drupal.org/u/joelpittet",
  2229. "email": "joel@pittet.ca",
  2230. "role": "Maintainer"
  2231. },
  2232. {
  2233. "name": "Leah Wagner",
  2234. "homepage": "http://thejibe.com",
  2235. "email": "leah@thejibe.com",
  2236. "role": "Maintainer"
  2237. },
  2238. {
  2239. "name": "Catherine Winters",
  2240. "homepage": "http://www.catherinewinters.com",
  2241. "email": "catherine@catherinewinters.com",
  2242. "role": "Maintainer"
  2243. },
  2244. {
  2245. "name": "Johannes Schmidt",
  2246. "homepage": "http://2tabs.com",
  2247. "email": "mail@2tabs.com",
  2248. "role": "Maintainer"
  2249. },
  2250. {
  2251. "name": "johannez",
  2252. "homepage": "https://www.drupal.org/user/670988"
  2253. },
  2254. {
  2255. "name": "leahtard",
  2256. "homepage": "https://www.drupal.org/user/683812"
  2257. }
  2258. ],
  2259. "description": "HTML5, SASS, Responsive grid starter theme.",
  2260. "homepage": "http://drupal.org/project/basic",
  2261. "support": {
  2262. "source": "http://cgit.drupalcode.org/basic",
  2263. "issues": "https://www.drupal.org/project/issues/basic",
  2264. "irc": "irc://irc.freenode.org/drupal-contribute"
  2265. }
  2266. },
  2267. {
  2268. "name": "drupal/better_messages",
  2269. "version": "1.0.0-alpha2",
  2270. "source": {
  2271. "type": "git",
  2272. "url": "https://git.drupalcode.org/project/better_messages.git",
  2273. "reference": "8.x-1.0-alpha2"
  2274. },
  2275. "dist": {
  2276. "type": "zip",
  2277. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2278. "reference": "8.x-1.0-alpha2",
  2279. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2280. },
  2281. "require": {
  2282. "drupal/core": "~8.0"
  2283. },
  2284. "type": "drupal-module",
  2285. "extra": {
  2286. "branch-alias": {
  2287. "dev-1.x": "1.x-dev"
  2288. },
  2289. "drupal": {
  2290. "version": "8.x-1.0-alpha2",
  2291. "datestamp": "1517663880",
  2292. "security-coverage": {
  2293. "status": "not-covered",
  2294. "message": "Alpha releases are not covered by Drupal security advisories."
  2295. }
  2296. }
  2297. },
  2298. "notification-url": "https://packages.drupal.org/8/downloads",
  2299. "license": [
  2300. "GPL-2.0-or-later"
  2301. ],
  2302. "authors": [
  2303. {
  2304. "name": "Mohammed J. Razem",
  2305. "homepage": "https://www.drupal.org/user/255384"
  2306. },
  2307. {
  2308. "name": "bucefal91",
  2309. "homepage": "https://www.drupal.org/user/504128"
  2310. },
  2311. {
  2312. "name": "le72",
  2313. "homepage": "https://www.drupal.org/user/1866896"
  2314. }
  2315. ],
  2316. "description": "Better Messages module for Drupal 8.",
  2317. "homepage": "https://www.drupal.org/project/better_messages",
  2318. "support": {
  2319. "source": "https://git.drupalcode.org/project/better_messages"
  2320. }
  2321. },
  2322. {
  2323. "name": "drupal/bulkdelete",
  2324. "version": "dev-1.x",
  2325. "source": {
  2326. "type": "git",
  2327. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2328. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2329. },
  2330. "require": {
  2331. "drupal/core": "~8.0"
  2332. },
  2333. "type": "drupal-module",
  2334. "extra": {
  2335. "branch-alias": {
  2336. "dev-1.x": "1.x-dev"
  2337. },
  2338. "drupal": {
  2339. "version": "8.x-1.x-dev",
  2340. "datestamp": "1495565583",
  2341. "security-coverage": {
  2342. "status": "not-covered",
  2343. "message": "Dev releases are not covered by Drupal security advisories."
  2344. }
  2345. }
  2346. },
  2347. "notification-url": "https://packages.drupal.org/8/downloads",
  2348. "license": [
  2349. "GPL-2.0-or-later"
  2350. ],
  2351. "authors": [
  2352. {
  2353. "name": "Kars-T",
  2354. "homepage": "https://www.drupal.org/user/224499"
  2355. },
  2356. {
  2357. "name": "Rahul Seth",
  2358. "homepage": "https://www.drupal.org/user/2694359"
  2359. },
  2360. {
  2361. "name": "adriancid",
  2362. "homepage": "https://www.drupal.org/user/1962106"
  2363. },
  2364. {
  2365. "name": "robertDouglass",
  2366. "homepage": "https://www.drupal.org/user/5449"
  2367. }
  2368. ],
  2369. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2370. "homepage": "https://www.drupal.org/project/bulkdelete",
  2371. "support": {
  2372. "source": "https://git.drupalcode.org/project/bulkdelete"
  2373. },
  2374. "time": "2017-05-23T18:49:48+00:00"
  2375. },
  2376. {
  2377. "name": "drupal/color_field",
  2378. "version": "2.0.0",
  2379. "source": {
  2380. "type": "git",
  2381. "url": "https://git.drupalcode.org/project/color_field.git",
  2382. "reference": "8.x-2.0"
  2383. },
  2384. "dist": {
  2385. "type": "zip",
  2386. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.0.zip",
  2387. "reference": "8.x-2.0",
  2388. "shasum": "27c510d258e409e1d029d69cf7747e96c1087df6"
  2389. },
  2390. "require": {
  2391. "drupal/core": "*"
  2392. },
  2393. "require-dev": {
  2394. "drupal/token": "~1.3"
  2395. },
  2396. "suggest": {
  2397. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2398. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2399. },
  2400. "type": "drupal-module",
  2401. "extra": {
  2402. "branch-alias": {
  2403. "dev-2.x": "2.x-dev"
  2404. },
  2405. "drupal": {
  2406. "version": "8.x-2.0",
  2407. "datestamp": "1536168780",
  2408. "security-coverage": {
  2409. "status": "covered",
  2410. "message": "Covered by Drupal's security advisory policy"
  2411. }
  2412. }
  2413. },
  2414. "notification-url": "https://packages.drupal.org/8/downloads",
  2415. "license": [
  2416. "GPL-2.0-or-later"
  2417. ],
  2418. "authors": [
  2419. {
  2420. "name": "targoo",
  2421. "homepage": "https://www.drupal.org/user/431910",
  2422. "role": "Maintainer"
  2423. },
  2424. {
  2425. "name": "Nick Wilde",
  2426. "homepage": "https://www.drupal.org/user/nickwilde",
  2427. "role": "Maintainer"
  2428. }
  2429. ],
  2430. "description": "Provides a color field type to store the color value and opacity",
  2431. "homepage": "https://www.drupal.org/project/color_field",
  2432. "support": {
  2433. "source": "http://cgit.drupalcode.org/color_field",
  2434. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2435. }
  2436. },
  2437. {
  2438. "name": "drupal/composerize",
  2439. "version": "dev-1.x",
  2440. "source": {
  2441. "type": "git",
  2442. "url": "https://git.drupalcode.org/project/composerize.git",
  2443. "reference": "2ba0b81a698afb3a12217aabbe75bc927bdbb0c3"
  2444. },
  2445. "require": {
  2446. "drupal/core": "*"
  2447. },
  2448. "type": "drupal-module",
  2449. "extra": {
  2450. "branch-alias": {
  2451. "dev-1.x": "1.x-dev"
  2452. },
  2453. "drupal": {
  2454. "version": "8.x-1.x-dev",
  2455. "datestamp": "1521507784",
  2456. "security-coverage": {
  2457. "status": "not-covered",
  2458. "message": "Project has not opted into security advisory coverage!"
  2459. }
  2460. }
  2461. },
  2462. "notification-url": "https://packages.drupal.org/8/downloads",
  2463. "license": [
  2464. "GPL-2.0-or-later"
  2465. ],
  2466. "authors": [
  2467. {
  2468. "name": "phenaproxima",
  2469. "homepage": "https://www.drupal.org/user/205645"
  2470. }
  2471. ],
  2472. "description": "Creates a composer.json from your Drupal site.",
  2473. "homepage": "https://www.drupal.org/project/composerize",
  2474. "support": {
  2475. "source": "https://git.drupalcode.org/project/composerize"
  2476. },
  2477. "time": "2018-03-20T01:02:02+00:00"
  2478. },
  2479. {
  2480. "name": "drupal/config_devel",
  2481. "version": "1.2.0",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://git.drupalcode.org/project/config_devel.git",
  2485. "reference": "8.x-1.2"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2490. "reference": "8.x-1.2",
  2491. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2492. },
  2493. "require": {
  2494. "drupal/core": "~8.0"
  2495. },
  2496. "type": "drupal-module",
  2497. "extra": {
  2498. "branch-alias": {
  2499. "dev-1.x": "1.x-dev"
  2500. },
  2501. "drupal": {
  2502. "version": "8.x-1.2",
  2503. "datestamp": "1510843084",
  2504. "security-coverage": {
  2505. "status": "covered",
  2506. "message": "Covered by Drupal's security advisory policy"
  2507. }
  2508. }
  2509. },
  2510. "notification-url": "https://packages.drupal.org/8/downloads",
  2511. "license": [
  2512. "GPL-2.0+"
  2513. ],
  2514. "authors": [
  2515. {
  2516. "name": "alexpott",
  2517. "homepage": "https://www.drupal.org/user/157725"
  2518. },
  2519. {
  2520. "name": "benjy",
  2521. "homepage": "https://www.drupal.org/user/1852732"
  2522. },
  2523. {
  2524. "name": "chx",
  2525. "homepage": "https://www.drupal.org/user/9446"
  2526. },
  2527. {
  2528. "name": "joachim",
  2529. "homepage": "https://www.drupal.org/user/107701"
  2530. },
  2531. {
  2532. "name": "nedjo",
  2533. "homepage": "https://www.drupal.org/user/4481"
  2534. },
  2535. {
  2536. "name": "tim.plunkett",
  2537. "homepage": "https://www.drupal.org/user/241634"
  2538. },
  2539. {
  2540. "name": "vijaycs85",
  2541. "homepage": "https://www.drupal.org/user/93488"
  2542. }
  2543. ],
  2544. "description": "Helps developers work with configuration.",
  2545. "homepage": "https://www.drupal.org/project/config_devel",
  2546. "support": {
  2547. "source": "https://git.drupalcode.org/project/config_devel"
  2548. }
  2549. },
  2550. {
  2551. "name": "drupal/config_filter",
  2552. "version": "1.4.0",
  2553. "source": {
  2554. "type": "git",
  2555. "url": "https://git.drupalcode.org/project/config_filter.git",
  2556. "reference": "8.x-1.4"
  2557. },
  2558. "dist": {
  2559. "type": "zip",
  2560. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.4.zip",
  2561. "reference": "8.x-1.4",
  2562. "shasum": "4b2b7f4dfc8358212f9e25f63dcc77cc2c1dcf6c"
  2563. },
  2564. "require": {
  2565. "drupal/core": "~8.0"
  2566. },
  2567. "suggest": {
  2568. "drupal/config_split": "Split site configuration for different environments."
  2569. },
  2570. "type": "drupal-module",
  2571. "extra": {
  2572. "branch-alias": {
  2573. "dev-1.x": "1.x-dev"
  2574. },
  2575. "drupal": {
  2576. "version": "8.x-1.4",
  2577. "datestamp": "1542184982",
  2578. "security-coverage": {
  2579. "status": "covered",
  2580. "message": "Covered by Drupal's security advisory policy"
  2581. }
  2582. }
  2583. },
  2584. "notification-url": "https://packages.drupal.org/8/downloads",
  2585. "license": [
  2586. "GPL-2.0+"
  2587. ],
  2588. "authors": [
  2589. {
  2590. "name": "Fabian Bircher",
  2591. "homepage": "https://www.drupal.org/u/bircher",
  2592. "email": "opensource@fabianbircher.com",
  2593. "role": "Maintainer"
  2594. },
  2595. {
  2596. "name": "Nuvole Web",
  2597. "homepage": "http://nuvole.org",
  2598. "email": "info@nuvole.org",
  2599. "role": "Maintainer"
  2600. },
  2601. {
  2602. "name": "pescetti",
  2603. "homepage": "https://www.drupal.org/user/436244"
  2604. }
  2605. ],
  2606. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2607. "homepage": "https://www.drupal.org/project/config_filter",
  2608. "keywords": [
  2609. "Drupal",
  2610. "configuration",
  2611. "configuration management"
  2612. ],
  2613. "support": {
  2614. "source": "http://cgit.drupalcode.org/config_filter",
  2615. "issues": "https://www.drupal.org/project/issues/config_filter",
  2616. "irc": "irc://irc.freenode.org/drupal-contribute"
  2617. }
  2618. },
  2619. {
  2620. "name": "drupal/config_ignore",
  2621. "version": "2.1.0",
  2622. "source": {
  2623. "type": "git",
  2624. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2625. "reference": "8.x-2.1"
  2626. },
  2627. "dist": {
  2628. "type": "zip",
  2629. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2630. "reference": "8.x-2.1",
  2631. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2632. },
  2633. "require": {
  2634. "drupal/config_filter": "1.*",
  2635. "drupal/core": "~8.0"
  2636. },
  2637. "type": "drupal-module",
  2638. "extra": {
  2639. "branch-alias": {
  2640. "dev-2.x": "2.x-dev"
  2641. },
  2642. "drupal": {
  2643. "version": "8.x-2.1",
  2644. "datestamp": "1507706044",
  2645. "security-coverage": {
  2646. "status": "covered",
  2647. "message": "Covered by Drupal's security advisory policy"
  2648. }
  2649. }
  2650. },
  2651. "notification-url": "https://packages.drupal.org/8/downloads",
  2652. "license": [
  2653. "GPL-2.0+"
  2654. ],
  2655. "authors": [
  2656. {
  2657. "name": "Tommy Lynge Jørgensen",
  2658. "homepage": "https://www.drupal.org/u/tlyngej",
  2659. "email": "tlyngej@gmail.com",
  2660. "role": "Maintainer"
  2661. },
  2662. {
  2663. "name": "Fabian Bircher",
  2664. "homepage": "https://www.drupal.org/u/bircher",
  2665. "role": "Maintainer"
  2666. }
  2667. ],
  2668. "description": "Ignore certain configuration during import.",
  2669. "homepage": "http://drupal.org/project/config_ignore",
  2670. "support": {
  2671. "source": "http://cgit.drupalcode.org/config_ignore",
  2672. "issues": "http://drupal.org/project/config_ignore",
  2673. "irc": "irc://irc.freenode.org/drupal-contribute"
  2674. }
  2675. },
  2676. {
  2677. "name": "drupal/config_update",
  2678. "version": "1.6.0",
  2679. "source": {
  2680. "type": "git",
  2681. "url": "https://git.drupalcode.org/project/config_update.git",
  2682. "reference": "8.x-1.6"
  2683. },
  2684. "dist": {
  2685. "type": "zip",
  2686. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2687. "reference": "8.x-1.6",
  2688. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2689. },
  2690. "require": {
  2691. "drupal/core": "*"
  2692. },
  2693. "type": "drupal-module",
  2694. "extra": {
  2695. "branch-alias": {
  2696. "dev-1.x": "1.x-dev"
  2697. },
  2698. "drupal": {
  2699. "version": "8.x-1.6",
  2700. "datestamp": "1545090480",
  2701. "security-coverage": {
  2702. "status": "covered",
  2703. "message": "Covered by Drupal's security advisory policy"
  2704. }
  2705. }
  2706. },
  2707. "notification-url": "https://packages.drupal.org/8/downloads",
  2708. "license": [
  2709. "GPL-2.0-or-later"
  2710. ],
  2711. "authors": [
  2712. {
  2713. "name": "jhodgdon",
  2714. "homepage": "https://www.drupal.org/user/155601"
  2715. },
  2716. {
  2717. "name": "nedjo",
  2718. "homepage": "https://www.drupal.org/user/4481"
  2719. }
  2720. ],
  2721. "description": "Provides basic revert and update functionality for other modules",
  2722. "homepage": "https://www.drupal.org/project/config_update",
  2723. "support": {
  2724. "source": "https://git.drupalcode.org/project/config_update"
  2725. }
  2726. },
  2727. {
  2728. "name": "drupal/console",
  2729. "version": "1.8.0",
  2730. "source": {
  2731. "type": "git",
  2732. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2733. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  2734. },
  2735. "dist": {
  2736. "type": "zip",
  2737. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2738. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2739. "shasum": ""
  2740. },
  2741. "require": {
  2742. "alchemy/zippy": "0.4.3",
  2743. "composer/installers": "~1.0",
  2744. "doctrine/annotations": "^1.2",
  2745. "doctrine/collections": "^1.3",
  2746. "drupal/console-core": "1.8.0",
  2747. "drupal/console-extend-plugin": "~0",
  2748. "guzzlehttp/guzzle": "~6.1",
  2749. "php": "^5.5.9 || ^7.0",
  2750. "psy/psysh": "0.6.* || ~0.8",
  2751. "symfony/css-selector": "~2.8|~3.0",
  2752. "symfony/dom-crawler": "~2.8|~3.0",
  2753. "symfony/http-foundation": "~2.8|~3.0"
  2754. },
  2755. "suggest": {
  2756. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  2757. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  2758. },
  2759. "bin": [
  2760. "bin/drupal"
  2761. ],
  2762. "type": "library",
  2763. "autoload": {
  2764. "psr-4": {
  2765. "Drupal\\Console\\": "src"
  2766. }
  2767. },
  2768. "notification-url": "https://packagist.org/downloads/",
  2769. "license": [
  2770. "GPL-2.0-or-later"
  2771. ],
  2772. "authors": [
  2773. {
  2774. "name": "David Flores",
  2775. "email": "dmousex@gmail.com",
  2776. "homepage": "http://dmouse.net"
  2777. },
  2778. {
  2779. "name": "Jesus Manuel Olivas",
  2780. "email": "jesus.olivas@gmail.com",
  2781. "homepage": "http://jmolivas.com"
  2782. },
  2783. {
  2784. "name": "Eduardo Garcia",
  2785. "email": "enzo@enzolutions.com",
  2786. "homepage": "http://enzolutions.com/"
  2787. },
  2788. {
  2789. "name": "Omar Aguirre",
  2790. "email": "omersguchigu@gmail.com"
  2791. },
  2792. {
  2793. "name": "Drupal Console Contributors",
  2794. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2795. }
  2796. ],
  2797. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2798. "homepage": "http://drupalconsole.com/",
  2799. "keywords": [
  2800. "console",
  2801. "development",
  2802. "drupal",
  2803. "symfony"
  2804. ],
  2805. "time": "2018-03-21T20:50:16+00:00"
  2806. },
  2807. {
  2808. "name": "drupal/console-core",
  2809. "version": "1.8.0",
  2810. "source": {
  2811. "type": "git",
  2812. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2813. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  2814. },
  2815. "dist": {
  2816. "type": "zip",
  2817. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  2818. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  2819. "shasum": ""
  2820. },
  2821. "require": {
  2822. "dflydev/dot-access-configuration": "^1.0",
  2823. "drupal/console-en": "1.8.0",
  2824. "php": "^5.5.9 || ^7.0",
  2825. "stecman/symfony-console-completion": "~0.7",
  2826. "symfony/config": "~2.8|~3.0",
  2827. "symfony/console": "~2.8|~3.0",
  2828. "symfony/debug": "~2.8|~3.0",
  2829. "symfony/dependency-injection": "~2.8|~3.0",
  2830. "symfony/event-dispatcher": "~2.8|~3.0",
  2831. "symfony/filesystem": "~2.8|~3.0",
  2832. "symfony/finder": "~2.8|~3.0",
  2833. "symfony/process": "~2.8|~3.0",
  2834. "symfony/translation": "~2.8|~3.0",
  2835. "symfony/yaml": "~2.8|~3.0",
  2836. "twig/twig": "^1.23.1",
  2837. "webflo/drupal-finder": "^1.0",
  2838. "webmozart/path-util": "^2.3"
  2839. },
  2840. "type": "library",
  2841. "autoload": {
  2842. "files": [
  2843. "src/functions.php"
  2844. ],
  2845. "psr-4": {
  2846. "Drupal\\Console\\Core\\": "src"
  2847. }
  2848. },
  2849. "notification-url": "https://packagist.org/downloads/",
  2850. "license": [
  2851. "GPL-2.0-or-later"
  2852. ],
  2853. "authors": [
  2854. {
  2855. "name": "David Flores",
  2856. "email": "dmousex@gmail.com",
  2857. "homepage": "http://dmouse.net"
  2858. },
  2859. {
  2860. "name": "Jesus Manuel Olivas",
  2861. "email": "jesus.olivas@gmail.com",
  2862. "homepage": "http://jmolivas.com"
  2863. },
  2864. {
  2865. "name": "Drupal Console Contributors",
  2866. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2867. },
  2868. {
  2869. "name": "Eduardo Garcia",
  2870. "email": "enzo@enzolutions.com",
  2871. "homepage": "http://enzolutions.com/"
  2872. },
  2873. {
  2874. "name": "Omar Aguirre",
  2875. "email": "omersguchigu@gmail.com"
  2876. }
  2877. ],
  2878. "description": "Drupal Console Core",
  2879. "homepage": "http://drupalconsole.com/",
  2880. "keywords": [
  2881. "console",
  2882. "development",
  2883. "drupal",
  2884. "symfony"
  2885. ],
  2886. "time": "2018-03-21T19:33:23+00:00"
  2887. },
  2888. {
  2889. "name": "drupal/console-en",
  2890. "version": "1.8.0",
  2891. "source": {
  2892. "type": "git",
  2893. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2894. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  2895. },
  2896. "dist": {
  2897. "type": "zip",
  2898. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  2899. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  2900. "shasum": ""
  2901. },
  2902. "type": "drupal-console-language",
  2903. "notification-url": "https://packagist.org/downloads/",
  2904. "license": [
  2905. "GPL-2.0-or-later"
  2906. ],
  2907. "authors": [
  2908. {
  2909. "name": "David Flores",
  2910. "email": "dmousex@gmail.com",
  2911. "homepage": "http://dmouse.net"
  2912. },
  2913. {
  2914. "name": "Jesus Manuel Olivas",
  2915. "email": "jesus.olivas@gmail.com",
  2916. "homepage": "http://jmolivas.com"
  2917. },
  2918. {
  2919. "name": "Drupal Console Contributors",
  2920. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2921. },
  2922. {
  2923. "name": "Eduardo Garcia",
  2924. "email": "enzo@enzolutions.com",
  2925. "homepage": "http://enzolutions.com/"
  2926. },
  2927. {
  2928. "name": "Omar Aguirre",
  2929. "email": "omersguchigu@gmail.com"
  2930. }
  2931. ],
  2932. "description": "Drupal Console English Language",
  2933. "homepage": "http://drupalconsole.com/",
  2934. "keywords": [
  2935. "console",
  2936. "development",
  2937. "drupal",
  2938. "symfony"
  2939. ],
  2940. "time": "2018-03-21T19:16:27+00:00"
  2941. },
  2942. {
  2943. "name": "drupal/console-extend-plugin",
  2944. "version": "0.9.2",
  2945. "source": {
  2946. "type": "git",
  2947. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2948. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  2949. },
  2950. "dist": {
  2951. "type": "zip",
  2952. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  2953. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  2954. "shasum": ""
  2955. },
  2956. "require": {
  2957. "composer-plugin-api": "^1.0",
  2958. "symfony/finder": "~2.7|~3.0",
  2959. "symfony/yaml": "~2.7|~3.0"
  2960. },
  2961. "type": "composer-plugin",
  2962. "extra": {
  2963. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  2964. },
  2965. "autoload": {
  2966. "psr-4": {
  2967. "Drupal\\Console\\Composer\\Plugin\\": "src"
  2968. }
  2969. },
  2970. "notification-url": "https://packagist.org/downloads/",
  2971. "license": [
  2972. "GPL-2.0+"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "Jesus Manuel Olivas",
  2977. "email": "jesus.olivas@gmail.com"
  2978. }
  2979. ],
  2980. "description": "Drupal Console Extend Plugin",
  2981. "time": "2017-07-28T17:11:54+00:00"
  2982. },
  2983. {
  2984. "name": "drupal/context",
  2985. "version": "4.0.0-beta2",
  2986. "source": {
  2987. "type": "git",
  2988. "url": "https://git.drupalcode.org/project/context.git",
  2989. "reference": "8.x-4.0-beta2"
  2990. },
  2991. "dist": {
  2992. "type": "zip",
  2993. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  2994. "reference": "8.x-4.0-beta2",
  2995. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  2996. },
  2997. "require": {
  2998. "drupal/core": "~8.0"
  2999. },
  3000. "type": "drupal-module",
  3001. "extra": {
  3002. "branch-alias": {
  3003. "dev-4.x": "4.x-dev"
  3004. },
  3005. "drupal": {
  3006. "version": "8.x-4.0-beta2",
  3007. "datestamp": "1505378944",
  3008. "security-coverage": {
  3009. "status": "not-covered",
  3010. "message": "Beta releases are not covered by Drupal security advisories."
  3011. }
  3012. }
  3013. },
  3014. "notification-url": "https://packages.drupal.org/8/downloads",
  3015. "license": [
  3016. "MIT"
  3017. ],
  3018. "authors": [
  3019. {
  3020. "name": "Christoffer Palm",
  3021. "homepage": "http://www.oddhill.se/",
  3022. "email": "christoffer.palm@oddhill.se",
  3023. "role": "Developer"
  3024. },
  3025. {
  3026. "name": "Steven Jones",
  3027. "homepage": "https://www.drupal.org/user/99644"
  3028. },
  3029. {
  3030. "name": "alex_b",
  3031. "homepage": "https://www.drupal.org/user/53995"
  3032. },
  3033. {
  3034. "name": "boshtian",
  3035. "homepage": "https://www.drupal.org/user/1773456"
  3036. },
  3037. {
  3038. "name": "colan",
  3039. "homepage": "https://www.drupal.org/user/58704"
  3040. },
  3041. {
  3042. "name": "emanaton",
  3043. "homepage": "https://www.drupal.org/user/120853"
  3044. },
  3045. {
  3046. "name": "febbraro",
  3047. "homepage": "https://www.drupal.org/user/43670"
  3048. },
  3049. {
  3050. "name": "fizk",
  3051. "homepage": "https://www.drupal.org/user/473174"
  3052. },
  3053. {
  3054. "name": "hass",
  3055. "homepage": "https://www.drupal.org/user/85918"
  3056. },
  3057. {
  3058. "name": "hefox",
  3059. "homepage": "https://www.drupal.org/user/426416"
  3060. },
  3061. {
  3062. "name": "hyrcan",
  3063. "homepage": "https://www.drupal.org/user/26618"
  3064. },
  3065. {
  3066. "name": "jmiccolis",
  3067. "homepage": "https://www.drupal.org/user/31731"
  3068. },
  3069. {
  3070. "name": "nedjo",
  3071. "homepage": "https://www.drupal.org/user/4481"
  3072. },
  3073. {
  3074. "name": "tekante",
  3075. "homepage": "https://www.drupal.org/user/640024"
  3076. },
  3077. {
  3078. "name": "yhahn",
  3079. "homepage": "https://www.drupal.org/user/264833"
  3080. }
  3081. ],
  3082. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3083. "homepage": "https://github.com/oddhill/context",
  3084. "keywords": [
  3085. "Drupal",
  3086. "block",
  3087. "conditions",
  3088. "context",
  3089. "visibility"
  3090. ],
  3091. "support": {
  3092. "source": "https://github.com/oddhill/context",
  3093. "issues": "https://github.com/oddhill/context/issues",
  3094. "docs": "https://github.com/oddhill/context"
  3095. }
  3096. },
  3097. {
  3098. "name": "drupal/core",
  3099. "version": "8.6.15",
  3100. "source": {
  3101. "type": "git",
  3102. "url": "https://github.com/drupal/core.git",
  3103. "reference": "936456cdeac25c6bbd2f55b0d587239c6a81ba86"
  3104. },
  3105. "dist": {
  3106. "type": "zip",
  3107. "url": "https://api.github.com/repos/drupal/core/zipball/936456cdeac25c6bbd2f55b0d587239c6a81ba86",
  3108. "reference": "936456cdeac25c6bbd2f55b0d587239c6a81ba86",
  3109. "shasum": ""
  3110. },
  3111. "require": {
  3112. "asm89/stack-cors": "^1.1",
  3113. "composer/semver": "^1.0",
  3114. "doctrine/annotations": "^1.2",
  3115. "doctrine/common": "^2.5",
  3116. "easyrdf/easyrdf": "^0.9",
  3117. "egulias/email-validator": "^1.2",
  3118. "ext-date": "*",
  3119. "ext-dom": "*",
  3120. "ext-filter": "*",
  3121. "ext-gd": "*",
  3122. "ext-hash": "*",
  3123. "ext-json": "*",
  3124. "ext-pcre": "*",
  3125. "ext-pdo": "*",
  3126. "ext-session": "*",
  3127. "ext-simplexml": "*",
  3128. "ext-spl": "*",
  3129. "ext-tokenizer": "*",
  3130. "ext-xml": "*",
  3131. "guzzlehttp/guzzle": "^6.2.1",
  3132. "masterminds/html5": "^2.1",
  3133. "paragonie/random_compat": "^1.0|^2.0",
  3134. "php": "^5.5.9|>=7.0.8",
  3135. "stack/builder": "^1.0",
  3136. "symfony-cmf/routing": "^1.4",
  3137. "symfony/class-loader": "~3.4.0",
  3138. "symfony/console": "~3.4.0",
  3139. "symfony/dependency-injection": "~3.4.26",
  3140. "symfony/event-dispatcher": "~3.4.0",
  3141. "symfony/http-foundation": "~3.4.26",
  3142. "symfony/http-kernel": "~3.4.14",
  3143. "symfony/polyfill-iconv": "^1.0",
  3144. "symfony/process": "~3.4.0",
  3145. "symfony/psr-http-message-bridge": "^1.0",
  3146. "symfony/routing": "~3.4.0",
  3147. "symfony/serializer": "~3.4.0",
  3148. "symfony/translation": "~3.4.0",
  3149. "symfony/validator": "~3.4.0",
  3150. "symfony/yaml": "~3.4.5",
  3151. "twig/twig": "^1.38.2",
  3152. "typo3/phar-stream-wrapper": "^2.0.1",
  3153. "zendframework/zend-diactoros": "^1.1",
  3154. "zendframework/zend-feed": "^2.4"
  3155. },
  3156. "conflict": {
  3157. "drush/drush": "<8.1.10"
  3158. },
  3159. "replace": {
  3160. "drupal/action": "self.version",
  3161. "drupal/aggregator": "self.version",
  3162. "drupal/automated_cron": "self.version",
  3163. "drupal/ban": "self.version",
  3164. "drupal/bartik": "self.version",
  3165. "drupal/basic_auth": "self.version",
  3166. "drupal/big_pipe": "self.version",
  3167. "drupal/block": "self.version",
  3168. "drupal/block_content": "self.version",
  3169. "drupal/block_place": "self.version",
  3170. "drupal/book": "self.version",
  3171. "drupal/breakpoint": "self.version",
  3172. "drupal/ckeditor": "self.version",
  3173. "drupal/classy": "self.version",
  3174. "drupal/color": "self.version",
  3175. "drupal/comment": "self.version",
  3176. "drupal/config": "self.version",
  3177. "drupal/config_translation": "self.version",
  3178. "drupal/contact": "self.version",
  3179. "drupal/content_moderation": "self.version",
  3180. "drupal/content_translation": "self.version",
  3181. "drupal/contextual": "self.version",
  3182. "drupal/core-annotation": "self.version",
  3183. "drupal/core-assertion": "self.version",
  3184. "drupal/core-bridge": "self.version",
  3185. "drupal/core-class-finder": "self.version",
  3186. "drupal/core-datetime": "self.version",
  3187. "drupal/core-dependency-injection": "self.version",
  3188. "drupal/core-diff": "self.version",
  3189. "drupal/core-discovery": "self.version",
  3190. "drupal/core-event-dispatcher": "self.version",
  3191. "drupal/core-file-cache": "self.version",
  3192. "drupal/core-filesystem": "self.version",
  3193. "drupal/core-gettext": "self.version",
  3194. "drupal/core-graph": "self.version",
  3195. "drupal/core-http-foundation": "self.version",
  3196. "drupal/core-php-storage": "self.version",
  3197. "drupal/core-plugin": "self.version",
  3198. "drupal/core-proxy-builder": "self.version",
  3199. "drupal/core-render": "self.version",
  3200. "drupal/core-serialization": "self.version",
  3201. "drupal/core-transliteration": "self.version",
  3202. "drupal/core-utility": "self.version",
  3203. "drupal/core-uuid": "self.version",
  3204. "drupal/datetime": "self.version",
  3205. "drupal/datetime_range": "self.version",
  3206. "drupal/dblog": "self.version",
  3207. "drupal/dynamic_page_cache": "self.version",
  3208. "drupal/editor": "self.version",
  3209. "drupal/entity_reference": "self.version",
  3210. "drupal/field": "self.version",
  3211. "drupal/field_layout": "self.version",
  3212. "drupal/field_ui": "self.version",
  3213. "drupal/file": "self.version",
  3214. "drupal/filter": "self.version",
  3215. "drupal/forum": "self.version",
  3216. "drupal/hal": "self.version",
  3217. "drupal/help": "self.version",
  3218. "drupal/history": "self.version",
  3219. "drupal/image": "self.version",
  3220. "drupal/inline_form_errors": "self.version",
  3221. "drupal/language": "self.version",
  3222. "drupal/layout_builder": "self.version",
  3223. "drupal/layout_discovery": "self.version",
  3224. "drupal/link": "self.version",
  3225. "drupal/locale": "self.version",
  3226. "drupal/media": "self.version",
  3227. "drupal/media_library": "self.version",
  3228. "drupal/menu_link_content": "self.version",
  3229. "drupal/menu_ui": "self.version",
  3230. "drupal/migrate": "self.version",
  3231. "drupal/migrate_drupal": "self.version",
  3232. "drupal/migrate_drupal_multilingual": "self.version",
  3233. "drupal/migrate_drupal_ui": "self.version",
  3234. "drupal/minimal": "self.version",
  3235. "drupal/node": "self.version",
  3236. "drupal/options": "self.version",
  3237. "drupal/page_cache": "self.version",
  3238. "drupal/path": "self.version",
  3239. "drupal/quickedit": "self.version",
  3240. "drupal/rdf": "self.version",
  3241. "drupal/responsive_image": "self.version",
  3242. "drupal/rest": "self.version",
  3243. "drupal/search": "self.version",
  3244. "drupal/serialization": "self.version",
  3245. "drupal/settings_tray": "self.version",
  3246. "drupal/seven": "self.version",
  3247. "drupal/shortcut": "self.version",
  3248. "drupal/simpletest": "self.version",
  3249. "drupal/standard": "self.version",
  3250. "drupal/stark": "self.version",
  3251. "drupal/statistics": "self.version",
  3252. "drupal/syslog": "self.version",
  3253. "drupal/system": "self.version",
  3254. "drupal/taxonomy": "self.version",
  3255. "drupal/telephone": "self.version",
  3256. "drupal/text": "self.version",
  3257. "drupal/toolbar": "self.version",
  3258. "drupal/tour": "self.version",
  3259. "drupal/tracker": "self.version",
  3260. "drupal/update": "self.version",
  3261. "drupal/user": "self.version",
  3262. "drupal/views": "self.version",
  3263. "drupal/views_ui": "self.version",
  3264. "drupal/workflows": "self.version",
  3265. "drupal/workspaces": "self.version"
  3266. },
  3267. "require-dev": {
  3268. "behat/mink": "1.7.x-dev",
  3269. "behat/mink-goutte-driver": "^1.2",
  3270. "behat/mink-selenium2-driver": "1.3.x-dev",
  3271. "drupal/coder": "^8.2.12",
  3272. "jcalderonzumba/gastonjs": "^1.0.2",
  3273. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3274. "mikey179/vfsstream": "^1.2",
  3275. "phpspec/prophecy": "^1.7",
  3276. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3277. "symfony/css-selector": "^3.4.0",
  3278. "symfony/debug": "^3.4.0",
  3279. "symfony/phpunit-bridge": "^3.4.3"
  3280. },
  3281. "type": "drupal-core",
  3282. "extra": {
  3283. "merge-plugin": {
  3284. "require": [
  3285. "core/lib/Drupal/Component/Annotation/composer.json",
  3286. "core/lib/Drupal/Component/Assertion/composer.json",
  3287. "core/lib/Drupal/Component/Bridge/composer.json",
  3288. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3289. "core/lib/Drupal/Component/Datetime/composer.json",
  3290. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3291. "core/lib/Drupal/Component/Diff/composer.json",
  3292. "core/lib/Drupal/Component/Discovery/composer.json",
  3293. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3294. "core/lib/Drupal/Component/FileCache/composer.json",
  3295. "core/lib/Drupal/Component/FileSystem/composer.json",
  3296. "core/lib/Drupal/Component/Gettext/composer.json",
  3297. "core/lib/Drupal/Component/Graph/composer.json",
  3298. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3299. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3300. "core/lib/Drupal/Component/Plugin/composer.json",
  3301. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3302. "core/lib/Drupal/Component/Render/composer.json",
  3303. "core/lib/Drupal/Component/Serialization/composer.json",
  3304. "core/lib/Drupal/Component/Transliteration/composer.json",
  3305. "core/lib/Drupal/Component/Utility/composer.json",
  3306. "core/lib/Drupal/Component/Uuid/composer.json"
  3307. ],
  3308. "recurse": false,
  3309. "replace": false,
  3310. "merge-extra": false
  3311. }
  3312. },
  3313. "autoload": {
  3314. "psr-4": {
  3315. "Drupal\\Core\\": "lib/Drupal/Core",
  3316. "Drupal\\Component\\": "lib/Drupal/Component",
  3317. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3318. },
  3319. "classmap": [
  3320. "lib/Drupal.php",
  3321. "lib/Drupal/Component/Utility/Timer.php",
  3322. "lib/Drupal/Component/Utility/Unicode.php",
  3323. "lib/Drupal/Core/Database/Database.php",
  3324. "lib/Drupal/Core/DrupalKernel.php",
  3325. "lib/Drupal/Core/DrupalKernelInterface.php",
  3326. "lib/Drupal/Core/Site/Settings.php"
  3327. ]
  3328. },
  3329. "notification-url": "https://packagist.org/downloads/",
  3330. "license": [
  3331. "GPL-2.0-or-later"
  3332. ],
  3333. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3334. "time": "2019-04-17T20:00:11+00:00"
  3335. },
  3336. {
  3337. "name": "drupal/ctools",
  3338. "version": "3.2.0",
  3339. "source": {
  3340. "type": "git",
  3341. "url": "https://git.drupalcode.org/project/ctools.git",
  3342. "reference": "8.x-3.2"
  3343. },
  3344. "dist": {
  3345. "type": "zip",
  3346. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip",
  3347. "reference": "8.x-3.2",
  3348. "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091"
  3349. },
  3350. "require": {
  3351. "drupal/core": "^8.5"
  3352. },
  3353. "type": "drupal-module",
  3354. "extra": {
  3355. "branch-alias": {
  3356. "dev-3.x": "3.x-dev"
  3357. },
  3358. "drupal": {
  3359. "version": "8.x-3.2",
  3360. "datestamp": "1550728386",
  3361. "security-coverage": {
  3362. "status": "covered",
  3363. "message": "Covered by Drupal's security advisory policy"
  3364. }
  3365. }
  3366. },
  3367. "notification-url": "https://packages.drupal.org/8/downloads",
  3368. "license": [
  3369. "GPL-2.0+"
  3370. ],
  3371. "authors": [
  3372. {
  3373. "name": "Kris Vanderwater (EclipseGc)",
  3374. "homepage": "https://www.drupal.org/u/eclipsegc",
  3375. "role": "Maintainer"
  3376. },
  3377. {
  3378. "name": "Jakob Perry (japerry)",
  3379. "homepage": "https://www.drupal.org/u/japerry",
  3380. "role": "Maintainer"
  3381. },
  3382. {
  3383. "name": "Tim Plunkett (tim.plunkett)",
  3384. "homepage": "https://www.drupal.org/u/timplunkett",
  3385. "role": "Maintainer"
  3386. },
  3387. {
  3388. "name": "James Gilliland (neclimdul)",
  3389. "homepage": "https://www.drupal.org/u/neclimdul",
  3390. "role": "Maintainer"
  3391. },
  3392. {
  3393. "name": "Daniel Wehner (dawehner)",
  3394. "homepage": "https://www.drupal.org/u/dawehner",
  3395. "role": "Maintainer"
  3396. },
  3397. {
  3398. "name": "joelpittet",
  3399. "homepage": "https://www.drupal.org/user/160302"
  3400. },
  3401. {
  3402. "name": "merlinofchaos",
  3403. "homepage": "https://www.drupal.org/user/26979"
  3404. },
  3405. {
  3406. "name": "neclimdul",
  3407. "homepage": "https://www.drupal.org/user/48673"
  3408. },
  3409. {
  3410. "name": "sdboyer",
  3411. "homepage": "https://www.drupal.org/user/146719"
  3412. },
  3413. {
  3414. "name": "sun",
  3415. "homepage": "https://www.drupal.org/user/54136"
  3416. },
  3417. {
  3418. "name": "tim.plunkett",
  3419. "homepage": "https://www.drupal.org/user/241634"
  3420. }
  3421. ],
  3422. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3423. "homepage": "https://www.drupal.org/project/ctools",
  3424. "support": {
  3425. "source": "http://cgit.drupalcode.org/ctools",
  3426. "issues": "https://www.drupal.org/project/issues/ctools"
  3427. }
  3428. },
  3429. {
  3430. "name": "drupal/date_range_formatter",
  3431. "version": "3.1.0",
  3432. "source": {
  3433. "type": "git",
  3434. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3435. "reference": "8.x-3.1"
  3436. },
  3437. "dist": {
  3438. "type": "zip",
  3439. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3440. "reference": "8.x-3.1",
  3441. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3442. },
  3443. "require": {
  3444. "drupal/core": "*"
  3445. },
  3446. "type": "drupal-module",
  3447. "extra": {
  3448. "branch-alias": {
  3449. "dev-3.x": "3.x-dev"
  3450. },
  3451. "drupal": {
  3452. "version": "8.x-3.1",
  3453. "datestamp": "1502454544",
  3454. "security-coverage": {
  3455. "status": "covered",
  3456. "message": "Covered by Drupal's security advisory policy"
  3457. }
  3458. }
  3459. },
  3460. "notification-url": "https://packages.drupal.org/8/downloads",
  3461. "license": [
  3462. "GPL-2.0-or-later"
  3463. ],
  3464. "authors": [
  3465. {
  3466. "name": "maximpodorov",
  3467. "homepage": "https://www.drupal.org/user/515310"
  3468. },
  3469. {
  3470. "name": "sudishth",
  3471. "homepage": "https://www.drupal.org/user/1440562"
  3472. }
  3473. ],
  3474. "description": "Formats date ranges.",
  3475. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3476. "support": {
  3477. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3478. }
  3479. },
  3480. {
  3481. "name": "drupal/devel",
  3482. "version": "2.0.0",
  3483. "source": {
  3484. "type": "git",
  3485. "url": "https://git.drupalcode.org/project/devel.git",
  3486. "reference": "8.x-2.0"
  3487. },
  3488. "dist": {
  3489. "type": "zip",
  3490. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.0.zip",
  3491. "reference": "8.x-2.0",
  3492. "shasum": "cf5fb816f767f3cac4f2e170ab39e982d5e0698b"
  3493. },
  3494. "require": {
  3495. "drupal/core": "~8.0",
  3496. "symfony/var-dumper": "~2.7|^3"
  3497. },
  3498. "type": "drupal-module",
  3499. "extra": {
  3500. "branch-alias": {
  3501. "dev-2.x": "2.x-dev"
  3502. },
  3503. "drupal": {
  3504. "version": "8.x-2.0",
  3505. "datestamp": "1548799380",
  3506. "security-coverage": {
  3507. "status": "covered",
  3508. "message": "Covered by Drupal's security advisory policy"
  3509. }
  3510. },
  3511. "drush": {
  3512. "services": {
  3513. "drush.services.yml": "^9"
  3514. }
  3515. }
  3516. },
  3517. "notification-url": "https://packages.drupal.org/8/downloads",
  3518. "license": [
  3519. "GPL-2.0+"
  3520. ],
  3521. "authors": [
  3522. {
  3523. "name": "Moshe Weitzman",
  3524. "homepage": "https://github.com/weitzman",
  3525. "email": "weitzman@tejasa.com",
  3526. "role": "Maintainer"
  3527. },
  3528. {
  3529. "name": "Hans Salvisberg",
  3530. "homepage": "https://www.drupal.org/u/salvis",
  3531. "email": "drupal@salvisberg.com",
  3532. "role": "Maintainer"
  3533. },
  3534. {
  3535. "name": "Luca Lusso",
  3536. "homepage": "https://www.drupal.org/u/lussoluca",
  3537. "role": "Maintainer"
  3538. },
  3539. {
  3540. "name": "Marco (willzyx)",
  3541. "homepage": "https://www.drupal.org/u/willzyx",
  3542. "role": "Maintainer"
  3543. },
  3544. {
  3545. "name": "See contributors",
  3546. "homepage": "https://www.drupal.org/node/3236/committers"
  3547. },
  3548. {
  3549. "name": "salvis",
  3550. "homepage": "https://www.drupal.org/user/82964"
  3551. },
  3552. {
  3553. "name": "willzyx",
  3554. "homepage": "https://www.drupal.org/user/1043862"
  3555. }
  3556. ],
  3557. "description": "Various blocks, pages, and functions for developers.",
  3558. "homepage": "http://drupal.org/project/devel",
  3559. "support": {
  3560. "source": "http://cgit.drupalcode.org/devel",
  3561. "issues": "http://drupal.org/project/devel",
  3562. "irc": "irc://irc.freenode.org/drupal-contribute"
  3563. }
  3564. },
  3565. {
  3566. "name": "drupal/domain",
  3567. "version": "1.0.0-alpha15",
  3568. "source": {
  3569. "type": "git",
  3570. "url": "https://git.drupalcode.org/project/domain.git",
  3571. "reference": "8.x-1.0-alpha15"
  3572. },
  3573. "dist": {
  3574. "type": "zip",
  3575. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha15.zip",
  3576. "reference": "8.x-1.0-alpha15",
  3577. "shasum": "e981d5224bd7883776c6729135b876141f0437d3"
  3578. },
  3579. "require": {
  3580. "drupal/core": "^8.5"
  3581. },
  3582. "require-dev": {
  3583. "drupal/domain_access": "*"
  3584. },
  3585. "type": "drupal-module",
  3586. "extra": {
  3587. "branch-alias": {
  3588. "dev-1.x": "1.x-dev"
  3589. },
  3590. "drupal": {
  3591. "version": "8.x-1.0-alpha15",
  3592. "datestamp": "1550763184",
  3593. "security-coverage": {
  3594. "status": "not-covered",
  3595. "message": "Alpha releases are not covered by Drupal security advisories."
  3596. }
  3597. }
  3598. },
  3599. "notification-url": "https://packages.drupal.org/8/downloads",
  3600. "license": [
  3601. "GPL-2.0-or-later"
  3602. ],
  3603. "authors": [
  3604. {
  3605. "name": "agentrickard",
  3606. "homepage": "https://www.drupal.org/user/20975"
  3607. },
  3608. {
  3609. "name": "nonsie",
  3610. "homepage": "https://www.drupal.org/user/29899"
  3611. }
  3612. ],
  3613. "description": "Creates domain records within a Drupal installation.",
  3614. "homepage": "https://www.drupal.org/project/domain",
  3615. "support": {
  3616. "source": "https://git.drupalcode.org/project/domain"
  3617. }
  3618. },
  3619. {
  3620. "name": "drupal/domain_access",
  3621. "version": "1.0.0-alpha15",
  3622. "require": {
  3623. "drupal/core": "*",
  3624. "drupal/domain": "self.version"
  3625. },
  3626. "type": "metapackage",
  3627. "extra": {
  3628. "branch-alias": {
  3629. "dev-1.x": "1.x-dev"
  3630. },
  3631. "drupal": {
  3632. "version": "8.x-1.0-alpha15",
  3633. "datestamp": "1550763184",
  3634. "security-coverage": {
  3635. "status": "not-covered",
  3636. "message": "Alpha releases are not covered by Drupal security advisories."
  3637. }
  3638. }
  3639. },
  3640. "notification-url": "https://packages.drupal.org/8/downloads",
  3641. "license": [
  3642. "GPL-2.0-or-later"
  3643. ],
  3644. "authors": [
  3645. {
  3646. "name": "agentrickard",
  3647. "homepage": "https://www.drupal.org/user/20975"
  3648. },
  3649. {
  3650. "name": "nonsie",
  3651. "homepage": "https://www.drupal.org/user/29899"
  3652. }
  3653. ],
  3654. "description": "Domain-based access control for content.",
  3655. "homepage": "https://www.drupal.org/project/domain",
  3656. "support": {
  3657. "source": "https://git.drupalcode.org/project/domain"
  3658. }
  3659. },
  3660. {
  3661. "name": "drupal/domain_config",
  3662. "version": "1.0.0-alpha15",
  3663. "require": {
  3664. "drupal/core": "~8.0",
  3665. "drupal/domain": "self.version"
  3666. },
  3667. "type": "metapackage",
  3668. "extra": {
  3669. "branch-alias": {
  3670. "dev-1.x": "1.x-dev"
  3671. },
  3672. "drupal": {
  3673. "version": "8.x-1.0-alpha15",
  3674. "datestamp": "1550763184",
  3675. "security-coverage": {
  3676. "status": "not-covered",
  3677. "message": "Alpha releases are not covered by Drupal security advisories."
  3678. }
  3679. }
  3680. },
  3681. "notification-url": "https://packages.drupal.org/8/downloads",
  3682. "license": [
  3683. "GPL-2.0-or-later"
  3684. ],
  3685. "authors": [
  3686. {
  3687. "name": "agentrickard",
  3688. "homepage": "https://www.drupal.org/user/20975"
  3689. },
  3690. {
  3691. "name": "nonsie",
  3692. "homepage": "https://www.drupal.org/user/29899"
  3693. }
  3694. ],
  3695. "description": "Allows domain specific configuration.",
  3696. "homepage": "https://www.drupal.org/project/domain",
  3697. "support": {
  3698. "source": "https://git.drupalcode.org/project/domain"
  3699. }
  3700. },
  3701. {
  3702. "name": "drupal/domain_menu_access",
  3703. "version": "dev-1.x",
  3704. "source": {
  3705. "type": "git",
  3706. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3707. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  3708. },
  3709. "require": {
  3710. "drupal/core": "~8.0",
  3711. "drupal/domain": "^1",
  3712. "drupal/domain_access": "^1"
  3713. },
  3714. "type": "drupal-module",
  3715. "extra": {
  3716. "branch-alias": {
  3717. "dev-1.x": "1.x-dev"
  3718. },
  3719. "drupal": {
  3720. "version": "8.x-1.0-alpha2+3-dev",
  3721. "datestamp": "1551553085",
  3722. "security-coverage": {
  3723. "status": "not-covered",
  3724. "message": "Dev releases are not covered by Drupal security advisories."
  3725. }
  3726. }
  3727. },
  3728. "notification-url": "https://packages.drupal.org/8/downloads",
  3729. "license": [
  3730. "GPL-2.0+"
  3731. ],
  3732. "authors": [
  3733. {
  3734. "name": "Sebastien @Actualys",
  3735. "homepage": "https://www.drupal.org/user/380104"
  3736. },
  3737. {
  3738. "name": "maciej.zgadzaj",
  3739. "homepage": "https://www.drupal.org/user/271491"
  3740. },
  3741. {
  3742. "name": "pifagor",
  3743. "homepage": "https://www.drupal.org/user/2375692"
  3744. }
  3745. ],
  3746. "description": "Domain-based access control for menu link.",
  3747. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3748. "support": {
  3749. "source": "https://git.drupalcode.org/project/domain_menu_access"
  3750. },
  3751. "time": "2019-04-11T06:07:16+00:00"
  3752. },
  3753. {
  3754. "name": "drupal/domain_site_settings",
  3755. "version": "1.3.0",
  3756. "source": {
  3757. "type": "git",
  3758. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3759. "reference": "8.x-1.3"
  3760. },
  3761. "dist": {
  3762. "type": "zip",
  3763. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3764. "reference": "8.x-1.3",
  3765. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3766. },
  3767. "require": {
  3768. "drupal/core": "~8.0",
  3769. "drupal/domain": "*",
  3770. "drupal/domain_config": "*"
  3771. },
  3772. "type": "drupal-module",
  3773. "extra": {
  3774. "branch-alias": {
  3775. "dev-1.x": "1.x-dev"
  3776. },
  3777. "drupal": {
  3778. "version": "8.x-1.3",
  3779. "datestamp": "1537684980",
  3780. "security-coverage": {
  3781. "status": "covered",
  3782. "message": "Covered by Drupal's security advisory policy"
  3783. }
  3784. },
  3785. "patches_applied": {
  3786. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  3787. }
  3788. },
  3789. "notification-url": "https://packages.drupal.org/8/downloads",
  3790. "license": [
  3791. "GPL-2.0+"
  3792. ],
  3793. "authors": [
  3794. {
  3795. "name": "aloknarwaria",
  3796. "homepage": "https://www.drupal.org/user/906640"
  3797. }
  3798. ],
  3799. "description": "Basic Site Setting for Domains.",
  3800. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3801. "keywords": [
  3802. "Drupal"
  3803. ],
  3804. "support": {
  3805. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3806. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3807. }
  3808. },
  3809. {
  3810. "name": "drupal/email_registration",
  3811. "version": "1.0.0-rc6",
  3812. "source": {
  3813. "type": "git",
  3814. "url": "https://git.drupalcode.org/project/email_registration.git",
  3815. "reference": "8.x-1.0-rc6"
  3816. },
  3817. "dist": {
  3818. "type": "zip",
  3819. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc6.zip",
  3820. "reference": "8.x-1.0-rc6",
  3821. "shasum": "b004bc24b79faaa9e8b2fe59a04eaab02f44c363"
  3822. },
  3823. "require": {
  3824. "drupal/core": "*"
  3825. },
  3826. "type": "drupal-module",
  3827. "extra": {
  3828. "branch-alias": {
  3829. "dev-1.x": "1.x-dev"
  3830. },
  3831. "drupal": {
  3832. "version": "8.x-1.0-rc6",
  3833. "datestamp": "1545350880",
  3834. "security-coverage": {
  3835. "status": "not-covered",
  3836. "message": "RC releases are not covered by Drupal security advisories."
  3837. }
  3838. }
  3839. },
  3840. "notification-url": "https://packages.drupal.org/8/downloads",
  3841. "license": [
  3842. "GPL-2.0+"
  3843. ],
  3844. "authors": [
  3845. {
  3846. "name": "Greg Knaddison (greggles)",
  3847. "homepage": "https://www.drupal.org/u/greggles",
  3848. "role": "Maintainer"
  3849. },
  3850. {
  3851. "name": "Andrey Postnikov (andypost)",
  3852. "homepage": "https://www.drupal.org/u/andypost",
  3853. "role": "Maintainer"
  3854. },
  3855. {
  3856. "name": "Chris Herberte",
  3857. "homepage": "https://www.drupal.org/u/chris-herberte",
  3858. "role": "Maintainer"
  3859. },
  3860. {
  3861. "name": "Moshe Weitzman (moshe weitzman)",
  3862. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3863. "role": "Maintainer"
  3864. }
  3865. ],
  3866. "description": "Allows users to register with an email address as their username.",
  3867. "homepage": "https://www.drupal.org/project/email_registration",
  3868. "support": {
  3869. "source": "http://cgit.drupalcode.org/email_registration",
  3870. "issues": "http://drupal.org/project/issues/email_registration"
  3871. }
  3872. },
  3873. {
  3874. "name": "drupal/entity",
  3875. "version": "1.0.0-rc1",
  3876. "source": {
  3877. "type": "git",
  3878. "url": "https://git.drupalcode.org/project/entity.git",
  3879. "reference": "8.x-1.0-rc1"
  3880. },
  3881. "dist": {
  3882. "type": "zip",
  3883. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc1.zip",
  3884. "reference": "8.x-1.0-rc1",
  3885. "shasum": "f2dcd7afd0d36b6f261b10a204057a5c801ad20b"
  3886. },
  3887. "require": {
  3888. "drupal/core": "^8.6"
  3889. },
  3890. "type": "drupal-module",
  3891. "extra": {
  3892. "branch-alias": {
  3893. "dev-1.x": "1.x-dev"
  3894. },
  3895. "drupal": {
  3896. "version": "8.x-1.0-rc1",
  3897. "datestamp": "1553254684",
  3898. "security-coverage": {
  3899. "status": "not-covered",
  3900. "message": "RC releases are not covered by Drupal security advisories."
  3901. }
  3902. }
  3903. },
  3904. "notification-url": "https://packages.drupal.org/8/downloads",
  3905. "license": [
  3906. "GPL-2.0+"
  3907. ],
  3908. "authors": [
  3909. {
  3910. "name": "Berdir",
  3911. "homepage": "https://www.drupal.org/user/214652"
  3912. },
  3913. {
  3914. "name": "bojanz",
  3915. "homepage": "https://www.drupal.org/user/86106"
  3916. },
  3917. {
  3918. "name": "dawehner",
  3919. "homepage": "https://www.drupal.org/user/99340"
  3920. },
  3921. {
  3922. "name": "dixon_",
  3923. "homepage": "https://www.drupal.org/user/239911"
  3924. },
  3925. {
  3926. "name": "fago",
  3927. "homepage": "https://www.drupal.org/user/16747"
  3928. }
  3929. ],
  3930. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3931. "homepage": "http://drupal.org/project/entity",
  3932. "support": {
  3933. "source": "https://git.drupalcode.org/project/entity"
  3934. }
  3935. },
  3936. {
  3937. "name": "drupal/features",
  3938. "version": "3.8.0",
  3939. "source": {
  3940. "type": "git",
  3941. "url": "https://git.drupalcode.org/project/features.git",
  3942. "reference": "8.x-3.8"
  3943. },
  3944. "dist": {
  3945. "type": "zip",
  3946. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
  3947. "reference": "8.x-3.8",
  3948. "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
  3949. },
  3950. "require": {
  3951. "drupal/config_update": "^1.4",
  3952. "drupal/core": "*"
  3953. },
  3954. "type": "drupal-module",
  3955. "extra": {
  3956. "branch-alias": {
  3957. "dev-3.x": "3.x-dev"
  3958. },
  3959. "drupal": {
  3960. "version": "8.x-3.8",
  3961. "datestamp": "1536512284",
  3962. "security-coverage": {
  3963. "status": "covered",
  3964. "message": "Covered by Drupal's security advisory policy"
  3965. }
  3966. },
  3967. "drush": {
  3968. "services": {
  3969. "drush.services.yml": "^9"
  3970. }
  3971. }
  3972. },
  3973. "notification-url": "https://packages.drupal.org/8/downloads",
  3974. "license": [
  3975. "GPL-2.0+"
  3976. ],
  3977. "authors": [
  3978. {
  3979. "name": "dawehner",
  3980. "homepage": "https://www.drupal.org/user/99340"
  3981. },
  3982. {
  3983. "name": "e2thex",
  3984. "homepage": "https://www.drupal.org/user/189123"
  3985. },
  3986. {
  3987. "name": "febbraro",
  3988. "homepage": "https://www.drupal.org/user/43670"
  3989. },
  3990. {
  3991. "name": "jmiccolis",
  3992. "homepage": "https://www.drupal.org/user/31731"
  3993. },
  3994. {
  3995. "name": "joseph.olstad",
  3996. "homepage": "https://www.drupal.org/user/1321830"
  3997. },
  3998. {
  3999. "name": "mpotter",
  4000. "homepage": "https://www.drupal.org/user/616192"
  4001. },
  4002. {
  4003. "name": "nedjo",
  4004. "homepage": "https://www.drupal.org/user/4481"
  4005. },
  4006. {
  4007. "name": "tim.plunkett",
  4008. "homepage": "https://www.drupal.org/user/241634"
  4009. }
  4010. ],
  4011. "description": "Enables administrators to package configuration into modules",
  4012. "homepage": "https://www.drupal.org/project/features",
  4013. "support": {
  4014. "source": "https://git.drupalcode.org/project/features"
  4015. }
  4016. },
  4017. {
  4018. "name": "drupal/field_group",
  4019. "version": "3.0.0-beta1",
  4020. "source": {
  4021. "type": "git",
  4022. "url": "https://git.drupalcode.org/project/field_group.git",
  4023. "reference": "8.x-3.0-beta1"
  4024. },
  4025. "dist": {
  4026. "type": "zip",
  4027. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0-beta1.zip",
  4028. "reference": "8.x-3.0-beta1",
  4029. "shasum": "a5dfb66385be7a1b3db232e49779d5bc530a048e"
  4030. },
  4031. "require": {
  4032. "drupal/core": "*"
  4033. },
  4034. "type": "drupal-module",
  4035. "extra": {
  4036. "branch-alias": {
  4037. "dev-3.x": "3.x-dev"
  4038. },
  4039. "drupal": {
  4040. "version": "8.x-3.0-beta1",
  4041. "datestamp": "1510352338",
  4042. "security-coverage": {
  4043. "status": "not-covered",
  4044. "message": "Beta releases are not covered by Drupal security advisories."
  4045. }
  4046. }
  4047. },
  4048. "notification-url": "https://packages.drupal.org/8/downloads",
  4049. "license": [
  4050. "GPL-2.0+"
  4051. ],
  4052. "authors": [
  4053. {
  4054. "name": "Hydra",
  4055. "homepage": "https://www.drupal.org/user/647364"
  4056. },
  4057. {
  4058. "name": "Stalski",
  4059. "homepage": "https://www.drupal.org/user/322618"
  4060. },
  4061. {
  4062. "name": "jyve",
  4063. "homepage": "https://www.drupal.org/user/591438"
  4064. },
  4065. {
  4066. "name": "swentel",
  4067. "homepage": "https://www.drupal.org/user/107403"
  4068. },
  4069. {
  4070. "name": "zuuperman",
  4071. "homepage": "https://www.drupal.org/user/361625"
  4072. }
  4073. ],
  4074. "description": "Provides the field_group module.",
  4075. "homepage": "https://www.drupal.org/project/field_group",
  4076. "support": {
  4077. "source": "https://git.drupalcode.org/project/field_group"
  4078. }
  4079. },
  4080. {
  4081. "name": "drupal/filefield_sources",
  4082. "version": "dev-1.x",
  4083. "source": {
  4084. "type": "git",
  4085. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4086. "reference": "0de87103ee52f3e4965106a6587b4b5e43d6dab5"
  4087. },
  4088. "require": {
  4089. "drupal/core": "*"
  4090. },
  4091. "type": "drupal-module",
  4092. "extra": {
  4093. "branch-alias": {
  4094. "dev-1.x": "1.x-dev"
  4095. },
  4096. "drupal": {
  4097. "version": "8.x-1.0-alpha1+1-dev",
  4098. "datestamp": "1553883485",
  4099. "security-coverage": {
  4100. "status": "not-covered",
  4101. "message": "Dev releases are not covered by Drupal security advisories."
  4102. }
  4103. }
  4104. },
  4105. "notification-url": "https://packages.drupal.org/8/downloads",
  4106. "license": [
  4107. "GPL-2.0-or-later"
  4108. ],
  4109. "authors": [
  4110. {
  4111. "name": "Nate Lampton (quicksketch)",
  4112. "homepage": "https://www.drupal.org/u/quicksketch",
  4113. "role": "Maintainer"
  4114. },
  4115. {
  4116. "name": "Andrey Khromyshev (profak)",
  4117. "homepage": "https://www.drupal.org/u/profak",
  4118. "role": "Maintainer"
  4119. },
  4120. {
  4121. "name": "David Valdez (gnuget)",
  4122. "homepage": "https://www.drupal.org/u/gnuget",
  4123. "role": "Maintainer"
  4124. }
  4125. ],
  4126. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4127. "homepage": "https://www.drupal.org/project/filefield_sources",
  4128. "support": {
  4129. "source": "https://git.drupalcode.org/project/filefield_sources",
  4130. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4131. "irc": "irc://irc.freenode.org/drupal-contribute"
  4132. },
  4133. "time": "2019-04-26T18:53:07+00:00"
  4134. },
  4135. {
  4136. "name": "drupal/filter_perms",
  4137. "version": "dev-1.x",
  4138. "source": {
  4139. "type": "git",
  4140. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4141. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4142. },
  4143. "require": {
  4144. "drupal/core": "*"
  4145. },
  4146. "type": "drupal-module",
  4147. "extra": {
  4148. "branch-alias": {
  4149. "dev-1.x": "1.x-dev"
  4150. },
  4151. "drupal": {
  4152. "version": "8.x-1.x-dev",
  4153. "datestamp": "1469645939",
  4154. "security-coverage": {
  4155. "status": "not-covered",
  4156. "message": "Dev releases are not covered by Drupal security advisories."
  4157. }
  4158. }
  4159. },
  4160. "notification-url": "https://packages.drupal.org/8/downloads",
  4161. "license": [
  4162. "GPL-2.0-or-later"
  4163. ],
  4164. "authors": [
  4165. {
  4166. "name": "cYu",
  4167. "homepage": "https://www.drupal.org/user/202205"
  4168. },
  4169. {
  4170. "name": "deekayen",
  4171. "homepage": "https://www.drupal.org/user/972"
  4172. },
  4173. {
  4174. "name": "willzyx",
  4175. "homepage": "https://www.drupal.org/user/1043862"
  4176. }
  4177. ],
  4178. "description": "Provides role and module filters to simplify the user permissions page.",
  4179. "homepage": "https://www.drupal.org/project/filter_perms",
  4180. "support": {
  4181. "source": "https://git.drupalcode.org/project/filter_perms"
  4182. },
  4183. "time": "2016-07-27T19:01:11+00:00"
  4184. },
  4185. {
  4186. "name": "drupal/honeypot",
  4187. "version": "1.29.0",
  4188. "source": {
  4189. "type": "git",
  4190. "url": "https://git.drupalcode.org/project/honeypot.git",
  4191. "reference": "8.x-1.29"
  4192. },
  4193. "dist": {
  4194. "type": "zip",
  4195. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4196. "reference": "8.x-1.29",
  4197. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4198. },
  4199. "require": {
  4200. "drupal/core": "~8.0"
  4201. },
  4202. "type": "drupal-module",
  4203. "extra": {
  4204. "branch-alias": {
  4205. "dev-1.x": "1.x-dev"
  4206. },
  4207. "drupal": {
  4208. "version": "8.x-1.29",
  4209. "datestamp": "1536179280",
  4210. "security-coverage": {
  4211. "status": "covered",
  4212. "message": "Covered by Drupal's security advisory policy"
  4213. }
  4214. }
  4215. },
  4216. "notification-url": "https://packages.drupal.org/8/downloads",
  4217. "license": [
  4218. "GPL-2.0+"
  4219. ],
  4220. "authors": [
  4221. {
  4222. "name": "Jeff Geerling",
  4223. "homepage": "https://www.drupal.org/user/213194",
  4224. "email": "geerlingguy@mac.com"
  4225. },
  4226. {
  4227. "name": "geerlingguy",
  4228. "homepage": "https://www.drupal.org/user/389011"
  4229. },
  4230. {
  4231. "name": "vijaycs85",
  4232. "homepage": "https://www.drupal.org/user/93488"
  4233. }
  4234. ],
  4235. "description": "Mitigates spam form submissions using the honeypot method.",
  4236. "homepage": "https://www.drupal.org/project/honeypot",
  4237. "keywords": [
  4238. "deterrent",
  4239. "form",
  4240. "honeypot",
  4241. "honeytrap",
  4242. "php",
  4243. "spam"
  4244. ],
  4245. "support": {
  4246. "source": "https://git.drupalcode.org/project/honeypot"
  4247. }
  4248. },
  4249. {
  4250. "name": "drupal/linkit",
  4251. "version": "5.0.0-beta8",
  4252. "source": {
  4253. "type": "git",
  4254. "url": "https://git.drupalcode.org/project/linkit.git",
  4255. "reference": "8.x-5.0-beta8"
  4256. },
  4257. "dist": {
  4258. "type": "zip",
  4259. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta8.zip",
  4260. "reference": "8.x-5.0-beta8",
  4261. "shasum": "677be19d6128f1d5c6d239132e98b1817ad91acb"
  4262. },
  4263. "require": {
  4264. "drupal/core": "~8.0"
  4265. },
  4266. "require-dev": {
  4267. "drupal/imce": "*"
  4268. },
  4269. "type": "drupal-module",
  4270. "extra": {
  4271. "branch-alias": {
  4272. "dev-5.x": "5.x-dev"
  4273. },
  4274. "drupal": {
  4275. "version": "8.x-5.0-beta8",
  4276. "datestamp": "1545966784",
  4277. "security-coverage": {
  4278. "status": "not-covered",
  4279. "message": "Beta releases are not covered by Drupal security advisories."
  4280. }
  4281. }
  4282. },
  4283. "notification-url": "https://packages.drupal.org/8/downloads",
  4284. "license": [
  4285. "GPL-2.0+"
  4286. ],
  4287. "authors": [
  4288. {
  4289. "name": "Emil Stjerneman",
  4290. "homepage": "https://stjerneman.com",
  4291. "email": "emil@stjerneman.com",
  4292. "role": "Maintainer"
  4293. }
  4294. ],
  4295. "description": "Linkit - Enriched linking experience",
  4296. "homepage": "http://drupal.org/project/linkit",
  4297. "support": {
  4298. "source": "http://cgit.drupalcode.org/linkit",
  4299. "issues": "http://drupal.org/project/linkit"
  4300. }
  4301. },
  4302. {
  4303. "name": "drupal/maillog",
  4304. "version": "dev-1.x",
  4305. "source": {
  4306. "type": "git",
  4307. "url": "https://git.drupalcode.org/project/maillog.git",
  4308. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4309. },
  4310. "require": {
  4311. "drupal/core": "*"
  4312. },
  4313. "type": "drupal-module",
  4314. "extra": {
  4315. "branch-alias": {
  4316. "dev-1.x": "1.x-dev"
  4317. },
  4318. "drupal": {
  4319. "version": "8.x-1.x-dev",
  4320. "datestamp": "1470431939",
  4321. "security-coverage": {
  4322. "status": "not-covered",
  4323. "message": "Project has not opted into security advisory coverage!"
  4324. }
  4325. }
  4326. },
  4327. "notification-url": "https://packages.drupal.org/8/downloads",
  4328. "license": [
  4329. "GPL-2.0-or-later"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "Berdir",
  4334. "homepage": "https://www.drupal.org/user/214652"
  4335. },
  4336. {
  4337. "name": "DamienMcKenna",
  4338. "homepage": "https://www.drupal.org/user/108450"
  4339. },
  4340. {
  4341. "name": "miro_dietiker",
  4342. "homepage": "https://www.drupal.org/user/227761"
  4343. },
  4344. {
  4345. "name": "pluess",
  4346. "homepage": "https://www.drupal.org/user/84659"
  4347. }
  4348. ],
  4349. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4350. "homepage": "https://www.drupal.org/project/maillog",
  4351. "support": {
  4352. "source": "https://git.drupalcode.org/project/maillog"
  4353. },
  4354. "time": "2016-08-05T21:18:07+00:00"
  4355. },
  4356. {
  4357. "name": "drupal/matomo",
  4358. "version": "1.9.0",
  4359. "source": {
  4360. "type": "git",
  4361. "url": "https://git.drupalcode.org/project/matomo.git",
  4362. "reference": "8.x-1.9"
  4363. },
  4364. "dist": {
  4365. "type": "zip",
  4366. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4367. "reference": "8.x-1.9",
  4368. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4369. },
  4370. "require": {
  4371. "drupal/core": "~8.5"
  4372. },
  4373. "require-dev": {
  4374. "drupal/php": "*",
  4375. "drupal/token": "*"
  4376. },
  4377. "type": "drupal-module",
  4378. "extra": {
  4379. "branch-alias": {
  4380. "dev-1.x": "1.x-dev"
  4381. },
  4382. "drupal": {
  4383. "version": "8.x-1.9",
  4384. "datestamp": "1549615080",
  4385. "security-coverage": {
  4386. "status": "covered",
  4387. "message": "Covered by Drupal's security advisory policy"
  4388. }
  4389. }
  4390. },
  4391. "notification-url": "https://packages.drupal.org/8/downloads",
  4392. "license": [
  4393. "GPL-2.0+"
  4394. ],
  4395. "authors": [
  4396. {
  4397. "name": "hass",
  4398. "homepage": "https://www.drupal.org/u/hass"
  4399. },
  4400. {
  4401. "name": "See other contributors",
  4402. "homepage": "https://www.drupal.org/node/247808/committers"
  4403. }
  4404. ],
  4405. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4406. "homepage": "https://www.drupal.org/project/matomo",
  4407. "support": {
  4408. "source": "https://git.drupal.org/project/matomo.git",
  4409. "issues": "https://www.drupal.org/project/issues/matomo"
  4410. }
  4411. },
  4412. {
  4413. "name": "drupal/menu_admin_per_menu",
  4414. "version": "1.0.0",
  4415. "source": {
  4416. "type": "git",
  4417. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4418. "reference": "8.x-1.0"
  4419. },
  4420. "dist": {
  4421. "type": "zip",
  4422. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4423. "reference": "8.x-1.0",
  4424. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4425. },
  4426. "require": {
  4427. "drupal/core": "*"
  4428. },
  4429. "type": "drupal-module",
  4430. "extra": {
  4431. "branch-alias": {
  4432. "dev-1.x": "1.x-dev"
  4433. },
  4434. "drupal": {
  4435. "version": "8.x-1.0",
  4436. "datestamp": "1507184944",
  4437. "security-coverage": {
  4438. "status": "covered",
  4439. "message": "Covered by Drupal's security advisory policy"
  4440. }
  4441. }
  4442. },
  4443. "notification-url": "https://packages.drupal.org/8/downloads",
  4444. "license": [
  4445. "GPL-2.0-or-later"
  4446. ],
  4447. "authors": [
  4448. {
  4449. "name": "anrikun",
  4450. "homepage": "https://www.drupal.org/user/410199"
  4451. },
  4452. {
  4453. "name": "mkdok",
  4454. "homepage": "https://www.drupal.org/user/3308753"
  4455. }
  4456. ],
  4457. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4458. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4459. "support": {
  4460. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4461. }
  4462. },
  4463. {
  4464. "name": "drupal/metatag",
  4465. "version": "1.8.0",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://git.drupalcode.org/project/metatag.git",
  4469. "reference": "8.x-1.8"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.8.zip",
  4474. "reference": "8.x-1.8",
  4475. "shasum": "fb5d31aa08c8c2e175f096f9917e9741db152ea8"
  4476. },
  4477. "require": {
  4478. "drupal/core": "*",
  4479. "drupal/token": "^1.0"
  4480. },
  4481. "require-dev": {
  4482. "drupal/devel": "^1.0",
  4483. "drupal/metatag_dc": "*",
  4484. "drupal/metatag_open_graph": "*",
  4485. "drupal/page_manager": "^4.0",
  4486. "drupal/redirect": "^1.0",
  4487. "drupal/restui": "^1.0",
  4488. "drupal/schema_metatag": "^1.0",
  4489. "drupal/schema_web_page": "*"
  4490. },
  4491. "type": "drupal-module",
  4492. "extra": {
  4493. "branch-alias": {
  4494. "dev-1.x": "1.x-dev"
  4495. },
  4496. "drupal": {
  4497. "version": "8.x-1.8",
  4498. "datestamp": "1550692511",
  4499. "security-coverage": {
  4500. "status": "covered",
  4501. "message": "Covered by Drupal's security advisory policy"
  4502. }
  4503. }
  4504. },
  4505. "notification-url": "https://packages.drupal.org/8/downloads",
  4506. "license": [
  4507. "GPL-2.0+"
  4508. ],
  4509. "authors": [
  4510. {
  4511. "name": "See contributors",
  4512. "homepage": "https://www.drupal.org/node/640498/committers",
  4513. "role": "Developer"
  4514. },
  4515. {
  4516. "name": "Dave Reid",
  4517. "homepage": "https://www.drupal.org/user/53892"
  4518. }
  4519. ],
  4520. "description": "Manage meta tags for all entities.",
  4521. "homepage": "https://www.drupal.org/project/metatag",
  4522. "keywords": [
  4523. "Drupal",
  4524. "seo"
  4525. ],
  4526. "support": {
  4527. "source": "http://cgit.drupalcode.org/metatag",
  4528. "issues": "http://drupal.org/project/issues/metatag"
  4529. }
  4530. },
  4531. {
  4532. "name": "drupal/migrate_plus",
  4533. "version": "4.2.0",
  4534. "source": {
  4535. "type": "git",
  4536. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4537. "reference": "8.x-4.2"
  4538. },
  4539. "dist": {
  4540. "type": "zip",
  4541. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.2.zip",
  4542. "reference": "8.x-4.2",
  4543. "shasum": "5736a43e39cc5c091d54ceef2849ea35ba979af3"
  4544. },
  4545. "require": {
  4546. "drupal/core": "^8.3"
  4547. },
  4548. "require-dev": {
  4549. "drupal/entity": "*",
  4550. "drupal/migrate_example_advanced_setup": "*",
  4551. "drupal/migrate_example_setup": "*",
  4552. "drupal/migrate_tools": "*",
  4553. "drupal/profile": "*"
  4554. },
  4555. "suggest": {
  4556. "ext-soap": "*",
  4557. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4558. },
  4559. "type": "drupal-module",
  4560. "extra": {
  4561. "branch-alias": {
  4562. "dev-4.x": "4.x-dev"
  4563. },
  4564. "drupal": {
  4565. "version": "8.x-4.2",
  4566. "datestamp": "1555683487",
  4567. "security-coverage": {
  4568. "status": "covered",
  4569. "message": "Covered by Drupal's security advisory policy"
  4570. }
  4571. }
  4572. },
  4573. "notification-url": "https://packages.drupal.org/8/downloads",
  4574. "license": [
  4575. "GPL-2.0+"
  4576. ],
  4577. "authors": [
  4578. {
  4579. "name": "Mike Ryan",
  4580. "homepage": "https://www.drupal.org/u/mikeryan",
  4581. "role": "Maintainer"
  4582. },
  4583. {
  4584. "name": "mikeryan",
  4585. "homepage": "https://www.drupal.org/user/4420"
  4586. }
  4587. ],
  4588. "description": "Enhancements to core migration support.",
  4589. "homepage": "https://www.drupal.org/project/migrate_plus",
  4590. "support": {
  4591. "source": "https://cgit.drupalcode.org/migrate_plus",
  4592. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4593. "irc": "irc://irc.freenode.org/drupal-migrate"
  4594. }
  4595. },
  4596. {
  4597. "name": "drupal/migrate_tools",
  4598. "version": "4.1.0",
  4599. "source": {
  4600. "type": "git",
  4601. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4602. "reference": "8.x-4.1"
  4603. },
  4604. "dist": {
  4605. "type": "zip",
  4606. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.1.zip",
  4607. "reference": "8.x-4.1",
  4608. "shasum": "0355d5309fbb738759332779d0ecf5f19a1da0a4"
  4609. },
  4610. "require": {
  4611. "drupal/core": "^8.3",
  4612. "drupal/migrate_plus": "^4"
  4613. },
  4614. "require-dev": {
  4615. "drupal/migrate_plus": "4.x-dev",
  4616. "drupal/migrate_source_csv": "^2.2",
  4617. "drush/drush": "^9"
  4618. },
  4619. "type": "drupal-module",
  4620. "extra": {
  4621. "branch-alias": {
  4622. "dev-4.x": "4.x-dev"
  4623. },
  4624. "drupal": {
  4625. "version": "8.x-4.1",
  4626. "datestamp": "1546879080",
  4627. "security-coverage": {
  4628. "status": "covered",
  4629. "message": "Covered by Drupal's security advisory policy"
  4630. }
  4631. },
  4632. "drush": {
  4633. "services": {
  4634. "drush.services.yml": "^9"
  4635. }
  4636. }
  4637. },
  4638. "notification-url": "https://packages.drupal.org/8/downloads",
  4639. "license": [
  4640. "GPL-2.0-or-later"
  4641. ],
  4642. "authors": [
  4643. {
  4644. "name": "heddn",
  4645. "homepage": "https://www.drupal.org/user/1463982"
  4646. },
  4647. {
  4648. "name": "mikeryan",
  4649. "homepage": "https://www.drupal.org/user/4420"
  4650. },
  4651. {
  4652. "name": "moshe weitzman",
  4653. "homepage": "https://www.drupal.org/user/23"
  4654. }
  4655. ],
  4656. "description": "Tools to assist in developing and running migrations.",
  4657. "homepage": "http://drupal.org/project/migrate_tools",
  4658. "support": {
  4659. "source": "http://cgit.drupalcode.org/migrate_tools",
  4660. "issues": "http://drupal.org/project/migrate_tools",
  4661. "irc": "irc://irc.freenode.org/drupal-migrate"
  4662. }
  4663. },
  4664. {
  4665. "name": "drupal/module_missing_message_fixer",
  4666. "version": "1.0.0-beta2",
  4667. "source": {
  4668. "type": "git",
  4669. "url": "https://git.drupalcode.org/project/module_missing_message_fixer.git",
  4670. "reference": "8.x-1.0-beta2"
  4671. },
  4672. "dist": {
  4673. "type": "zip",
  4674. "url": "https://ftp.drupal.org/files/projects/module_missing_message_fixer-8.x-1.0-beta2.zip",
  4675. "reference": "8.x-1.0-beta2",
  4676. "shasum": "d2eae91fde477276487ba85792a1e0bf261b6aee"
  4677. },
  4678. "require": {
  4679. "drupal/core": "~8.0"
  4680. },
  4681. "type": "drupal-module",
  4682. "extra": {
  4683. "branch-alias": {
  4684. "dev-1.x": "1.x-dev"
  4685. },
  4686. "drupal": {
  4687. "version": "8.x-1.0-beta2",
  4688. "datestamp": "1554937085",
  4689. "security-coverage": {
  4690. "status": "not-covered",
  4691. "message": "Beta releases are not covered by Drupal security advisories."
  4692. }
  4693. },
  4694. "drush": {
  4695. "services": {
  4696. "drush.services.yml": "^9"
  4697. }
  4698. }
  4699. },
  4700. "notification-url": "https://packages.drupal.org/8/downloads",
  4701. "license": [
  4702. "GPL-2.0+"
  4703. ],
  4704. "authors": [
  4705. {
  4706. "name": "See contributors",
  4707. "homepage": "https://www.drupal.org/node/2951176/committers",
  4708. "role": "Developer"
  4709. }
  4710. ],
  4711. "description": "This module displays a list of missing modules that appear on your site and lets you fix the entries",
  4712. "homepage": "https://www.drupal.org/project/module_missing_message_fixer",
  4713. "keywords": [
  4714. "Drupal"
  4715. ],
  4716. "support": {
  4717. "source": "http://cgit.drupalcode.org/module_missing_message_fixer",
  4718. "issues": "https://www.drupal.org/project/issues/module_missing_message_fixer"
  4719. }
  4720. },
  4721. {
  4722. "name": "drupal/path_alias_xt",
  4723. "version": "dev-1.x",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4727. "reference": "2a79ac72191dc59ef656d1edd85e651538c6a389"
  4728. },
  4729. "require": {
  4730. "drupal/core": "*"
  4731. },
  4732. "type": "drupal-module",
  4733. "extra": {
  4734. "branch-alias": {
  4735. "dev-1.x": "1.x-dev"
  4736. },
  4737. "drupal": {
  4738. "version": "8.x-1.x-dev",
  4739. "datestamp": "1548876480",
  4740. "security-coverage": {
  4741. "status": "not-covered",
  4742. "message": "Dev releases are not covered by Drupal security advisories."
  4743. }
  4744. }
  4745. },
  4746. "notification-url": "https://packages.drupal.org/8/downloads",
  4747. "license": [
  4748. "GPL-2.0-or-later"
  4749. ],
  4750. "authors": [
  4751. {
  4752. "name": "RdeBoer",
  4753. "homepage": "https://www.drupal.org/user/404007"
  4754. },
  4755. {
  4756. "name": "adriancid",
  4757. "homepage": "https://www.drupal.org/user/1962106"
  4758. },
  4759. {
  4760. "name": "sdstyles",
  4761. "homepage": "https://www.drupal.org/user/1420228"
  4762. }
  4763. ],
  4764. "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.",
  4765. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4766. "support": {
  4767. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4768. },
  4769. "time": "2019-01-30T19:27:58+00:00"
  4770. },
  4771. {
  4772. "name": "drupal/pathauto",
  4773. "version": "1.3.0",
  4774. "source": {
  4775. "type": "git",
  4776. "url": "https://git.drupalcode.org/project/pathauto.git",
  4777. "reference": "8.x-1.3"
  4778. },
  4779. "dist": {
  4780. "type": "zip",
  4781. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip",
  4782. "reference": "8.x-1.3",
  4783. "shasum": "115d5998d7636a03e26c7ce34261b65809d53965"
  4784. },
  4785. "require": {
  4786. "drupal/core": "^8.5",
  4787. "drupal/ctools": "*",
  4788. "drupal/token": "*"
  4789. },
  4790. "type": "drupal-module",
  4791. "extra": {
  4792. "branch-alias": {
  4793. "dev-1.x": "1.x-dev"
  4794. },
  4795. "drupal": {
  4796. "version": "8.x-1.3",
  4797. "datestamp": "1554239887",
  4798. "security-coverage": {
  4799. "status": "covered",
  4800. "message": "Covered by Drupal's security advisory policy"
  4801. }
  4802. }
  4803. },
  4804. "notification-url": "https://packages.drupal.org/8/downloads",
  4805. "license": [
  4806. "GPL-2.0-or-later"
  4807. ],
  4808. "authors": [
  4809. {
  4810. "name": "Berdir",
  4811. "homepage": "https://www.drupal.org/user/214652"
  4812. },
  4813. {
  4814. "name": "Dave Reid",
  4815. "homepage": "https://www.drupal.org/user/53892"
  4816. },
  4817. {
  4818. "name": "Freso",
  4819. "homepage": "https://www.drupal.org/user/27504"
  4820. },
  4821. {
  4822. "name": "greggles",
  4823. "homepage": "https://www.drupal.org/user/36762"
  4824. }
  4825. ],
  4826. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4827. "homepage": "https://www.drupal.org/project/pathauto",
  4828. "support": {
  4829. "source": "https://git.drupalcode.org/project/pathauto"
  4830. }
  4831. },
  4832. {
  4833. "name": "drupal/profile",
  4834. "version": "1.0.0-rc1",
  4835. "source": {
  4836. "type": "git",
  4837. "url": "https://git.drupalcode.org/project/profile.git",
  4838. "reference": "8.x-1.0-rc1"
  4839. },
  4840. "dist": {
  4841. "type": "zip",
  4842. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc1.zip",
  4843. "reference": "8.x-1.0-rc1",
  4844. "shasum": "cc537ca25412adc4fa601ff42cf2fb5cbc6e7b6b"
  4845. },
  4846. "require": {
  4847. "drupal/core": "~8.1",
  4848. "drupal/entity": "*"
  4849. },
  4850. "type": "drupal-module",
  4851. "extra": {
  4852. "branch-alias": {
  4853. "dev-1.x": "1.x-dev"
  4854. },
  4855. "drupal": {
  4856. "version": "8.x-1.0-rc1",
  4857. "datestamp": "1551998880",
  4858. "security-coverage": {
  4859. "status": "not-covered",
  4860. "message": "RC releases are not covered by Drupal security advisories."
  4861. }
  4862. }
  4863. },
  4864. "notification-url": "https://packages.drupal.org/8/downloads",
  4865. "license": [
  4866. "GPL-2.0+"
  4867. ],
  4868. "authors": [
  4869. {
  4870. "name": "bojanz",
  4871. "homepage": "https://www.drupal.org/user/86106"
  4872. },
  4873. {
  4874. "name": "daggerhart",
  4875. "homepage": "https://www.drupal.org/user/167806"
  4876. },
  4877. {
  4878. "name": "fago",
  4879. "homepage": "https://www.drupal.org/user/16747"
  4880. },
  4881. {
  4882. "name": "mglaman",
  4883. "homepage": "https://www.drupal.org/user/2416470"
  4884. },
  4885. {
  4886. "name": "pcambra",
  4887. "homepage": "https://www.drupal.org/user/122101"
  4888. }
  4889. ],
  4890. "description": "Provides configurable user profiles.",
  4891. "homepage": "http://drupal.org/project/profile",
  4892. "support": {
  4893. "source": "https://git.drupalcode.org/project/profile"
  4894. }
  4895. },
  4896. {
  4897. "name": "drupal/redirect",
  4898. "version": "1.3.0",
  4899. "source": {
  4900. "type": "git",
  4901. "url": "https://git.drupalcode.org/project/redirect.git",
  4902. "reference": "8.x-1.3"
  4903. },
  4904. "dist": {
  4905. "type": "zip",
  4906. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  4907. "reference": "8.x-1.3",
  4908. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  4909. },
  4910. "require": {
  4911. "drupal/core": "~8"
  4912. },
  4913. "type": "drupal-module",
  4914. "extra": {
  4915. "branch-alias": {
  4916. "dev-1.x": "1.x-dev"
  4917. },
  4918. "drupal": {
  4919. "version": "8.x-1.3",
  4920. "datestamp": "1539682684",
  4921. "security-coverage": {
  4922. "status": "covered",
  4923. "message": "Covered by Drupal's security advisory policy"
  4924. }
  4925. }
  4926. },
  4927. "notification-url": "https://packages.drupal.org/8/downloads",
  4928. "license": [
  4929. "GPL-2.0+"
  4930. ],
  4931. "authors": [
  4932. {
  4933. "name": "Berdir",
  4934. "homepage": "https://www.drupal.org/user/214652"
  4935. },
  4936. {
  4937. "name": "Dave Reid",
  4938. "homepage": "https://www.drupal.org/user/53892"
  4939. },
  4940. {
  4941. "name": "pifagor",
  4942. "homepage": "https://www.drupal.org/user/2375692"
  4943. }
  4944. ],
  4945. "description": "Allows users to redirect from old URLs to new URLs.",
  4946. "homepage": "https://www.drupal.org/project/redirect",
  4947. "support": {
  4948. "source": "https://git.drupalcode.org/project/redirect"
  4949. }
  4950. },
  4951. {
  4952. "name": "drupal/redis",
  4953. "version": "1.1.0",
  4954. "source": {
  4955. "type": "git",
  4956. "url": "https://git.drupalcode.org/project/redis.git",
  4957. "reference": "8.x-1.1"
  4958. },
  4959. "dist": {
  4960. "type": "zip",
  4961. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.1.zip",
  4962. "reference": "8.x-1.1",
  4963. "shasum": "33337fe1cbd2824797e87533b30e4886b48ecd77"
  4964. },
  4965. "require": {
  4966. "drupal/core": "~8.0"
  4967. },
  4968. "suggest": {
  4969. "predis/predis": "^1.1.1"
  4970. },
  4971. "type": "drupal-module",
  4972. "extra": {
  4973. "branch-alias": {
  4974. "dev-1.x": "1.x-dev"
  4975. },
  4976. "drupal": {
  4977. "version": "8.x-1.1",
  4978. "datestamp": "1541600580",
  4979. "security-coverage": {
  4980. "status": "covered",
  4981. "message": "Covered by Drupal's security advisory policy"
  4982. }
  4983. }
  4984. },
  4985. "autoload": {
  4986. "psr-4": {
  4987. "Drupal\\redis\\": "src"
  4988. }
  4989. },
  4990. "notification-url": "https://packages.drupal.org/8/downloads",
  4991. "license": [
  4992. "GPL-2.0"
  4993. ],
  4994. "authors": [
  4995. {
  4996. "name": "Berdir",
  4997. "homepage": "https://www.drupal.org/user/214652"
  4998. },
  4999. {
  5000. "name": "pounard",
  5001. "homepage": "https://www.drupal.org/user/240164"
  5002. }
  5003. ],
  5004. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5005. "homepage": "https://www.drupal.org/project/redis",
  5006. "support": {
  5007. "source": "https://git.drupalcode.org/project/redis"
  5008. }
  5009. },
  5010. {
  5011. "name": "drupal/search_api",
  5012. "version": "1.11.0",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://git.drupalcode.org/project/search_api.git",
  5016. "reference": "8.x-1.11"
  5017. },
  5018. "dist": {
  5019. "type": "zip",
  5020. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.11.zip",
  5021. "reference": "8.x-1.11",
  5022. "shasum": "d2bf92afa2ee760977dde1fadcb5bb64a4c2d7c1"
  5023. },
  5024. "require": {
  5025. "drupal/core": "^8.5"
  5026. },
  5027. "require-dev": {
  5028. "drupal/search_api_autocomplete": "@dev",
  5029. "drupal/search_api_db": "*"
  5030. },
  5031. "suggest": {
  5032. "drupal/facets": "Adds the ability to create faceted searches.",
  5033. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5034. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5035. },
  5036. "type": "drupal-module",
  5037. "extra": {
  5038. "branch-alias": {
  5039. "dev-1.x": "1.x-dev"
  5040. },
  5041. "drupal": {
  5042. "version": "8.x-1.11",
  5043. "datestamp": "1552334285",
  5044. "security-coverage": {
  5045. "status": "covered",
  5046. "message": "Covered by Drupal's security advisory policy"
  5047. }
  5048. },
  5049. "drush": {
  5050. "services": {
  5051. "drush.services.yml": "^9"
  5052. }
  5053. }
  5054. },
  5055. "notification-url": "https://packages.drupal.org/8/downloads",
  5056. "license": [
  5057. "GPL-2.0+"
  5058. ],
  5059. "authors": [
  5060. {
  5061. "name": "Thomas Seidl",
  5062. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5063. },
  5064. {
  5065. "name": "Nick Veenhof",
  5066. "homepage": "https://www.drupal.org/u/nick_vh"
  5067. },
  5068. {
  5069. "name": "See other contributors",
  5070. "homepage": "https://www.drupal.org/node/790418/committers"
  5071. }
  5072. ],
  5073. "description": "Provides a generic framework for modules offering search capabilities.",
  5074. "homepage": "https://www.drupal.org/project/search_api",
  5075. "support": {
  5076. "source": "http://git.drupal.org/project/search_api.git",
  5077. "issues": "https://www.drupal.org/project/issues/search_api",
  5078. "irc": "irc://irc.freenode.org/drupal-search-api"
  5079. }
  5080. },
  5081. {
  5082. "name": "drupal/simple_sitemap",
  5083. "version": "3.0.0",
  5084. "source": {
  5085. "type": "git",
  5086. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5087. "reference": "8.x-3.0"
  5088. },
  5089. "dist": {
  5090. "type": "zip",
  5091. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.0.zip",
  5092. "reference": "8.x-3.0",
  5093. "shasum": "9c3d1fb78d4693dd4f3258e8870b173650c828cd"
  5094. },
  5095. "require": {
  5096. "drupal/core": "~8.0",
  5097. "ext-xmlwriter": "*"
  5098. },
  5099. "type": "drupal-module",
  5100. "extra": {
  5101. "branch-alias": {
  5102. "dev-3.x": "3.x-dev"
  5103. },
  5104. "drupal": {
  5105. "version": "8.x-3.0",
  5106. "datestamp": "1552141685",
  5107. "security-coverage": {
  5108. "status": "covered",
  5109. "message": "Covered by Drupal's security advisory policy"
  5110. }
  5111. },
  5112. "drush": {
  5113. "services": {
  5114. "drush.services.yml": "^9"
  5115. }
  5116. }
  5117. },
  5118. "notification-url": "https://packages.drupal.org/8/downloads",
  5119. "license": [
  5120. "GPL-2.0+"
  5121. ],
  5122. "authors": [
  5123. {
  5124. "name": "Pawel Ginalski (gbyte.co)",
  5125. "homepage": "https://www.drupal.org/u/gbyte.co",
  5126. "email": "contact@gbyte.co",
  5127. "role": "Maintainer"
  5128. },
  5129. {
  5130. "name": "gbyte.co",
  5131. "homepage": "https://www.drupal.org/user/2381352"
  5132. }
  5133. ],
  5134. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5135. "homepage": "https://drupal.org/project/simple_sitemap",
  5136. "support": {
  5137. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5138. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5139. "irc": "irc://irc.freenode.org/drupal-contribute"
  5140. }
  5141. },
  5142. {
  5143. "name": "drupal/synonyms",
  5144. "version": "dev-1.x",
  5145. "source": {
  5146. "type": "git",
  5147. "url": "https://git.drupalcode.org/project/synonyms.git",
  5148. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5149. },
  5150. "require": {
  5151. "drupal/core": "^8.2"
  5152. },
  5153. "type": "drupal-module",
  5154. "extra": {
  5155. "branch-alias": {
  5156. "dev-1.x": "1.x-dev"
  5157. },
  5158. "drupal": {
  5159. "version": "8.x-1.0-alpha1+5-dev",
  5160. "datestamp": "1540141681",
  5161. "security-coverage": {
  5162. "status": "not-covered",
  5163. "message": "Dev releases are not covered by Drupal security advisories."
  5164. }
  5165. }
  5166. },
  5167. "notification-url": "https://packages.drupal.org/8/downloads",
  5168. "license": [
  5169. "GPL-2.0-or-later"
  5170. ],
  5171. "authors": [
  5172. {
  5173. "name": "Zen",
  5174. "homepage": "https://www.drupal.org/user/21209"
  5175. },
  5176. {
  5177. "name": "bojanz",
  5178. "homepage": "https://www.drupal.org/user/86106"
  5179. },
  5180. {
  5181. "name": "bucefal91",
  5182. "homepage": "https://www.drupal.org/user/504128"
  5183. }
  5184. ],
  5185. "description": "Provides synonyms feature for content entities.",
  5186. "homepage": "https://www.drupal.org/project/synonyms",
  5187. "support": {
  5188. "source": "https://git.drupalcode.org/project/synonyms"
  5189. },
  5190. "time": "2018-10-21T17:05:25+00:00"
  5191. },
  5192. {
  5193. "name": "drupal/token",
  5194. "version": "1.5.0",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://git.drupalcode.org/project/token.git",
  5198. "reference": "8.x-1.5"
  5199. },
  5200. "dist": {
  5201. "type": "zip",
  5202. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  5203. "reference": "8.x-1.5",
  5204. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  5205. },
  5206. "require": {
  5207. "drupal/core": "^8.5"
  5208. },
  5209. "type": "drupal-module",
  5210. "extra": {
  5211. "branch-alias": {
  5212. "dev-1.x": "1.x-dev"
  5213. },
  5214. "drupal": {
  5215. "version": "8.x-1.5",
  5216. "datestamp": "1537557481",
  5217. "security-coverage": {
  5218. "status": "covered",
  5219. "message": "Covered by Drupal's security advisory policy"
  5220. }
  5221. }
  5222. },
  5223. "notification-url": "https://packages.drupal.org/8/downloads",
  5224. "license": [
  5225. "GPL-2.0-or-later"
  5226. ],
  5227. "authors": [
  5228. {
  5229. "name": "Berdir",
  5230. "homepage": "https://www.drupal.org/user/214652"
  5231. },
  5232. {
  5233. "name": "Dave Reid",
  5234. "homepage": "https://www.drupal.org/user/53892"
  5235. },
  5236. {
  5237. "name": "eaton",
  5238. "homepage": "https://www.drupal.org/user/16496"
  5239. },
  5240. {
  5241. "name": "fago",
  5242. "homepage": "https://www.drupal.org/user/16747"
  5243. },
  5244. {
  5245. "name": "greggles",
  5246. "homepage": "https://www.drupal.org/user/36762"
  5247. },
  5248. {
  5249. "name": "mikeryan",
  5250. "homepage": "https://www.drupal.org/user/4420"
  5251. }
  5252. ],
  5253. "description": "Provides a user interface for the Token API and some missing core tokens.",
  5254. "homepage": "https://www.drupal.org/project/token",
  5255. "support": {
  5256. "source": "https://git.drupalcode.org/project/token"
  5257. }
  5258. },
  5259. {
  5260. "name": "drupal/toolbar_themes",
  5261. "version": "dev-1.x",
  5262. "source": {
  5263. "type": "git",
  5264. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5265. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5266. },
  5267. "require": {
  5268. "drupal/core": "*"
  5269. },
  5270. "type": "drupal-module",
  5271. "extra": {
  5272. "branch-alias": {
  5273. "dev-1.x": "1.x-dev"
  5274. },
  5275. "drupal": {
  5276. "version": "8.x-1.0-alpha4+10-dev",
  5277. "datestamp": "1510689485",
  5278. "security-coverage": {
  5279. "status": "not-covered",
  5280. "message": "Project has not opted into security advisory coverage!"
  5281. }
  5282. }
  5283. },
  5284. "notification-url": "https://packages.drupal.org/8/downloads",
  5285. "license": [
  5286. "GPL-2.0-or-later"
  5287. ],
  5288. "authors": [
  5289. {
  5290. "name": "Jeff Burnz",
  5291. "homepage": "https://www.drupal.org/user/61393"
  5292. }
  5293. ],
  5294. "description": "Apply themes to the toolbar.",
  5295. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5296. "support": {
  5297. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5298. },
  5299. "time": "2017-11-14T19:57:02+00:00"
  5300. },
  5301. {
  5302. "name": "drupal/translation_views",
  5303. "version": "1.0.0-alpha5",
  5304. "source": {
  5305. "type": "git",
  5306. "url": "https://git.drupalcode.org/project/translation_views.git",
  5307. "reference": "8.x-1.0-alpha5"
  5308. },
  5309. "dist": {
  5310. "type": "zip",
  5311. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha5.zip",
  5312. "reference": "8.x-1.0-alpha5",
  5313. "shasum": "f1fc54c4648bca5194c0bdcb6df02dae1e8fefd9"
  5314. },
  5315. "require": {
  5316. "drupal/core": "*"
  5317. },
  5318. "require-dev": {
  5319. "drupal/local_translation": "*"
  5320. },
  5321. "type": "drupal-module",
  5322. "extra": {
  5323. "branch-alias": {
  5324. "dev-1.x": "1.x-dev"
  5325. },
  5326. "drupal": {
  5327. "version": "8.x-1.0-alpha5",
  5328. "datestamp": "1551353287",
  5329. "security-coverage": {
  5330. "status": "not-covered",
  5331. "message": "Project has not opted into security advisory coverage!"
  5332. }
  5333. }
  5334. },
  5335. "notification-url": "https://packages.drupal.org/8/downloads",
  5336. "license": [
  5337. "GPL-2.0-or-later"
  5338. ],
  5339. "authors": [
  5340. {
  5341. "name": "matsbla",
  5342. "homepage": "https://www.drupal.org/user/2325394"
  5343. },
  5344. {
  5345. "name": "vlad.dancer",
  5346. "homepage": "https://www.drupal.org/user/903844"
  5347. }
  5348. ],
  5349. "description": "Create customized lists and queries of translations from your database.",
  5350. "homepage": "https://www.drupal.org/project/translation_views",
  5351. "support": {
  5352. "source": "https://git.drupalcode.org/project/translation_views"
  5353. }
  5354. },
  5355. {
  5356. "name": "drupal/url_to_video_filter",
  5357. "version": "1.3.0",
  5358. "source": {
  5359. "type": "git",
  5360. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5361. "reference": "8.x-1.3"
  5362. },
  5363. "dist": {
  5364. "type": "zip",
  5365. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  5366. "reference": "8.x-1.3",
  5367. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  5368. },
  5369. "require": {
  5370. "drupal/core": "~8.0"
  5371. },
  5372. "type": "drupal-module",
  5373. "extra": {
  5374. "branch-alias": {
  5375. "dev-1.x": "1.x-dev"
  5376. },
  5377. "drupal": {
  5378. "version": "8.x-1.3",
  5379. "datestamp": "1532695981",
  5380. "security-coverage": {
  5381. "status": "covered",
  5382. "message": "Covered by Drupal's security advisory policy"
  5383. }
  5384. }
  5385. },
  5386. "notification-url": "https://packages.drupal.org/8/downloads",
  5387. "license": [
  5388. "GPL-2.0-or-later"
  5389. ],
  5390. "authors": [
  5391. {
  5392. "name": "Jaypan",
  5393. "homepage": "https://www.drupal.org/user/324696"
  5394. }
  5395. ],
  5396. "description": "Text filter to convert URLs to embedded videos",
  5397. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5398. "support": {
  5399. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5400. }
  5401. },
  5402. {
  5403. "name": "drupal/views_bulk_edit",
  5404. "version": "2.2.0",
  5405. "source": {
  5406. "type": "git",
  5407. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5408. "reference": "8.x-2.2"
  5409. },
  5410. "dist": {
  5411. "type": "zip",
  5412. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  5413. "reference": "8.x-2.2",
  5414. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  5415. },
  5416. "require": {
  5417. "drupal/core": "*",
  5418. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  5419. },
  5420. "type": "drupal-module",
  5421. "extra": {
  5422. "branch-alias": {
  5423. "dev-2.x": "2.x-dev"
  5424. },
  5425. "drupal": {
  5426. "version": "8.x-2.2",
  5427. "datestamp": "1532689085",
  5428. "security-coverage": {
  5429. "status": "covered",
  5430. "message": "Covered by Drupal's security advisory policy"
  5431. }
  5432. }
  5433. },
  5434. "notification-url": "https://packages.drupal.org/8/downloads",
  5435. "license": [
  5436. "GPL-2.0+"
  5437. ],
  5438. "authors": [
  5439. {
  5440. "name": "Marcin Grabias",
  5441. "homepage": "https://www.drupal.org/u/graber"
  5442. },
  5443. {
  5444. "name": "benjy",
  5445. "homepage": "https://www.drupal.org/user/1852732"
  5446. }
  5447. ],
  5448. "description": "Allows bulk edition of entity field values.",
  5449. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5450. "support": {
  5451. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5452. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5453. }
  5454. },
  5455. {
  5456. "name": "drupal/views_bulk_operations",
  5457. "version": "2.5.0",
  5458. "source": {
  5459. "type": "git",
  5460. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5461. "reference": "8.x-2.5"
  5462. },
  5463. "dist": {
  5464. "type": "zip",
  5465. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.5.zip",
  5466. "reference": "8.x-2.5",
  5467. "shasum": "3ec848b4f235720d05cb9713ea80a86415b6909f"
  5468. },
  5469. "require": {
  5470. "drupal/core": "^8.4"
  5471. },
  5472. "type": "drupal-module",
  5473. "extra": {
  5474. "branch-alias": {
  5475. "dev-2.x": "2.x-dev"
  5476. },
  5477. "drupal": {
  5478. "version": "8.x-2.5",
  5479. "datestamp": "1550740384",
  5480. "security-coverage": {
  5481. "status": "covered",
  5482. "message": "Covered by Drupal's security advisory policy"
  5483. }
  5484. },
  5485. "drush": {
  5486. "services": {
  5487. "drush.services.yml": "^9"
  5488. }
  5489. }
  5490. },
  5491. "notification-url": "https://packages.drupal.org/8/downloads",
  5492. "license": [
  5493. "GPL-2.0+"
  5494. ],
  5495. "authors": [
  5496. {
  5497. "name": "Marcin Grabias",
  5498. "homepage": "https://www.drupal.org/u/graber"
  5499. },
  5500. {
  5501. "name": "Jon Pugh",
  5502. "homepage": "https://www.drupal.org/user/17028"
  5503. },
  5504. {
  5505. "name": "bojanz",
  5506. "homepage": "https://www.drupal.org/user/86106"
  5507. },
  5508. {
  5509. "name": "infojunkie",
  5510. "homepage": "https://www.drupal.org/user/48424"
  5511. },
  5512. {
  5513. "name": "joelpittet",
  5514. "homepage": "https://www.drupal.org/user/160302"
  5515. }
  5516. ],
  5517. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5518. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5519. "support": {
  5520. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5521. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5522. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5523. }
  5524. },
  5525. {
  5526. "name": "drupal/workflow",
  5527. "version": "dev-1.x",
  5528. "source": {
  5529. "type": "git",
  5530. "url": "https://git.drupalcode.org/project/workflow.git",
  5531. "reference": "19030d5b4dd9523153a7af6e2df44cd9a03109b2"
  5532. },
  5533. "require": {
  5534. "drupal/core": "*"
  5535. },
  5536. "type": "drupal-module",
  5537. "extra": {
  5538. "branch-alias": {
  5539. "dev-1.x": "1.x-dev"
  5540. },
  5541. "drupal": {
  5542. "version": "8.x-1.1+35-dev",
  5543. "datestamp": "1548801480",
  5544. "security-coverage": {
  5545. "status": "not-covered",
  5546. "message": "Dev releases are not covered by Drupal security advisories."
  5547. }
  5548. }
  5549. },
  5550. "notification-url": "https://packages.drupal.org/8/downloads",
  5551. "license": [
  5552. "GPL-2.0-or-later"
  5553. ],
  5554. "authors": [
  5555. {
  5556. "name": "Bastlynn",
  5557. "homepage": "https://www.drupal.org/user/275249"
  5558. },
  5559. {
  5560. "name": "Heine",
  5561. "homepage": "https://www.drupal.org/user/17943"
  5562. },
  5563. {
  5564. "name": "JacobSingh",
  5565. "homepage": "https://www.drupal.org/user/68912"
  5566. },
  5567. {
  5568. "name": "NancyDru",
  5569. "homepage": "https://www.drupal.org/user/101412"
  5570. },
  5571. {
  5572. "name": "eaton",
  5573. "homepage": "https://www.drupal.org/user/16496"
  5574. },
  5575. {
  5576. "name": "johnv",
  5577. "homepage": "https://www.drupal.org/user/591042"
  5578. },
  5579. {
  5580. "name": "jvandyk",
  5581. "homepage": "https://www.drupal.org/user/2375"
  5582. },
  5583. {
  5584. "name": "mfredrickson",
  5585. "homepage": "https://www.drupal.org/user/31994"
  5586. },
  5587. {
  5588. "name": "q0rban",
  5589. "homepage": "https://www.drupal.org/user/31022"
  5590. }
  5591. ],
  5592. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5593. "homepage": "https://www.drupal.org/project/workflow",
  5594. "support": {
  5595. "source": "https://git.drupalcode.org/project/workflow"
  5596. },
  5597. "time": "2019-01-29T22:35:30+00:00"
  5598. },
  5599. {
  5600. "name": "drush/drush",
  5601. "version": "9.6.2",
  5602. "source": {
  5603. "type": "git",
  5604. "url": "https://github.com/drush-ops/drush.git",
  5605. "reference": "65d36cf542308d0b88f77c80f818a978d2844b80"
  5606. },
  5607. "dist": {
  5608. "type": "zip",
  5609. "url": "https://api.github.com/repos/drush-ops/drush/zipball/65d36cf542308d0b88f77c80f818a978d2844b80",
  5610. "reference": "65d36cf542308d0b88f77c80f818a978d2844b80",
  5611. "shasum": ""
  5612. },
  5613. "require": {
  5614. "chi-teck/drupal-code-generator": "^1.28.1",
  5615. "composer/semver": "^1.4",
  5616. "consolidation/annotated-command": "^2.12",
  5617. "consolidation/config": "^1.2",
  5618. "consolidation/filter-via-dot-access-data": "^1",
  5619. "consolidation/output-formatters": "^3.3.1",
  5620. "consolidation/robo": "^1.4.6",
  5621. "consolidation/site-alias": "^3.0.0@stable",
  5622. "consolidation/site-process": "^2.0.1",
  5623. "ext-dom": "*",
  5624. "grasmash/yaml-expander": "^1.1.1",
  5625. "league/container": "~2",
  5626. "php": ">=5.6.0",
  5627. "psr/log": "~1.0",
  5628. "psy/psysh": "~0.6",
  5629. "symfony/console": "^3.4",
  5630. "symfony/event-dispatcher": "^3.4",
  5631. "symfony/finder": "^3.4 || ^4.0",
  5632. "symfony/process": "^3.4",
  5633. "symfony/var-dumper": "^3.4 || ^4.0",
  5634. "symfony/yaml": "^3.4",
  5635. "webflo/drupal-finder": "^1.1",
  5636. "webmozart/path-util": "^2.1.0"
  5637. },
  5638. "require-dev": {
  5639. "composer/installers": "^1.2",
  5640. "cweagans/composer-patches": "~1.0",
  5641. "drupal/alinks": "1.0.0",
  5642. "drupal/devel": "^2",
  5643. "drupal/empty_theme": "1.0",
  5644. "g1a/composer-test-scenarios": "^3",
  5645. "lox/xhprof": "dev-master",
  5646. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5647. "squizlabs/php_codesniffer": "^2.7",
  5648. "vlucas/phpdotenv": "^2.4",
  5649. "webflo/drupal-core-strict": "8.6.x-dev"
  5650. },
  5651. "bin": [
  5652. "drush"
  5653. ],
  5654. "type": "library",
  5655. "extra": {
  5656. "installer-paths": {
  5657. "sut/core": [
  5658. "type:drupal-core"
  5659. ],
  5660. "sut/libraries/{$name}": [
  5661. "type:drupal-library"
  5662. ],
  5663. "sut/modules/unish/{$name}": [
  5664. "drupal/devel"
  5665. ],
  5666. "sut/themes/unish/{$name}": [
  5667. "drupal/empty_theme"
  5668. ],
  5669. "sut/modules/contrib/{$name}": [
  5670. "type:drupal-module"
  5671. ],
  5672. "sut/profiles/contrib/{$name}": [
  5673. "type:drupal-profile"
  5674. ],
  5675. "sut/themes/contrib/{$name}": [
  5676. "type:drupal-theme"
  5677. ],
  5678. "sut/drush/contrib/{$name}": [
  5679. "type:drupal-drush"
  5680. ]
  5681. },
  5682. "scenarios": {
  5683. "php5": {
  5684. "config": {
  5685. "platform": {
  5686. "php": "5.6.38"
  5687. }
  5688. }
  5689. }
  5690. },
  5691. "branch-alias": {
  5692. "dev-master": "9.x-dev"
  5693. }
  5694. },
  5695. "autoload": {
  5696. "psr-4": {
  5697. "Drush\\": "src/",
  5698. "Drush\\Internal\\": "src/internal-forks"
  5699. }
  5700. },
  5701. "notification-url": "https://packagist.org/downloads/",
  5702. "license": [
  5703. "GPL-2.0-or-later"
  5704. ],
  5705. "authors": [
  5706. {
  5707. "name": "Moshe Weitzman",
  5708. "email": "weitzman@tejasa.com"
  5709. },
  5710. {
  5711. "name": "Owen Barton",
  5712. "email": "drupal@owenbarton.com"
  5713. },
  5714. {
  5715. "name": "Greg Anderson",
  5716. "email": "greg.1.anderson@greenknowe.org"
  5717. },
  5718. {
  5719. "name": "Jonathan Araña Cruz",
  5720. "email": "jonhattan@faita.net"
  5721. },
  5722. {
  5723. "name": "Jonathan Hedstrom",
  5724. "email": "jhedstrom@gmail.com"
  5725. },
  5726. {
  5727. "name": "Christopher Gervais",
  5728. "email": "chris@ergonlogic.com"
  5729. },
  5730. {
  5731. "name": "Dave Reid",
  5732. "email": "dave@davereid.net"
  5733. },
  5734. {
  5735. "name": "Damian Lee",
  5736. "email": "damiankloip@googlemail.com"
  5737. }
  5738. ],
  5739. "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.",
  5740. "homepage": "http://www.drush.org",
  5741. "time": "2019-04-03T11:17:00+00:00"
  5742. },
  5743. {
  5744. "name": "easyrdf/easyrdf",
  5745. "version": "0.9.1",
  5746. "source": {
  5747. "type": "git",
  5748. "url": "https://github.com/njh/easyrdf.git",
  5749. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5750. },
  5751. "dist": {
  5752. "type": "zip",
  5753. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5754. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5755. "shasum": ""
  5756. },
  5757. "require": {
  5758. "ext-mbstring": "*",
  5759. "ext-pcre": "*",
  5760. "php": ">=5.2.8"
  5761. },
  5762. "require-dev": {
  5763. "phpunit/phpunit": "~3.5",
  5764. "sami/sami": "~1.4",
  5765. "squizlabs/php_codesniffer": "~1.4.3"
  5766. },
  5767. "suggest": {
  5768. "ml/json-ld": "~1.0"
  5769. },
  5770. "type": "library",
  5771. "autoload": {
  5772. "psr-0": {
  5773. "EasyRdf_": "lib/"
  5774. }
  5775. },
  5776. "notification-url": "https://packagist.org/downloads/",
  5777. "license": [
  5778. "BSD-3-Clause"
  5779. ],
  5780. "authors": [
  5781. {
  5782. "name": "Nicholas Humfrey",
  5783. "email": "njh@aelius.com",
  5784. "homepage": "http://www.aelius.com/njh/",
  5785. "role": "Developer"
  5786. },
  5787. {
  5788. "name": "Alexey Zakhlestin",
  5789. "email": "indeyets@gmail.com",
  5790. "role": "Developer"
  5791. }
  5792. ],
  5793. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5794. "homepage": "http://www.easyrdf.org/",
  5795. "keywords": [
  5796. "Linked Data",
  5797. "RDF",
  5798. "Semantic Web",
  5799. "Turtle",
  5800. "rdfa",
  5801. "sparql"
  5802. ],
  5803. "time": "2015-02-27T09:45:49+00:00"
  5804. },
  5805. {
  5806. "name": "egulias/email-validator",
  5807. "version": "1.2.15",
  5808. "source": {
  5809. "type": "git",
  5810. "url": "https://github.com/egulias/EmailValidator.git",
  5811. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  5812. },
  5813. "dist": {
  5814. "type": "zip",
  5815. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  5816. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  5817. "shasum": ""
  5818. },
  5819. "require": {
  5820. "doctrine/lexer": "^1.0.1",
  5821. "php": ">= 5.3.3"
  5822. },
  5823. "require-dev": {
  5824. "phpunit/phpunit": "^4.8.24"
  5825. },
  5826. "type": "library",
  5827. "extra": {
  5828. "branch-alias": {
  5829. "dev-master": "2.0.x-dev"
  5830. }
  5831. },
  5832. "autoload": {
  5833. "psr-0": {
  5834. "Egulias\\": "src/"
  5835. }
  5836. },
  5837. "notification-url": "https://packagist.org/downloads/",
  5838. "license": [
  5839. "MIT"
  5840. ],
  5841. "authors": [
  5842. {
  5843. "name": "Eduardo Gulias Davis"
  5844. }
  5845. ],
  5846. "description": "A library for validating emails",
  5847. "homepage": "https://github.com/egulias/EmailValidator",
  5848. "keywords": [
  5849. "email",
  5850. "emailvalidation",
  5851. "emailvalidator",
  5852. "validation",
  5853. "validator"
  5854. ],
  5855. "time": "2018-09-25T20:59:41+00:00"
  5856. },
  5857. {
  5858. "name": "grasmash/expander",
  5859. "version": "1.0.0",
  5860. "source": {
  5861. "type": "git",
  5862. "url": "https://github.com/grasmash/expander.git",
  5863. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5864. },
  5865. "dist": {
  5866. "type": "zip",
  5867. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5868. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5869. "shasum": ""
  5870. },
  5871. "require": {
  5872. "dflydev/dot-access-data": "^1.1.0",
  5873. "php": ">=5.4"
  5874. },
  5875. "require-dev": {
  5876. "greg-1-anderson/composer-test-scenarios": "^1",
  5877. "phpunit/phpunit": "^4|^5.5.4",
  5878. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5879. "squizlabs/php_codesniffer": "^2.7"
  5880. },
  5881. "type": "library",
  5882. "extra": {
  5883. "branch-alias": {
  5884. "dev-master": "1.x-dev"
  5885. }
  5886. },
  5887. "autoload": {
  5888. "psr-4": {
  5889. "Grasmash\\Expander\\": "src/"
  5890. }
  5891. },
  5892. "notification-url": "https://packagist.org/downloads/",
  5893. "license": [
  5894. "MIT"
  5895. ],
  5896. "authors": [
  5897. {
  5898. "name": "Matthew Grasmick"
  5899. }
  5900. ],
  5901. "description": "Expands internal property references in PHP arrays file.",
  5902. "time": "2017-12-21T22:14:55+00:00"
  5903. },
  5904. {
  5905. "name": "grasmash/yaml-expander",
  5906. "version": "1.4.0",
  5907. "source": {
  5908. "type": "git",
  5909. "url": "https://github.com/grasmash/yaml-expander.git",
  5910. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5911. },
  5912. "dist": {
  5913. "type": "zip",
  5914. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5915. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5916. "shasum": ""
  5917. },
  5918. "require": {
  5919. "dflydev/dot-access-data": "^1.1.0",
  5920. "php": ">=5.4",
  5921. "symfony/yaml": "^2.8.11|^3|^4"
  5922. },
  5923. "require-dev": {
  5924. "greg-1-anderson/composer-test-scenarios": "^1",
  5925. "phpunit/phpunit": "^4.8|^5.5.4",
  5926. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5927. "squizlabs/php_codesniffer": "^2.7"
  5928. },
  5929. "type": "library",
  5930. "extra": {
  5931. "branch-alias": {
  5932. "dev-master": "1.x-dev"
  5933. }
  5934. },
  5935. "autoload": {
  5936. "psr-4": {
  5937. "Grasmash\\YamlExpander\\": "src/"
  5938. }
  5939. },
  5940. "notification-url": "https://packagist.org/downloads/",
  5941. "license": [
  5942. "MIT"
  5943. ],
  5944. "authors": [
  5945. {
  5946. "name": "Matthew Grasmick"
  5947. }
  5948. ],
  5949. "description": "Expands internal property references in a yaml file.",
  5950. "time": "2017-12-16T16:06:03+00:00"
  5951. },
  5952. {
  5953. "name": "guzzlehttp/guzzle",
  5954. "version": "6.3.3",
  5955. "source": {
  5956. "type": "git",
  5957. "url": "https://github.com/guzzle/guzzle.git",
  5958. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  5959. },
  5960. "dist": {
  5961. "type": "zip",
  5962. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  5963. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  5964. "shasum": ""
  5965. },
  5966. "require": {
  5967. "guzzlehttp/promises": "^1.0",
  5968. "guzzlehttp/psr7": "^1.4",
  5969. "php": ">=5.5"
  5970. },
  5971. "require-dev": {
  5972. "ext-curl": "*",
  5973. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5974. "psr/log": "^1.0"
  5975. },
  5976. "suggest": {
  5977. "psr/log": "Required for using the Log middleware"
  5978. },
  5979. "type": "library",
  5980. "extra": {
  5981. "branch-alias": {
  5982. "dev-master": "6.3-dev"
  5983. }
  5984. },
  5985. "autoload": {
  5986. "files": [
  5987. "src/functions_include.php"
  5988. ],
  5989. "psr-4": {
  5990. "GuzzleHttp\\": "src/"
  5991. }
  5992. },
  5993. "notification-url": "https://packagist.org/downloads/",
  5994. "license": [
  5995. "MIT"
  5996. ],
  5997. "authors": [
  5998. {
  5999. "name": "Michael Dowling",
  6000. "email": "mtdowling@gmail.com",
  6001. "homepage": "https://github.com/mtdowling"
  6002. }
  6003. ],
  6004. "description": "Guzzle is a PHP HTTP client library",
  6005. "homepage": "http://guzzlephp.org/",
  6006. "keywords": [
  6007. "client",
  6008. "curl",
  6009. "framework",
  6010. "http",
  6011. "http client",
  6012. "rest",
  6013. "web service"
  6014. ],
  6015. "time": "2018-04-22T15:46:56+00:00"
  6016. },
  6017. {
  6018. "name": "guzzlehttp/promises",
  6019. "version": "v1.3.1",
  6020. "source": {
  6021. "type": "git",
  6022. "url": "https://github.com/guzzle/promises.git",
  6023. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6024. },
  6025. "dist": {
  6026. "type": "zip",
  6027. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6028. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6029. "shasum": ""
  6030. },
  6031. "require": {
  6032. "php": ">=5.5.0"
  6033. },
  6034. "require-dev": {
  6035. "phpunit/phpunit": "^4.0"
  6036. },
  6037. "type": "library",
  6038. "extra": {
  6039. "branch-alias": {
  6040. "dev-master": "1.4-dev"
  6041. }
  6042. },
  6043. "autoload": {
  6044. "psr-4": {
  6045. "GuzzleHttp\\Promise\\": "src/"
  6046. },
  6047. "files": [
  6048. "src/functions_include.php"
  6049. ]
  6050. },
  6051. "notification-url": "https://packagist.org/downloads/",
  6052. "license": [
  6053. "MIT"
  6054. ],
  6055. "authors": [
  6056. {
  6057. "name": "Michael Dowling",
  6058. "email": "mtdowling@gmail.com",
  6059. "homepage": "https://github.com/mtdowling"
  6060. }
  6061. ],
  6062. "description": "Guzzle promises library",
  6063. "keywords": [
  6064. "promise"
  6065. ],
  6066. "time": "2016-12-20T10:07:11+00:00"
  6067. },
  6068. {
  6069. "name": "guzzlehttp/psr7",
  6070. "version": "1.5.2",
  6071. "source": {
  6072. "type": "git",
  6073. "url": "https://github.com/guzzle/psr7.git",
  6074. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  6075. },
  6076. "dist": {
  6077. "type": "zip",
  6078. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  6079. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  6080. "shasum": ""
  6081. },
  6082. "require": {
  6083. "php": ">=5.4.0",
  6084. "psr/http-message": "~1.0",
  6085. "ralouphie/getallheaders": "^2.0.5"
  6086. },
  6087. "provide": {
  6088. "psr/http-message-implementation": "1.0"
  6089. },
  6090. "require-dev": {
  6091. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6092. },
  6093. "type": "library",
  6094. "extra": {
  6095. "branch-alias": {
  6096. "dev-master": "1.5-dev"
  6097. }
  6098. },
  6099. "autoload": {
  6100. "psr-4": {
  6101. "GuzzleHttp\\Psr7\\": "src/"
  6102. },
  6103. "files": [
  6104. "src/functions_include.php"
  6105. ]
  6106. },
  6107. "notification-url": "https://packagist.org/downloads/",
  6108. "license": [
  6109. "MIT"
  6110. ],
  6111. "authors": [
  6112. {
  6113. "name": "Michael Dowling",
  6114. "email": "mtdowling@gmail.com",
  6115. "homepage": "https://github.com/mtdowling"
  6116. },
  6117. {
  6118. "name": "Tobias Schultze",
  6119. "homepage": "https://github.com/Tobion"
  6120. }
  6121. ],
  6122. "description": "PSR-7 message implementation that also provides common utility methods",
  6123. "keywords": [
  6124. "http",
  6125. "message",
  6126. "psr-7",
  6127. "request",
  6128. "response",
  6129. "stream",
  6130. "uri",
  6131. "url"
  6132. ],
  6133. "time": "2018-12-04T20:46:45+00:00"
  6134. },
  6135. {
  6136. "name": "jakub-onderka/php-console-color",
  6137. "version": "v0.2",
  6138. "source": {
  6139. "type": "git",
  6140. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6141. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6142. },
  6143. "dist": {
  6144. "type": "zip",
  6145. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6146. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6147. "shasum": ""
  6148. },
  6149. "require": {
  6150. "php": ">=5.4.0"
  6151. },
  6152. "require-dev": {
  6153. "jakub-onderka/php-code-style": "1.0",
  6154. "jakub-onderka/php-parallel-lint": "1.0",
  6155. "jakub-onderka/php-var-dump-check": "0.*",
  6156. "phpunit/phpunit": "~4.3",
  6157. "squizlabs/php_codesniffer": "1.*"
  6158. },
  6159. "type": "library",
  6160. "autoload": {
  6161. "psr-4": {
  6162. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6163. }
  6164. },
  6165. "notification-url": "https://packagist.org/downloads/",
  6166. "license": [
  6167. "BSD-2-Clause"
  6168. ],
  6169. "authors": [
  6170. {
  6171. "name": "Jakub Onderka",
  6172. "email": "jakub.onderka@gmail.com"
  6173. }
  6174. ],
  6175. "time": "2018-09-29T17:23:10+00:00"
  6176. },
  6177. {
  6178. "name": "jakub-onderka/php-console-highlighter",
  6179. "version": "v0.4",
  6180. "source": {
  6181. "type": "git",
  6182. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6183. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6184. },
  6185. "dist": {
  6186. "type": "zip",
  6187. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6188. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6189. "shasum": ""
  6190. },
  6191. "require": {
  6192. "ext-tokenizer": "*",
  6193. "jakub-onderka/php-console-color": "~0.2",
  6194. "php": ">=5.4.0"
  6195. },
  6196. "require-dev": {
  6197. "jakub-onderka/php-code-style": "~1.0",
  6198. "jakub-onderka/php-parallel-lint": "~1.0",
  6199. "jakub-onderka/php-var-dump-check": "~0.1",
  6200. "phpunit/phpunit": "~4.0",
  6201. "squizlabs/php_codesniffer": "~1.5"
  6202. },
  6203. "type": "library",
  6204. "autoload": {
  6205. "psr-4": {
  6206. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6207. }
  6208. },
  6209. "notification-url": "https://packagist.org/downloads/",
  6210. "license": [
  6211. "MIT"
  6212. ],
  6213. "authors": [
  6214. {
  6215. "name": "Jakub Onderka",
  6216. "email": "acci@acci.cz",
  6217. "homepage": "http://www.acci.cz/"
  6218. }
  6219. ],
  6220. "description": "Highlight PHP code in terminal",
  6221. "time": "2018-09-29T18:48:56+00:00"
  6222. },
  6223. {
  6224. "name": "league/container",
  6225. "version": "2.4.1",
  6226. "source": {
  6227. "type": "git",
  6228. "url": "https://github.com/thephpleague/container.git",
  6229. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6230. },
  6231. "dist": {
  6232. "type": "zip",
  6233. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6234. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6235. "shasum": ""
  6236. },
  6237. "require": {
  6238. "container-interop/container-interop": "^1.2",
  6239. "php": "^5.4.0 || ^7.0"
  6240. },
  6241. "provide": {
  6242. "container-interop/container-interop-implementation": "^1.2",
  6243. "psr/container-implementation": "^1.0"
  6244. },
  6245. "replace": {
  6246. "orno/di": "~2.0"
  6247. },
  6248. "require-dev": {
  6249. "phpunit/phpunit": "4.*"
  6250. },
  6251. "type": "library",
  6252. "extra": {
  6253. "branch-alias": {
  6254. "dev-2.x": "2.x-dev",
  6255. "dev-1.x": "1.x-dev"
  6256. }
  6257. },
  6258. "autoload": {
  6259. "psr-4": {
  6260. "League\\Container\\": "src"
  6261. }
  6262. },
  6263. "notification-url": "https://packagist.org/downloads/",
  6264. "license": [
  6265. "MIT"
  6266. ],
  6267. "authors": [
  6268. {
  6269. "name": "Phil Bennett",
  6270. "email": "philipobenito@gmail.com",
  6271. "homepage": "http://www.philipobenito.com",
  6272. "role": "Developer"
  6273. }
  6274. ],
  6275. "description": "A fast and intuitive dependency injection container.",
  6276. "homepage": "https://github.com/thephpleague/container",
  6277. "keywords": [
  6278. "container",
  6279. "dependency",
  6280. "di",
  6281. "injection",
  6282. "league",
  6283. "provider",
  6284. "service"
  6285. ],
  6286. "time": "2017-05-10T09:20:27+00:00"
  6287. },
  6288. {
  6289. "name": "masterminds/html5",
  6290. "version": "2.6.0",
  6291. "source": {
  6292. "type": "git",
  6293. "url": "https://github.com/Masterminds/html5-php.git",
  6294. "reference": "c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad"
  6295. },
  6296. "dist": {
  6297. "type": "zip",
  6298. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad",
  6299. "reference": "c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad",
  6300. "shasum": ""
  6301. },
  6302. "require": {
  6303. "ext-ctype": "*",
  6304. "ext-dom": "*",
  6305. "ext-libxml": "*",
  6306. "php": ">=5.3.0"
  6307. },
  6308. "require-dev": {
  6309. "phpunit/phpunit": "^4.8.35",
  6310. "sami/sami": "~2.0",
  6311. "satooshi/php-coveralls": "1.0.*"
  6312. },
  6313. "type": "library",
  6314. "extra": {
  6315. "branch-alias": {
  6316. "dev-master": "2.6-dev"
  6317. }
  6318. },
  6319. "autoload": {
  6320. "psr-4": {
  6321. "Masterminds\\": "src"
  6322. }
  6323. },
  6324. "notification-url": "https://packagist.org/downloads/",
  6325. "license": [
  6326. "MIT"
  6327. ],
  6328. "authors": [
  6329. {
  6330. "name": "Matt Butcher",
  6331. "email": "technosophos@gmail.com"
  6332. },
  6333. {
  6334. "name": "Asmir Mustafic",
  6335. "email": "goetas@gmail.com"
  6336. },
  6337. {
  6338. "name": "Matt Farina",
  6339. "email": "matt@mattfarina.com"
  6340. }
  6341. ],
  6342. "description": "An HTML5 parser and serializer.",
  6343. "homepage": "http://masterminds.github.io/html5-php",
  6344. "keywords": [
  6345. "HTML5",
  6346. "dom",
  6347. "html",
  6348. "parser",
  6349. "querypath",
  6350. "serializer",
  6351. "xml"
  6352. ],
  6353. "time": "2019-03-10T11:41:28+00:00"
  6354. },
  6355. {
  6356. "name": "nikic/php-parser",
  6357. "version": "v4.2.1",
  6358. "source": {
  6359. "type": "git",
  6360. "url": "https://github.com/nikic/PHP-Parser.git",
  6361. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0"
  6362. },
  6363. "dist": {
  6364. "type": "zip",
  6365. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0",
  6366. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0",
  6367. "shasum": ""
  6368. },
  6369. "require": {
  6370. "ext-tokenizer": "*",
  6371. "php": ">=7.0"
  6372. },
  6373. "require-dev": {
  6374. "phpunit/phpunit": "^6.5 || ^7.0"
  6375. },
  6376. "bin": [
  6377. "bin/php-parse"
  6378. ],
  6379. "type": "library",
  6380. "extra": {
  6381. "branch-alias": {
  6382. "dev-master": "4.2-dev"
  6383. }
  6384. },
  6385. "autoload": {
  6386. "psr-4": {
  6387. "PhpParser\\": "lib/PhpParser"
  6388. }
  6389. },
  6390. "notification-url": "https://packagist.org/downloads/",
  6391. "license": [
  6392. "BSD-3-Clause"
  6393. ],
  6394. "authors": [
  6395. {
  6396. "name": "Nikita Popov"
  6397. }
  6398. ],
  6399. "description": "A PHP parser written in PHP",
  6400. "keywords": [
  6401. "parser",
  6402. "php"
  6403. ],
  6404. "time": "2019-02-16T20:54:15+00:00"
  6405. },
  6406. {
  6407. "name": "oomphinc/composer-installers-extender",
  6408. "version": "v1.1.2",
  6409. "source": {
  6410. "type": "git",
  6411. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  6412. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  6413. },
  6414. "dist": {
  6415. "type": "zip",
  6416. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6417. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6418. "shasum": ""
  6419. },
  6420. "require": {
  6421. "composer-plugin-api": "^1.0",
  6422. "composer/installers": "^1.0"
  6423. },
  6424. "type": "composer-plugin",
  6425. "extra": {
  6426. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  6427. },
  6428. "autoload": {
  6429. "psr-4": {
  6430. "OomphInc\\ComposerInstallersExtender\\": "src/"
  6431. }
  6432. },
  6433. "notification-url": "https://packagist.org/downloads/",
  6434. "license": [
  6435. "MIT"
  6436. ],
  6437. "authors": [
  6438. {
  6439. "name": "Stephen Beemsterboer",
  6440. "email": "stephen@oomphinc.com",
  6441. "homepage": "https://github.com/balbuf"
  6442. }
  6443. ],
  6444. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  6445. "homepage": "http://www.oomphinc.com/",
  6446. "time": "2017-03-31T16:57:39+00:00"
  6447. },
  6448. {
  6449. "name": "paragonie/random_compat",
  6450. "version": "v2.0.18",
  6451. "source": {
  6452. "type": "git",
  6453. "url": "https://github.com/paragonie/random_compat.git",
  6454. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  6455. },
  6456. "dist": {
  6457. "type": "zip",
  6458. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  6459. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  6460. "shasum": ""
  6461. },
  6462. "require": {
  6463. "php": ">=5.2.0"
  6464. },
  6465. "require-dev": {
  6466. "phpunit/phpunit": "4.*|5.*"
  6467. },
  6468. "suggest": {
  6469. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6470. },
  6471. "type": "library",
  6472. "autoload": {
  6473. "files": [
  6474. "lib/random.php"
  6475. ]
  6476. },
  6477. "notification-url": "https://packagist.org/downloads/",
  6478. "license": [
  6479. "MIT"
  6480. ],
  6481. "authors": [
  6482. {
  6483. "name": "Paragon Initiative Enterprises",
  6484. "email": "security@paragonie.com",
  6485. "homepage": "https://paragonie.com"
  6486. }
  6487. ],
  6488. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6489. "keywords": [
  6490. "csprng",
  6491. "polyfill",
  6492. "pseudorandom",
  6493. "random"
  6494. ],
  6495. "time": "2019-01-03T20:59:08+00:00"
  6496. },
  6497. {
  6498. "name": "psr/container",
  6499. "version": "1.0.0",
  6500. "source": {
  6501. "type": "git",
  6502. "url": "https://github.com/php-fig/container.git",
  6503. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  6504. },
  6505. "dist": {
  6506. "type": "zip",
  6507. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6508. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6509. "shasum": ""
  6510. },
  6511. "require": {
  6512. "php": ">=5.3.0"
  6513. },
  6514. "type": "library",
  6515. "extra": {
  6516. "branch-alias": {
  6517. "dev-master": "1.0.x-dev"
  6518. }
  6519. },
  6520. "autoload": {
  6521. "psr-4": {
  6522. "Psr\\Container\\": "src/"
  6523. }
  6524. },
  6525. "notification-url": "https://packagist.org/downloads/",
  6526. "license": [
  6527. "MIT"
  6528. ],
  6529. "authors": [
  6530. {
  6531. "name": "PHP-FIG",
  6532. "homepage": "http://www.php-fig.org/"
  6533. }
  6534. ],
  6535. "description": "Common Container Interface (PHP FIG PSR-11)",
  6536. "homepage": "https://github.com/php-fig/container",
  6537. "keywords": [
  6538. "PSR-11",
  6539. "container",
  6540. "container-interface",
  6541. "container-interop",
  6542. "psr"
  6543. ],
  6544. "time": "2017-02-14T16:28:37+00:00"
  6545. },
  6546. {
  6547. "name": "psr/http-message",
  6548. "version": "1.0.1",
  6549. "source": {
  6550. "type": "git",
  6551. "url": "https://github.com/php-fig/http-message.git",
  6552. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  6553. },
  6554. "dist": {
  6555. "type": "zip",
  6556. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  6557. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  6558. "shasum": ""
  6559. },
  6560. "require": {
  6561. "php": ">=5.3.0"
  6562. },
  6563. "type": "library",
  6564. "extra": {
  6565. "branch-alias": {
  6566. "dev-master": "1.0.x-dev"
  6567. }
  6568. },
  6569. "autoload": {
  6570. "psr-4": {
  6571. "Psr\\Http\\Message\\": "src/"
  6572. }
  6573. },
  6574. "notification-url": "https://packagist.org/downloads/",
  6575. "license": [
  6576. "MIT"
  6577. ],
  6578. "authors": [
  6579. {
  6580. "name": "PHP-FIG",
  6581. "homepage": "http://www.php-fig.org/"
  6582. }
  6583. ],
  6584. "description": "Common interface for HTTP messages",
  6585. "homepage": "https://github.com/php-fig/http-message",
  6586. "keywords": [
  6587. "http",
  6588. "http-message",
  6589. "psr",
  6590. "psr-7",
  6591. "request",
  6592. "response"
  6593. ],
  6594. "time": "2016-08-06T14:39:51+00:00"
  6595. },
  6596. {
  6597. "name": "psr/log",
  6598. "version": "1.1.0",
  6599. "source": {
  6600. "type": "git",
  6601. "url": "https://github.com/php-fig/log.git",
  6602. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  6603. },
  6604. "dist": {
  6605. "type": "zip",
  6606. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  6607. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  6608. "shasum": ""
  6609. },
  6610. "require": {
  6611. "php": ">=5.3.0"
  6612. },
  6613. "type": "library",
  6614. "extra": {
  6615. "branch-alias": {
  6616. "dev-master": "1.0.x-dev"
  6617. }
  6618. },
  6619. "autoload": {
  6620. "psr-4": {
  6621. "Psr\\Log\\": "Psr/Log/"
  6622. }
  6623. },
  6624. "notification-url": "https://packagist.org/downloads/",
  6625. "license": [
  6626. "MIT"
  6627. ],
  6628. "authors": [
  6629. {
  6630. "name": "PHP-FIG",
  6631. "homepage": "http://www.php-fig.org/"
  6632. }
  6633. ],
  6634. "description": "Common interface for logging libraries",
  6635. "homepage": "https://github.com/php-fig/log",
  6636. "keywords": [
  6637. "log",
  6638. "psr",
  6639. "psr-3"
  6640. ],
  6641. "time": "2018-11-20T15:27:04+00:00"
  6642. },
  6643. {
  6644. "name": "psy/psysh",
  6645. "version": "v0.9.9",
  6646. "source": {
  6647. "type": "git",
  6648. "url": "https://github.com/bobthecow/psysh.git",
  6649. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  6650. },
  6651. "dist": {
  6652. "type": "zip",
  6653. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  6654. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  6655. "shasum": ""
  6656. },
  6657. "require": {
  6658. "dnoegel/php-xdg-base-dir": "0.1",
  6659. "ext-json": "*",
  6660. "ext-tokenizer": "*",
  6661. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  6662. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  6663. "php": ">=5.4.0",
  6664. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  6665. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  6666. },
  6667. "require-dev": {
  6668. "bamarni/composer-bin-plugin": "^1.2",
  6669. "hoa/console": "~2.15|~3.16",
  6670. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  6671. },
  6672. "suggest": {
  6673. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6674. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6675. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6676. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  6677. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  6678. },
  6679. "bin": [
  6680. "bin/psysh"
  6681. ],
  6682. "type": "library",
  6683. "extra": {
  6684. "branch-alias": {
  6685. "dev-develop": "0.9.x-dev"
  6686. }
  6687. },
  6688. "autoload": {
  6689. "files": [
  6690. "src/functions.php"
  6691. ],
  6692. "psr-4": {
  6693. "Psy\\": "src/"
  6694. }
  6695. },
  6696. "notification-url": "https://packagist.org/downloads/",
  6697. "license": [
  6698. "MIT"
  6699. ],
  6700. "authors": [
  6701. {
  6702. "name": "Justin Hileman",
  6703. "email": "justin@justinhileman.info",
  6704. "homepage": "http://justinhileman.com"
  6705. }
  6706. ],
  6707. "description": "An interactive shell for modern PHP.",
  6708. "homepage": "http://psysh.org",
  6709. "keywords": [
  6710. "REPL",
  6711. "console",
  6712. "interactive",
  6713. "shell"
  6714. ],
  6715. "time": "2018-10-13T15:16:03+00:00"
  6716. },
  6717. {
  6718. "name": "ralouphie/getallheaders",
  6719. "version": "2.0.5",
  6720. "source": {
  6721. "type": "git",
  6722. "url": "https://github.com/ralouphie/getallheaders.git",
  6723. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  6724. },
  6725. "dist": {
  6726. "type": "zip",
  6727. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  6728. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  6729. "shasum": ""
  6730. },
  6731. "require": {
  6732. "php": ">=5.3"
  6733. },
  6734. "require-dev": {
  6735. "phpunit/phpunit": "~3.7.0",
  6736. "satooshi/php-coveralls": ">=1.0"
  6737. },
  6738. "type": "library",
  6739. "autoload": {
  6740. "files": [
  6741. "src/getallheaders.php"
  6742. ]
  6743. },
  6744. "notification-url": "https://packagist.org/downloads/",
  6745. "license": [
  6746. "MIT"
  6747. ],
  6748. "authors": [
  6749. {
  6750. "name": "Ralph Khattar",
  6751. "email": "ralph.khattar@gmail.com"
  6752. }
  6753. ],
  6754. "description": "A polyfill for getallheaders.",
  6755. "time": "2016-02-11T07:05:27+00:00"
  6756. },
  6757. {
  6758. "name": "stack/builder",
  6759. "version": "v1.0.5",
  6760. "source": {
  6761. "type": "git",
  6762. "url": "https://github.com/stackphp/builder.git",
  6763. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  6764. },
  6765. "dist": {
  6766. "type": "zip",
  6767. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  6768. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  6769. "shasum": ""
  6770. },
  6771. "require": {
  6772. "php": ">=5.3.0",
  6773. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  6774. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  6775. },
  6776. "require-dev": {
  6777. "silex/silex": "~1.0"
  6778. },
  6779. "type": "library",
  6780. "extra": {
  6781. "branch-alias": {
  6782. "dev-master": "1.0-dev"
  6783. }
  6784. },
  6785. "autoload": {
  6786. "psr-0": {
  6787. "Stack": "src"
  6788. }
  6789. },
  6790. "notification-url": "https://packagist.org/downloads/",
  6791. "license": [
  6792. "MIT"
  6793. ],
  6794. "authors": [
  6795. {
  6796. "name": "Igor Wiedler",
  6797. "email": "igor@wiedler.ch"
  6798. }
  6799. ],
  6800. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  6801. "keywords": [
  6802. "stack"
  6803. ],
  6804. "time": "2017-11-18T14:57:29+00:00"
  6805. },
  6806. {
  6807. "name": "stecman/symfony-console-completion",
  6808. "version": "0.10.0",
  6809. "source": {
  6810. "type": "git",
  6811. "url": "https://github.com/stecman/symfony-console-completion.git",
  6812. "reference": "bc095febf00aa42ace233b344d4561071d7c912b"
  6813. },
  6814. "dist": {
  6815. "type": "zip",
  6816. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/bc095febf00aa42ace233b344d4561071d7c912b",
  6817. "reference": "bc095febf00aa42ace233b344d4561071d7c912b",
  6818. "shasum": ""
  6819. },
  6820. "require": {
  6821. "php": ">=5.3.2",
  6822. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  6823. },
  6824. "require-dev": {
  6825. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  6826. },
  6827. "type": "library",
  6828. "extra": {
  6829. "branch-alias": {
  6830. "dev-master": "0.6.x-dev"
  6831. }
  6832. },
  6833. "autoload": {
  6834. "psr-4": {
  6835. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  6836. }
  6837. },
  6838. "notification-url": "https://packagist.org/downloads/",
  6839. "license": [
  6840. "MIT"
  6841. ],
  6842. "authors": [
  6843. {
  6844. "name": "Stephen Holdaway",
  6845. "email": "stephen@stecman.co.nz"
  6846. }
  6847. ],
  6848. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  6849. "time": "2019-04-26T12:14:26+00:00"
  6850. },
  6851. {
  6852. "name": "symfony-cmf/routing",
  6853. "version": "1.4.1",
  6854. "source": {
  6855. "type": "git",
  6856. "url": "https://github.com/symfony-cmf/routing.git",
  6857. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  6858. },
  6859. "dist": {
  6860. "type": "zip",
  6861. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  6862. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  6863. "shasum": ""
  6864. },
  6865. "require": {
  6866. "php": "^5.3.9|^7.0",
  6867. "psr/log": "1.*",
  6868. "symfony/http-kernel": "^2.2|3.*",
  6869. "symfony/routing": "^2.2|3.*"
  6870. },
  6871. "require-dev": {
  6872. "friendsofsymfony/jsrouting-bundle": "^1.1",
  6873. "symfony-cmf/testing": "^1.3",
  6874. "symfony/config": "^2.2|3.*",
  6875. "symfony/dependency-injection": "^2.0.5|3.*",
  6876. "symfony/event-dispatcher": "^2.1|3.*"
  6877. },
  6878. "suggest": {
  6879. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  6880. },
  6881. "type": "library",
  6882. "extra": {
  6883. "branch-alias": {
  6884. "dev-master": "1.4-dev"
  6885. }
  6886. },
  6887. "autoload": {
  6888. "psr-4": {
  6889. "Symfony\\Cmf\\Component\\Routing\\": ""
  6890. }
  6891. },
  6892. "notification-url": "https://packagist.org/downloads/",
  6893. "license": [
  6894. "MIT"
  6895. ],
  6896. "authors": [
  6897. {
  6898. "name": "Symfony CMF Community",
  6899. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  6900. }
  6901. ],
  6902. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  6903. "homepage": "http://cmf.symfony.com",
  6904. "keywords": [
  6905. "database",
  6906. "routing"
  6907. ],
  6908. "time": "2017-05-09T08:10:41+00:00"
  6909. },
  6910. {
  6911. "name": "symfony/class-loader",
  6912. "version": "v3.4.26",
  6913. "source": {
  6914. "type": "git",
  6915. "url": "https://github.com/symfony/class-loader.git",
  6916. "reference": "4459eef5298dedfb69f771186a580062b8516497"
  6917. },
  6918. "dist": {
  6919. "type": "zip",
  6920. "url": "https://api.github.com/repos/symfony/class-loader/zipball/4459eef5298dedfb69f771186a580062b8516497",
  6921. "reference": "4459eef5298dedfb69f771186a580062b8516497",
  6922. "shasum": ""
  6923. },
  6924. "require": {
  6925. "php": "^5.5.9|>=7.0.8"
  6926. },
  6927. "require-dev": {
  6928. "symfony/finder": "~2.8|~3.0|~4.0",
  6929. "symfony/polyfill-apcu": "~1.1"
  6930. },
  6931. "suggest": {
  6932. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  6933. },
  6934. "type": "library",
  6935. "extra": {
  6936. "branch-alias": {
  6937. "dev-master": "3.4-dev"
  6938. }
  6939. },
  6940. "autoload": {
  6941. "psr-4": {
  6942. "Symfony\\Component\\ClassLoader\\": ""
  6943. },
  6944. "exclude-from-classmap": [
  6945. "/Tests/"
  6946. ]
  6947. },
  6948. "notification-url": "https://packagist.org/downloads/",
  6949. "license": [
  6950. "MIT"
  6951. ],
  6952. "authors": [
  6953. {
  6954. "name": "Fabien Potencier",
  6955. "email": "fabien@symfony.com"
  6956. },
  6957. {
  6958. "name": "Symfony Community",
  6959. "homepage": "https://symfony.com/contributors"
  6960. }
  6961. ],
  6962. "description": "Symfony ClassLoader Component",
  6963. "homepage": "https://symfony.com",
  6964. "time": "2019-01-16T09:39:14+00:00"
  6965. },
  6966. {
  6967. "name": "symfony/config",
  6968. "version": "v3.4.26",
  6969. "source": {
  6970. "type": "git",
  6971. "url": "https://github.com/symfony/config.git",
  6972. "reference": "177a276c01575253c95cefe0866e3d1b57637fe0"
  6973. },
  6974. "dist": {
  6975. "type": "zip",
  6976. "url": "https://api.github.com/repos/symfony/config/zipball/177a276c01575253c95cefe0866e3d1b57637fe0",
  6977. "reference": "177a276c01575253c95cefe0866e3d1b57637fe0",
  6978. "shasum": ""
  6979. },
  6980. "require": {
  6981. "php": "^5.5.9|>=7.0.8",
  6982. "symfony/filesystem": "~2.8|~3.0|~4.0",
  6983. "symfony/polyfill-ctype": "~1.8"
  6984. },
  6985. "conflict": {
  6986. "symfony/dependency-injection": "<3.3",
  6987. "symfony/finder": "<3.3"
  6988. },
  6989. "require-dev": {
  6990. "symfony/dependency-injection": "~3.3|~4.0",
  6991. "symfony/event-dispatcher": "~3.3|~4.0",
  6992. "symfony/finder": "~3.3|~4.0",
  6993. "symfony/yaml": "~3.0|~4.0"
  6994. },
  6995. "suggest": {
  6996. "symfony/yaml": "To use the yaml reference dumper"
  6997. },
  6998. "type": "library",
  6999. "extra": {
  7000. "branch-alias": {
  7001. "dev-master": "3.4-dev"
  7002. }
  7003. },
  7004. "autoload": {
  7005. "psr-4": {
  7006. "Symfony\\Component\\Config\\": ""
  7007. },
  7008. "exclude-from-classmap": [
  7009. "/Tests/"
  7010. ]
  7011. },
  7012. "notification-url": "https://packagist.org/downloads/",
  7013. "license": [
  7014. "MIT"
  7015. ],
  7016. "authors": [
  7017. {
  7018. "name": "Fabien Potencier",
  7019. "email": "fabien@symfony.com"
  7020. },
  7021. {
  7022. "name": "Symfony Community",
  7023. "homepage": "https://symfony.com/contributors"
  7024. }
  7025. ],
  7026. "description": "Symfony Config Component",
  7027. "homepage": "https://symfony.com",
  7028. "time": "2019-02-23T15:06:07+00:00"
  7029. },
  7030. {
  7031. "name": "symfony/console",
  7032. "version": "v3.4.26",
  7033. "source": {
  7034. "type": "git",
  7035. "url": "https://github.com/symfony/console.git",
  7036. "reference": "15a9104356436cb26e08adab97706654799d31d8"
  7037. },
  7038. "dist": {
  7039. "type": "zip",
  7040. "url": "https://api.github.com/repos/symfony/console/zipball/15a9104356436cb26e08adab97706654799d31d8",
  7041. "reference": "15a9104356436cb26e08adab97706654799d31d8",
  7042. "shasum": ""
  7043. },
  7044. "require": {
  7045. "php": "^5.5.9|>=7.0.8",
  7046. "symfony/debug": "~2.8|~3.0|~4.0",
  7047. "symfony/polyfill-mbstring": "~1.0"
  7048. },
  7049. "conflict": {
  7050. "symfony/dependency-injection": "<3.4",
  7051. "symfony/process": "<3.3"
  7052. },
  7053. "provide": {
  7054. "psr/log-implementation": "1.0"
  7055. },
  7056. "require-dev": {
  7057. "psr/log": "~1.0",
  7058. "symfony/config": "~3.3|~4.0",
  7059. "symfony/dependency-injection": "~3.4|~4.0",
  7060. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7061. "symfony/lock": "~3.4|~4.0",
  7062. "symfony/process": "~3.3|~4.0"
  7063. },
  7064. "suggest": {
  7065. "psr/log": "For using the console logger",
  7066. "symfony/event-dispatcher": "",
  7067. "symfony/lock": "",
  7068. "symfony/process": ""
  7069. },
  7070. "type": "library",
  7071. "extra": {
  7072. "branch-alias": {
  7073. "dev-master": "3.4-dev"
  7074. }
  7075. },
  7076. "autoload": {
  7077. "psr-4": {
  7078. "Symfony\\Component\\Console\\": ""
  7079. },
  7080. "exclude-from-classmap": [
  7081. "/Tests/"
  7082. ]
  7083. },
  7084. "notification-url": "https://packagist.org/downloads/",
  7085. "license": [
  7086. "MIT"
  7087. ],
  7088. "authors": [
  7089. {
  7090. "name": "Fabien Potencier",
  7091. "email": "fabien@symfony.com"
  7092. },
  7093. {
  7094. "name": "Symfony Community",
  7095. "homepage": "https://symfony.com/contributors"
  7096. }
  7097. ],
  7098. "description": "Symfony Console Component",
  7099. "homepage": "https://symfony.com",
  7100. "time": "2019-04-08T09:29:13+00:00"
  7101. },
  7102. {
  7103. "name": "symfony/css-selector",
  7104. "version": "v3.4.26",
  7105. "source": {
  7106. "type": "git",
  7107. "url": "https://github.com/symfony/css-selector.git",
  7108. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf"
  7109. },
  7110. "dist": {
  7111. "type": "zip",
  7112. "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  7113. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  7114. "shasum": ""
  7115. },
  7116. "require": {
  7117. "php": "^5.5.9|>=7.0.8"
  7118. },
  7119. "type": "library",
  7120. "extra": {
  7121. "branch-alias": {
  7122. "dev-master": "3.4-dev"
  7123. }
  7124. },
  7125. "autoload": {
  7126. "psr-4": {
  7127. "Symfony\\Component\\CssSelector\\": ""
  7128. },
  7129. "exclude-from-classmap": [
  7130. "/Tests/"
  7131. ]
  7132. },
  7133. "notification-url": "https://packagist.org/downloads/",
  7134. "license": [
  7135. "MIT"
  7136. ],
  7137. "authors": [
  7138. {
  7139. "name": "Jean-François Simon",
  7140. "email": "jeanfrancois.simon@sensiolabs.com"
  7141. },
  7142. {
  7143. "name": "Fabien Potencier",
  7144. "email": "fabien@symfony.com"
  7145. },
  7146. {
  7147. "name": "Symfony Community",
  7148. "homepage": "https://symfony.com/contributors"
  7149. }
  7150. ],
  7151. "description": "Symfony CssSelector Component",
  7152. "homepage": "https://symfony.com",
  7153. "time": "2019-01-16T09:39:14+00:00"
  7154. },
  7155. {
  7156. "name": "symfony/debug",
  7157. "version": "v3.4.26",
  7158. "source": {
  7159. "type": "git",
  7160. "url": "https://github.com/symfony/debug.git",
  7161. "reference": "681afbb26488903c5ac15e63734f1d8ac430c9b9"
  7162. },
  7163. "dist": {
  7164. "type": "zip",
  7165. "url": "https://api.github.com/repos/symfony/debug/zipball/681afbb26488903c5ac15e63734f1d8ac430c9b9",
  7166. "reference": "681afbb26488903c5ac15e63734f1d8ac430c9b9",
  7167. "shasum": ""
  7168. },
  7169. "require": {
  7170. "php": "^5.5.9|>=7.0.8",
  7171. "psr/log": "~1.0"
  7172. },
  7173. "conflict": {
  7174. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7175. },
  7176. "require-dev": {
  7177. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7178. },
  7179. "type": "library",
  7180. "extra": {
  7181. "branch-alias": {
  7182. "dev-master": "3.4-dev"
  7183. }
  7184. },
  7185. "autoload": {
  7186. "psr-4": {
  7187. "Symfony\\Component\\Debug\\": ""
  7188. },
  7189. "exclude-from-classmap": [
  7190. "/Tests/"
  7191. ]
  7192. },
  7193. "notification-url": "https://packagist.org/downloads/",
  7194. "license": [
  7195. "MIT"
  7196. ],
  7197. "authors": [
  7198. {
  7199. "name": "Fabien Potencier",
  7200. "email": "fabien@symfony.com"
  7201. },
  7202. {
  7203. "name": "Symfony Community",
  7204. "homepage": "https://symfony.com/contributors"
  7205. }
  7206. ],
  7207. "description": "Symfony Debug Component",
  7208. "homepage": "https://symfony.com",
  7209. "time": "2019-04-11T09:48:14+00:00"
  7210. },
  7211. {
  7212. "name": "symfony/dependency-injection",
  7213. "version": "v3.4.26",
  7214. "source": {
  7215. "type": "git",
  7216. "url": "https://github.com/symfony/dependency-injection.git",
  7217. "reference": "dee85a9148399cdb2731603802842bcfd8afe5ab"
  7218. },
  7219. "dist": {
  7220. "type": "zip",
  7221. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/dee85a9148399cdb2731603802842bcfd8afe5ab",
  7222. "reference": "dee85a9148399cdb2731603802842bcfd8afe5ab",
  7223. "shasum": ""
  7224. },
  7225. "require": {
  7226. "php": "^5.5.9|>=7.0.8",
  7227. "psr/container": "^1.0"
  7228. },
  7229. "conflict": {
  7230. "symfony/config": "<3.3.7",
  7231. "symfony/finder": "<3.3",
  7232. "symfony/proxy-manager-bridge": "<3.4",
  7233. "symfony/yaml": "<3.4"
  7234. },
  7235. "provide": {
  7236. "psr/container-implementation": "1.0"
  7237. },
  7238. "require-dev": {
  7239. "symfony/config": "~3.3|~4.0",
  7240. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7241. "symfony/yaml": "~3.4|~4.0"
  7242. },
  7243. "suggest": {
  7244. "symfony/config": "",
  7245. "symfony/expression-language": "For using expressions in service container configuration",
  7246. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7247. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7248. "symfony/yaml": ""
  7249. },
  7250. "type": "library",
  7251. "extra": {
  7252. "branch-alias": {
  7253. "dev-master": "3.4-dev"
  7254. }
  7255. },
  7256. "autoload": {
  7257. "psr-4": {
  7258. "Symfony\\Component\\DependencyInjection\\": ""
  7259. },
  7260. "exclude-from-classmap": [
  7261. "/Tests/"
  7262. ]
  7263. },
  7264. "notification-url": "https://packagist.org/downloads/",
  7265. "license": [
  7266. "MIT"
  7267. ],
  7268. "authors": [
  7269. {
  7270. "name": "Fabien Potencier",
  7271. "email": "fabien@symfony.com"
  7272. },
  7273. {
  7274. "name": "Symfony Community",
  7275. "homepage": "https://symfony.com/contributors"
  7276. }
  7277. ],
  7278. "description": "Symfony DependencyInjection Component",
  7279. "homepage": "https://symfony.com",
  7280. "time": "2019-04-16T11:13:42+00:00"
  7281. },
  7282. {
  7283. "name": "symfony/dom-crawler",
  7284. "version": "v3.4.26",
  7285. "source": {
  7286. "type": "git",
  7287. "url": "https://github.com/symfony/dom-crawler.git",
  7288. "reference": "d40023c057393fb25f7ca80af2a56ed948c45a09"
  7289. },
  7290. "dist": {
  7291. "type": "zip",
  7292. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/d40023c057393fb25f7ca80af2a56ed948c45a09",
  7293. "reference": "d40023c057393fb25f7ca80af2a56ed948c45a09",
  7294. "shasum": ""
  7295. },
  7296. "require": {
  7297. "php": "^5.5.9|>=7.0.8",
  7298. "symfony/polyfill-ctype": "~1.8",
  7299. "symfony/polyfill-mbstring": "~1.0"
  7300. },
  7301. "require-dev": {
  7302. "symfony/css-selector": "~2.8|~3.0|~4.0"
  7303. },
  7304. "suggest": {
  7305. "symfony/css-selector": ""
  7306. },
  7307. "type": "library",
  7308. "extra": {
  7309. "branch-alias": {
  7310. "dev-master": "3.4-dev"
  7311. }
  7312. },
  7313. "autoload": {
  7314. "psr-4": {
  7315. "Symfony\\Component\\DomCrawler\\": ""
  7316. },
  7317. "exclude-from-classmap": [
  7318. "/Tests/"
  7319. ]
  7320. },
  7321. "notification-url": "https://packagist.org/downloads/",
  7322. "license": [
  7323. "MIT"
  7324. ],
  7325. "authors": [
  7326. {
  7327. "name": "Fabien Potencier",
  7328. "email": "fabien@symfony.com"
  7329. },
  7330. {
  7331. "name": "Symfony Community",
  7332. "homepage": "https://symfony.com/contributors"
  7333. }
  7334. ],
  7335. "description": "Symfony DomCrawler Component",
  7336. "homepage": "https://symfony.com",
  7337. "time": "2019-02-23T15:06:07+00:00"
  7338. },
  7339. {
  7340. "name": "symfony/event-dispatcher",
  7341. "version": "v3.4.26",
  7342. "source": {
  7343. "type": "git",
  7344. "url": "https://github.com/symfony/event-dispatcher.git",
  7345. "reference": "a088aafcefb4eef2520a290ed82e4374092a6dff"
  7346. },
  7347. "dist": {
  7348. "type": "zip",
  7349. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a088aafcefb4eef2520a290ed82e4374092a6dff",
  7350. "reference": "a088aafcefb4eef2520a290ed82e4374092a6dff",
  7351. "shasum": ""
  7352. },
  7353. "require": {
  7354. "php": "^5.5.9|>=7.0.8"
  7355. },
  7356. "conflict": {
  7357. "symfony/dependency-injection": "<3.3"
  7358. },
  7359. "require-dev": {
  7360. "psr/log": "~1.0",
  7361. "symfony/config": "~2.8|~3.0|~4.0",
  7362. "symfony/dependency-injection": "~3.3|~4.0",
  7363. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7364. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7365. },
  7366. "suggest": {
  7367. "symfony/dependency-injection": "",
  7368. "symfony/http-kernel": ""
  7369. },
  7370. "type": "library",
  7371. "extra": {
  7372. "branch-alias": {
  7373. "dev-master": "3.4-dev"
  7374. }
  7375. },
  7376. "autoload": {
  7377. "psr-4": {
  7378. "Symfony\\Component\\EventDispatcher\\": ""
  7379. },
  7380. "exclude-from-classmap": [
  7381. "/Tests/"
  7382. ]
  7383. },
  7384. "notification-url": "https://packagist.org/downloads/",
  7385. "license": [
  7386. "MIT"
  7387. ],
  7388. "authors": [
  7389. {
  7390. "name": "Fabien Potencier",
  7391. "email": "fabien@symfony.com"
  7392. },
  7393. {
  7394. "name": "Symfony Community",
  7395. "homepage": "https://symfony.com/contributors"
  7396. }
  7397. ],
  7398. "description": "Symfony EventDispatcher Component",
  7399. "homepage": "https://symfony.com",
  7400. "time": "2019-04-02T08:51:52+00:00"
  7401. },
  7402. {
  7403. "name": "symfony/filesystem",
  7404. "version": "v3.4.26",
  7405. "source": {
  7406. "type": "git",
  7407. "url": "https://github.com/symfony/filesystem.git",
  7408. "reference": "acf99758b1df8e9295e6b85aa69f294565c9fedb"
  7409. },
  7410. "dist": {
  7411. "type": "zip",
  7412. "url": "https://api.github.com/repos/symfony/filesystem/zipball/acf99758b1df8e9295e6b85aa69f294565c9fedb",
  7413. "reference": "acf99758b1df8e9295e6b85aa69f294565c9fedb",
  7414. "shasum": ""
  7415. },
  7416. "require": {
  7417. "php": "^5.5.9|>=7.0.8",
  7418. "symfony/polyfill-ctype": "~1.8"
  7419. },
  7420. "type": "library",
  7421. "extra": {
  7422. "branch-alias": {
  7423. "dev-master": "3.4-dev"
  7424. }
  7425. },
  7426. "autoload": {
  7427. "psr-4": {
  7428. "Symfony\\Component\\Filesystem\\": ""
  7429. },
  7430. "exclude-from-classmap": [
  7431. "/Tests/"
  7432. ]
  7433. },
  7434. "notification-url": "https://packagist.org/downloads/",
  7435. "license": [
  7436. "MIT"
  7437. ],
  7438. "authors": [
  7439. {
  7440. "name": "Fabien Potencier",
  7441. "email": "fabien@symfony.com"
  7442. },
  7443. {
  7444. "name": "Symfony Community",
  7445. "homepage": "https://symfony.com/contributors"
  7446. }
  7447. ],
  7448. "description": "Symfony Filesystem Component",
  7449. "homepage": "https://symfony.com",
  7450. "time": "2019-02-04T21:34:32+00:00"
  7451. },
  7452. {
  7453. "name": "symfony/finder",
  7454. "version": "v3.4.26",
  7455. "source": {
  7456. "type": "git",
  7457. "url": "https://github.com/symfony/finder.git",
  7458. "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98"
  7459. },
  7460. "dist": {
  7461. "type": "zip",
  7462. "url": "https://api.github.com/repos/symfony/finder/zipball/61af5ce0b34b942d414fe8f1b11950d0e9a90e98",
  7463. "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98",
  7464. "shasum": ""
  7465. },
  7466. "require": {
  7467. "php": "^5.5.9|>=7.0.8"
  7468. },
  7469. "type": "library",
  7470. "extra": {
  7471. "branch-alias": {
  7472. "dev-master": "3.4-dev"
  7473. }
  7474. },
  7475. "autoload": {
  7476. "psr-4": {
  7477. "Symfony\\Component\\Finder\\": ""
  7478. },
  7479. "exclude-from-classmap": [
  7480. "/Tests/"
  7481. ]
  7482. },
  7483. "notification-url": "https://packagist.org/downloads/",
  7484. "license": [
  7485. "MIT"
  7486. ],
  7487. "authors": [
  7488. {
  7489. "name": "Fabien Potencier",
  7490. "email": "fabien@symfony.com"
  7491. },
  7492. {
  7493. "name": "Symfony Community",
  7494. "homepage": "https://symfony.com/contributors"
  7495. }
  7496. ],
  7497. "description": "Symfony Finder Component",
  7498. "homepage": "https://symfony.com",
  7499. "time": "2019-04-02T19:54:57+00:00"
  7500. },
  7501. {
  7502. "name": "symfony/http-foundation",
  7503. "version": "v3.4.26",
  7504. "source": {
  7505. "type": "git",
  7506. "url": "https://github.com/symfony/http-foundation.git",
  7507. "reference": "90454ad44c95d75faf3507d56388056001b74baf"
  7508. },
  7509. "dist": {
  7510. "type": "zip",
  7511. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/90454ad44c95d75faf3507d56388056001b74baf",
  7512. "reference": "90454ad44c95d75faf3507d56388056001b74baf",
  7513. "shasum": ""
  7514. },
  7515. "require": {
  7516. "php": "^5.5.9|>=7.0.8",
  7517. "symfony/polyfill-mbstring": "~1.1",
  7518. "symfony/polyfill-php70": "~1.6"
  7519. },
  7520. "require-dev": {
  7521. "symfony/expression-language": "~2.8|~3.0|~4.0"
  7522. },
  7523. "type": "library",
  7524. "extra": {
  7525. "branch-alias": {
  7526. "dev-master": "3.4-dev"
  7527. }
  7528. },
  7529. "autoload": {
  7530. "psr-4": {
  7531. "Symfony\\Component\\HttpFoundation\\": ""
  7532. },
  7533. "exclude-from-classmap": [
  7534. "/Tests/"
  7535. ]
  7536. },
  7537. "notification-url": "https://packagist.org/downloads/",
  7538. "license": [
  7539. "MIT"
  7540. ],
  7541. "authors": [
  7542. {
  7543. "name": "Fabien Potencier",
  7544. "email": "fabien@symfony.com"
  7545. },
  7546. {
  7547. "name": "Symfony Community",
  7548. "homepage": "https://symfony.com/contributors"
  7549. }
  7550. ],
  7551. "description": "Symfony HttpFoundation Component",
  7552. "homepage": "https://symfony.com",
  7553. "time": "2019-04-17T14:51:18+00:00"
  7554. },
  7555. {
  7556. "name": "symfony/http-kernel",
  7557. "version": "v3.4.26",
  7558. "source": {
  7559. "type": "git",
  7560. "url": "https://github.com/symfony/http-kernel.git",
  7561. "reference": "14fa41ccd38570b5e3120a3754bbaa144a15f311"
  7562. },
  7563. "dist": {
  7564. "type": "zip",
  7565. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/14fa41ccd38570b5e3120a3754bbaa144a15f311",
  7566. "reference": "14fa41ccd38570b5e3120a3754bbaa144a15f311",
  7567. "shasum": ""
  7568. },
  7569. "require": {
  7570. "php": "^5.5.9|>=7.0.8",
  7571. "psr/log": "~1.0",
  7572. "symfony/debug": "^3.3.3|~4.0",
  7573. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7574. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  7575. "symfony/polyfill-ctype": "~1.8"
  7576. },
  7577. "conflict": {
  7578. "symfony/config": "<2.8",
  7579. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  7580. "symfony/var-dumper": "<3.3",
  7581. "twig/twig": "<1.34|<2.4,>=2"
  7582. },
  7583. "provide": {
  7584. "psr/log-implementation": "1.0"
  7585. },
  7586. "require-dev": {
  7587. "psr/cache": "~1.0",
  7588. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  7589. "symfony/class-loader": "~2.8|~3.0",
  7590. "symfony/config": "~2.8|~3.0|~4.0",
  7591. "symfony/console": "~2.8|~3.0|~4.0",
  7592. "symfony/css-selector": "~2.8|~3.0|~4.0",
  7593. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  7594. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  7595. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7596. "symfony/finder": "~2.8|~3.0|~4.0",
  7597. "symfony/process": "~2.8|~3.0|~4.0",
  7598. "symfony/routing": "~3.4|~4.0",
  7599. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  7600. "symfony/templating": "~2.8|~3.0|~4.0",
  7601. "symfony/translation": "~2.8|~3.0|~4.0",
  7602. "symfony/var-dumper": "~3.3|~4.0"
  7603. },
  7604. "suggest": {
  7605. "symfony/browser-kit": "",
  7606. "symfony/config": "",
  7607. "symfony/console": "",
  7608. "symfony/dependency-injection": "",
  7609. "symfony/finder": "",
  7610. "symfony/var-dumper": ""
  7611. },
  7612. "type": "library",
  7613. "extra": {
  7614. "branch-alias": {
  7615. "dev-master": "3.4-dev"
  7616. }
  7617. },
  7618. "autoload": {
  7619. "psr-4": {
  7620. "Symfony\\Component\\HttpKernel\\": ""
  7621. },
  7622. "exclude-from-classmap": [
  7623. "/Tests/"
  7624. ]
  7625. },
  7626. "notification-url": "https://packagist.org/downloads/",
  7627. "license": [
  7628. "MIT"
  7629. ],
  7630. "authors": [
  7631. {
  7632. "name": "Fabien Potencier",
  7633. "email": "fabien@symfony.com"
  7634. },
  7635. {
  7636. "name": "Symfony Community",
  7637. "homepage": "https://symfony.com/contributors"
  7638. }
  7639. ],
  7640. "description": "Symfony HttpKernel Component",
  7641. "homepage": "https://symfony.com",
  7642. "time": "2019-04-17T15:57:07+00:00"
  7643. },
  7644. {
  7645. "name": "symfony/polyfill-ctype",
  7646. "version": "v1.11.0",
  7647. "source": {
  7648. "type": "git",
  7649. "url": "https://github.com/symfony/polyfill-ctype.git",
  7650. "reference": "82ebae02209c21113908c229e9883c419720738a"
  7651. },
  7652. "dist": {
  7653. "type": "zip",
  7654. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  7655. "reference": "82ebae02209c21113908c229e9883c419720738a",
  7656. "shasum": ""
  7657. },
  7658. "require": {
  7659. "php": ">=5.3.3"
  7660. },
  7661. "suggest": {
  7662. "ext-ctype": "For best performance"
  7663. },
  7664. "type": "library",
  7665. "extra": {
  7666. "branch-alias": {
  7667. "dev-master": "1.11-dev"
  7668. }
  7669. },
  7670. "autoload": {
  7671. "psr-4": {
  7672. "Symfony\\Polyfill\\Ctype\\": ""
  7673. },
  7674. "files": [
  7675. "bootstrap.php"
  7676. ]
  7677. },
  7678. "notification-url": "https://packagist.org/downloads/",
  7679. "license": [
  7680. "MIT"
  7681. ],
  7682. "authors": [
  7683. {
  7684. "name": "Symfony Community",
  7685. "homepage": "https://symfony.com/contributors"
  7686. },
  7687. {
  7688. "name": "Gert de Pagter",
  7689. "email": "BackEndTea@gmail.com"
  7690. }
  7691. ],
  7692. "description": "Symfony polyfill for ctype functions",
  7693. "homepage": "https://symfony.com",
  7694. "keywords": [
  7695. "compatibility",
  7696. "ctype",
  7697. "polyfill",
  7698. "portable"
  7699. ],
  7700. "time": "2019-02-06T07:57:58+00:00"
  7701. },
  7702. {
  7703. "name": "symfony/polyfill-iconv",
  7704. "version": "v1.11.0",
  7705. "source": {
  7706. "type": "git",
  7707. "url": "https://github.com/symfony/polyfill-iconv.git",
  7708. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7"
  7709. },
  7710. "dist": {
  7711. "type": "zip",
  7712. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  7713. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  7714. "shasum": ""
  7715. },
  7716. "require": {
  7717. "php": ">=5.3.3"
  7718. },
  7719. "suggest": {
  7720. "ext-iconv": "For best performance"
  7721. },
  7722. "type": "library",
  7723. "extra": {
  7724. "branch-alias": {
  7725. "dev-master": "1.11-dev"
  7726. }
  7727. },
  7728. "autoload": {
  7729. "psr-4": {
  7730. "Symfony\\Polyfill\\Iconv\\": ""
  7731. },
  7732. "files": [
  7733. "bootstrap.php"
  7734. ]
  7735. },
  7736. "notification-url": "https://packagist.org/downloads/",
  7737. "license": [
  7738. "MIT"
  7739. ],
  7740. "authors": [
  7741. {
  7742. "name": "Nicolas Grekas",
  7743. "email": "p@tchwork.com"
  7744. },
  7745. {
  7746. "name": "Symfony Community",
  7747. "homepage": "https://symfony.com/contributors"
  7748. }
  7749. ],
  7750. "description": "Symfony polyfill for the Iconv extension",
  7751. "homepage": "https://symfony.com",
  7752. "keywords": [
  7753. "compatibility",
  7754. "iconv",
  7755. "polyfill",
  7756. "portable",
  7757. "shim"
  7758. ],
  7759. "time": "2019-02-06T07:57:58+00:00"
  7760. },
  7761. {
  7762. "name": "symfony/polyfill-mbstring",
  7763. "version": "v1.11.0",
  7764. "source": {
  7765. "type": "git",
  7766. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7767. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  7768. },
  7769. "dist": {
  7770. "type": "zip",
  7771. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  7772. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  7773. "shasum": ""
  7774. },
  7775. "require": {
  7776. "php": ">=5.3.3"
  7777. },
  7778. "suggest": {
  7779. "ext-mbstring": "For best performance"
  7780. },
  7781. "type": "library",
  7782. "extra": {
  7783. "branch-alias": {
  7784. "dev-master": "1.11-dev"
  7785. }
  7786. },
  7787. "autoload": {
  7788. "psr-4": {
  7789. "Symfony\\Polyfill\\Mbstring\\": ""
  7790. },
  7791. "files": [
  7792. "bootstrap.php"
  7793. ]
  7794. },
  7795. "notification-url": "https://packagist.org/downloads/",
  7796. "license": [
  7797. "MIT"
  7798. ],
  7799. "authors": [
  7800. {
  7801. "name": "Nicolas Grekas",
  7802. "email": "p@tchwork.com"
  7803. },
  7804. {
  7805. "name": "Symfony Community",
  7806. "homepage": "https://symfony.com/contributors"
  7807. }
  7808. ],
  7809. "description": "Symfony polyfill for the Mbstring extension",
  7810. "homepage": "https://symfony.com",
  7811. "keywords": [
  7812. "compatibility",
  7813. "mbstring",
  7814. "polyfill",
  7815. "portable",
  7816. "shim"
  7817. ],
  7818. "time": "2019-02-06T07:57:58+00:00"
  7819. },
  7820. {
  7821. "name": "symfony/polyfill-php70",
  7822. "version": "v1.11.0",
  7823. "source": {
  7824. "type": "git",
  7825. "url": "https://github.com/symfony/polyfill-php70.git",
  7826. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  7827. },
  7828. "dist": {
  7829. "type": "zip",
  7830. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  7831. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  7832. "shasum": ""
  7833. },
  7834. "require": {
  7835. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  7836. "php": ">=5.3.3"
  7837. },
  7838. "type": "library",
  7839. "extra": {
  7840. "branch-alias": {
  7841. "dev-master": "1.11-dev"
  7842. }
  7843. },
  7844. "autoload": {
  7845. "psr-4": {
  7846. "Symfony\\Polyfill\\Php70\\": ""
  7847. },
  7848. "files": [
  7849. "bootstrap.php"
  7850. ],
  7851. "classmap": [
  7852. "Resources/stubs"
  7853. ]
  7854. },
  7855. "notification-url": "https://packagist.org/downloads/",
  7856. "license": [
  7857. "MIT"
  7858. ],
  7859. "authors": [
  7860. {
  7861. "name": "Nicolas Grekas",
  7862. "email": "p@tchwork.com"
  7863. },
  7864. {
  7865. "name": "Symfony Community",
  7866. "homepage": "https://symfony.com/contributors"
  7867. }
  7868. ],
  7869. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  7870. "homepage": "https://symfony.com",
  7871. "keywords": [
  7872. "compatibility",
  7873. "polyfill",
  7874. "portable",
  7875. "shim"
  7876. ],
  7877. "time": "2019-02-06T07:57:58+00:00"
  7878. },
  7879. {
  7880. "name": "symfony/process",
  7881. "version": "v3.4.26",
  7882. "source": {
  7883. "type": "git",
  7884. "url": "https://github.com/symfony/process.git",
  7885. "reference": "a9c4dfbf653023b668c282e4e02609d131f4057a"
  7886. },
  7887. "dist": {
  7888. "type": "zip",
  7889. "url": "https://api.github.com/repos/symfony/process/zipball/a9c4dfbf653023b668c282e4e02609d131f4057a",
  7890. "reference": "a9c4dfbf653023b668c282e4e02609d131f4057a",
  7891. "shasum": ""
  7892. },
  7893. "require": {
  7894. "php": "^5.5.9|>=7.0.8"
  7895. },
  7896. "type": "library",
  7897. "extra": {
  7898. "branch-alias": {
  7899. "dev-master": "3.4-dev"
  7900. }
  7901. },
  7902. "autoload": {
  7903. "psr-4": {
  7904. "Symfony\\Component\\Process\\": ""
  7905. },
  7906. "exclude-from-classmap": [
  7907. "/Tests/"
  7908. ]
  7909. },
  7910. "notification-url": "https://packagist.org/downloads/",
  7911. "license": [
  7912. "MIT"
  7913. ],
  7914. "authors": [
  7915. {
  7916. "name": "Fabien Potencier",
  7917. "email": "fabien@symfony.com"
  7918. },
  7919. {
  7920. "name": "Symfony Community",
  7921. "homepage": "https://symfony.com/contributors"
  7922. }
  7923. ],
  7924. "description": "Symfony Process Component",
  7925. "homepage": "https://symfony.com",
  7926. "time": "2019-04-08T16:15:54+00:00"
  7927. },
  7928. {
  7929. "name": "symfony/psr-http-message-bridge",
  7930. "version": "v1.1.2",
  7931. "source": {
  7932. "type": "git",
  7933. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7934. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  7935. },
  7936. "dist": {
  7937. "type": "zip",
  7938. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  7939. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  7940. "shasum": ""
  7941. },
  7942. "require": {
  7943. "php": "^5.3.3 || ^7.0",
  7944. "psr/http-message": "^1.0",
  7945. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  7946. },
  7947. "require-dev": {
  7948. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  7949. },
  7950. "suggest": {
  7951. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7952. },
  7953. "type": "symfony-bridge",
  7954. "extra": {
  7955. "branch-alias": {
  7956. "dev-master": "1.1-dev"
  7957. }
  7958. },
  7959. "autoload": {
  7960. "psr-4": {
  7961. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7962. },
  7963. "exclude-from-classmap": [
  7964. "/Tests/"
  7965. ]
  7966. },
  7967. "notification-url": "https://packagist.org/downloads/",
  7968. "license": [
  7969. "MIT"
  7970. ],
  7971. "authors": [
  7972. {
  7973. "name": "Symfony Community",
  7974. "homepage": "http://symfony.com/contributors"
  7975. },
  7976. {
  7977. "name": "Fabien Potencier",
  7978. "email": "fabien@symfony.com"
  7979. }
  7980. ],
  7981. "description": "PSR HTTP message bridge",
  7982. "homepage": "http://symfony.com",
  7983. "keywords": [
  7984. "http",
  7985. "http-message",
  7986. "psr-17",
  7987. "psr-7"
  7988. ],
  7989. "time": "2019-04-03T17:09:40+00:00"
  7990. },
  7991. {
  7992. "name": "symfony/routing",
  7993. "version": "v3.4.26",
  7994. "source": {
  7995. "type": "git",
  7996. "url": "https://github.com/symfony/routing.git",
  7997. "reference": "ff11aac46d6cb8a65f2855687bb9a1ac9d860eec"
  7998. },
  7999. "dist": {
  8000. "type": "zip",
  8001. "url": "https://api.github.com/repos/symfony/routing/zipball/ff11aac46d6cb8a65f2855687bb9a1ac9d860eec",
  8002. "reference": "ff11aac46d6cb8a65f2855687bb9a1ac9d860eec",
  8003. "shasum": ""
  8004. },
  8005. "require": {
  8006. "php": "^5.5.9|>=7.0.8"
  8007. },
  8008. "conflict": {
  8009. "symfony/config": "<3.3.1",
  8010. "symfony/dependency-injection": "<3.3",
  8011. "symfony/yaml": "<3.4"
  8012. },
  8013. "require-dev": {
  8014. "doctrine/annotations": "~1.0",
  8015. "psr/log": "~1.0",
  8016. "symfony/config": "^3.3.1|~4.0",
  8017. "symfony/dependency-injection": "~3.3|~4.0",
  8018. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8019. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8020. "symfony/yaml": "~3.4|~4.0"
  8021. },
  8022. "suggest": {
  8023. "doctrine/annotations": "For using the annotation loader",
  8024. "symfony/config": "For using the all-in-one router or any loader",
  8025. "symfony/expression-language": "For using expression matching",
  8026. "symfony/http-foundation": "For using a Symfony Request object",
  8027. "symfony/yaml": "For using the YAML loader"
  8028. },
  8029. "type": "library",
  8030. "extra": {
  8031. "branch-alias": {
  8032. "dev-master": "3.4-dev"
  8033. }
  8034. },
  8035. "autoload": {
  8036. "psr-4": {
  8037. "Symfony\\Component\\Routing\\": ""
  8038. },
  8039. "exclude-from-classmap": [
  8040. "/Tests/"
  8041. ]
  8042. },
  8043. "notification-url": "https://packagist.org/downloads/",
  8044. "license": [
  8045. "MIT"
  8046. ],
  8047. "authors": [
  8048. {
  8049. "name": "Fabien Potencier",
  8050. "email": "fabien@symfony.com"
  8051. },
  8052. {
  8053. "name": "Symfony Community",
  8054. "homepage": "https://symfony.com/contributors"
  8055. }
  8056. ],
  8057. "description": "Symfony Routing Component",
  8058. "homepage": "https://symfony.com",
  8059. "keywords": [
  8060. "router",
  8061. "routing",
  8062. "uri",
  8063. "url"
  8064. ],
  8065. "time": "2019-03-29T21:58:42+00:00"
  8066. },
  8067. {
  8068. "name": "symfony/serializer",
  8069. "version": "v3.4.26",
  8070. "source": {
  8071. "type": "git",
  8072. "url": "https://github.com/symfony/serializer.git",
  8073. "reference": "14b3221cc41dcfef404205f0060cda873f43a534"
  8074. },
  8075. "dist": {
  8076. "type": "zip",
  8077. "url": "https://api.github.com/repos/symfony/serializer/zipball/14b3221cc41dcfef404205f0060cda873f43a534",
  8078. "reference": "14b3221cc41dcfef404205f0060cda873f43a534",
  8079. "shasum": ""
  8080. },
  8081. "require": {
  8082. "php": "^5.5.9|>=7.0.8",
  8083. "symfony/polyfill-ctype": "~1.8"
  8084. },
  8085. "conflict": {
  8086. "phpdocumentor/type-resolver": "<0.2.1",
  8087. "symfony/dependency-injection": "<3.2",
  8088. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  8089. "symfony/property-info": "<3.1",
  8090. "symfony/yaml": "<3.4"
  8091. },
  8092. "require-dev": {
  8093. "doctrine/annotations": "~1.0",
  8094. "doctrine/cache": "~1.0",
  8095. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  8096. "symfony/cache": "~3.1|~4.0",
  8097. "symfony/config": "~2.8|~3.0|~4.0",
  8098. "symfony/dependency-injection": "~3.2|~4.0",
  8099. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8100. "symfony/property-access": "~2.8|~3.0|~4.0",
  8101. "symfony/property-info": "~3.1|~4.0",
  8102. "symfony/yaml": "~3.4|~4.0"
  8103. },
  8104. "suggest": {
  8105. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8106. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8107. "psr/cache-implementation": "For using the metadata cache.",
  8108. "symfony/config": "For using the XML mapping loader.",
  8109. "symfony/http-foundation": "To use the DataUriNormalizer.",
  8110. "symfony/property-access": "For using the ObjectNormalizer.",
  8111. "symfony/property-info": "To deserialize relations.",
  8112. "symfony/yaml": "For using the default YAML mapping loader."
  8113. },
  8114. "type": "library",
  8115. "extra": {
  8116. "branch-alias": {
  8117. "dev-master": "3.4-dev"
  8118. }
  8119. },
  8120. "autoload": {
  8121. "psr-4": {
  8122. "Symfony\\Component\\Serializer\\": ""
  8123. },
  8124. "exclude-from-classmap": [
  8125. "/Tests/"
  8126. ]
  8127. },
  8128. "notification-url": "https://packagist.org/downloads/",
  8129. "license": [
  8130. "MIT"
  8131. ],
  8132. "authors": [
  8133. {
  8134. "name": "Fabien Potencier",
  8135. "email": "fabien@symfony.com"
  8136. },
  8137. {
  8138. "name": "Symfony Community",
  8139. "homepage": "https://symfony.com/contributors"
  8140. }
  8141. ],
  8142. "description": "Symfony Serializer Component",
  8143. "homepage": "https://symfony.com",
  8144. "time": "2019-04-11T05:44:34+00:00"
  8145. },
  8146. {
  8147. "name": "symfony/translation",
  8148. "version": "v3.4.26",
  8149. "source": {
  8150. "type": "git",
  8151. "url": "https://github.com/symfony/translation.git",
  8152. "reference": "aae26f143da71adc8707eb489f1dc86aef7d376b"
  8153. },
  8154. "dist": {
  8155. "type": "zip",
  8156. "url": "https://api.github.com/repos/symfony/translation/zipball/aae26f143da71adc8707eb489f1dc86aef7d376b",
  8157. "reference": "aae26f143da71adc8707eb489f1dc86aef7d376b",
  8158. "shasum": ""
  8159. },
  8160. "require": {
  8161. "php": "^5.5.9|>=7.0.8",
  8162. "symfony/polyfill-mbstring": "~1.0"
  8163. },
  8164. "conflict": {
  8165. "symfony/config": "<2.8",
  8166. "symfony/dependency-injection": "<3.4",
  8167. "symfony/yaml": "<3.4"
  8168. },
  8169. "require-dev": {
  8170. "psr/log": "~1.0",
  8171. "symfony/config": "~2.8|~3.0|~4.0",
  8172. "symfony/dependency-injection": "~3.4|~4.0",
  8173. "symfony/finder": "~2.8|~3.0|~4.0",
  8174. "symfony/http-kernel": "~3.4|~4.0",
  8175. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8176. "symfony/var-dumper": "~3.4|~4.0",
  8177. "symfony/yaml": "~3.4|~4.0"
  8178. },
  8179. "suggest": {
  8180. "psr/log-implementation": "To use logging capability in translator",
  8181. "symfony/config": "",
  8182. "symfony/yaml": ""
  8183. },
  8184. "type": "library",
  8185. "extra": {
  8186. "branch-alias": {
  8187. "dev-master": "3.4-dev"
  8188. }
  8189. },
  8190. "autoload": {
  8191. "psr-4": {
  8192. "Symfony\\Component\\Translation\\": ""
  8193. },
  8194. "exclude-from-classmap": [
  8195. "/Tests/"
  8196. ]
  8197. },
  8198. "notification-url": "https://packagist.org/downloads/",
  8199. "license": [
  8200. "MIT"
  8201. ],
  8202. "authors": [
  8203. {
  8204. "name": "Fabien Potencier",
  8205. "email": "fabien@symfony.com"
  8206. },
  8207. {
  8208. "name": "Symfony Community",
  8209. "homepage": "https://symfony.com/contributors"
  8210. }
  8211. ],
  8212. "description": "Symfony Translation Component",
  8213. "homepage": "https://symfony.com",
  8214. "time": "2019-04-10T16:00:48+00:00"
  8215. },
  8216. {
  8217. "name": "symfony/validator",
  8218. "version": "v3.4.26",
  8219. "source": {
  8220. "type": "git",
  8221. "url": "https://github.com/symfony/validator.git",
  8222. "reference": "83da5259779aaf9dde220130e62b785f74e2ac49"
  8223. },
  8224. "dist": {
  8225. "type": "zip",
  8226. "url": "https://api.github.com/repos/symfony/validator/zipball/83da5259779aaf9dde220130e62b785f74e2ac49",
  8227. "reference": "83da5259779aaf9dde220130e62b785f74e2ac49",
  8228. "shasum": ""
  8229. },
  8230. "require": {
  8231. "php": "^5.5.9|>=7.0.8",
  8232. "symfony/polyfill-ctype": "~1.8",
  8233. "symfony/polyfill-mbstring": "~1.0",
  8234. "symfony/translation": "~2.8|~3.0|~4.0"
  8235. },
  8236. "conflict": {
  8237. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8238. "symfony/dependency-injection": "<3.3",
  8239. "symfony/http-kernel": "<3.3.5",
  8240. "symfony/yaml": "<3.4"
  8241. },
  8242. "require-dev": {
  8243. "doctrine/annotations": "~1.0",
  8244. "doctrine/cache": "~1.0",
  8245. "egulias/email-validator": "^1.2.8|~2.0",
  8246. "symfony/cache": "~3.1|~4.0",
  8247. "symfony/config": "~2.8|~3.0|~4.0",
  8248. "symfony/dependency-injection": "~3.3|~4.0",
  8249. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8250. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8251. "symfony/http-kernel": "^3.3.5|~4.0",
  8252. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8253. "symfony/property-access": "~2.8|~3.0|~4.0",
  8254. "symfony/var-dumper": "~3.3|~4.0",
  8255. "symfony/yaml": "~3.4|~4.0"
  8256. },
  8257. "suggest": {
  8258. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8259. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8260. "egulias/email-validator": "Strict (RFC compliant) email validation",
  8261. "psr/cache-implementation": "For using the metadata cache.",
  8262. "symfony/config": "",
  8263. "symfony/expression-language": "For using the Expression validator",
  8264. "symfony/http-foundation": "",
  8265. "symfony/intl": "",
  8266. "symfony/property-access": "For accessing properties within comparison constraints",
  8267. "symfony/yaml": ""
  8268. },
  8269. "type": "library",
  8270. "extra": {
  8271. "branch-alias": {
  8272. "dev-master": "3.4-dev"
  8273. }
  8274. },
  8275. "autoload": {
  8276. "psr-4": {
  8277. "Symfony\\Component\\Validator\\": ""
  8278. },
  8279. "exclude-from-classmap": [
  8280. "/Tests/"
  8281. ]
  8282. },
  8283. "notification-url": "https://packagist.org/downloads/",
  8284. "license": [
  8285. "MIT"
  8286. ],
  8287. "authors": [
  8288. {
  8289. "name": "Fabien Potencier",
  8290. "email": "fabien@symfony.com"
  8291. },
  8292. {
  8293. "name": "Symfony Community",
  8294. "homepage": "https://symfony.com/contributors"
  8295. }
  8296. ],
  8297. "description": "Symfony Validator Component",
  8298. "homepage": "https://symfony.com",
  8299. "time": "2019-04-16T11:21:44+00:00"
  8300. },
  8301. {
  8302. "name": "symfony/var-dumper",
  8303. "version": "v3.4.26",
  8304. "source": {
  8305. "type": "git",
  8306. "url": "https://github.com/symfony/var-dumper.git",
  8307. "reference": "f0883812642a6d6583a9e2ae6aec4ba134436f40"
  8308. },
  8309. "dist": {
  8310. "type": "zip",
  8311. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f0883812642a6d6583a9e2ae6aec4ba134436f40",
  8312. "reference": "f0883812642a6d6583a9e2ae6aec4ba134436f40",
  8313. "shasum": ""
  8314. },
  8315. "require": {
  8316. "php": "^5.5.9|>=7.0.8",
  8317. "symfony/polyfill-mbstring": "~1.0"
  8318. },
  8319. "conflict": {
  8320. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  8321. },
  8322. "require-dev": {
  8323. "ext-iconv": "*",
  8324. "twig/twig": "~1.34|~2.4"
  8325. },
  8326. "suggest": {
  8327. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8328. "ext-intl": "To show region name in time zone dump",
  8329. "ext-symfony_debug": ""
  8330. },
  8331. "type": "library",
  8332. "extra": {
  8333. "branch-alias": {
  8334. "dev-master": "3.4-dev"
  8335. }
  8336. },
  8337. "autoload": {
  8338. "files": [
  8339. "Resources/functions/dump.php"
  8340. ],
  8341. "psr-4": {
  8342. "Symfony\\Component\\VarDumper\\": ""
  8343. },
  8344. "exclude-from-classmap": [
  8345. "/Tests/"
  8346. ]
  8347. },
  8348. "notification-url": "https://packagist.org/downloads/",
  8349. "license": [
  8350. "MIT"
  8351. ],
  8352. "authors": [
  8353. {
  8354. "name": "Nicolas Grekas",
  8355. "email": "p@tchwork.com"
  8356. },
  8357. {
  8358. "name": "Symfony Community",
  8359. "homepage": "https://symfony.com/contributors"
  8360. }
  8361. ],
  8362. "description": "Symfony mechanism for exploring and dumping PHP variables",
  8363. "homepage": "https://symfony.com",
  8364. "keywords": [
  8365. "debug",
  8366. "dump"
  8367. ],
  8368. "time": "2019-04-16T13:58:17+00:00"
  8369. },
  8370. {
  8371. "name": "symfony/yaml",
  8372. "version": "v3.4.26",
  8373. "source": {
  8374. "type": "git",
  8375. "url": "https://github.com/symfony/yaml.git",
  8376. "reference": "212a27b731e5bfb735679d1ffaac82bd6a1dc996"
  8377. },
  8378. "dist": {
  8379. "type": "zip",
  8380. "url": "https://api.github.com/repos/symfony/yaml/zipball/212a27b731e5bfb735679d1ffaac82bd6a1dc996",
  8381. "reference": "212a27b731e5bfb735679d1ffaac82bd6a1dc996",
  8382. "shasum": ""
  8383. },
  8384. "require": {
  8385. "php": "^5.5.9|>=7.0.8",
  8386. "symfony/polyfill-ctype": "~1.8"
  8387. },
  8388. "conflict": {
  8389. "symfony/console": "<3.4"
  8390. },
  8391. "require-dev": {
  8392. "symfony/console": "~3.4|~4.0"
  8393. },
  8394. "suggest": {
  8395. "symfony/console": "For validating YAML files using the lint command"
  8396. },
  8397. "type": "library",
  8398. "extra": {
  8399. "branch-alias": {
  8400. "dev-master": "3.4-dev"
  8401. }
  8402. },
  8403. "autoload": {
  8404. "psr-4": {
  8405. "Symfony\\Component\\Yaml\\": ""
  8406. },
  8407. "exclude-from-classmap": [
  8408. "/Tests/"
  8409. ]
  8410. },
  8411. "notification-url": "https://packagist.org/downloads/",
  8412. "license": [
  8413. "MIT"
  8414. ],
  8415. "authors": [
  8416. {
  8417. "name": "Fabien Potencier",
  8418. "email": "fabien@symfony.com"
  8419. },
  8420. {
  8421. "name": "Symfony Community",
  8422. "homepage": "https://symfony.com/contributors"
  8423. }
  8424. ],
  8425. "description": "Symfony Yaml Component",
  8426. "homepage": "https://symfony.com",
  8427. "time": "2019-03-25T07:48:46+00:00"
  8428. },
  8429. {
  8430. "name": "twig/twig",
  8431. "version": "v1.40.1",
  8432. "source": {
  8433. "type": "git",
  8434. "url": "https://github.com/twigphp/Twig.git",
  8435. "reference": "35889516bbd6bbe46a600c2c33b03515df4a076e"
  8436. },
  8437. "dist": {
  8438. "type": "zip",
  8439. "url": "https://api.github.com/repos/twigphp/Twig/zipball/35889516bbd6bbe46a600c2c33b03515df4a076e",
  8440. "reference": "35889516bbd6bbe46a600c2c33b03515df4a076e",
  8441. "shasum": ""
  8442. },
  8443. "require": {
  8444. "php": ">=5.4.0",
  8445. "symfony/polyfill-ctype": "^1.8"
  8446. },
  8447. "require-dev": {
  8448. "psr/container": "^1.0",
  8449. "symfony/debug": "^2.7",
  8450. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  8451. },
  8452. "type": "library",
  8453. "extra": {
  8454. "branch-alias": {
  8455. "dev-master": "1.40-dev"
  8456. }
  8457. },
  8458. "autoload": {
  8459. "psr-0": {
  8460. "Twig_": "lib/"
  8461. },
  8462. "psr-4": {
  8463. "Twig\\": "src/"
  8464. }
  8465. },
  8466. "notification-url": "https://packagist.org/downloads/",
  8467. "license": [
  8468. "BSD-3-Clause"
  8469. ],
  8470. "authors": [
  8471. {
  8472. "name": "Fabien Potencier",
  8473. "email": "fabien@symfony.com",
  8474. "homepage": "http://fabien.potencier.org",
  8475. "role": "Lead Developer"
  8476. },
  8477. {
  8478. "name": "Armin Ronacher",
  8479. "email": "armin.ronacher@active-4.com",
  8480. "role": "Project Founder"
  8481. },
  8482. {
  8483. "name": "Twig Team",
  8484. "homepage": "https://twig.symfony.com/contributors",
  8485. "role": "Contributors"
  8486. }
  8487. ],
  8488. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8489. "homepage": "https://twig.symfony.com",
  8490. "keywords": [
  8491. "templating"
  8492. ],
  8493. "time": "2019-04-29T14:12:28+00:00"
  8494. },
  8495. {
  8496. "name": "typo3/phar-stream-wrapper",
  8497. "version": "v2.1.0",
  8498. "source": {
  8499. "type": "git",
  8500. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  8501. "reference": "b7a21f0859059ed5d9754af8c11f852d43762334"
  8502. },
  8503. "dist": {
  8504. "type": "zip",
  8505. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/b7a21f0859059ed5d9754af8c11f852d43762334",
  8506. "reference": "b7a21f0859059ed5d9754af8c11f852d43762334",
  8507. "shasum": ""
  8508. },
  8509. "require": {
  8510. "brumann/polyfill-unserialize": "^1.0",
  8511. "ext-fileinfo": "*",
  8512. "ext-json": "*",
  8513. "php": "^5.3.3|^7.0"
  8514. },
  8515. "require-dev": {
  8516. "phpunit/phpunit": "^4.8.36"
  8517. },
  8518. "type": "library",
  8519. "autoload": {
  8520. "psr-4": {
  8521. "TYPO3\\PharStreamWrapper\\": "src/"
  8522. }
  8523. },
  8524. "notification-url": "https://packagist.org/downloads/",
  8525. "license": [
  8526. "MIT"
  8527. ],
  8528. "description": "Interceptors for PHP's native phar:// stream handling",
  8529. "homepage": "https://typo3.org/",
  8530. "keywords": [
  8531. "phar",
  8532. "php",
  8533. "security",
  8534. "stream-wrapper"
  8535. ],
  8536. "time": "2019-03-01T17:43:52+00:00"
  8537. },
  8538. {
  8539. "name": "vlucas/phpdotenv",
  8540. "version": "v2.6.1",
  8541. "source": {
  8542. "type": "git",
  8543. "url": "https://github.com/vlucas/phpdotenv.git",
  8544. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  8545. },
  8546. "dist": {
  8547. "type": "zip",
  8548. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  8549. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  8550. "shasum": ""
  8551. },
  8552. "require": {
  8553. "php": ">=5.3.9",
  8554. "symfony/polyfill-ctype": "^1.9"
  8555. },
  8556. "require-dev": {
  8557. "phpunit/phpunit": "^4.8.35 || ^5.0"
  8558. },
  8559. "type": "library",
  8560. "extra": {
  8561. "branch-alias": {
  8562. "dev-master": "2.6-dev"
  8563. }
  8564. },
  8565. "autoload": {
  8566. "psr-4": {
  8567. "Dotenv\\": "src/"
  8568. }
  8569. },
  8570. "notification-url": "https://packagist.org/downloads/",
  8571. "license": [
  8572. "BSD-3-Clause"
  8573. ],
  8574. "authors": [
  8575. {
  8576. "name": "Vance Lucas",
  8577. "email": "vance@vancelucas.com",
  8578. "homepage": "http://www.vancelucas.com"
  8579. }
  8580. ],
  8581. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8582. "keywords": [
  8583. "dotenv",
  8584. "env",
  8585. "environment"
  8586. ],
  8587. "time": "2019-01-29T11:11:52+00:00"
  8588. },
  8589. {
  8590. "name": "webflo/drupal-core-strict",
  8591. "version": "8.0.0-beta15",
  8592. "source": {
  8593. "type": "git",
  8594. "url": "https://github.com/webflo/drupal-core-strict.git",
  8595. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057"
  8596. },
  8597. "dist": {
  8598. "type": "zip",
  8599. "url": "https://api.github.com/repos/webflo/drupal-core-strict/zipball/1eb044b722ebe44bc6af86a03888415d7f31c057",
  8600. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057",
  8601. "shasum": ""
  8602. },
  8603. "type": "metapackage",
  8604. "notification-url": "https://packagist.org/downloads/",
  8605. "license": [
  8606. "GPL-2.0-or-later"
  8607. ],
  8608. "description": "Locked core dependencies",
  8609. "time": "2018-01-30T18:48:19+00:00"
  8610. },
  8611. {
  8612. "name": "webflo/drupal-finder",
  8613. "version": "1.1.0",
  8614. "source": {
  8615. "type": "git",
  8616. "url": "https://github.com/webflo/drupal-finder.git",
  8617. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  8618. },
  8619. "dist": {
  8620. "type": "zip",
  8621. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  8622. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  8623. "shasum": ""
  8624. },
  8625. "require-dev": {
  8626. "mikey179/vfsstream": "^1.6",
  8627. "phpunit/phpunit": "^4.8"
  8628. },
  8629. "type": "library",
  8630. "autoload": {
  8631. "classmap": [
  8632. "src/DrupalFinder.php"
  8633. ]
  8634. },
  8635. "notification-url": "https://packagist.org/downloads/",
  8636. "license": [
  8637. "GPL-2.0+"
  8638. ],
  8639. "authors": [
  8640. {
  8641. "name": "Florian Weber",
  8642. "email": "florian@webflo.org"
  8643. }
  8644. ],
  8645. "description": "Helper class to locate a Drupal installation from a given path.",
  8646. "time": "2017-10-24T08:12:11+00:00"
  8647. },
  8648. {
  8649. "name": "webmozart/assert",
  8650. "version": "1.4.0",
  8651. "source": {
  8652. "type": "git",
  8653. "url": "https://github.com/webmozart/assert.git",
  8654. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  8655. },
  8656. "dist": {
  8657. "type": "zip",
  8658. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  8659. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  8660. "shasum": ""
  8661. },
  8662. "require": {
  8663. "php": "^5.3.3 || ^7.0",
  8664. "symfony/polyfill-ctype": "^1.8"
  8665. },
  8666. "require-dev": {
  8667. "phpunit/phpunit": "^4.6",
  8668. "sebastian/version": "^1.0.1"
  8669. },
  8670. "type": "library",
  8671. "extra": {
  8672. "branch-alias": {
  8673. "dev-master": "1.3-dev"
  8674. }
  8675. },
  8676. "autoload": {
  8677. "psr-4": {
  8678. "Webmozart\\Assert\\": "src/"
  8679. }
  8680. },
  8681. "notification-url": "https://packagist.org/downloads/",
  8682. "license": [
  8683. "MIT"
  8684. ],
  8685. "authors": [
  8686. {
  8687. "name": "Bernhard Schussek",
  8688. "email": "bschussek@gmail.com"
  8689. }
  8690. ],
  8691. "description": "Assertions to validate method input/output with nice error messages.",
  8692. "keywords": [
  8693. "assert",
  8694. "check",
  8695. "validate"
  8696. ],
  8697. "time": "2018-12-25T11:19:39+00:00"
  8698. },
  8699. {
  8700. "name": "webmozart/path-util",
  8701. "version": "2.3.0",
  8702. "source": {
  8703. "type": "git",
  8704. "url": "https://github.com/webmozart/path-util.git",
  8705. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  8706. },
  8707. "dist": {
  8708. "type": "zip",
  8709. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  8710. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  8711. "shasum": ""
  8712. },
  8713. "require": {
  8714. "php": ">=5.3.3",
  8715. "webmozart/assert": "~1.0"
  8716. },
  8717. "require-dev": {
  8718. "phpunit/phpunit": "^4.6",
  8719. "sebastian/version": "^1.0.1"
  8720. },
  8721. "type": "library",
  8722. "extra": {
  8723. "branch-alias": {
  8724. "dev-master": "2.3-dev"
  8725. }
  8726. },
  8727. "autoload": {
  8728. "psr-4": {
  8729. "Webmozart\\PathUtil\\": "src/"
  8730. }
  8731. },
  8732. "notification-url": "https://packagist.org/downloads/",
  8733. "license": [
  8734. "MIT"
  8735. ],
  8736. "authors": [
  8737. {
  8738. "name": "Bernhard Schussek",
  8739. "email": "bschussek@gmail.com"
  8740. }
  8741. ],
  8742. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  8743. "time": "2015-12-17T08:42:14+00:00"
  8744. },
  8745. {
  8746. "name": "zaporylie/composer-drupal-optimizations",
  8747. "version": "1.1.0",
  8748. "source": {
  8749. "type": "git",
  8750. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  8751. "reference": "173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8"
  8752. },
  8753. "dist": {
  8754. "type": "zip",
  8755. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8",
  8756. "reference": "173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8",
  8757. "shasum": ""
  8758. },
  8759. "require": {
  8760. "composer-plugin-api": "^1.1"
  8761. },
  8762. "require-dev": {
  8763. "composer/composer": "^1.6",
  8764. "phpunit/phpunit": "^6"
  8765. },
  8766. "type": "composer-plugin",
  8767. "extra": {
  8768. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  8769. },
  8770. "autoload": {
  8771. "psr-4": {
  8772. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  8773. }
  8774. },
  8775. "notification-url": "https://packagist.org/downloads/",
  8776. "license": [
  8777. "GPL-2.0-or-later"
  8778. ],
  8779. "authors": [
  8780. {
  8781. "name": "Jakub Piasecki",
  8782. "email": "jakub@piaseccy.pl"
  8783. }
  8784. ],
  8785. "description": "Composer plugin to improve composer performance for Drupal projects",
  8786. "time": "2019-02-20T10:00:17+00:00"
  8787. },
  8788. {
  8789. "name": "zendframework/zend-diactoros",
  8790. "version": "1.8.6",
  8791. "source": {
  8792. "type": "git",
  8793. "url": "https://github.com/zendframework/zend-diactoros.git",
  8794. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  8795. },
  8796. "dist": {
  8797. "type": "zip",
  8798. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  8799. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  8800. "shasum": ""
  8801. },
  8802. "require": {
  8803. "php": "^5.6 || ^7.0",
  8804. "psr/http-message": "^1.0"
  8805. },
  8806. "provide": {
  8807. "psr/http-message-implementation": "1.0"
  8808. },
  8809. "require-dev": {
  8810. "ext-dom": "*",
  8811. "ext-libxml": "*",
  8812. "php-http/psr7-integration-tests": "dev-master",
  8813. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  8814. "zendframework/zend-coding-standard": "~1.0"
  8815. },
  8816. "type": "library",
  8817. "extra": {
  8818. "branch-alias": {
  8819. "dev-master": "1.8.x-dev",
  8820. "dev-develop": "1.9.x-dev",
  8821. "dev-release-2.0": "2.0.x-dev"
  8822. }
  8823. },
  8824. "autoload": {
  8825. "files": [
  8826. "src/functions/create_uploaded_file.php",
  8827. "src/functions/marshal_headers_from_sapi.php",
  8828. "src/functions/marshal_method_from_sapi.php",
  8829. "src/functions/marshal_protocol_version_from_sapi.php",
  8830. "src/functions/marshal_uri_from_sapi.php",
  8831. "src/functions/normalize_server.php",
  8832. "src/functions/normalize_uploaded_files.php",
  8833. "src/functions/parse_cookie_header.php"
  8834. ],
  8835. "psr-4": {
  8836. "Zend\\Diactoros\\": "src/"
  8837. }
  8838. },
  8839. "notification-url": "https://packagist.org/downloads/",
  8840. "license": [
  8841. "BSD-2-Clause"
  8842. ],
  8843. "description": "PSR HTTP Message implementations",
  8844. "homepage": "https://github.com/zendframework/zend-diactoros",
  8845. "keywords": [
  8846. "http",
  8847. "psr",
  8848. "psr-7"
  8849. ],
  8850. "time": "2018-09-05T19:29:37+00:00"
  8851. },
  8852. {
  8853. "name": "zendframework/zend-escaper",
  8854. "version": "2.6.0",
  8855. "source": {
  8856. "type": "git",
  8857. "url": "https://github.com/zendframework/zend-escaper.git",
  8858. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  8859. },
  8860. "dist": {
  8861. "type": "zip",
  8862. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  8863. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  8864. "shasum": ""
  8865. },
  8866. "require": {
  8867. "php": "^5.6 || ^7.0"
  8868. },
  8869. "require-dev": {
  8870. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  8871. "zendframework/zend-coding-standard": "~1.0.0"
  8872. },
  8873. "type": "library",
  8874. "extra": {
  8875. "branch-alias": {
  8876. "dev-master": "2.6.x-dev",
  8877. "dev-develop": "2.7.x-dev"
  8878. }
  8879. },
  8880. "autoload": {
  8881. "psr-4": {
  8882. "Zend\\Escaper\\": "src/"
  8883. }
  8884. },
  8885. "notification-url": "https://packagist.org/downloads/",
  8886. "license": [
  8887. "BSD-3-Clause"
  8888. ],
  8889. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  8890. "keywords": [
  8891. "ZendFramework",
  8892. "escaper",
  8893. "zf"
  8894. ],
  8895. "time": "2018-04-25T15:48:53+00:00"
  8896. },
  8897. {
  8898. "name": "zendframework/zend-feed",
  8899. "version": "2.12.0",
  8900. "source": {
  8901. "type": "git",
  8902. "url": "https://github.com/zendframework/zend-feed.git",
  8903. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  8904. },
  8905. "dist": {
  8906. "type": "zip",
  8907. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  8908. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  8909. "shasum": ""
  8910. },
  8911. "require": {
  8912. "ext-dom": "*",
  8913. "ext-libxml": "*",
  8914. "php": "^5.6 || ^7.0",
  8915. "zendframework/zend-escaper": "^2.5.2",
  8916. "zendframework/zend-stdlib": "^3.2.1"
  8917. },
  8918. "require-dev": {
  8919. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  8920. "psr/http-message": "^1.0.1",
  8921. "zendframework/zend-cache": "^2.7.2",
  8922. "zendframework/zend-coding-standard": "~1.0.0",
  8923. "zendframework/zend-db": "^2.8.2",
  8924. "zendframework/zend-http": "^2.7",
  8925. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  8926. "zendframework/zend-validator": "^2.10.1"
  8927. },
  8928. "suggest": {
  8929. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  8930. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  8931. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  8932. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  8933. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  8934. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  8935. },
  8936. "type": "library",
  8937. "extra": {
  8938. "branch-alias": {
  8939. "dev-master": "2.12.x-dev",
  8940. "dev-develop": "2.13.x-dev"
  8941. }
  8942. },
  8943. "autoload": {
  8944. "psr-4": {
  8945. "Zend\\Feed\\": "src/"
  8946. }
  8947. },
  8948. "notification-url": "https://packagist.org/downloads/",
  8949. "license": [
  8950. "BSD-3-Clause"
  8951. ],
  8952. "description": "provides functionality for consuming RSS and Atom feeds",
  8953. "keywords": [
  8954. "ZendFramework",
  8955. "feed",
  8956. "zf"
  8957. ],
  8958. "time": "2019-03-05T20:08:49+00:00"
  8959. },
  8960. {
  8961. "name": "zendframework/zend-stdlib",
  8962. "version": "3.2.1",
  8963. "source": {
  8964. "type": "git",
  8965. "url": "https://github.com/zendframework/zend-stdlib.git",
  8966. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  8967. },
  8968. "dist": {
  8969. "type": "zip",
  8970. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  8971. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  8972. "shasum": ""
  8973. },
  8974. "require": {
  8975. "php": "^5.6 || ^7.0"
  8976. },
  8977. "require-dev": {
  8978. "phpbench/phpbench": "^0.13",
  8979. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  8980. "zendframework/zend-coding-standard": "~1.0.0"
  8981. },
  8982. "type": "library",
  8983. "extra": {
  8984. "branch-alias": {
  8985. "dev-master": "3.2.x-dev",
  8986. "dev-develop": "3.3.x-dev"
  8987. }
  8988. },
  8989. "autoload": {
  8990. "psr-4": {
  8991. "Zend\\Stdlib\\": "src/"
  8992. }
  8993. },
  8994. "notification-url": "https://packagist.org/downloads/",
  8995. "license": [
  8996. "BSD-3-Clause"
  8997. ],
  8998. "description": "SPL extensions, array utilities, error handlers, and more",
  8999. "keywords": [
  9000. "ZendFramework",
  9001. "stdlib",
  9002. "zf"
  9003. ],
  9004. "time": "2018-08-28T21:34:05+00:00"
  9005. }
  9006. ],
  9007. "packages-dev": [
  9008. {
  9009. "name": "behat/mink",
  9010. "version": "dev-master",
  9011. "source": {
  9012. "type": "git",
  9013. "url": "https://github.com/minkphp/Mink.git",
  9014. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  9015. },
  9016. "dist": {
  9017. "type": "zip",
  9018. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  9019. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  9020. "shasum": ""
  9021. },
  9022. "require": {
  9023. "php": ">=5.3.1",
  9024. "symfony/css-selector": "^2.7|^3.0|^4.0"
  9025. },
  9026. "require-dev": {
  9027. "symfony/phpunit-bridge": "^3.3|^4.0"
  9028. },
  9029. "suggest": {
  9030. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  9031. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  9032. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  9033. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  9034. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  9035. },
  9036. "type": "library",
  9037. "extra": {
  9038. "branch-alias": {
  9039. "dev-master": "1.7.x-dev"
  9040. }
  9041. },
  9042. "autoload": {
  9043. "psr-4": {
  9044. "Behat\\Mink\\": "src/"
  9045. }
  9046. },
  9047. "notification-url": "https://packagist.org/downloads/",
  9048. "license": [
  9049. "MIT"
  9050. ],
  9051. "authors": [
  9052. {
  9053. "name": "Konstantin Kudryashov",
  9054. "email": "ever.zet@gmail.com",
  9055. "homepage": "http://everzet.com"
  9056. }
  9057. ],
  9058. "description": "Browser controller/emulator abstraction for PHP",
  9059. "homepage": "http://mink.behat.org/",
  9060. "keywords": [
  9061. "browser",
  9062. "testing",
  9063. "web"
  9064. ],
  9065. "time": "2018-06-24T20:08:51+00:00"
  9066. },
  9067. {
  9068. "name": "behat/mink-browserkit-driver",
  9069. "version": "1.3.3",
  9070. "source": {
  9071. "type": "git",
  9072. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  9073. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  9074. },
  9075. "dist": {
  9076. "type": "zip",
  9077. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  9078. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  9079. "shasum": ""
  9080. },
  9081. "require": {
  9082. "behat/mink": "^1.7.1@dev",
  9083. "php": ">=5.3.6",
  9084. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  9085. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  9086. },
  9087. "require-dev": {
  9088. "mink/driver-testsuite": "dev-master",
  9089. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  9090. },
  9091. "type": "mink-driver",
  9092. "extra": {
  9093. "branch-alias": {
  9094. "dev-master": "1.3.x-dev"
  9095. }
  9096. },
  9097. "autoload": {
  9098. "psr-4": {
  9099. "Behat\\Mink\\Driver\\": "src/"
  9100. }
  9101. },
  9102. "notification-url": "https://packagist.org/downloads/",
  9103. "license": [
  9104. "MIT"
  9105. ],
  9106. "authors": [
  9107. {
  9108. "name": "Konstantin Kudryashov",
  9109. "email": "ever.zet@gmail.com",
  9110. "homepage": "http://everzet.com"
  9111. }
  9112. ],
  9113. "description": "Symfony2 BrowserKit driver for Mink framework",
  9114. "homepage": "http://mink.behat.org/",
  9115. "keywords": [
  9116. "Mink",
  9117. "Symfony2",
  9118. "browser",
  9119. "testing"
  9120. ],
  9121. "time": "2018-05-02T09:25:31+00:00"
  9122. },
  9123. {
  9124. "name": "behat/mink-goutte-driver",
  9125. "version": "v1.2.1",
  9126. "source": {
  9127. "type": "git",
  9128. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  9129. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  9130. },
  9131. "dist": {
  9132. "type": "zip",
  9133. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  9134. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  9135. "shasum": ""
  9136. },
  9137. "require": {
  9138. "behat/mink": "~1.6@dev",
  9139. "behat/mink-browserkit-driver": "~1.2@dev",
  9140. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  9141. "php": ">=5.3.1"
  9142. },
  9143. "require-dev": {
  9144. "symfony/phpunit-bridge": "~2.7|~3.0"
  9145. },
  9146. "type": "mink-driver",
  9147. "extra": {
  9148. "branch-alias": {
  9149. "dev-master": "1.2.x-dev"
  9150. }
  9151. },
  9152. "autoload": {
  9153. "psr-4": {
  9154. "Behat\\Mink\\Driver\\": "src/"
  9155. }
  9156. },
  9157. "notification-url": "https://packagist.org/downloads/",
  9158. "license": [
  9159. "MIT"
  9160. ],
  9161. "authors": [
  9162. {
  9163. "name": "Konstantin Kudryashov",
  9164. "email": "ever.zet@gmail.com",
  9165. "homepage": "http://everzet.com"
  9166. }
  9167. ],
  9168. "description": "Goutte driver for Mink framework",
  9169. "homepage": "http://mink.behat.org/",
  9170. "keywords": [
  9171. "browser",
  9172. "goutte",
  9173. "headless",
  9174. "testing"
  9175. ],
  9176. "time": "2016-03-05T09:04:22+00:00"
  9177. },
  9178. {
  9179. "name": "behat/mink-selenium2-driver",
  9180. "version": "dev-master",
  9181. "source": {
  9182. "type": "git",
  9183. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  9184. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  9185. },
  9186. "dist": {
  9187. "type": "zip",
  9188. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  9189. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  9190. "shasum": ""
  9191. },
  9192. "require": {
  9193. "behat/mink": "~1.7@dev",
  9194. "instaclick/php-webdriver": "~1.1",
  9195. "php": ">=5.3.1"
  9196. },
  9197. "require-dev": {
  9198. "mink/driver-testsuite": "dev-master"
  9199. },
  9200. "type": "mink-driver",
  9201. "extra": {
  9202. "branch-alias": {
  9203. "dev-master": "1.3.x-dev"
  9204. }
  9205. },
  9206. "autoload": {
  9207. "psr-4": {
  9208. "Behat\\Mink\\Driver\\": "src/"
  9209. }
  9210. },
  9211. "notification-url": "https://packagist.org/downloads/",
  9212. "license": [
  9213. "MIT"
  9214. ],
  9215. "authors": [
  9216. {
  9217. "name": "Konstantin Kudryashov",
  9218. "email": "ever.zet@gmail.com",
  9219. "homepage": "http://everzet.com"
  9220. },
  9221. {
  9222. "name": "Pete Otaqui",
  9223. "email": "pete@otaqui.com",
  9224. "homepage": "https://github.com/pete-otaqui"
  9225. }
  9226. ],
  9227. "description": "Selenium2 (WebDriver) driver for Mink framework",
  9228. "homepage": "http://mink.behat.org/",
  9229. "keywords": [
  9230. "ajax",
  9231. "browser",
  9232. "javascript",
  9233. "selenium",
  9234. "testing",
  9235. "webdriver"
  9236. ],
  9237. "time": "2018-10-10T12:39:06+00:00"
  9238. },
  9239. {
  9240. "name": "doctrine/instantiator",
  9241. "version": "1.0.5",
  9242. "source": {
  9243. "type": "git",
  9244. "url": "https://github.com/doctrine/instantiator.git",
  9245. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  9246. },
  9247. "dist": {
  9248. "type": "zip",
  9249. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  9250. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  9251. "shasum": ""
  9252. },
  9253. "require": {
  9254. "php": ">=5.3,<8.0-DEV"
  9255. },
  9256. "require-dev": {
  9257. "athletic/athletic": "~0.1.8",
  9258. "ext-pdo": "*",
  9259. "ext-phar": "*",
  9260. "phpunit/phpunit": "~4.0",
  9261. "squizlabs/php_codesniffer": "~2.0"
  9262. },
  9263. "type": "library",
  9264. "extra": {
  9265. "branch-alias": {
  9266. "dev-master": "1.0.x-dev"
  9267. }
  9268. },
  9269. "autoload": {
  9270. "psr-4": {
  9271. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9272. }
  9273. },
  9274. "notification-url": "https://packagist.org/downloads/",
  9275. "license": [
  9276. "MIT"
  9277. ],
  9278. "authors": [
  9279. {
  9280. "name": "Marco Pivetta",
  9281. "email": "ocramius@gmail.com",
  9282. "homepage": "http://ocramius.github.com/"
  9283. }
  9284. ],
  9285. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9286. "homepage": "https://github.com/doctrine/instantiator",
  9287. "keywords": [
  9288. "constructor",
  9289. "instantiate"
  9290. ],
  9291. "time": "2015-06-14T21:17:01+00:00"
  9292. },
  9293. {
  9294. "name": "drupal/coder",
  9295. "version": "8.3.3",
  9296. "source": {
  9297. "type": "git",
  9298. "url": "https://git.drupal.org/project/coder.git",
  9299. "reference": "a33d3388fb2e1d94bd2aee36a8ff79186e9d8f43"
  9300. },
  9301. "require": {
  9302. "ext-mbstring": "*",
  9303. "php": ">=5.5.9",
  9304. "squizlabs/php_codesniffer": "^3.4.1",
  9305. "symfony/yaml": ">=2.0.0"
  9306. },
  9307. "require-dev": {
  9308. "phpunit/phpunit": ">=3.7 <6"
  9309. },
  9310. "type": "phpcodesniffer-standard",
  9311. "autoload": {
  9312. "psr-0": {
  9313. "Drupal\\": "coder_sniffer/Drupal/",
  9314. "DrupalPractice\\": "coder_sniffer/DrupalPractice/"
  9315. }
  9316. },
  9317. "notification-url": "https://packagist.org/downloads/",
  9318. "license": [
  9319. "GPL-2.0+"
  9320. ],
  9321. "description": "Coder is a library to review Drupal code.",
  9322. "homepage": "https://www.drupal.org/project/coder",
  9323. "keywords": [
  9324. "code review",
  9325. "phpcs",
  9326. "standards"
  9327. ],
  9328. "time": "2019-04-16T18:56:06+00:00"
  9329. },
  9330. {
  9331. "name": "fabpot/goutte",
  9332. "version": "v3.2.3",
  9333. "source": {
  9334. "type": "git",
  9335. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  9336. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  9337. },
  9338. "dist": {
  9339. "type": "zip",
  9340. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  9341. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  9342. "shasum": ""
  9343. },
  9344. "require": {
  9345. "guzzlehttp/guzzle": "^6.0",
  9346. "php": ">=5.5.0",
  9347. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  9348. "symfony/css-selector": "~2.1|~3.0|~4.0",
  9349. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  9350. },
  9351. "require-dev": {
  9352. "symfony/phpunit-bridge": "^3.3 || ^4"
  9353. },
  9354. "type": "application",
  9355. "extra": {
  9356. "branch-alias": {
  9357. "dev-master": "3.2-dev"
  9358. }
  9359. },
  9360. "autoload": {
  9361. "psr-4": {
  9362. "Goutte\\": "Goutte"
  9363. },
  9364. "exclude-from-classmap": [
  9365. "Goutte/Tests"
  9366. ]
  9367. },
  9368. "notification-url": "https://packagist.org/downloads/",
  9369. "license": [
  9370. "MIT"
  9371. ],
  9372. "authors": [
  9373. {
  9374. "name": "Fabien Potencier",
  9375. "email": "fabien@symfony.com"
  9376. }
  9377. ],
  9378. "description": "A simple PHP Web Scraper",
  9379. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  9380. "keywords": [
  9381. "scraper"
  9382. ],
  9383. "time": "2018-06-29T15:13:57+00:00"
  9384. },
  9385. {
  9386. "name": "instaclick/php-webdriver",
  9387. "version": "1.4.5",
  9388. "source": {
  9389. "type": "git",
  9390. "url": "https://github.com/instaclick/php-webdriver.git",
  9391. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  9392. },
  9393. "dist": {
  9394. "type": "zip",
  9395. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  9396. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  9397. "shasum": ""
  9398. },
  9399. "require": {
  9400. "ext-curl": "*",
  9401. "php": ">=5.3.2"
  9402. },
  9403. "require-dev": {
  9404. "phpunit/phpunit": "^4.8",
  9405. "satooshi/php-coveralls": "^1.0||^2.0"
  9406. },
  9407. "type": "library",
  9408. "extra": {
  9409. "branch-alias": {
  9410. "dev-master": "1.4.x-dev"
  9411. }
  9412. },
  9413. "autoload": {
  9414. "psr-0": {
  9415. "WebDriver": "lib/"
  9416. }
  9417. },
  9418. "notification-url": "https://packagist.org/downloads/",
  9419. "license": [
  9420. "Apache-2.0"
  9421. ],
  9422. "authors": [
  9423. {
  9424. "name": "Justin Bishop",
  9425. "email": "jubishop@gmail.com",
  9426. "role": "Developer"
  9427. },
  9428. {
  9429. "name": "Anthon Pang",
  9430. "email": "apang@softwaredevelopment.ca",
  9431. "role": "Fork Maintainer"
  9432. }
  9433. ],
  9434. "description": "PHP WebDriver for Selenium 2",
  9435. "homepage": "http://instaclick.com/",
  9436. "keywords": [
  9437. "browser",
  9438. "selenium",
  9439. "webdriver",
  9440. "webtest"
  9441. ],
  9442. "time": "2017-06-30T04:02:48+00:00"
  9443. },
  9444. {
  9445. "name": "jcalderonzumba/gastonjs",
  9446. "version": "v1.2.0",
  9447. "source": {
  9448. "type": "git",
  9449. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  9450. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  9451. },
  9452. "dist": {
  9453. "type": "zip",
  9454. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  9455. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  9456. "shasum": ""
  9457. },
  9458. "require": {
  9459. "guzzlehttp/guzzle": "~5.0|~6.0",
  9460. "php": ">=5.4"
  9461. },
  9462. "require-dev": {
  9463. "phpunit/phpunit": "~4.6",
  9464. "silex/silex": "~1.2",
  9465. "symfony/phpunit-bridge": "~2.7",
  9466. "symfony/process": "~2.1"
  9467. },
  9468. "type": "phantomjs-api",
  9469. "extra": {
  9470. "branch-alias": {
  9471. "dev-master": "1.1.x-dev"
  9472. }
  9473. },
  9474. "autoload": {
  9475. "psr-4": {
  9476. "Zumba\\GastonJS\\": "src"
  9477. }
  9478. },
  9479. "notification-url": "https://packagist.org/downloads/",
  9480. "license": [
  9481. "MIT"
  9482. ],
  9483. "authors": [
  9484. {
  9485. "name": "Juan Francisco Calderón Zumba",
  9486. "email": "juanfcz@gmail.com",
  9487. "homepage": "http://github.com/jcalderonzumba"
  9488. }
  9489. ],
  9490. "description": "PhantomJS API based server for webpage automation",
  9491. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  9492. "keywords": [
  9493. "api",
  9494. "automation",
  9495. "browser",
  9496. "headless",
  9497. "phantomjs"
  9498. ],
  9499. "time": "2017-03-31T07:31:47+00:00"
  9500. },
  9501. {
  9502. "name": "jcalderonzumba/mink-phantomjs-driver",
  9503. "version": "v0.3.3",
  9504. "source": {
  9505. "type": "git",
  9506. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  9507. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  9508. },
  9509. "dist": {
  9510. "type": "zip",
  9511. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  9512. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  9513. "shasum": ""
  9514. },
  9515. "require": {
  9516. "behat/mink": "~1.7",
  9517. "jcalderonzumba/gastonjs": "~1.0",
  9518. "php": ">=5.4",
  9519. "twig/twig": "~1.20|~2.0"
  9520. },
  9521. "require-dev": {
  9522. "mink/driver-testsuite": "dev-master",
  9523. "phpunit/phpunit": "~4.6"
  9524. },
  9525. "type": "mink-driver",
  9526. "extra": {
  9527. "branch-alias": {
  9528. "dev-master": "0.4.x-dev"
  9529. }
  9530. },
  9531. "autoload": {
  9532. "psr-4": {
  9533. "Zumba\\Mink\\Driver\\": "src"
  9534. }
  9535. },
  9536. "notification-url": "https://packagist.org/downloads/",
  9537. "license": [
  9538. "MIT"
  9539. ],
  9540. "authors": [
  9541. {
  9542. "name": "Juan Francisco Calderón Zumba",
  9543. "email": "juanfcz@gmail.com",
  9544. "homepage": "http://github.com/jcalderonzumba"
  9545. }
  9546. ],
  9547. "description": "PhantomJS driver for Mink framework",
  9548. "homepage": "http://mink.behat.org/",
  9549. "keywords": [
  9550. "ajax",
  9551. "browser",
  9552. "headless",
  9553. "javascript",
  9554. "phantomjs",
  9555. "testing"
  9556. ],
  9557. "time": "2016-12-01T10:57:30+00:00"
  9558. },
  9559. {
  9560. "name": "mikey179/vfsStream",
  9561. "version": "v1.6.6",
  9562. "source": {
  9563. "type": "git",
  9564. "url": "https://github.com/bovigo/vfsStream.git",
  9565. "reference": "095238a0711c974ae5b4ebf4c4534a23f3f6c99d"
  9566. },
  9567. "dist": {
  9568. "type": "zip",
  9569. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/095238a0711c974ae5b4ebf4c4534a23f3f6c99d",
  9570. "reference": "095238a0711c974ae5b4ebf4c4534a23f3f6c99d",
  9571. "shasum": ""
  9572. },
  9573. "require": {
  9574. "php": ">=5.3.0"
  9575. },
  9576. "require-dev": {
  9577. "phpunit/phpunit": "~4.5"
  9578. },
  9579. "type": "library",
  9580. "extra": {
  9581. "branch-alias": {
  9582. "dev-master": "1.6.x-dev"
  9583. }
  9584. },
  9585. "autoload": {
  9586. "psr-0": {
  9587. "org\\bovigo\\vfs\\": "src/main/php"
  9588. }
  9589. },
  9590. "notification-url": "https://packagist.org/downloads/",
  9591. "license": [
  9592. "BSD-3-Clause"
  9593. ],
  9594. "authors": [
  9595. {
  9596. "name": "Frank Kleine",
  9597. "homepage": "http://frankkleine.de/",
  9598. "role": "Developer"
  9599. }
  9600. ],
  9601. "description": "Virtual file system to mock the real file system in unit tests.",
  9602. "homepage": "http://vfs.bovigo.org/",
  9603. "time": "2019-04-08T13:54:32+00:00"
  9604. },
  9605. {
  9606. "name": "myclabs/deep-copy",
  9607. "version": "1.7.0",
  9608. "source": {
  9609. "type": "git",
  9610. "url": "https://github.com/myclabs/DeepCopy.git",
  9611. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  9612. },
  9613. "dist": {
  9614. "type": "zip",
  9615. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  9616. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  9617. "shasum": ""
  9618. },
  9619. "require": {
  9620. "php": "^5.6 || ^7.0"
  9621. },
  9622. "require-dev": {
  9623. "doctrine/collections": "^1.0",
  9624. "doctrine/common": "^2.6",
  9625. "phpunit/phpunit": "^4.1"
  9626. },
  9627. "type": "library",
  9628. "autoload": {
  9629. "psr-4": {
  9630. "DeepCopy\\": "src/DeepCopy/"
  9631. },
  9632. "files": [
  9633. "src/DeepCopy/deep_copy.php"
  9634. ]
  9635. },
  9636. "notification-url": "https://packagist.org/downloads/",
  9637. "license": [
  9638. "MIT"
  9639. ],
  9640. "description": "Create deep copies (clones) of your objects",
  9641. "keywords": [
  9642. "clone",
  9643. "copy",
  9644. "duplicate",
  9645. "object",
  9646. "object graph"
  9647. ],
  9648. "time": "2017-10-19T19:58:43+00:00"
  9649. },
  9650. {
  9651. "name": "phar-io/manifest",
  9652. "version": "1.0.1",
  9653. "source": {
  9654. "type": "git",
  9655. "url": "https://github.com/phar-io/manifest.git",
  9656. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  9657. },
  9658. "dist": {
  9659. "type": "zip",
  9660. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  9661. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  9662. "shasum": ""
  9663. },
  9664. "require": {
  9665. "ext-dom": "*",
  9666. "ext-phar": "*",
  9667. "phar-io/version": "^1.0.1",
  9668. "php": "^5.6 || ^7.0"
  9669. },
  9670. "type": "library",
  9671. "extra": {
  9672. "branch-alias": {
  9673. "dev-master": "1.0.x-dev"
  9674. }
  9675. },
  9676. "autoload": {
  9677. "classmap": [
  9678. "src/"
  9679. ]
  9680. },
  9681. "notification-url": "https://packagist.org/downloads/",
  9682. "license": [
  9683. "BSD-3-Clause"
  9684. ],
  9685. "authors": [
  9686. {
  9687. "name": "Arne Blankerts",
  9688. "email": "arne@blankerts.de",
  9689. "role": "Developer"
  9690. },
  9691. {
  9692. "name": "Sebastian Heuer",
  9693. "email": "sebastian@phpeople.de",
  9694. "role": "Developer"
  9695. },
  9696. {
  9697. "name": "Sebastian Bergmann",
  9698. "email": "sebastian@phpunit.de",
  9699. "role": "Developer"
  9700. }
  9701. ],
  9702. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9703. "time": "2017-03-05T18:14:27+00:00"
  9704. },
  9705. {
  9706. "name": "phar-io/version",
  9707. "version": "1.0.1",
  9708. "source": {
  9709. "type": "git",
  9710. "url": "https://github.com/phar-io/version.git",
  9711. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  9712. },
  9713. "dist": {
  9714. "type": "zip",
  9715. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  9716. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  9717. "shasum": ""
  9718. },
  9719. "require": {
  9720. "php": "^5.6 || ^7.0"
  9721. },
  9722. "type": "library",
  9723. "autoload": {
  9724. "classmap": [
  9725. "src/"
  9726. ]
  9727. },
  9728. "notification-url": "https://packagist.org/downloads/",
  9729. "license": [
  9730. "BSD-3-Clause"
  9731. ],
  9732. "authors": [
  9733. {
  9734. "name": "Arne Blankerts",
  9735. "email": "arne@blankerts.de",
  9736. "role": "Developer"
  9737. },
  9738. {
  9739. "name": "Sebastian Heuer",
  9740. "email": "sebastian@phpeople.de",
  9741. "role": "Developer"
  9742. },
  9743. {
  9744. "name": "Sebastian Bergmann",
  9745. "email": "sebastian@phpunit.de",
  9746. "role": "Developer"
  9747. }
  9748. ],
  9749. "description": "Library for handling version information and constraints",
  9750. "time": "2017-03-05T17:38:23+00:00"
  9751. },
  9752. {
  9753. "name": "phpdocumentor/reflection-common",
  9754. "version": "1.0.1",
  9755. "source": {
  9756. "type": "git",
  9757. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9758. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  9759. },
  9760. "dist": {
  9761. "type": "zip",
  9762. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  9763. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  9764. "shasum": ""
  9765. },
  9766. "require": {
  9767. "php": ">=5.5"
  9768. },
  9769. "require-dev": {
  9770. "phpunit/phpunit": "^4.6"
  9771. },
  9772. "type": "library",
  9773. "extra": {
  9774. "branch-alias": {
  9775. "dev-master": "1.0.x-dev"
  9776. }
  9777. },
  9778. "autoload": {
  9779. "psr-4": {
  9780. "phpDocumentor\\Reflection\\": [
  9781. "src"
  9782. ]
  9783. }
  9784. },
  9785. "notification-url": "https://packagist.org/downloads/",
  9786. "license": [
  9787. "MIT"
  9788. ],
  9789. "authors": [
  9790. {
  9791. "name": "Jaap van Otterdijk",
  9792. "email": "opensource@ijaap.nl"
  9793. }
  9794. ],
  9795. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9796. "homepage": "http://www.phpdoc.org",
  9797. "keywords": [
  9798. "FQSEN",
  9799. "phpDocumentor",
  9800. "phpdoc",
  9801. "reflection",
  9802. "static analysis"
  9803. ],
  9804. "time": "2017-09-11T18:02:19+00:00"
  9805. },
  9806. {
  9807. "name": "phpdocumentor/reflection-docblock",
  9808. "version": "4.3.0",
  9809. "source": {
  9810. "type": "git",
  9811. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9812. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  9813. },
  9814. "dist": {
  9815. "type": "zip",
  9816. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  9817. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  9818. "shasum": ""
  9819. },
  9820. "require": {
  9821. "php": "^7.0",
  9822. "phpdocumentor/reflection-common": "^1.0.0",
  9823. "phpdocumentor/type-resolver": "^0.4.0",
  9824. "webmozart/assert": "^1.0"
  9825. },
  9826. "require-dev": {
  9827. "doctrine/instantiator": "~1.0.5",
  9828. "mockery/mockery": "^1.0",
  9829. "phpunit/phpunit": "^6.4"
  9830. },
  9831. "type": "library",
  9832. "extra": {
  9833. "branch-alias": {
  9834. "dev-master": "4.x-dev"
  9835. }
  9836. },
  9837. "autoload": {
  9838. "psr-4": {
  9839. "phpDocumentor\\Reflection\\": [
  9840. "src/"
  9841. ]
  9842. }
  9843. },
  9844. "notification-url": "https://packagist.org/downloads/",
  9845. "license": [
  9846. "MIT"
  9847. ],
  9848. "authors": [
  9849. {
  9850. "name": "Mike van Riel",
  9851. "email": "me@mikevanriel.com"
  9852. }
  9853. ],
  9854. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9855. "time": "2017-11-30T07:14:17+00:00"
  9856. },
  9857. {
  9858. "name": "phpdocumentor/type-resolver",
  9859. "version": "0.4.0",
  9860. "source": {
  9861. "type": "git",
  9862. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9863. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  9864. },
  9865. "dist": {
  9866. "type": "zip",
  9867. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  9868. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  9869. "shasum": ""
  9870. },
  9871. "require": {
  9872. "php": "^5.5 || ^7.0",
  9873. "phpdocumentor/reflection-common": "^1.0"
  9874. },
  9875. "require-dev": {
  9876. "mockery/mockery": "^0.9.4",
  9877. "phpunit/phpunit": "^5.2||^4.8.24"
  9878. },
  9879. "type": "library",
  9880. "extra": {
  9881. "branch-alias": {
  9882. "dev-master": "1.0.x-dev"
  9883. }
  9884. },
  9885. "autoload": {
  9886. "psr-4": {
  9887. "phpDocumentor\\Reflection\\": [
  9888. "src/"
  9889. ]
  9890. }
  9891. },
  9892. "notification-url": "https://packagist.org/downloads/",
  9893. "license": [
  9894. "MIT"
  9895. ],
  9896. "authors": [
  9897. {
  9898. "name": "Mike van Riel",
  9899. "email": "me@mikevanriel.com"
  9900. }
  9901. ],
  9902. "time": "2017-07-14T14:27:02+00:00"
  9903. },
  9904. {
  9905. "name": "phpspec/prophecy",
  9906. "version": "1.8.0",
  9907. "source": {
  9908. "type": "git",
  9909. "url": "https://github.com/phpspec/prophecy.git",
  9910. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  9911. },
  9912. "dist": {
  9913. "type": "zip",
  9914. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  9915. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  9916. "shasum": ""
  9917. },
  9918. "require": {
  9919. "doctrine/instantiator": "^1.0.2",
  9920. "php": "^5.3|^7.0",
  9921. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  9922. "sebastian/comparator": "^1.1|^2.0|^3.0",
  9923. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  9924. },
  9925. "require-dev": {
  9926. "phpspec/phpspec": "^2.5|^3.2",
  9927. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  9928. },
  9929. "type": "library",
  9930. "extra": {
  9931. "branch-alias": {
  9932. "dev-master": "1.8.x-dev"
  9933. }
  9934. },
  9935. "autoload": {
  9936. "psr-0": {
  9937. "Prophecy\\": "src/"
  9938. }
  9939. },
  9940. "notification-url": "https://packagist.org/downloads/",
  9941. "license": [
  9942. "MIT"
  9943. ],
  9944. "authors": [
  9945. {
  9946. "name": "Konstantin Kudryashov",
  9947. "email": "ever.zet@gmail.com",
  9948. "homepage": "http://everzet.com"
  9949. },
  9950. {
  9951. "name": "Marcello Duarte",
  9952. "email": "marcello.duarte@gmail.com"
  9953. }
  9954. ],
  9955. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9956. "homepage": "https://github.com/phpspec/prophecy",
  9957. "keywords": [
  9958. "Double",
  9959. "Dummy",
  9960. "fake",
  9961. "mock",
  9962. "spy",
  9963. "stub"
  9964. ],
  9965. "time": "2018-08-05T17:53:17+00:00"
  9966. },
  9967. {
  9968. "name": "phpunit/php-code-coverage",
  9969. "version": "5.3.2",
  9970. "source": {
  9971. "type": "git",
  9972. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9973. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  9974. },
  9975. "dist": {
  9976. "type": "zip",
  9977. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  9978. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  9979. "shasum": ""
  9980. },
  9981. "require": {
  9982. "ext-dom": "*",
  9983. "ext-xmlwriter": "*",
  9984. "php": "^7.0",
  9985. "phpunit/php-file-iterator": "^1.4.2",
  9986. "phpunit/php-text-template": "^1.2.1",
  9987. "phpunit/php-token-stream": "^2.0.1",
  9988. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9989. "sebastian/environment": "^3.0",
  9990. "sebastian/version": "^2.0.1",
  9991. "theseer/tokenizer": "^1.1"
  9992. },
  9993. "require-dev": {
  9994. "phpunit/phpunit": "^6.0"
  9995. },
  9996. "suggest": {
  9997. "ext-xdebug": "^2.5.5"
  9998. },
  9999. "type": "library",
  10000. "extra": {
  10001. "branch-alias": {
  10002. "dev-master": "5.3.x-dev"
  10003. }
  10004. },
  10005. "autoload": {
  10006. "classmap": [
  10007. "src/"
  10008. ]
  10009. },
  10010. "notification-url": "https://packagist.org/downloads/",
  10011. "license": [
  10012. "BSD-3-Clause"
  10013. ],
  10014. "authors": [
  10015. {
  10016. "name": "Sebastian Bergmann",
  10017. "email": "sebastian@phpunit.de",
  10018. "role": "lead"
  10019. }
  10020. ],
  10021. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10022. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10023. "keywords": [
  10024. "coverage",
  10025. "testing",
  10026. "xunit"
  10027. ],
  10028. "time": "2018-04-06T15:36:58+00:00"
  10029. },
  10030. {
  10031. "name": "phpunit/php-file-iterator",
  10032. "version": "1.4.5",
  10033. "source": {
  10034. "type": "git",
  10035. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10036. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  10037. },
  10038. "dist": {
  10039. "type": "zip",
  10040. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  10041. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  10042. "shasum": ""
  10043. },
  10044. "require": {
  10045. "php": ">=5.3.3"
  10046. },
  10047. "type": "library",
  10048. "extra": {
  10049. "branch-alias": {
  10050. "dev-master": "1.4.x-dev"
  10051. }
  10052. },
  10053. "autoload": {
  10054. "classmap": [
  10055. "src/"
  10056. ]
  10057. },
  10058. "notification-url": "https://packagist.org/downloads/",
  10059. "license": [
  10060. "BSD-3-Clause"
  10061. ],
  10062. "authors": [
  10063. {
  10064. "name": "Sebastian Bergmann",
  10065. "email": "sb@sebastian-bergmann.de",
  10066. "role": "lead"
  10067. }
  10068. ],
  10069. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10070. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10071. "keywords": [
  10072. "filesystem",
  10073. "iterator"
  10074. ],
  10075. "time": "2017-11-27T13:52:08+00:00"
  10076. },
  10077. {
  10078. "name": "phpunit/php-text-template",
  10079. "version": "1.2.1",
  10080. "source": {
  10081. "type": "git",
  10082. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10083. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  10084. },
  10085. "dist": {
  10086. "type": "zip",
  10087. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10088. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10089. "shasum": ""
  10090. },
  10091. "require": {
  10092. "php": ">=5.3.3"
  10093. },
  10094. "type": "library",
  10095. "autoload": {
  10096. "classmap": [
  10097. "src/"
  10098. ]
  10099. },
  10100. "notification-url": "https://packagist.org/downloads/",
  10101. "license": [
  10102. "BSD-3-Clause"
  10103. ],
  10104. "authors": [
  10105. {
  10106. "name": "Sebastian Bergmann",
  10107. "email": "sebastian@phpunit.de",
  10108. "role": "lead"
  10109. }
  10110. ],
  10111. "description": "Simple template engine.",
  10112. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10113. "keywords": [
  10114. "template"
  10115. ],
  10116. "time": "2015-06-21T13:50:34+00:00"
  10117. },
  10118. {
  10119. "name": "phpunit/php-timer",
  10120. "version": "1.0.9",
  10121. "source": {
  10122. "type": "git",
  10123. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10124. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  10125. },
  10126. "dist": {
  10127. "type": "zip",
  10128. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  10129. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  10130. "shasum": ""
  10131. },
  10132. "require": {
  10133. "php": "^5.3.3 || ^7.0"
  10134. },
  10135. "require-dev": {
  10136. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10137. },
  10138. "type": "library",
  10139. "extra": {
  10140. "branch-alias": {
  10141. "dev-master": "1.0-dev"
  10142. }
  10143. },
  10144. "autoload": {
  10145. "classmap": [
  10146. "src/"
  10147. ]
  10148. },
  10149. "notification-url": "https://packagist.org/downloads/",
  10150. "license": [
  10151. "BSD-3-Clause"
  10152. ],
  10153. "authors": [
  10154. {
  10155. "name": "Sebastian Bergmann",
  10156. "email": "sb@sebastian-bergmann.de",
  10157. "role": "lead"
  10158. }
  10159. ],
  10160. "description": "Utility class for timing",
  10161. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10162. "keywords": [
  10163. "timer"
  10164. ],
  10165. "time": "2017-02-26T11:10:40+00:00"
  10166. },
  10167. {
  10168. "name": "phpunit/php-token-stream",
  10169. "version": "2.0.2",
  10170. "source": {
  10171. "type": "git",
  10172. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  10173. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  10174. },
  10175. "dist": {
  10176. "type": "zip",
  10177. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  10178. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  10179. "shasum": ""
  10180. },
  10181. "require": {
  10182. "ext-tokenizer": "*",
  10183. "php": "^7.0"
  10184. },
  10185. "require-dev": {
  10186. "phpunit/phpunit": "^6.2.4"
  10187. },
  10188. "type": "library",
  10189. "extra": {
  10190. "branch-alias": {
  10191. "dev-master": "2.0-dev"
  10192. }
  10193. },
  10194. "autoload": {
  10195. "classmap": [
  10196. "src/"
  10197. ]
  10198. },
  10199. "notification-url": "https://packagist.org/downloads/",
  10200. "license": [
  10201. "BSD-3-Clause"
  10202. ],
  10203. "authors": [
  10204. {
  10205. "name": "Sebastian Bergmann",
  10206. "email": "sebastian@phpunit.de"
  10207. }
  10208. ],
  10209. "description": "Wrapper around PHP's tokenizer extension.",
  10210. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  10211. "keywords": [
  10212. "tokenizer"
  10213. ],
  10214. "time": "2017-11-27T05:48:46+00:00"
  10215. },
  10216. {
  10217. "name": "phpunit/phpunit",
  10218. "version": "6.5.14",
  10219. "source": {
  10220. "type": "git",
  10221. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10222. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  10223. },
  10224. "dist": {
  10225. "type": "zip",
  10226. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  10227. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  10228. "shasum": ""
  10229. },
  10230. "require": {
  10231. "ext-dom": "*",
  10232. "ext-json": "*",
  10233. "ext-libxml": "*",
  10234. "ext-mbstring": "*",
  10235. "ext-xml": "*",
  10236. "myclabs/deep-copy": "^1.6.1",
  10237. "phar-io/manifest": "^1.0.1",
  10238. "phar-io/version": "^1.0",
  10239. "php": "^7.0",
  10240. "phpspec/prophecy": "^1.7",
  10241. "phpunit/php-code-coverage": "^5.3",
  10242. "phpunit/php-file-iterator": "^1.4.3",
  10243. "phpunit/php-text-template": "^1.2.1",
  10244. "phpunit/php-timer": "^1.0.9",
  10245. "phpunit/phpunit-mock-objects": "^5.0.9",
  10246. "sebastian/comparator": "^2.1",
  10247. "sebastian/diff": "^2.0",
  10248. "sebastian/environment": "^3.1",
  10249. "sebastian/exporter": "^3.1",
  10250. "sebastian/global-state": "^2.0",
  10251. "sebastian/object-enumerator": "^3.0.3",
  10252. "sebastian/resource-operations": "^1.0",
  10253. "sebastian/version": "^2.0.1"
  10254. },
  10255. "conflict": {
  10256. "phpdocumentor/reflection-docblock": "3.0.2",
  10257. "phpunit/dbunit": "<3.0"
  10258. },
  10259. "require-dev": {
  10260. "ext-pdo": "*"
  10261. },
  10262. "suggest": {
  10263. "ext-xdebug": "*",
  10264. "phpunit/php-invoker": "^1.1"
  10265. },
  10266. "bin": [
  10267. "phpunit"
  10268. ],
  10269. "type": "library",
  10270. "extra": {
  10271. "branch-alias": {
  10272. "dev-master": "6.5.x-dev"
  10273. }
  10274. },
  10275. "autoload": {
  10276. "classmap": [
  10277. "src/"
  10278. ]
  10279. },
  10280. "notification-url": "https://packagist.org/downloads/",
  10281. "license": [
  10282. "BSD-3-Clause"
  10283. ],
  10284. "authors": [
  10285. {
  10286. "name": "Sebastian Bergmann",
  10287. "email": "sebastian@phpunit.de",
  10288. "role": "lead"
  10289. }
  10290. ],
  10291. "description": "The PHP Unit Testing framework.",
  10292. "homepage": "https://phpunit.de/",
  10293. "keywords": [
  10294. "phpunit",
  10295. "testing",
  10296. "xunit"
  10297. ],
  10298. "time": "2019-02-01T05:22:47+00:00"
  10299. },
  10300. {
  10301. "name": "phpunit/phpunit-mock-objects",
  10302. "version": "5.0.10",
  10303. "source": {
  10304. "type": "git",
  10305. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  10306. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  10307. },
  10308. "dist": {
  10309. "type": "zip",
  10310. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  10311. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  10312. "shasum": ""
  10313. },
  10314. "require": {
  10315. "doctrine/instantiator": "^1.0.5",
  10316. "php": "^7.0",
  10317. "phpunit/php-text-template": "^1.2.1",
  10318. "sebastian/exporter": "^3.1"
  10319. },
  10320. "conflict": {
  10321. "phpunit/phpunit": "<6.0"
  10322. },
  10323. "require-dev": {
  10324. "phpunit/phpunit": "^6.5.11"
  10325. },
  10326. "suggest": {
  10327. "ext-soap": "*"
  10328. },
  10329. "type": "library",
  10330. "extra": {
  10331. "branch-alias": {
  10332. "dev-master": "5.0.x-dev"
  10333. }
  10334. },
  10335. "autoload": {
  10336. "classmap": [
  10337. "src/"
  10338. ]
  10339. },
  10340. "notification-url": "https://packagist.org/downloads/",
  10341. "license": [
  10342. "BSD-3-Clause"
  10343. ],
  10344. "authors": [
  10345. {
  10346. "name": "Sebastian Bergmann",
  10347. "email": "sebastian@phpunit.de",
  10348. "role": "lead"
  10349. }
  10350. ],
  10351. "description": "Mock Object library for PHPUnit",
  10352. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  10353. "keywords": [
  10354. "mock",
  10355. "xunit"
  10356. ],
  10357. "abandoned": true,
  10358. "time": "2018-08-09T05:50:03+00:00"
  10359. },
  10360. {
  10361. "name": "sebastian/code-unit-reverse-lookup",
  10362. "version": "1.0.1",
  10363. "source": {
  10364. "type": "git",
  10365. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10366. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  10367. },
  10368. "dist": {
  10369. "type": "zip",
  10370. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  10371. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  10372. "shasum": ""
  10373. },
  10374. "require": {
  10375. "php": "^5.6 || ^7.0"
  10376. },
  10377. "require-dev": {
  10378. "phpunit/phpunit": "^5.7 || ^6.0"
  10379. },
  10380. "type": "library",
  10381. "extra": {
  10382. "branch-alias": {
  10383. "dev-master": "1.0.x-dev"
  10384. }
  10385. },
  10386. "autoload": {
  10387. "classmap": [
  10388. "src/"
  10389. ]
  10390. },
  10391. "notification-url": "https://packagist.org/downloads/",
  10392. "license": [
  10393. "BSD-3-Clause"
  10394. ],
  10395. "authors": [
  10396. {
  10397. "name": "Sebastian Bergmann",
  10398. "email": "sebastian@phpunit.de"
  10399. }
  10400. ],
  10401. "description": "Looks up which function or method a line of code belongs to",
  10402. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10403. "time": "2017-03-04T06:30:41+00:00"
  10404. },
  10405. {
  10406. "name": "sebastian/comparator",
  10407. "version": "2.1.3",
  10408. "source": {
  10409. "type": "git",
  10410. "url": "https://github.com/sebastianbergmann/comparator.git",
  10411. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  10412. },
  10413. "dist": {
  10414. "type": "zip",
  10415. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  10416. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  10417. "shasum": ""
  10418. },
  10419. "require": {
  10420. "php": "^7.0",
  10421. "sebastian/diff": "^2.0 || ^3.0",
  10422. "sebastian/exporter": "^3.1"
  10423. },
  10424. "require-dev": {
  10425. "phpunit/phpunit": "^6.4"
  10426. },
  10427. "type": "library",
  10428. "extra": {
  10429. "branch-alias": {
  10430. "dev-master": "2.1.x-dev"
  10431. }
  10432. },
  10433. "autoload": {
  10434. "classmap": [
  10435. "src/"
  10436. ]
  10437. },
  10438. "notification-url": "https://packagist.org/downloads/",
  10439. "license": [
  10440. "BSD-3-Clause"
  10441. ],
  10442. "authors": [
  10443. {
  10444. "name": "Jeff Welch",
  10445. "email": "whatthejeff@gmail.com"
  10446. },
  10447. {
  10448. "name": "Volker Dusch",
  10449. "email": "github@wallbash.com"
  10450. },
  10451. {
  10452. "name": "Bernhard Schussek",
  10453. "email": "bschussek@2bepublished.at"
  10454. },
  10455. {
  10456. "name": "Sebastian Bergmann",
  10457. "email": "sebastian@phpunit.de"
  10458. }
  10459. ],
  10460. "description": "Provides the functionality to compare PHP values for equality",
  10461. "homepage": "https://github.com/sebastianbergmann/comparator",
  10462. "keywords": [
  10463. "comparator",
  10464. "compare",
  10465. "equality"
  10466. ],
  10467. "time": "2018-02-01T13:46:46+00:00"
  10468. },
  10469. {
  10470. "name": "sebastian/diff",
  10471. "version": "2.0.1",
  10472. "source": {
  10473. "type": "git",
  10474. "url": "https://github.com/sebastianbergmann/diff.git",
  10475. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  10476. },
  10477. "dist": {
  10478. "type": "zip",
  10479. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  10480. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  10481. "shasum": ""
  10482. },
  10483. "require": {
  10484. "php": "^7.0"
  10485. },
  10486. "require-dev": {
  10487. "phpunit/phpunit": "^6.2"
  10488. },
  10489. "type": "library",
  10490. "extra": {
  10491. "branch-alias": {
  10492. "dev-master": "2.0-dev"
  10493. }
  10494. },
  10495. "autoload": {
  10496. "classmap": [
  10497. "src/"
  10498. ]
  10499. },
  10500. "notification-url": "https://packagist.org/downloads/",
  10501. "license": [
  10502. "BSD-3-Clause"
  10503. ],
  10504. "authors": [
  10505. {
  10506. "name": "Kore Nordmann",
  10507. "email": "mail@kore-nordmann.de"
  10508. },
  10509. {
  10510. "name": "Sebastian Bergmann",
  10511. "email": "sebastian@phpunit.de"
  10512. }
  10513. ],
  10514. "description": "Diff implementation",
  10515. "homepage": "https://github.com/sebastianbergmann/diff",
  10516. "keywords": [
  10517. "diff"
  10518. ],
  10519. "time": "2017-08-03T08:09:46+00:00"
  10520. },
  10521. {
  10522. "name": "sebastian/environment",
  10523. "version": "3.1.0",
  10524. "source": {
  10525. "type": "git",
  10526. "url": "https://github.com/sebastianbergmann/environment.git",
  10527. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  10528. },
  10529. "dist": {
  10530. "type": "zip",
  10531. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  10532. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  10533. "shasum": ""
  10534. },
  10535. "require": {
  10536. "php": "^7.0"
  10537. },
  10538. "require-dev": {
  10539. "phpunit/phpunit": "^6.1"
  10540. },
  10541. "type": "library",
  10542. "extra": {
  10543. "branch-alias": {
  10544. "dev-master": "3.1.x-dev"
  10545. }
  10546. },
  10547. "autoload": {
  10548. "classmap": [
  10549. "src/"
  10550. ]
  10551. },
  10552. "notification-url": "https://packagist.org/downloads/",
  10553. "license": [
  10554. "BSD-3-Clause"
  10555. ],
  10556. "authors": [
  10557. {
  10558. "name": "Sebastian Bergmann",
  10559. "email": "sebastian@phpunit.de"
  10560. }
  10561. ],
  10562. "description": "Provides functionality to handle HHVM/PHP environments",
  10563. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10564. "keywords": [
  10565. "Xdebug",
  10566. "environment",
  10567. "hhvm"
  10568. ],
  10569. "time": "2017-07-01T08:51:00+00:00"
  10570. },
  10571. {
  10572. "name": "sebastian/exporter",
  10573. "version": "3.1.0",
  10574. "source": {
  10575. "type": "git",
  10576. "url": "https://github.com/sebastianbergmann/exporter.git",
  10577. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  10578. },
  10579. "dist": {
  10580. "type": "zip",
  10581. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  10582. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  10583. "shasum": ""
  10584. },
  10585. "require": {
  10586. "php": "^7.0",
  10587. "sebastian/recursion-context": "^3.0"
  10588. },
  10589. "require-dev": {
  10590. "ext-mbstring": "*",
  10591. "phpunit/phpunit": "^6.0"
  10592. },
  10593. "type": "library",
  10594. "extra": {
  10595. "branch-alias": {
  10596. "dev-master": "3.1.x-dev"
  10597. }
  10598. },
  10599. "autoload": {
  10600. "classmap": [
  10601. "src/"
  10602. ]
  10603. },
  10604. "notification-url": "https://packagist.org/downloads/",
  10605. "license": [
  10606. "BSD-3-Clause"
  10607. ],
  10608. "authors": [
  10609. {
  10610. "name": "Jeff Welch",
  10611. "email": "whatthejeff@gmail.com"
  10612. },
  10613. {
  10614. "name": "Volker Dusch",
  10615. "email": "github@wallbash.com"
  10616. },
  10617. {
  10618. "name": "Bernhard Schussek",
  10619. "email": "bschussek@2bepublished.at"
  10620. },
  10621. {
  10622. "name": "Sebastian Bergmann",
  10623. "email": "sebastian@phpunit.de"
  10624. },
  10625. {
  10626. "name": "Adam Harvey",
  10627. "email": "aharvey@php.net"
  10628. }
  10629. ],
  10630. "description": "Provides the functionality to export PHP variables for visualization",
  10631. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10632. "keywords": [
  10633. "export",
  10634. "exporter"
  10635. ],
  10636. "time": "2017-04-03T13:19:02+00:00"
  10637. },
  10638. {
  10639. "name": "sebastian/global-state",
  10640. "version": "2.0.0",
  10641. "source": {
  10642. "type": "git",
  10643. "url": "https://github.com/sebastianbergmann/global-state.git",
  10644. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  10645. },
  10646. "dist": {
  10647. "type": "zip",
  10648. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  10649. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  10650. "shasum": ""
  10651. },
  10652. "require": {
  10653. "php": "^7.0"
  10654. },
  10655. "require-dev": {
  10656. "phpunit/phpunit": "^6.0"
  10657. },
  10658. "suggest": {
  10659. "ext-uopz": "*"
  10660. },
  10661. "type": "library",
  10662. "extra": {
  10663. "branch-alias": {
  10664. "dev-master": "2.0-dev"
  10665. }
  10666. },
  10667. "autoload": {
  10668. "classmap": [
  10669. "src/"
  10670. ]
  10671. },
  10672. "notification-url": "https://packagist.org/downloads/",
  10673. "license": [
  10674. "BSD-3-Clause"
  10675. ],
  10676. "authors": [
  10677. {
  10678. "name": "Sebastian Bergmann",
  10679. "email": "sebastian@phpunit.de"
  10680. }
  10681. ],
  10682. "description": "Snapshotting of global state",
  10683. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10684. "keywords": [
  10685. "global state"
  10686. ],
  10687. "time": "2017-04-27T15:39:26+00:00"
  10688. },
  10689. {
  10690. "name": "sebastian/object-enumerator",
  10691. "version": "3.0.3",
  10692. "source": {
  10693. "type": "git",
  10694. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10695. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  10696. },
  10697. "dist": {
  10698. "type": "zip",
  10699. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  10700. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  10701. "shasum": ""
  10702. },
  10703. "require": {
  10704. "php": "^7.0",
  10705. "sebastian/object-reflector": "^1.1.1",
  10706. "sebastian/recursion-context": "^3.0"
  10707. },
  10708. "require-dev": {
  10709. "phpunit/phpunit": "^6.0"
  10710. },
  10711. "type": "library",
  10712. "extra": {
  10713. "branch-alias": {
  10714. "dev-master": "3.0.x-dev"
  10715. }
  10716. },
  10717. "autoload": {
  10718. "classmap": [
  10719. "src/"
  10720. ]
  10721. },
  10722. "notification-url": "https://packagist.org/downloads/",
  10723. "license": [
  10724. "BSD-3-Clause"
  10725. ],
  10726. "authors": [
  10727. {
  10728. "name": "Sebastian Bergmann",
  10729. "email": "sebastian@phpunit.de"
  10730. }
  10731. ],
  10732. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10733. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10734. "time": "2017-08-03T12:35:26+00:00"
  10735. },
  10736. {
  10737. "name": "sebastian/object-reflector",
  10738. "version": "1.1.1",
  10739. "source": {
  10740. "type": "git",
  10741. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10742. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  10743. },
  10744. "dist": {
  10745. "type": "zip",
  10746. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  10747. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  10748. "shasum": ""
  10749. },
  10750. "require": {
  10751. "php": "^7.0"
  10752. },
  10753. "require-dev": {
  10754. "phpunit/phpunit": "^6.0"
  10755. },
  10756. "type": "library",
  10757. "extra": {
  10758. "branch-alias": {
  10759. "dev-master": "1.1-dev"
  10760. }
  10761. },
  10762. "autoload": {
  10763. "classmap": [
  10764. "src/"
  10765. ]
  10766. },
  10767. "notification-url": "https://packagist.org/downloads/",
  10768. "license": [
  10769. "BSD-3-Clause"
  10770. ],
  10771. "authors": [
  10772. {
  10773. "name": "Sebastian Bergmann",
  10774. "email": "sebastian@phpunit.de"
  10775. }
  10776. ],
  10777. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10778. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10779. "time": "2017-03-29T09:07:27+00:00"
  10780. },
  10781. {
  10782. "name": "sebastian/recursion-context",
  10783. "version": "3.0.0",
  10784. "source": {
  10785. "type": "git",
  10786. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10787. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  10788. },
  10789. "dist": {
  10790. "type": "zip",
  10791. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  10792. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  10793. "shasum": ""
  10794. },
  10795. "require": {
  10796. "php": "^7.0"
  10797. },
  10798. "require-dev": {
  10799. "phpunit/phpunit": "^6.0"
  10800. },
  10801. "type": "library",
  10802. "extra": {
  10803. "branch-alias": {
  10804. "dev-master": "3.0.x-dev"
  10805. }
  10806. },
  10807. "autoload": {
  10808. "classmap": [
  10809. "src/"
  10810. ]
  10811. },
  10812. "notification-url": "https://packagist.org/downloads/",
  10813. "license": [
  10814. "BSD-3-Clause"
  10815. ],
  10816. "authors": [
  10817. {
  10818. "name": "Jeff Welch",
  10819. "email": "whatthejeff@gmail.com"
  10820. },
  10821. {
  10822. "name": "Sebastian Bergmann",
  10823. "email": "sebastian@phpunit.de"
  10824. },
  10825. {
  10826. "name": "Adam Harvey",
  10827. "email": "aharvey@php.net"
  10828. }
  10829. ],
  10830. "description": "Provides functionality to recursively process PHP variables",
  10831. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10832. "time": "2017-03-03T06:23:57+00:00"
  10833. },
  10834. {
  10835. "name": "sebastian/resource-operations",
  10836. "version": "1.0.0",
  10837. "source": {
  10838. "type": "git",
  10839. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10840. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  10841. },
  10842. "dist": {
  10843. "type": "zip",
  10844. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  10845. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  10846. "shasum": ""
  10847. },
  10848. "require": {
  10849. "php": ">=5.6.0"
  10850. },
  10851. "type": "library",
  10852. "extra": {
  10853. "branch-alias": {
  10854. "dev-master": "1.0.x-dev"
  10855. }
  10856. },
  10857. "autoload": {
  10858. "classmap": [
  10859. "src/"
  10860. ]
  10861. },
  10862. "notification-url": "https://packagist.org/downloads/",
  10863. "license": [
  10864. "BSD-3-Clause"
  10865. ],
  10866. "authors": [
  10867. {
  10868. "name": "Sebastian Bergmann",
  10869. "email": "sebastian@phpunit.de"
  10870. }
  10871. ],
  10872. "description": "Provides a list of PHP built-in functions that operate on resources",
  10873. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10874. "time": "2015-07-28T20:34:47+00:00"
  10875. },
  10876. {
  10877. "name": "sebastian/version",
  10878. "version": "2.0.1",
  10879. "source": {
  10880. "type": "git",
  10881. "url": "https://github.com/sebastianbergmann/version.git",
  10882. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10883. },
  10884. "dist": {
  10885. "type": "zip",
  10886. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10887. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10888. "shasum": ""
  10889. },
  10890. "require": {
  10891. "php": ">=5.6"
  10892. },
  10893. "type": "library",
  10894. "extra": {
  10895. "branch-alias": {
  10896. "dev-master": "2.0.x-dev"
  10897. }
  10898. },
  10899. "autoload": {
  10900. "classmap": [
  10901. "src/"
  10902. ]
  10903. },
  10904. "notification-url": "https://packagist.org/downloads/",
  10905. "license": [
  10906. "BSD-3-Clause"
  10907. ],
  10908. "authors": [
  10909. {
  10910. "name": "Sebastian Bergmann",
  10911. "email": "sebastian@phpunit.de",
  10912. "role": "lead"
  10913. }
  10914. ],
  10915. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10916. "homepage": "https://github.com/sebastianbergmann/version",
  10917. "time": "2016-10-03T07:35:21+00:00"
  10918. },
  10919. {
  10920. "name": "squizlabs/php_codesniffer",
  10921. "version": "3.4.2",
  10922. "source": {
  10923. "type": "git",
  10924. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  10925. "reference": "b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8"
  10926. },
  10927. "dist": {
  10928. "type": "zip",
  10929. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8",
  10930. "reference": "b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8",
  10931. "shasum": ""
  10932. },
  10933. "require": {
  10934. "ext-simplexml": "*",
  10935. "ext-tokenizer": "*",
  10936. "ext-xmlwriter": "*",
  10937. "php": ">=5.4.0"
  10938. },
  10939. "require-dev": {
  10940. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  10941. },
  10942. "bin": [
  10943. "bin/phpcs",
  10944. "bin/phpcbf"
  10945. ],
  10946. "type": "library",
  10947. "extra": {
  10948. "branch-alias": {
  10949. "dev-master": "3.x-dev"
  10950. }
  10951. },
  10952. "notification-url": "https://packagist.org/downloads/",
  10953. "license": [
  10954. "BSD-3-Clause"
  10955. ],
  10956. "authors": [
  10957. {
  10958. "name": "Greg Sherwood",
  10959. "role": "lead"
  10960. }
  10961. ],
  10962. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  10963. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  10964. "keywords": [
  10965. "phpcs",
  10966. "standards"
  10967. ],
  10968. "time": "2019-04-10T23:49:02+00:00"
  10969. },
  10970. {
  10971. "name": "symfony/browser-kit",
  10972. "version": "v3.4.26",
  10973. "source": {
  10974. "type": "git",
  10975. "url": "https://github.com/symfony/browser-kit.git",
  10976. "reference": "7f2b0843d5045468225f9a9b27a0cb171ae81828"
  10977. },
  10978. "dist": {
  10979. "type": "zip",
  10980. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/7f2b0843d5045468225f9a9b27a0cb171ae81828",
  10981. "reference": "7f2b0843d5045468225f9a9b27a0cb171ae81828",
  10982. "shasum": ""
  10983. },
  10984. "require": {
  10985. "php": "^5.5.9|>=7.0.8",
  10986. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  10987. },
  10988. "require-dev": {
  10989. "symfony/css-selector": "~2.8|~3.0|~4.0",
  10990. "symfony/process": "~2.8|~3.0|~4.0"
  10991. },
  10992. "suggest": {
  10993. "symfony/process": ""
  10994. },
  10995. "type": "library",
  10996. "extra": {
  10997. "branch-alias": {
  10998. "dev-master": "3.4-dev"
  10999. }
  11000. },
  11001. "autoload": {
  11002. "psr-4": {
  11003. "Symfony\\Component\\BrowserKit\\": ""
  11004. },
  11005. "exclude-from-classmap": [
  11006. "/Tests/"
  11007. ]
  11008. },
  11009. "notification-url": "https://packagist.org/downloads/",
  11010. "license": [
  11011. "MIT"
  11012. ],
  11013. "authors": [
  11014. {
  11015. "name": "Fabien Potencier",
  11016. "email": "fabien@symfony.com"
  11017. },
  11018. {
  11019. "name": "Symfony Community",
  11020. "homepage": "https://symfony.com/contributors"
  11021. }
  11022. ],
  11023. "description": "Symfony BrowserKit Component",
  11024. "homepage": "https://symfony.com",
  11025. "time": "2019-04-06T19:33:58+00:00"
  11026. },
  11027. {
  11028. "name": "symfony/phpunit-bridge",
  11029. "version": "v3.4.26",
  11030. "source": {
  11031. "type": "git",
  11032. "url": "https://github.com/symfony/phpunit-bridge.git",
  11033. "reference": "a43a2f6c465a2d99635fea0addbebddc3864ad97"
  11034. },
  11035. "dist": {
  11036. "type": "zip",
  11037. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/a43a2f6c465a2d99635fea0addbebddc3864ad97",
  11038. "reference": "a43a2f6c465a2d99635fea0addbebddc3864ad97",
  11039. "shasum": ""
  11040. },
  11041. "require": {
  11042. "php": ">=5.3.3"
  11043. },
  11044. "conflict": {
  11045. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  11046. },
  11047. "suggest": {
  11048. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  11049. },
  11050. "bin": [
  11051. "bin/simple-phpunit"
  11052. ],
  11053. "type": "symfony-bridge",
  11054. "extra": {
  11055. "branch-alias": {
  11056. "dev-master": "3.4-dev"
  11057. },
  11058. "thanks": {
  11059. "name": "phpunit/phpunit",
  11060. "url": "https://github.com/sebastianbergmann/phpunit"
  11061. }
  11062. },
  11063. "autoload": {
  11064. "files": [
  11065. "bootstrap.php"
  11066. ],
  11067. "psr-4": {
  11068. "Symfony\\Bridge\\PhpUnit\\": ""
  11069. },
  11070. "exclude-from-classmap": [
  11071. "/Tests/"
  11072. ]
  11073. },
  11074. "notification-url": "https://packagist.org/downloads/",
  11075. "license": [
  11076. "MIT"
  11077. ],
  11078. "authors": [
  11079. {
  11080. "name": "Nicolas Grekas",
  11081. "email": "p@tchwork.com"
  11082. },
  11083. {
  11084. "name": "Symfony Community",
  11085. "homepage": "https://symfony.com/contributors"
  11086. }
  11087. ],
  11088. "description": "Symfony PHPUnit Bridge",
  11089. "homepage": "https://symfony.com",
  11090. "time": "2019-04-16T09:03:16+00:00"
  11091. },
  11092. {
  11093. "name": "theseer/tokenizer",
  11094. "version": "1.1.2",
  11095. "source": {
  11096. "type": "git",
  11097. "url": "https://github.com/theseer/tokenizer.git",
  11098. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8"
  11099. },
  11100. "dist": {
  11101. "type": "zip",
  11102. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/1c42705be2b6c1de5904f8afacef5895cab44bf8",
  11103. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8",
  11104. "shasum": ""
  11105. },
  11106. "require": {
  11107. "ext-dom": "*",
  11108. "ext-tokenizer": "*",
  11109. "ext-xmlwriter": "*",
  11110. "php": "^7.0"
  11111. },
  11112. "type": "library",
  11113. "autoload": {
  11114. "classmap": [
  11115. "src/"
  11116. ]
  11117. },
  11118. "notification-url": "https://packagist.org/downloads/",
  11119. "license": [
  11120. "BSD-3-Clause"
  11121. ],
  11122. "authors": [
  11123. {
  11124. "name": "Arne Blankerts",
  11125. "email": "arne@blankerts.de",
  11126. "role": "Developer"
  11127. }
  11128. ],
  11129. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11130. "time": "2019-04-04T09:56:43+00:00"
  11131. },
  11132. {
  11133. "name": "webflo/drupal-core-require-dev",
  11134. "version": "8.6.15",
  11135. "source": {
  11136. "type": "git",
  11137. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  11138. "reference": "6b3d632fa16e56858706fe0394eafe88a13a9cd0"
  11139. },
  11140. "dist": {
  11141. "type": "zip",
  11142. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/6b3d632fa16e56858706fe0394eafe88a13a9cd0",
  11143. "reference": "6b3d632fa16e56858706fe0394eafe88a13a9cd0",
  11144. "shasum": ""
  11145. },
  11146. "require": {
  11147. "behat/mink": "1.7.x-dev",
  11148. "behat/mink-goutte-driver": "^1.2",
  11149. "behat/mink-selenium2-driver": "1.3.x-dev",
  11150. "drupal/coder": "^8.2.12",
  11151. "drupal/core": "8.6.15",
  11152. "jcalderonzumba/gastonjs": "^1.0.2",
  11153. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  11154. "mikey179/vfsstream": "^1.2",
  11155. "phpspec/prophecy": "^1.7",
  11156. "phpunit/phpunit": "^4.8.35 || ^6.5",
  11157. "symfony/css-selector": "^3.4.0",
  11158. "symfony/debug": "^3.4.0",
  11159. "symfony/phpunit-bridge": "^3.4.3"
  11160. },
  11161. "type": "metapackage",
  11162. "notification-url": "https://packagist.org/downloads/",
  11163. "license": [
  11164. "GPL-2.0-or-later"
  11165. ],
  11166. "description": "require-dev dependencies from drupal/core",
  11167. "time": "2019-04-17T20:31:37+00:00"
  11168. }
  11169. ],
  11170. "aliases": [],
  11171. "minimum-stability": "dev",
  11172. "stability-flags": {
  11173. "drupal/bulkdelete": 20,
  11174. "drupal/composerize": 20,
  11175. "drupal/domain_menu_access": 20,
  11176. "drupal/filefield_sources": 20,
  11177. "drupal/filter_perms": 20,
  11178. "drupal/maillog": 20,
  11179. "drupal/path_alias_xt": 20,
  11180. "drupal/synonyms": 20,
  11181. "drupal/toolbar_themes": 20,
  11182. "drupal/workflow": 20
  11183. },
  11184. "prefer-stable": true,
  11185. "prefer-lowest": false,
  11186. "platform": {
  11187. "php": ">=5.6"
  11188. },
  11189. "platform-dev": []
  11190. }