composer.lock 412 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580
  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": "3a6a13ff26722480fe277d9a90a39a04",
  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": "chi-teck/drupal-code-generator",
  127. "version": "1.27.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "a839bc89d385087d8a7a96a9c1c4bd470ffb627e"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/a839bc89d385087d8a7a96a9c1c4bd470ffb627e",
  136. "reference": "a839bc89d385087d8a7a96a9c1c4bd470ffb627e",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "ext-json": "*",
  141. "php": ">=5.5.9",
  142. "symfony/console": "~2.7|^3",
  143. "symfony/filesystem": "~2.7|^3",
  144. "twig/twig": "^1.23.1"
  145. },
  146. "bin": [
  147. "bin/dcg"
  148. ],
  149. "type": "library",
  150. "extra": {
  151. "branch-alias": {
  152. "dev-master": "1.x-dev"
  153. }
  154. },
  155. "autoload": {
  156. "files": [
  157. "src/bootstrap.php"
  158. ],
  159. "psr-4": {
  160. "DrupalCodeGenerator\\": "src"
  161. }
  162. },
  163. "notification-url": "https://packagist.org/downloads/",
  164. "license": [
  165. "GPL-2.0-or-later"
  166. ],
  167. "description": "Drupal code generator",
  168. "time": "2018-10-11T08:05:59+00:00"
  169. },
  170. {
  171. "name": "composer/installers",
  172. "version": "v1.6.0",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/composer/installers.git",
  176. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  181. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  182. "shasum": ""
  183. },
  184. "require": {
  185. "composer-plugin-api": "^1.0"
  186. },
  187. "replace": {
  188. "roundcube/plugin-installer": "*",
  189. "shama/baton": "*"
  190. },
  191. "require-dev": {
  192. "composer/composer": "1.0.*@dev",
  193. "phpunit/phpunit": "^4.8.36"
  194. },
  195. "type": "composer-plugin",
  196. "extra": {
  197. "class": "Composer\\Installers\\Plugin",
  198. "branch-alias": {
  199. "dev-master": "1.0-dev"
  200. }
  201. },
  202. "autoload": {
  203. "psr-4": {
  204. "Composer\\Installers\\": "src/Composer/Installers"
  205. }
  206. },
  207. "notification-url": "https://packagist.org/downloads/",
  208. "license": [
  209. "MIT"
  210. ],
  211. "authors": [
  212. {
  213. "name": "Kyle Robinson Young",
  214. "email": "kyle@dontkry.com",
  215. "homepage": "https://github.com/shama"
  216. }
  217. ],
  218. "description": "A multi-framework Composer library installer",
  219. "homepage": "https://composer.github.io/installers/",
  220. "keywords": [
  221. "Craft",
  222. "Dolibarr",
  223. "Eliasis",
  224. "Hurad",
  225. "ImageCMS",
  226. "Kanboard",
  227. "Lan Management System",
  228. "MODX Evo",
  229. "Mautic",
  230. "Maya",
  231. "OXID",
  232. "Plentymarkets",
  233. "Porto",
  234. "RadPHP",
  235. "SMF",
  236. "Thelia",
  237. "WolfCMS",
  238. "agl",
  239. "aimeos",
  240. "annotatecms",
  241. "attogram",
  242. "bitrix",
  243. "cakephp",
  244. "chef",
  245. "cockpit",
  246. "codeigniter",
  247. "concrete5",
  248. "croogo",
  249. "dokuwiki",
  250. "drupal",
  251. "eZ Platform",
  252. "elgg",
  253. "expressionengine",
  254. "fuelphp",
  255. "grav",
  256. "installer",
  257. "itop",
  258. "joomla",
  259. "kohana",
  260. "laravel",
  261. "lavalite",
  262. "lithium",
  263. "magento",
  264. "majima",
  265. "mako",
  266. "mediawiki",
  267. "modulework",
  268. "modx",
  269. "moodle",
  270. "osclass",
  271. "phpbb",
  272. "piwik",
  273. "ppi",
  274. "puppet",
  275. "pxcms",
  276. "reindex",
  277. "roundcube",
  278. "shopware",
  279. "silverstripe",
  280. "sydes",
  281. "symfony",
  282. "typo3",
  283. "wordpress",
  284. "yawik",
  285. "zend",
  286. "zikula"
  287. ],
  288. "time": "2018-08-27T06:10:37+00:00"
  289. },
  290. {
  291. "name": "composer/semver",
  292. "version": "1.4.2",
  293. "source": {
  294. "type": "git",
  295. "url": "https://github.com/composer/semver.git",
  296. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  297. },
  298. "dist": {
  299. "type": "zip",
  300. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  301. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  302. "shasum": ""
  303. },
  304. "require": {
  305. "php": "^5.3.2 || ^7.0"
  306. },
  307. "require-dev": {
  308. "phpunit/phpunit": "^4.5 || ^5.0.5",
  309. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  310. },
  311. "type": "library",
  312. "extra": {
  313. "branch-alias": {
  314. "dev-master": "1.x-dev"
  315. }
  316. },
  317. "autoload": {
  318. "psr-4": {
  319. "Composer\\Semver\\": "src"
  320. }
  321. },
  322. "notification-url": "https://packagist.org/downloads/",
  323. "license": [
  324. "MIT"
  325. ],
  326. "authors": [
  327. {
  328. "name": "Nils Adermann",
  329. "email": "naderman@naderman.de",
  330. "homepage": "http://www.naderman.de"
  331. },
  332. {
  333. "name": "Jordi Boggiano",
  334. "email": "j.boggiano@seld.be",
  335. "homepage": "http://seld.be"
  336. },
  337. {
  338. "name": "Rob Bast",
  339. "email": "rob.bast@gmail.com",
  340. "homepage": "http://robbast.nl"
  341. }
  342. ],
  343. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  344. "keywords": [
  345. "semantic",
  346. "semver",
  347. "validation",
  348. "versioning"
  349. ],
  350. "time": "2016-08-30T16:08:34+00:00"
  351. },
  352. {
  353. "name": "consolidation/annotated-command",
  354. "version": "2.9.1",
  355. "source": {
  356. "type": "git",
  357. "url": "https://github.com/consolidation/annotated-command.git",
  358. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac"
  359. },
  360. "dist": {
  361. "type": "zip",
  362. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  363. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  364. "shasum": ""
  365. },
  366. "require": {
  367. "consolidation/output-formatters": "^3.1.12",
  368. "php": ">=5.4.0",
  369. "psr/log": "^1",
  370. "symfony/console": "^2.8|^3|^4",
  371. "symfony/event-dispatcher": "^2.5|^3|^4",
  372. "symfony/finder": "^2.5|^3|^4"
  373. },
  374. "require-dev": {
  375. "g1a/composer-test-scenarios": "^2",
  376. "phpunit/phpunit": "^6",
  377. "satooshi/php-coveralls": "^2",
  378. "squizlabs/php_codesniffer": "^2.7"
  379. },
  380. "type": "library",
  381. "extra": {
  382. "branch-alias": {
  383. "dev-master": "2.x-dev"
  384. }
  385. },
  386. "autoload": {
  387. "psr-4": {
  388. "Consolidation\\AnnotatedCommand\\": "src"
  389. }
  390. },
  391. "notification-url": "https://packagist.org/downloads/",
  392. "license": [
  393. "MIT"
  394. ],
  395. "authors": [
  396. {
  397. "name": "Greg Anderson",
  398. "email": "greg.1.anderson@greenknowe.org"
  399. }
  400. ],
  401. "description": "Initialize Symfony Console commands from annotated command class methods.",
  402. "time": "2018-09-19T17:47:18+00:00"
  403. },
  404. {
  405. "name": "consolidation/config",
  406. "version": "1.1.1",
  407. "source": {
  408. "type": "git",
  409. "url": "https://github.com/consolidation/config.git",
  410. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c"
  411. },
  412. "dist": {
  413. "type": "zip",
  414. "url": "https://api.github.com/repos/consolidation/config/zipball/925231dfff32f05b787e1fddb265e789b939cf4c",
  415. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c",
  416. "shasum": ""
  417. },
  418. "require": {
  419. "dflydev/dot-access-data": "^1.1.0",
  420. "grasmash/expander": "^1",
  421. "php": ">=5.4.0"
  422. },
  423. "require-dev": {
  424. "g1a/composer-test-scenarios": "^1",
  425. "phpunit/phpunit": "^5",
  426. "satooshi/php-coveralls": "^1.0",
  427. "squizlabs/php_codesniffer": "2.*",
  428. "symfony/console": "^2.5|^3|^4",
  429. "symfony/yaml": "^2.8.11|^3|^4"
  430. },
  431. "suggest": {
  432. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  433. },
  434. "type": "library",
  435. "extra": {
  436. "branch-alias": {
  437. "dev-master": "1.x-dev"
  438. }
  439. },
  440. "autoload": {
  441. "psr-4": {
  442. "Consolidation\\Config\\": "src"
  443. }
  444. },
  445. "notification-url": "https://packagist.org/downloads/",
  446. "license": [
  447. "MIT"
  448. ],
  449. "authors": [
  450. {
  451. "name": "Greg Anderson",
  452. "email": "greg.1.anderson@greenknowe.org"
  453. }
  454. ],
  455. "description": "Provide configuration services for a commandline tool.",
  456. "time": "2018-10-24T17:55:35+00:00"
  457. },
  458. {
  459. "name": "consolidation/log",
  460. "version": "1.0.6",
  461. "source": {
  462. "type": "git",
  463. "url": "https://github.com/consolidation/log.git",
  464. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395"
  465. },
  466. "dist": {
  467. "type": "zip",
  468. "url": "https://api.github.com/repos/consolidation/log/zipball/dfd8189a771fe047bf3cd669111b2de5f1c79395",
  469. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395",
  470. "shasum": ""
  471. },
  472. "require": {
  473. "php": ">=5.5.0",
  474. "psr/log": "~1.0",
  475. "symfony/console": "^2.8|^3|^4"
  476. },
  477. "require-dev": {
  478. "g1a/composer-test-scenarios": "^1",
  479. "phpunit/phpunit": "4.*",
  480. "satooshi/php-coveralls": "^2",
  481. "squizlabs/php_codesniffer": "2.*"
  482. },
  483. "type": "library",
  484. "extra": {
  485. "branch-alias": {
  486. "dev-master": "1.x-dev"
  487. }
  488. },
  489. "autoload": {
  490. "psr-4": {
  491. "Consolidation\\Log\\": "src"
  492. }
  493. },
  494. "notification-url": "https://packagist.org/downloads/",
  495. "license": [
  496. "MIT"
  497. ],
  498. "authors": [
  499. {
  500. "name": "Greg Anderson",
  501. "email": "greg.1.anderson@greenknowe.org"
  502. }
  503. ],
  504. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  505. "time": "2018-05-25T18:14:39+00:00"
  506. },
  507. {
  508. "name": "consolidation/output-formatters",
  509. "version": "3.4.0",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/consolidation/output-formatters.git",
  513. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a942680232094c4a5b21c0b7e54c20cce623ae19",
  518. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19",
  519. "shasum": ""
  520. },
  521. "require": {
  522. "dflydev/dot-access-data": "^1.1.0",
  523. "php": ">=5.4.0",
  524. "symfony/console": "^2.8|^3|^4",
  525. "symfony/finder": "^2.5|^3|^4"
  526. },
  527. "require-dev": {
  528. "g1a/composer-test-scenarios": "^2",
  529. "phpunit/phpunit": "^5.7.27",
  530. "satooshi/php-coveralls": "^2",
  531. "squizlabs/php_codesniffer": "^2.7",
  532. "symfony/console": "3.2.3",
  533. "symfony/var-dumper": "^2.8|^3|^4",
  534. "victorjonsson/markdowndocs": "^1.3"
  535. },
  536. "suggest": {
  537. "symfony/var-dumper": "For using the var_dump formatter"
  538. },
  539. "type": "library",
  540. "extra": {
  541. "branch-alias": {
  542. "dev-master": "3.x-dev"
  543. }
  544. },
  545. "autoload": {
  546. "psr-4": {
  547. "Consolidation\\OutputFormatters\\": "src"
  548. }
  549. },
  550. "notification-url": "https://packagist.org/downloads/",
  551. "license": [
  552. "MIT"
  553. ],
  554. "authors": [
  555. {
  556. "name": "Greg Anderson",
  557. "email": "greg.1.anderson@greenknowe.org"
  558. }
  559. ],
  560. "description": "Format text by applying transformations provided by plug-in formatters.",
  561. "time": "2018-10-19T22:35:38+00:00"
  562. },
  563. {
  564. "name": "consolidation/robo",
  565. "version": "1.3.1",
  566. "source": {
  567. "type": "git",
  568. "url": "https://github.com/consolidation/Robo.git",
  569. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d"
  570. },
  571. "dist": {
  572. "type": "zip",
  573. "url": "https://api.github.com/repos/consolidation/Robo/zipball/31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  574. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  575. "shasum": ""
  576. },
  577. "require": {
  578. "consolidation/annotated-command": "^2.8.2",
  579. "consolidation/config": "^1.0.10",
  580. "consolidation/log": "~1",
  581. "consolidation/output-formatters": "^3.1.13",
  582. "consolidation/self-update": "^1",
  583. "g1a/composer-test-scenarios": "^2",
  584. "grasmash/yaml-expander": "^1.3",
  585. "league/container": "^2.2",
  586. "php": ">=5.5.0",
  587. "symfony/console": "^2.8|^3|^4",
  588. "symfony/event-dispatcher": "^2.5|^3|^4",
  589. "symfony/filesystem": "^2.5|^3|^4",
  590. "symfony/finder": "^2.5|^3|^4",
  591. "symfony/process": "^2.5|^3|^4"
  592. },
  593. "replace": {
  594. "codegyre/robo": "< 1.0"
  595. },
  596. "require-dev": {
  597. "codeception/aspect-mock": "^1|^2.1.1",
  598. "codeception/base": "^2.3.7",
  599. "codeception/verify": "^0.3.2",
  600. "goaop/framework": "~2.1.2",
  601. "goaop/parser-reflection": "^1.1.0",
  602. "natxet/cssmin": "3.0.4",
  603. "nikic/php-parser": "^3.1.5",
  604. "patchwork/jsqueeze": "~2",
  605. "pear/archive_tar": "^1.4.2",
  606. "phpunit/php-code-coverage": "~2|~4",
  607. "satooshi/php-coveralls": "^2",
  608. "squizlabs/php_codesniffer": "^2.8"
  609. },
  610. "suggest": {
  611. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  612. "natxet/CssMin": "For minifying CSS files in taskMinify",
  613. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  614. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  615. },
  616. "bin": [
  617. "robo"
  618. ],
  619. "type": "library",
  620. "extra": {
  621. "branch-alias": {
  622. "dev-master": "1.x-dev",
  623. "dev-state": "1.x-dev"
  624. }
  625. },
  626. "autoload": {
  627. "psr-4": {
  628. "Robo\\": "src"
  629. }
  630. },
  631. "notification-url": "https://packagist.org/downloads/",
  632. "license": [
  633. "MIT"
  634. ],
  635. "authors": [
  636. {
  637. "name": "Davert",
  638. "email": "davert.php@resend.cc"
  639. }
  640. ],
  641. "description": "Modern task runner",
  642. "time": "2018-08-17T18:44:18+00:00"
  643. },
  644. {
  645. "name": "consolidation/self-update",
  646. "version": "1.1.5",
  647. "source": {
  648. "type": "git",
  649. "url": "https://github.com/consolidation/self-update.git",
  650. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  651. },
  652. "dist": {
  653. "type": "zip",
  654. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  655. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  656. "shasum": ""
  657. },
  658. "require": {
  659. "php": ">=5.5.0",
  660. "symfony/console": "^2.8|^3|^4",
  661. "symfony/filesystem": "^2.5|^3|^4"
  662. },
  663. "bin": [
  664. "scripts/release"
  665. ],
  666. "type": "library",
  667. "extra": {
  668. "branch-alias": {
  669. "dev-master": "1.x-dev"
  670. }
  671. },
  672. "autoload": {
  673. "psr-4": {
  674. "SelfUpdate\\": "src"
  675. }
  676. },
  677. "notification-url": "https://packagist.org/downloads/",
  678. "license": [
  679. "MIT"
  680. ],
  681. "authors": [
  682. {
  683. "name": "Greg Anderson",
  684. "email": "greg.1.anderson@greenknowe.org"
  685. },
  686. {
  687. "name": "Alexander Menk",
  688. "email": "menk@mestrona.net"
  689. }
  690. ],
  691. "description": "Provides a self:update command for Symfony Console applications.",
  692. "time": "2018-10-28T01:52:03+00:00"
  693. },
  694. {
  695. "name": "consolidation/site-alias",
  696. "version": "1.1.9",
  697. "source": {
  698. "type": "git",
  699. "url": "https://github.com/consolidation/site-alias.git",
  700. "reference": "0a4c49f91e44b0b7bb288f3547875a136a7ed704"
  701. },
  702. "dist": {
  703. "type": "zip",
  704. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/0a4c49f91e44b0b7bb288f3547875a136a7ed704",
  705. "reference": "0a4c49f91e44b0b7bb288f3547875a136a7ed704",
  706. "shasum": ""
  707. },
  708. "require": {
  709. "php": ">=5.5.0"
  710. },
  711. "require-dev": {
  712. "consolidation/robo": "^1.2.3",
  713. "g1a/composer-test-scenarios": "^2",
  714. "knplabs/github-api": "^2.7",
  715. "php-http/guzzle6-adapter": "^1.1",
  716. "phpunit/phpunit": "^5",
  717. "satooshi/php-coveralls": "^2",
  718. "squizlabs/php_codesniffer": "^2.8",
  719. "symfony/console": "^2.8|^3|^4",
  720. "symfony/yaml": "~2.3|^3"
  721. },
  722. "type": "library",
  723. "extra": {
  724. "branch-alias": {
  725. "dev-master": "1.x-dev"
  726. }
  727. },
  728. "autoload": {
  729. "psr-4": {
  730. "Consolidation\\SiteAlias\\": "src"
  731. }
  732. },
  733. "notification-url": "https://packagist.org/downloads/",
  734. "license": [
  735. "MIT"
  736. ],
  737. "authors": [
  738. {
  739. "name": "Moshe Weitzman",
  740. "email": "weitzman@tejasa.com"
  741. },
  742. {
  743. "name": "Greg Anderson",
  744. "email": "greg.1.anderson@greenknowe.org"
  745. }
  746. ],
  747. "description": "Manage alias records for local and remote sites.",
  748. "time": "2018-10-31T01:29:05+00:00"
  749. },
  750. {
  751. "name": "container-interop/container-interop",
  752. "version": "1.2.0",
  753. "source": {
  754. "type": "git",
  755. "url": "https://github.com/container-interop/container-interop.git",
  756. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  757. },
  758. "dist": {
  759. "type": "zip",
  760. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  761. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  762. "shasum": ""
  763. },
  764. "require": {
  765. "psr/container": "^1.0"
  766. },
  767. "type": "library",
  768. "autoload": {
  769. "psr-4": {
  770. "Interop\\Container\\": "src/Interop/Container/"
  771. }
  772. },
  773. "notification-url": "https://packagist.org/downloads/",
  774. "license": [
  775. "MIT"
  776. ],
  777. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  778. "homepage": "https://github.com/container-interop/container-interop",
  779. "time": "2017-02-14T19:40:03+00:00"
  780. },
  781. {
  782. "name": "cweagans/composer-patches",
  783. "version": "1.6.5",
  784. "source": {
  785. "type": "git",
  786. "url": "https://github.com/cweagans/composer-patches.git",
  787. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  788. },
  789. "dist": {
  790. "type": "zip",
  791. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  792. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  793. "shasum": ""
  794. },
  795. "require": {
  796. "composer-plugin-api": "^1.0",
  797. "php": ">=5.3.0"
  798. },
  799. "require-dev": {
  800. "composer/composer": "~1.0",
  801. "phpunit/phpunit": "~4.6"
  802. },
  803. "type": "composer-plugin",
  804. "extra": {
  805. "class": "cweagans\\Composer\\Patches"
  806. },
  807. "autoload": {
  808. "psr-4": {
  809. "cweagans\\Composer\\": "src"
  810. }
  811. },
  812. "notification-url": "https://packagist.org/downloads/",
  813. "license": [
  814. "BSD-3-Clause"
  815. ],
  816. "authors": [
  817. {
  818. "name": "Cameron Eagans",
  819. "email": "me@cweagans.net"
  820. }
  821. ],
  822. "description": "Provides a way to patch Composer packages.",
  823. "time": "2018-05-11T18:00:16+00:00"
  824. },
  825. {
  826. "name": "dflydev/dot-access-configuration",
  827. "version": "v1.0.3",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  831. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  836. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "dflydev/dot-access-data": "1.*",
  841. "dflydev/placeholder-resolver": "1.*",
  842. "php": ">=5.3.2"
  843. },
  844. "require-dev": {
  845. "symfony/yaml": "~2.1"
  846. },
  847. "suggest": {
  848. "symfony/yaml": "Required for using the YAML Configuration Builders"
  849. },
  850. "type": "library",
  851. "extra": {
  852. "branch-alias": {
  853. "dev-master": "1.0-dev"
  854. }
  855. },
  856. "autoload": {
  857. "psr-0": {
  858. "Dflydev\\DotAccessConfiguration": "src"
  859. }
  860. },
  861. "notification-url": "https://packagist.org/downloads/",
  862. "license": [
  863. "MIT"
  864. ],
  865. "authors": [
  866. {
  867. "name": "Dragonfly Development Inc.",
  868. "email": "info@dflydev.com",
  869. "homepage": "http://dflydev.com"
  870. },
  871. {
  872. "name": "Beau Simensen",
  873. "email": "beau@dflydev.com",
  874. "homepage": "http://beausimensen.com"
  875. }
  876. ],
  877. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  878. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  879. "keywords": [
  880. "config",
  881. "configuration"
  882. ],
  883. "time": "2018-09-08T23:00:17+00:00"
  884. },
  885. {
  886. "name": "dflydev/dot-access-data",
  887. "version": "v1.1.0",
  888. "source": {
  889. "type": "git",
  890. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  891. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  892. },
  893. "dist": {
  894. "type": "zip",
  895. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  896. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  897. "shasum": ""
  898. },
  899. "require": {
  900. "php": ">=5.3.2"
  901. },
  902. "type": "library",
  903. "extra": {
  904. "branch-alias": {
  905. "dev-master": "1.0-dev"
  906. }
  907. },
  908. "autoload": {
  909. "psr-0": {
  910. "Dflydev\\DotAccessData": "src"
  911. }
  912. },
  913. "notification-url": "https://packagist.org/downloads/",
  914. "license": [
  915. "MIT"
  916. ],
  917. "authors": [
  918. {
  919. "name": "Dragonfly Development Inc.",
  920. "email": "info@dflydev.com",
  921. "homepage": "http://dflydev.com"
  922. },
  923. {
  924. "name": "Beau Simensen",
  925. "email": "beau@dflydev.com",
  926. "homepage": "http://beausimensen.com"
  927. },
  928. {
  929. "name": "Carlos Frutos",
  930. "email": "carlos@kiwing.it",
  931. "homepage": "https://github.com/cfrutos"
  932. }
  933. ],
  934. "description": "Given a deep data structure, access data by dot notation.",
  935. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  936. "keywords": [
  937. "access",
  938. "data",
  939. "dot",
  940. "notation"
  941. ],
  942. "time": "2017-01-20T21:14:22+00:00"
  943. },
  944. {
  945. "name": "dflydev/placeholder-resolver",
  946. "version": "v1.0.2",
  947. "source": {
  948. "type": "git",
  949. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  950. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  951. },
  952. "dist": {
  953. "type": "zip",
  954. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  955. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  956. "shasum": ""
  957. },
  958. "require": {
  959. "php": ">=5.3.2"
  960. },
  961. "type": "library",
  962. "extra": {
  963. "branch-alias": {
  964. "dev-master": "1.0-dev"
  965. }
  966. },
  967. "autoload": {
  968. "psr-0": {
  969. "Dflydev\\PlaceholderResolver": "src"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "MIT"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Dragonfly Development Inc.",
  979. "email": "info@dflydev.com",
  980. "homepage": "http://dflydev.com"
  981. },
  982. {
  983. "name": "Beau Simensen",
  984. "email": "beau@dflydev.com",
  985. "homepage": "http://beausimensen.com"
  986. }
  987. ],
  988. "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.",
  989. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  990. "keywords": [
  991. "placeholder",
  992. "resolver"
  993. ],
  994. "time": "2012-10-28T21:08:28+00:00"
  995. },
  996. {
  997. "name": "dnoegel/php-xdg-base-dir",
  998. "version": "0.1",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1002. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1007. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "php": ">=5.3.2"
  1012. },
  1013. "require-dev": {
  1014. "phpunit/phpunit": "@stable"
  1015. },
  1016. "type": "project",
  1017. "autoload": {
  1018. "psr-4": {
  1019. "XdgBaseDir\\": "src/"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "MIT"
  1025. ],
  1026. "description": "implementation of xdg base directory specification for php",
  1027. "time": "2014-10-24T07:27:01+00:00"
  1028. },
  1029. {
  1030. "name": "doctrine/annotations",
  1031. "version": "v1.2.7",
  1032. "source": {
  1033. "type": "git",
  1034. "url": "https://github.com/doctrine/annotations.git",
  1035. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  1036. },
  1037. "dist": {
  1038. "type": "zip",
  1039. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1040. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1041. "shasum": ""
  1042. },
  1043. "require": {
  1044. "doctrine/lexer": "1.*",
  1045. "php": ">=5.3.2"
  1046. },
  1047. "require-dev": {
  1048. "doctrine/cache": "1.*",
  1049. "phpunit/phpunit": "4.*"
  1050. },
  1051. "type": "library",
  1052. "extra": {
  1053. "branch-alias": {
  1054. "dev-master": "1.3.x-dev"
  1055. }
  1056. },
  1057. "autoload": {
  1058. "psr-0": {
  1059. "Doctrine\\Common\\Annotations\\": "lib/"
  1060. }
  1061. },
  1062. "notification-url": "https://packagist.org/downloads/",
  1063. "license": [
  1064. "MIT"
  1065. ],
  1066. "authors": [
  1067. {
  1068. "name": "Roman Borschel",
  1069. "email": "roman@code-factory.org"
  1070. },
  1071. {
  1072. "name": "Benjamin Eberlei",
  1073. "email": "kontakt@beberlei.de"
  1074. },
  1075. {
  1076. "name": "Guilherme Blanco",
  1077. "email": "guilhermeblanco@gmail.com"
  1078. },
  1079. {
  1080. "name": "Jonathan Wage",
  1081. "email": "jonwage@gmail.com"
  1082. },
  1083. {
  1084. "name": "Johannes Schmitt",
  1085. "email": "schmittjoh@gmail.com"
  1086. }
  1087. ],
  1088. "description": "Docblock Annotations Parser",
  1089. "homepage": "http://www.doctrine-project.org",
  1090. "keywords": [
  1091. "annotations",
  1092. "docblock",
  1093. "parser"
  1094. ],
  1095. "time": "2015-08-31T12:32:49+00:00"
  1096. },
  1097. {
  1098. "name": "doctrine/cache",
  1099. "version": "v1.6.2",
  1100. "source": {
  1101. "type": "git",
  1102. "url": "https://github.com/doctrine/cache.git",
  1103. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1104. },
  1105. "dist": {
  1106. "type": "zip",
  1107. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1108. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1109. "shasum": ""
  1110. },
  1111. "require": {
  1112. "php": "~5.5|~7.0"
  1113. },
  1114. "conflict": {
  1115. "doctrine/common": ">2.2,<2.4"
  1116. },
  1117. "require-dev": {
  1118. "phpunit/phpunit": "~4.8|~5.0",
  1119. "predis/predis": "~1.0",
  1120. "satooshi/php-coveralls": "~0.6"
  1121. },
  1122. "type": "library",
  1123. "extra": {
  1124. "branch-alias": {
  1125. "dev-master": "1.6.x-dev"
  1126. }
  1127. },
  1128. "autoload": {
  1129. "psr-4": {
  1130. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1131. }
  1132. },
  1133. "notification-url": "https://packagist.org/downloads/",
  1134. "license": [
  1135. "MIT"
  1136. ],
  1137. "authors": [
  1138. {
  1139. "name": "Roman Borschel",
  1140. "email": "roman@code-factory.org"
  1141. },
  1142. {
  1143. "name": "Benjamin Eberlei",
  1144. "email": "kontakt@beberlei.de"
  1145. },
  1146. {
  1147. "name": "Guilherme Blanco",
  1148. "email": "guilhermeblanco@gmail.com"
  1149. },
  1150. {
  1151. "name": "Jonathan Wage",
  1152. "email": "jonwage@gmail.com"
  1153. },
  1154. {
  1155. "name": "Johannes Schmitt",
  1156. "email": "schmittjoh@gmail.com"
  1157. }
  1158. ],
  1159. "description": "Caching library offering an object-oriented API for many cache backends",
  1160. "homepage": "http://www.doctrine-project.org",
  1161. "keywords": [
  1162. "cache",
  1163. "caching"
  1164. ],
  1165. "time": "2017-07-22T12:49:21+00:00"
  1166. },
  1167. {
  1168. "name": "doctrine/collections",
  1169. "version": "v1.4.0",
  1170. "source": {
  1171. "type": "git",
  1172. "url": "https://github.com/doctrine/collections.git",
  1173. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1174. },
  1175. "dist": {
  1176. "type": "zip",
  1177. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1178. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1179. "shasum": ""
  1180. },
  1181. "require": {
  1182. "php": "^5.6 || ^7.0"
  1183. },
  1184. "require-dev": {
  1185. "doctrine/coding-standard": "~0.1@dev",
  1186. "phpunit/phpunit": "^5.7"
  1187. },
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "1.3.x-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "psr-0": {
  1196. "Doctrine\\Common\\Collections\\": "lib/"
  1197. }
  1198. },
  1199. "notification-url": "https://packagist.org/downloads/",
  1200. "license": [
  1201. "MIT"
  1202. ],
  1203. "authors": [
  1204. {
  1205. "name": "Roman Borschel",
  1206. "email": "roman@code-factory.org"
  1207. },
  1208. {
  1209. "name": "Benjamin Eberlei",
  1210. "email": "kontakt@beberlei.de"
  1211. },
  1212. {
  1213. "name": "Guilherme Blanco",
  1214. "email": "guilhermeblanco@gmail.com"
  1215. },
  1216. {
  1217. "name": "Jonathan Wage",
  1218. "email": "jonwage@gmail.com"
  1219. },
  1220. {
  1221. "name": "Johannes Schmitt",
  1222. "email": "schmittjoh@gmail.com"
  1223. }
  1224. ],
  1225. "description": "Collections Abstraction library",
  1226. "homepage": "http://www.doctrine-project.org",
  1227. "keywords": [
  1228. "array",
  1229. "collections",
  1230. "iterator"
  1231. ],
  1232. "time": "2017-01-03T10:49:41+00:00"
  1233. },
  1234. {
  1235. "name": "doctrine/common",
  1236. "version": "v2.7.3",
  1237. "source": {
  1238. "type": "git",
  1239. "url": "https://github.com/doctrine/common.git",
  1240. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1241. },
  1242. "dist": {
  1243. "type": "zip",
  1244. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1245. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1246. "shasum": ""
  1247. },
  1248. "require": {
  1249. "doctrine/annotations": "1.*",
  1250. "doctrine/cache": "1.*",
  1251. "doctrine/collections": "1.*",
  1252. "doctrine/inflector": "1.*",
  1253. "doctrine/lexer": "1.*",
  1254. "php": "~5.6|~7.0"
  1255. },
  1256. "require-dev": {
  1257. "phpunit/phpunit": "^5.4.6"
  1258. },
  1259. "type": "library",
  1260. "extra": {
  1261. "branch-alias": {
  1262. "dev-master": "2.7.x-dev"
  1263. }
  1264. },
  1265. "autoload": {
  1266. "psr-4": {
  1267. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1268. }
  1269. },
  1270. "notification-url": "https://packagist.org/downloads/",
  1271. "license": [
  1272. "MIT"
  1273. ],
  1274. "authors": [
  1275. {
  1276. "name": "Roman Borschel",
  1277. "email": "roman@code-factory.org"
  1278. },
  1279. {
  1280. "name": "Benjamin Eberlei",
  1281. "email": "kontakt@beberlei.de"
  1282. },
  1283. {
  1284. "name": "Guilherme Blanco",
  1285. "email": "guilhermeblanco@gmail.com"
  1286. },
  1287. {
  1288. "name": "Jonathan Wage",
  1289. "email": "jonwage@gmail.com"
  1290. },
  1291. {
  1292. "name": "Johannes Schmitt",
  1293. "email": "schmittjoh@gmail.com"
  1294. }
  1295. ],
  1296. "description": "Common Library for Doctrine projects",
  1297. "homepage": "http://www.doctrine-project.org",
  1298. "keywords": [
  1299. "annotations",
  1300. "collections",
  1301. "eventmanager",
  1302. "persistence",
  1303. "spl"
  1304. ],
  1305. "time": "2017-07-22T08:35:12+00:00"
  1306. },
  1307. {
  1308. "name": "doctrine/inflector",
  1309. "version": "v1.2.0",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/doctrine/inflector.git",
  1313. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1318. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1319. "shasum": ""
  1320. },
  1321. "require": {
  1322. "php": "^7.0"
  1323. },
  1324. "require-dev": {
  1325. "phpunit/phpunit": "^6.2"
  1326. },
  1327. "type": "library",
  1328. "extra": {
  1329. "branch-alias": {
  1330. "dev-master": "1.2.x-dev"
  1331. }
  1332. },
  1333. "autoload": {
  1334. "psr-4": {
  1335. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1336. }
  1337. },
  1338. "notification-url": "https://packagist.org/downloads/",
  1339. "license": [
  1340. "MIT"
  1341. ],
  1342. "authors": [
  1343. {
  1344. "name": "Roman Borschel",
  1345. "email": "roman@code-factory.org"
  1346. },
  1347. {
  1348. "name": "Benjamin Eberlei",
  1349. "email": "kontakt@beberlei.de"
  1350. },
  1351. {
  1352. "name": "Guilherme Blanco",
  1353. "email": "guilhermeblanco@gmail.com"
  1354. },
  1355. {
  1356. "name": "Jonathan Wage",
  1357. "email": "jonwage@gmail.com"
  1358. },
  1359. {
  1360. "name": "Johannes Schmitt",
  1361. "email": "schmittjoh@gmail.com"
  1362. }
  1363. ],
  1364. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1365. "homepage": "http://www.doctrine-project.org",
  1366. "keywords": [
  1367. "inflection",
  1368. "pluralize",
  1369. "singularize",
  1370. "string"
  1371. ],
  1372. "time": "2017-07-22T12:18:28+00:00"
  1373. },
  1374. {
  1375. "name": "doctrine/lexer",
  1376. "version": "v1.0.1",
  1377. "source": {
  1378. "type": "git",
  1379. "url": "https://github.com/doctrine/lexer.git",
  1380. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1381. },
  1382. "dist": {
  1383. "type": "zip",
  1384. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1385. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1386. "shasum": ""
  1387. },
  1388. "require": {
  1389. "php": ">=5.3.2"
  1390. },
  1391. "type": "library",
  1392. "extra": {
  1393. "branch-alias": {
  1394. "dev-master": "1.0.x-dev"
  1395. }
  1396. },
  1397. "autoload": {
  1398. "psr-0": {
  1399. "Doctrine\\Common\\Lexer\\": "lib/"
  1400. }
  1401. },
  1402. "notification-url": "https://packagist.org/downloads/",
  1403. "license": [
  1404. "MIT"
  1405. ],
  1406. "authors": [
  1407. {
  1408. "name": "Roman Borschel",
  1409. "email": "roman@code-factory.org"
  1410. },
  1411. {
  1412. "name": "Guilherme Blanco",
  1413. "email": "guilhermeblanco@gmail.com"
  1414. },
  1415. {
  1416. "name": "Johannes Schmitt",
  1417. "email": "schmittjoh@gmail.com"
  1418. }
  1419. ],
  1420. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1421. "homepage": "http://www.doctrine-project.org",
  1422. "keywords": [
  1423. "lexer",
  1424. "parser"
  1425. ],
  1426. "time": "2014-09-09T13:34:57+00:00"
  1427. },
  1428. {
  1429. "name": "drupal/actions_permissions",
  1430. "version": "2.4.0",
  1431. "require": {
  1432. "drupal/core": "*",
  1433. "drupal/views_bulk_operations": "self.version"
  1434. },
  1435. "type": "metapackage",
  1436. "extra": {
  1437. "branch-alias": {
  1438. "dev-2.x": "2.x-dev"
  1439. },
  1440. "drupal": {
  1441. "version": "8.x-2.4",
  1442. "datestamp": "1530516821",
  1443. "security-coverage": {
  1444. "status": "covered",
  1445. "message": "Covered by Drupal's security advisory policy"
  1446. }
  1447. }
  1448. },
  1449. "notification-url": "https://packages.drupal.org/8/downloads",
  1450. "license": [
  1451. "GPL-2.0-or-later"
  1452. ],
  1453. "authors": [
  1454. {
  1455. "name": "Graber",
  1456. "homepage": "https://www.drupal.org/user/1599440"
  1457. },
  1458. {
  1459. "name": "Jon Pugh",
  1460. "homepage": "https://www.drupal.org/user/17028"
  1461. },
  1462. {
  1463. "name": "bojanz",
  1464. "homepage": "https://www.drupal.org/user/86106"
  1465. },
  1466. {
  1467. "name": "infojunkie",
  1468. "homepage": "https://www.drupal.org/user/48424"
  1469. },
  1470. {
  1471. "name": "joelpittet",
  1472. "homepage": "https://www.drupal.org/user/160302"
  1473. }
  1474. ],
  1475. "description": "Adds access permissions on all actions allowing admins to restrict access on a per-role basis.",
  1476. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  1477. "support": {
  1478. "source": "http://cgit.drupalcode.org/views_bulk_operations"
  1479. }
  1480. },
  1481. {
  1482. "name": "drupal/admin_toolbar",
  1483. "version": "1.24.0",
  1484. "source": {
  1485. "type": "git",
  1486. "url": "https://git.drupal.org/project/admin_toolbar",
  1487. "reference": "8.x-1.24"
  1488. },
  1489. "dist": {
  1490. "type": "zip",
  1491. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.24.zip",
  1492. "reference": "8.x-1.24",
  1493. "shasum": "682ffa443a1e339583022eb6adbb00c1103ea6d4"
  1494. },
  1495. "require": {
  1496. "drupal/core": "*"
  1497. },
  1498. "type": "drupal-module",
  1499. "extra": {
  1500. "branch-alias": {
  1501. "dev-1.x": "1.x-dev"
  1502. },
  1503. "drupal": {
  1504. "version": "8.x-1.24",
  1505. "datestamp": "1527523080",
  1506. "security-coverage": {
  1507. "status": "covered",
  1508. "message": "Covered by Drupal's security advisory policy"
  1509. }
  1510. }
  1511. },
  1512. "notification-url": "https://packages.drupal.org/8/downloads",
  1513. "license": [
  1514. "GPL-2.0+"
  1515. ],
  1516. "authors": [
  1517. {
  1518. "name": "Wilfrid Roze (eme)",
  1519. "homepage": "https://www.drupal.org/u/eme",
  1520. "role": "Maintainer"
  1521. },
  1522. {
  1523. "name": "Romain Jarraud (romainj)",
  1524. "homepage": "https://www.drupal.org/u/romainj",
  1525. "role": "Maintainer"
  1526. },
  1527. {
  1528. "name": "Adrian Cid Almaguer (adriancid)",
  1529. "homepage": "https://www.drupal.org/u/adriancid",
  1530. "email": "adriancid@gmail.com",
  1531. "role": "Maintainer"
  1532. },
  1533. {
  1534. "name": "Mohamed Anis Taktak (matio89)",
  1535. "homepage": "https://www.drupal.org/u/matio89",
  1536. "role": "Maintainer"
  1537. },
  1538. {
  1539. "name": "fethi.krout",
  1540. "homepage": "https://www.drupal.org/user/3206765"
  1541. },
  1542. {
  1543. "name": "matio89",
  1544. "homepage": "https://www.drupal.org/user/2320090"
  1545. },
  1546. {
  1547. "name": "romainj",
  1548. "homepage": "https://www.drupal.org/user/370706"
  1549. }
  1550. ],
  1551. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1552. "homepage": "http://drupal.org/project/admin_toolbar",
  1553. "keywords": [
  1554. "Drupal",
  1555. "Toolbar"
  1556. ],
  1557. "support": {
  1558. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1559. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1560. }
  1561. },
  1562. {
  1563. "name": "drupal/adminimal_theme",
  1564. "version": "1.3.0",
  1565. "source": {
  1566. "type": "git",
  1567. "url": "https://git.drupal.org/project/adminimal_theme",
  1568. "reference": "8.x-1.3"
  1569. },
  1570. "dist": {
  1571. "type": "zip",
  1572. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.3.zip",
  1573. "reference": "8.x-1.3",
  1574. "shasum": "bb9f280bcdbd7e4d384a925c685a2aa1feed8419"
  1575. },
  1576. "require": {
  1577. "drupal/core": "~8.0"
  1578. },
  1579. "type": "drupal-theme",
  1580. "extra": {
  1581. "branch-alias": {
  1582. "dev-1.x": "1.x-dev"
  1583. },
  1584. "drupal": {
  1585. "version": "8.x-1.3",
  1586. "datestamp": "1480507083",
  1587. "security-coverage": {
  1588. "status": "covered",
  1589. "message": "Covered by Drupal's security advisory policy"
  1590. }
  1591. }
  1592. },
  1593. "notification-url": "https://packages.drupal.org/8/downloads",
  1594. "license": [
  1595. "GPL-2.0-or-later"
  1596. ],
  1597. "authors": [
  1598. {
  1599. "name": "ANDiTKO",
  1600. "homepage": "https://www.drupal.org/user/1428124"
  1601. },
  1602. {
  1603. "name": "realityloop",
  1604. "homepage": "https://www.drupal.org/user/139189"
  1605. }
  1606. ],
  1607. "description": "Drupal administration theme with modern minimalist design.",
  1608. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1609. "support": {
  1610. "source": "http://cgit.drupalcode.org/adminimal_theme"
  1611. }
  1612. },
  1613. {
  1614. "name": "drupal/advanced_text_formatter",
  1615. "version": "1.0.0-beta3",
  1616. "source": {
  1617. "type": "git",
  1618. "url": "https://git.drupal.org/project/advanced_text_formatter",
  1619. "reference": "8.x-1.0-beta3"
  1620. },
  1621. "dist": {
  1622. "type": "zip",
  1623. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-8.x-1.0-beta3.zip",
  1624. "reference": "8.x-1.0-beta3",
  1625. "shasum": "35e0154440ba7836dda70b8627f156872da75302"
  1626. },
  1627. "require": {
  1628. "drupal/core": "*"
  1629. },
  1630. "type": "drupal-module",
  1631. "extra": {
  1632. "branch-alias": {
  1633. "dev-1.x": "1.x-dev"
  1634. },
  1635. "drupal": {
  1636. "version": "8.x-1.0-beta3",
  1637. "datestamp": "1445163539",
  1638. "security-coverage": {
  1639. "status": "not-covered",
  1640. "message": "Beta releases are not covered by Drupal security advisories."
  1641. }
  1642. }
  1643. },
  1644. "notification-url": "https://packages.drupal.org/8/downloads",
  1645. "license": [
  1646. "GPL-2.0-or-later"
  1647. ],
  1648. "authors": [
  1649. {
  1650. "name": "thmnhat",
  1651. "homepage": "https://www.drupal.org/user/998946"
  1652. }
  1653. ],
  1654. "description": "Provides an additional formatter for text field, text area and text format.",
  1655. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1656. "support": {
  1657. "source": "http://cgit.drupalcode.org/advanced_text_formatter"
  1658. }
  1659. },
  1660. {
  1661. "name": "drupal/audiofield",
  1662. "version": "1.6.0",
  1663. "source": {
  1664. "type": "git",
  1665. "url": "https://git.drupal.org/project/audiofield",
  1666. "reference": "8.x-1.6"
  1667. },
  1668. "dist": {
  1669. "type": "zip",
  1670. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.6.zip",
  1671. "reference": "8.x-1.6",
  1672. "shasum": "bd63641c2ed9e9774b82423bf03c95540b395126"
  1673. },
  1674. "require": {
  1675. "drupal/core": "~8.0"
  1676. },
  1677. "type": "drupal-module",
  1678. "extra": {
  1679. "branch-alias": {
  1680. "dev-1.x": "1.x-dev"
  1681. },
  1682. "drupal": {
  1683. "version": "8.x-1.6",
  1684. "datestamp": "1514414884",
  1685. "security-coverage": {
  1686. "status": "covered",
  1687. "message": "Covered by Drupal's security advisory policy"
  1688. }
  1689. }
  1690. },
  1691. "notification-url": "https://packages.drupal.org/8/downloads",
  1692. "license": [
  1693. "GPL-2.0+"
  1694. ],
  1695. "authors": [
  1696. {
  1697. "name": "Daniel Moberly",
  1698. "homepage": "https://www.drupal.org/u/danielmoberly",
  1699. "role": "Maintainer"
  1700. },
  1701. {
  1702. "name": "josipsaric",
  1703. "homepage": "https://www.drupal.org/user/3063287"
  1704. },
  1705. {
  1706. "name": "msajko",
  1707. "homepage": "https://www.drupal.org/user/3483723"
  1708. },
  1709. {
  1710. "name": "tamerzg",
  1711. "homepage": "https://www.drupal.org/user/464564"
  1712. }
  1713. ],
  1714. "description": "AudioField Module",
  1715. "homepage": "https://www.drupal.org/project/audiofield",
  1716. "support": {
  1717. "source": "http://cgit.drupalcode.org/audiofield",
  1718. "issues": "https://www.drupal.org/project/issues/audiofield"
  1719. }
  1720. },
  1721. {
  1722. "name": "drupal/autocomplete_deluxe",
  1723. "version": "1.0.0-beta1",
  1724. "source": {
  1725. "type": "git",
  1726. "url": "https://git.drupal.org/project/autocomplete_deluxe",
  1727. "reference": "8.x-1.0-beta1"
  1728. },
  1729. "dist": {
  1730. "type": "zip",
  1731. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-8.x-1.0-beta1.zip",
  1732. "reference": "8.x-1.0-beta1",
  1733. "shasum": "f59d928761a01a055c2240155a84b1d7286fe666"
  1734. },
  1735. "require": {
  1736. "drupal/core": "~8.0"
  1737. },
  1738. "type": "drupal-module",
  1739. "extra": {
  1740. "branch-alias": {
  1741. "dev-1.x": "1.x-dev"
  1742. },
  1743. "drupal": {
  1744. "version": "8.x-1.0-beta1",
  1745. "datestamp": "1502921644",
  1746. "security-coverage": {
  1747. "status": "not-covered",
  1748. "message": "Beta releases are not covered by Drupal security advisories."
  1749. }
  1750. }
  1751. },
  1752. "notification-url": "https://packages.drupal.org/8/downloads",
  1753. "license": [
  1754. "GPL-2.0+"
  1755. ],
  1756. "authors": [
  1757. {
  1758. "name": "Edward Chan",
  1759. "homepage": "https://www.drupal.org/user/1781334"
  1760. },
  1761. {
  1762. "name": "edwardchiapet",
  1763. "homepage": "https://www.drupal.org/user/2354784"
  1764. },
  1765. {
  1766. "name": "mpriscella",
  1767. "homepage": "https://www.drupal.org/user/2354820"
  1768. },
  1769. {
  1770. "name": "sepgil",
  1771. "homepage": "https://www.drupal.org/user/512828"
  1772. }
  1773. ],
  1774. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  1775. "homepage": "https://www.drupal.org/sandbox/edwardchan/2888186",
  1776. "support": {
  1777. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  1778. "issues": "https://www.drupal.org/project/issues/2888186"
  1779. }
  1780. },
  1781. {
  1782. "name": "drupal/autologout",
  1783. "version": "1.0.0",
  1784. "source": {
  1785. "type": "git",
  1786. "url": "https://git.drupal.org/project/autologout",
  1787. "reference": "8.x-1.0"
  1788. },
  1789. "dist": {
  1790. "type": "zip",
  1791. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  1792. "reference": "8.x-1.0",
  1793. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  1794. },
  1795. "require": {
  1796. "drupal/core": "~8.0"
  1797. },
  1798. "type": "drupal-module",
  1799. "extra": {
  1800. "branch-alias": {
  1801. "dev-1.x": "1.x-dev"
  1802. },
  1803. "drupal": {
  1804. "version": "8.x-1.0",
  1805. "datestamp": "1494237185",
  1806. "security-coverage": {
  1807. "status": "covered",
  1808. "message": "Covered by Drupal's security advisory policy"
  1809. }
  1810. }
  1811. },
  1812. "notification-url": "https://packages.drupal.org/8/downloads",
  1813. "license": [
  1814. "GPL-2.0+"
  1815. ],
  1816. "authors": [
  1817. {
  1818. "name": "AjK",
  1819. "homepage": "https://www.drupal.org/user/39030"
  1820. },
  1821. {
  1822. "name": "AjitS",
  1823. "homepage": "https://www.drupal.org/user/981944"
  1824. },
  1825. {
  1826. "name": "dandrews",
  1827. "homepage": "https://www.drupal.org/user/2014490"
  1828. },
  1829. {
  1830. "name": "johnennew",
  1831. "homepage": "https://www.drupal.org/user/1150042"
  1832. },
  1833. {
  1834. "name": "jrglasgow",
  1835. "homepage": "https://www.drupal.org/user/36590"
  1836. },
  1837. {
  1838. "name": "kmasood",
  1839. "homepage": "https://www.drupal.org/user/1262860"
  1840. },
  1841. {
  1842. "name": "levelos",
  1843. "homepage": "https://www.drupal.org/user/54135"
  1844. },
  1845. {
  1846. "name": "prabeen.giri",
  1847. "homepage": "https://www.drupal.org/user/913078"
  1848. },
  1849. {
  1850. "name": "str8",
  1851. "homepage": "https://www.drupal.org/user/2865063"
  1852. }
  1853. ],
  1854. "description": "Adds automated timed logout.",
  1855. "homepage": "http://drupal.org/project/autologout",
  1856. "support": {
  1857. "source": "http://cgit.drupalcode.org/autologout"
  1858. }
  1859. },
  1860. {
  1861. "name": "drupal/better_exposed_filters",
  1862. "version": "3.0.0-alpha5",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://git.drupal.org/project/better_exposed_filters",
  1866. "reference": "8.x-3.0-alpha5"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-3.0-alpha5.zip",
  1871. "reference": "8.x-3.0-alpha5",
  1872. "shasum": "8dbcff4b3bcd24f753d5d1ba6a523442a3690a76"
  1873. },
  1874. "require": {
  1875. "drupal/core": "*"
  1876. },
  1877. "type": "drupal-module",
  1878. "extra": {
  1879. "branch-alias": {
  1880. "dev-3.x": "3.x-dev"
  1881. },
  1882. "drupal": {
  1883. "version": "8.x-3.0-alpha5",
  1884. "datestamp": "1540513084",
  1885. "security-coverage": {
  1886. "status": "not-covered",
  1887. "message": "Alpha releases are not covered by Drupal security advisories."
  1888. }
  1889. }
  1890. },
  1891. "notification-url": "https://packages.drupal.org/8/downloads",
  1892. "license": [
  1893. "GPL-2.0-or-later"
  1894. ],
  1895. "authors": [
  1896. {
  1897. "name": "chr.fritsch",
  1898. "homepage": "https://www.drupal.org/user/2103716"
  1899. },
  1900. {
  1901. "name": "jkopel",
  1902. "homepage": "https://www.drupal.org/user/66207"
  1903. },
  1904. {
  1905. "name": "mikeker",
  1906. "homepage": "https://www.drupal.org/user/192273"
  1907. },
  1908. {
  1909. "name": "mortona2k",
  1910. "homepage": "https://www.drupal.org/user/1029484"
  1911. },
  1912. {
  1913. "name": "rlhawk",
  1914. "homepage": "https://www.drupal.org/user/352283"
  1915. }
  1916. ],
  1917. "description": "Provides advanced options (such as links, checkboxes, or jQueryUI widgets) for exposed Views elements.",
  1918. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  1919. "support": {
  1920. "source": "http://cgit.drupalcode.org/better_exposed_filters"
  1921. }
  1922. },
  1923. {
  1924. "name": "drupal/better_messages",
  1925. "version": "1.0.0-alpha2",
  1926. "source": {
  1927. "type": "git",
  1928. "url": "https://git.drupal.org/project/better_messages",
  1929. "reference": "8.x-1.0-alpha2"
  1930. },
  1931. "dist": {
  1932. "type": "zip",
  1933. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  1934. "reference": "8.x-1.0-alpha2",
  1935. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  1936. },
  1937. "require": {
  1938. "drupal/core": "~8.0"
  1939. },
  1940. "type": "drupal-module",
  1941. "extra": {
  1942. "branch-alias": {
  1943. "dev-1.x": "1.x-dev"
  1944. },
  1945. "drupal": {
  1946. "version": "8.x-1.0-alpha2",
  1947. "datestamp": "1517663880",
  1948. "security-coverage": {
  1949. "status": "not-covered",
  1950. "message": "Alpha releases are not covered by Drupal security advisories."
  1951. }
  1952. }
  1953. },
  1954. "notification-url": "https://packages.drupal.org/8/downloads",
  1955. "license": [
  1956. "GPL-2.0-or-later"
  1957. ],
  1958. "authors": [
  1959. {
  1960. "name": "Mohammed J. Razem",
  1961. "homepage": "https://www.drupal.org/user/255384"
  1962. },
  1963. {
  1964. "name": "bucefal91",
  1965. "homepage": "https://www.drupal.org/user/504128"
  1966. },
  1967. {
  1968. "name": "le72",
  1969. "homepage": "https://www.drupal.org/user/1866896"
  1970. }
  1971. ],
  1972. "description": "Better Messages module for Drupal 8.",
  1973. "homepage": "https://www.drupal.org/project/better_messages",
  1974. "support": {
  1975. "source": "http://cgit.drupalcode.org/better_messages"
  1976. }
  1977. },
  1978. {
  1979. "name": "drupal/betterlogin",
  1980. "version": "1.2.0",
  1981. "source": {
  1982. "type": "git",
  1983. "url": "https://git.drupal.org/project/betterlogin",
  1984. "reference": "8.x-1.2"
  1985. },
  1986. "dist": {
  1987. "type": "zip",
  1988. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.2.zip",
  1989. "reference": "8.x-1.2",
  1990. "shasum": "6b9ab142bf563685346d2b4e2db46ada209ed6ad"
  1991. },
  1992. "require": {
  1993. "drupal/core": "~8.0"
  1994. },
  1995. "type": "drupal-module",
  1996. "extra": {
  1997. "branch-alias": {
  1998. "dev-1.x": "1.x-dev"
  1999. },
  2000. "drupal": {
  2001. "version": "8.x-1.2",
  2002. "datestamp": "1515587585",
  2003. "security-coverage": {
  2004. "status": "covered",
  2005. "message": "Covered by Drupal's security advisory policy"
  2006. }
  2007. }
  2008. },
  2009. "notification-url": "https://packages.drupal.org/8/downloads",
  2010. "license": [
  2011. "GPL-2.0-or-later"
  2012. ],
  2013. "authors": [
  2014. {
  2015. "name": "Yogesh Pawar",
  2016. "homepage": "https://www.drupal.org/user/2922907"
  2017. },
  2018. {
  2019. "name": "theamoeba",
  2020. "homepage": "https://www.drupal.org/user/251700"
  2021. }
  2022. ],
  2023. "description": "Make the login screens better :)",
  2024. "homepage": "https://www.drupal.org/project/betterlogin",
  2025. "support": {
  2026. "source": "http://cgit.drupalcode.org/betterlogin"
  2027. }
  2028. },
  2029. {
  2030. "name": "drupal/block_class",
  2031. "version": "1.0.0",
  2032. "source": {
  2033. "type": "git",
  2034. "url": "https://git.drupal.org/project/block_class",
  2035. "reference": "8.x-1.0"
  2036. },
  2037. "dist": {
  2038. "type": "zip",
  2039. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.0.zip",
  2040. "reference": "8.x-1.0",
  2041. "shasum": "1a691999d051a3c010c2b6f2df73954ee02f424d"
  2042. },
  2043. "require": {
  2044. "drupal/core": "*"
  2045. },
  2046. "type": "drupal-module",
  2047. "extra": {
  2048. "branch-alias": {
  2049. "dev-1.x": "1.x-dev"
  2050. },
  2051. "drupal": {
  2052. "version": "8.x-1.0",
  2053. "datestamp": "1531440821",
  2054. "security-coverage": {
  2055. "status": "covered",
  2056. "message": "Covered by Drupal's security advisory policy"
  2057. }
  2058. }
  2059. },
  2060. "notification-url": "https://packages.drupal.org/8/downloads",
  2061. "license": [
  2062. "GPL-2.0+"
  2063. ],
  2064. "authors": [
  2065. {
  2066. "name": "Todd Nienkerk",
  2067. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2068. "role": "Maintainer"
  2069. },
  2070. {
  2071. "name": "Renato Gonçalves (RenatoG)",
  2072. "homepage": "https://www.drupal.org/u/RenatoG",
  2073. "email": "renatog@ciandt.com",
  2074. "role": "Maintainer"
  2075. },
  2076. {
  2077. "name": "Aaron Stanush",
  2078. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2079. "role": "Maintainer"
  2080. },
  2081. {
  2082. "name": "David Suissa (DYdave)",
  2083. "homepage": "https://www.drupal.org/u/DYdave",
  2084. "role": "Maintainer"
  2085. },
  2086. {
  2087. "name": "Four Kitchens",
  2088. "homepage": "https://www.drupal.org/user/358502",
  2089. "role": "Maintainer"
  2090. },
  2091. {
  2092. "name": "berenddeboer",
  2093. "homepage": "https://www.drupal.org/u/berenddeboer",
  2094. "role": "Maintainer"
  2095. },
  2096. {
  2097. "name": "elliotttf",
  2098. "homepage": "https://www.drupal.org/u/elliotttf",
  2099. "role": "Maintainer"
  2100. },
  2101. {
  2102. "name": "Michal Minecki (mirzu)",
  2103. "homepage": "https://www.drupal.org/u/mirzu",
  2104. "role": "Maintainer"
  2105. },
  2106. {
  2107. "name": "Patrick Coffey (pcoffey)",
  2108. "homepage": "https://www.drupal.org/u/pcoffey",
  2109. "role": "Maintainer"
  2110. },
  2111. {
  2112. "name": "Taylor Smith (tsmith512)",
  2113. "homepage": "https://www.drupal.org/u/tsmith512",
  2114. "role": "Maintainer"
  2115. },
  2116. {
  2117. "name": "tsmith512",
  2118. "homepage": "https://www.drupal.org/user/2031446"
  2119. }
  2120. ],
  2121. "description": "Allows assigning classes to Blocks.",
  2122. "homepage": "https://www.drupal.org/project/block_class",
  2123. "support": {
  2124. "source": "https://cgit.drupalcode.org/block_class",
  2125. "issues": "https://www.drupal.org/project/issues/block_class",
  2126. "irc": "irc://irc.freenode.org/drupal-contribute"
  2127. }
  2128. },
  2129. {
  2130. "name": "drupal/bulkdelete",
  2131. "version": "dev-1.x",
  2132. "source": {
  2133. "type": "git",
  2134. "url": "https://git.drupal.org/project/bulkdelete",
  2135. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2136. },
  2137. "require": {
  2138. "drupal/core": "~8.0"
  2139. },
  2140. "type": "drupal-module",
  2141. "extra": {
  2142. "branch-alias": {
  2143. "dev-1.x": "1.x-dev"
  2144. },
  2145. "drupal": {
  2146. "version": "8.x-1.x-dev",
  2147. "datestamp": "1495565583",
  2148. "security-coverage": {
  2149. "status": "not-covered",
  2150. "message": "Dev releases are not covered by Drupal security advisories."
  2151. }
  2152. }
  2153. },
  2154. "notification-url": "https://packages.drupal.org/8/downloads",
  2155. "license": [
  2156. "GPL-2.0-or-later"
  2157. ],
  2158. "authors": [
  2159. {
  2160. "name": "Kars-T",
  2161. "homepage": "https://www.drupal.org/user/224499"
  2162. },
  2163. {
  2164. "name": "Rahul Seth",
  2165. "homepage": "https://www.drupal.org/user/2694359"
  2166. },
  2167. {
  2168. "name": "adriancid",
  2169. "homepage": "https://www.drupal.org/user/1962106"
  2170. },
  2171. {
  2172. "name": "robertDouglass",
  2173. "homepage": "https://www.drupal.org/user/5449"
  2174. }
  2175. ],
  2176. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2177. "homepage": "https://www.drupal.org/project/bulkdelete",
  2178. "support": {
  2179. "source": "http://cgit.drupalcode.org/bulkdelete"
  2180. },
  2181. "time": "2017-05-23T18:49:48+00:00"
  2182. },
  2183. {
  2184. "name": "drupal/config_devel",
  2185. "version": "1.2.0",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://git.drupal.org/project/config_devel",
  2189. "reference": "8.x-1.2"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2194. "reference": "8.x-1.2",
  2195. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2196. },
  2197. "require": {
  2198. "drupal/core": "~8.0"
  2199. },
  2200. "type": "drupal-module",
  2201. "extra": {
  2202. "branch-alias": {
  2203. "dev-1.x": "1.x-dev"
  2204. },
  2205. "drupal": {
  2206. "version": "8.x-1.2",
  2207. "datestamp": "1510843084",
  2208. "security-coverage": {
  2209. "status": "covered",
  2210. "message": "Covered by Drupal's security advisory policy"
  2211. }
  2212. }
  2213. },
  2214. "notification-url": "https://packages.drupal.org/8/downloads",
  2215. "license": [
  2216. "GPL-2.0+"
  2217. ],
  2218. "authors": [
  2219. {
  2220. "name": "alexpott",
  2221. "homepage": "https://www.drupal.org/user/157725"
  2222. },
  2223. {
  2224. "name": "benjy",
  2225. "homepage": "https://www.drupal.org/user/1852732"
  2226. },
  2227. {
  2228. "name": "chx",
  2229. "homepage": "https://www.drupal.org/user/9446"
  2230. },
  2231. {
  2232. "name": "joachim",
  2233. "homepage": "https://www.drupal.org/user/107701"
  2234. },
  2235. {
  2236. "name": "nedjo",
  2237. "homepage": "https://www.drupal.org/user/4481"
  2238. },
  2239. {
  2240. "name": "tim.plunkett",
  2241. "homepage": "https://www.drupal.org/user/241634"
  2242. },
  2243. {
  2244. "name": "vijaycs85",
  2245. "homepage": "https://www.drupal.org/user/93488"
  2246. }
  2247. ],
  2248. "description": "Helps developers work with configuration.",
  2249. "homepage": "https://www.drupal.org/project/config_devel",
  2250. "support": {
  2251. "source": "http://cgit.drupalcode.org/config_devel"
  2252. }
  2253. },
  2254. {
  2255. "name": "drupal/config_filter",
  2256. "version": "1.3.0",
  2257. "source": {
  2258. "type": "git",
  2259. "url": "https://git.drupal.org/project/config_filter",
  2260. "reference": "8.x-1.3"
  2261. },
  2262. "dist": {
  2263. "type": "zip",
  2264. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.3.zip",
  2265. "reference": "8.x-1.3",
  2266. "shasum": "56255a17c45dcbb0af713215885a8d74214d2ebc"
  2267. },
  2268. "require": {
  2269. "drupal/core": "~8.0"
  2270. },
  2271. "suggest": {
  2272. "drupal/config_split": "Split site configuration for different environments."
  2273. },
  2274. "type": "drupal-module",
  2275. "extra": {
  2276. "branch-alias": {
  2277. "dev-1.x": "1.x-dev"
  2278. },
  2279. "drupal": {
  2280. "version": "8.x-1.3",
  2281. "datestamp": "1537978080",
  2282. "security-coverage": {
  2283. "status": "covered",
  2284. "message": "Covered by Drupal's security advisory policy"
  2285. }
  2286. }
  2287. },
  2288. "notification-url": "https://packages.drupal.org/8/downloads",
  2289. "license": [
  2290. "GPL-2.0+"
  2291. ],
  2292. "authors": [
  2293. {
  2294. "name": "Fabian Bircher",
  2295. "homepage": "https://www.drupal.org/u/bircher",
  2296. "email": "opensource@fabianbircher.com",
  2297. "role": "Maintainer"
  2298. },
  2299. {
  2300. "name": "Nuvole Web",
  2301. "homepage": "http://nuvole.org",
  2302. "email": "info@nuvole.org",
  2303. "role": "Maintainer"
  2304. },
  2305. {
  2306. "name": "pescetti",
  2307. "homepage": "https://www.drupal.org/user/436244"
  2308. }
  2309. ],
  2310. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2311. "homepage": "https://www.drupal.org/project/config_filter",
  2312. "keywords": [
  2313. "Drupal",
  2314. "configuration",
  2315. "configuration management"
  2316. ],
  2317. "support": {
  2318. "source": "http://cgit.drupalcode.org/config_filter",
  2319. "issues": "https://www.drupal.org/project/issues/config_filter",
  2320. "irc": "irc://irc.freenode.org/drupal-contribute"
  2321. }
  2322. },
  2323. {
  2324. "name": "drupal/config_ignore",
  2325. "version": "2.1.0",
  2326. "source": {
  2327. "type": "git",
  2328. "url": "https://git.drupal.org/project/config_ignore",
  2329. "reference": "8.x-2.1"
  2330. },
  2331. "dist": {
  2332. "type": "zip",
  2333. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2334. "reference": "8.x-2.1",
  2335. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2336. },
  2337. "require": {
  2338. "drupal/config_filter": "1.*",
  2339. "drupal/core": "~8.0"
  2340. },
  2341. "type": "drupal-module",
  2342. "extra": {
  2343. "branch-alias": {
  2344. "dev-2.x": "2.x-dev"
  2345. },
  2346. "drupal": {
  2347. "version": "8.x-2.1",
  2348. "datestamp": "1507706044",
  2349. "security-coverage": {
  2350. "status": "covered",
  2351. "message": "Covered by Drupal's security advisory policy"
  2352. }
  2353. }
  2354. },
  2355. "notification-url": "https://packages.drupal.org/8/downloads",
  2356. "license": [
  2357. "GPL-2.0+"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Tommy Lynge Jørgensen",
  2362. "homepage": "https://www.drupal.org/u/tlyngej",
  2363. "email": "tlyngej@gmail.com",
  2364. "role": "Maintainer"
  2365. },
  2366. {
  2367. "name": "Fabian Bircher",
  2368. "homepage": "https://www.drupal.org/u/bircher",
  2369. "role": "Maintainer"
  2370. }
  2371. ],
  2372. "description": "Ignore certain configuration during import.",
  2373. "homepage": "http://drupal.org/project/config_ignore",
  2374. "support": {
  2375. "source": "http://cgit.drupalcode.org/config_ignore",
  2376. "issues": "http://drupal.org/project/config_ignore",
  2377. "irc": "irc://irc.freenode.org/drupal-contribute"
  2378. }
  2379. },
  2380. {
  2381. "name": "drupal/config_update",
  2382. "version": "1.5.0",
  2383. "source": {
  2384. "type": "git",
  2385. "url": "https://git.drupal.org/project/config_update",
  2386. "reference": "8.x-1.5"
  2387. },
  2388. "dist": {
  2389. "type": "zip",
  2390. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.5.zip",
  2391. "reference": "8.x-1.5",
  2392. "shasum": "2f7ae5f90b1c0ab8edf84680d2651e81fab6a126"
  2393. },
  2394. "require": {
  2395. "drupal/core": "*"
  2396. },
  2397. "type": "drupal-module",
  2398. "extra": {
  2399. "branch-alias": {
  2400. "dev-1.x": "1.x-dev"
  2401. },
  2402. "drupal": {
  2403. "version": "8.x-1.5",
  2404. "datestamp": "1512587912",
  2405. "security-coverage": {
  2406. "status": "covered",
  2407. "message": "Covered by Drupal's security advisory policy"
  2408. }
  2409. }
  2410. },
  2411. "notification-url": "https://packages.drupal.org/8/downloads",
  2412. "license": [
  2413. "GPL-2.0-or-later"
  2414. ],
  2415. "authors": [
  2416. {
  2417. "name": "jhodgdon",
  2418. "homepage": "https://www.drupal.org/user/155601"
  2419. },
  2420. {
  2421. "name": "nedjo",
  2422. "homepage": "https://www.drupal.org/user/4481"
  2423. }
  2424. ],
  2425. "description": "Provides basic revert and update functionality for other modules",
  2426. "homepage": "https://www.drupal.org/project/config_update",
  2427. "support": {
  2428. "source": "http://cgit.drupalcode.org/config_update"
  2429. }
  2430. },
  2431. {
  2432. "name": "drupal/console",
  2433. "version": "1.8.0",
  2434. "source": {
  2435. "type": "git",
  2436. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2437. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  2438. },
  2439. "dist": {
  2440. "type": "zip",
  2441. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2442. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2443. "shasum": ""
  2444. },
  2445. "require": {
  2446. "alchemy/zippy": "0.4.3",
  2447. "composer/installers": "~1.0",
  2448. "doctrine/annotations": "^1.2",
  2449. "doctrine/collections": "^1.3",
  2450. "drupal/console-core": "1.8.0",
  2451. "drupal/console-extend-plugin": "~0",
  2452. "guzzlehttp/guzzle": "~6.1",
  2453. "php": "^5.5.9 || ^7.0",
  2454. "psy/psysh": "0.6.* || ~0.8",
  2455. "symfony/css-selector": "~2.8|~3.0",
  2456. "symfony/dom-crawler": "~2.8|~3.0",
  2457. "symfony/http-foundation": "~2.8|~3.0"
  2458. },
  2459. "suggest": {
  2460. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  2461. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  2462. },
  2463. "bin": [
  2464. "bin/drupal"
  2465. ],
  2466. "type": "library",
  2467. "autoload": {
  2468. "psr-4": {
  2469. "Drupal\\Console\\": "src"
  2470. }
  2471. },
  2472. "notification-url": "https://packagist.org/downloads/",
  2473. "license": [
  2474. "GPL-2.0-or-later"
  2475. ],
  2476. "authors": [
  2477. {
  2478. "name": "David Flores",
  2479. "email": "dmousex@gmail.com",
  2480. "homepage": "http://dmouse.net"
  2481. },
  2482. {
  2483. "name": "Jesus Manuel Olivas",
  2484. "email": "jesus.olivas@gmail.com",
  2485. "homepage": "http://jmolivas.com"
  2486. },
  2487. {
  2488. "name": "Eduardo Garcia",
  2489. "email": "enzo@enzolutions.com",
  2490. "homepage": "http://enzolutions.com/"
  2491. },
  2492. {
  2493. "name": "Omar Aguirre",
  2494. "email": "omersguchigu@gmail.com"
  2495. },
  2496. {
  2497. "name": "Drupal Console Contributors",
  2498. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2499. }
  2500. ],
  2501. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2502. "homepage": "http://drupalconsole.com/",
  2503. "keywords": [
  2504. "console",
  2505. "development",
  2506. "drupal",
  2507. "symfony"
  2508. ],
  2509. "time": "2018-03-21T20:50:16+00:00"
  2510. },
  2511. {
  2512. "name": "drupal/console-core",
  2513. "version": "1.8.0",
  2514. "source": {
  2515. "type": "git",
  2516. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2517. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  2518. },
  2519. "dist": {
  2520. "type": "zip",
  2521. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  2522. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  2523. "shasum": ""
  2524. },
  2525. "require": {
  2526. "dflydev/dot-access-configuration": "^1.0",
  2527. "drupal/console-en": "1.8.0",
  2528. "php": "^5.5.9 || ^7.0",
  2529. "stecman/symfony-console-completion": "~0.7",
  2530. "symfony/config": "~2.8|~3.0",
  2531. "symfony/console": "~2.8|~3.0",
  2532. "symfony/debug": "~2.8|~3.0",
  2533. "symfony/dependency-injection": "~2.8|~3.0",
  2534. "symfony/event-dispatcher": "~2.8|~3.0",
  2535. "symfony/filesystem": "~2.8|~3.0",
  2536. "symfony/finder": "~2.8|~3.0",
  2537. "symfony/process": "~2.8|~3.0",
  2538. "symfony/translation": "~2.8|~3.0",
  2539. "symfony/yaml": "~2.8|~3.0",
  2540. "twig/twig": "^1.23.1",
  2541. "webflo/drupal-finder": "^1.0",
  2542. "webmozart/path-util": "^2.3"
  2543. },
  2544. "type": "library",
  2545. "autoload": {
  2546. "files": [
  2547. "src/functions.php"
  2548. ],
  2549. "psr-4": {
  2550. "Drupal\\Console\\Core\\": "src"
  2551. }
  2552. },
  2553. "notification-url": "https://packagist.org/downloads/",
  2554. "license": [
  2555. "GPL-2.0-or-later"
  2556. ],
  2557. "authors": [
  2558. {
  2559. "name": "David Flores",
  2560. "email": "dmousex@gmail.com",
  2561. "homepage": "http://dmouse.net"
  2562. },
  2563. {
  2564. "name": "Jesus Manuel Olivas",
  2565. "email": "jesus.olivas@gmail.com",
  2566. "homepage": "http://jmolivas.com"
  2567. },
  2568. {
  2569. "name": "Drupal Console Contributors",
  2570. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2571. },
  2572. {
  2573. "name": "Eduardo Garcia",
  2574. "email": "enzo@enzolutions.com",
  2575. "homepage": "http://enzolutions.com/"
  2576. },
  2577. {
  2578. "name": "Omar Aguirre",
  2579. "email": "omersguchigu@gmail.com"
  2580. }
  2581. ],
  2582. "description": "Drupal Console Core",
  2583. "homepage": "http://drupalconsole.com/",
  2584. "keywords": [
  2585. "console",
  2586. "development",
  2587. "drupal",
  2588. "symfony"
  2589. ],
  2590. "time": "2018-03-21T19:33:23+00:00"
  2591. },
  2592. {
  2593. "name": "drupal/console-en",
  2594. "version": "1.8.0",
  2595. "source": {
  2596. "type": "git",
  2597. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2598. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  2599. },
  2600. "dist": {
  2601. "type": "zip",
  2602. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  2603. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  2604. "shasum": ""
  2605. },
  2606. "type": "drupal-console-language",
  2607. "notification-url": "https://packagist.org/downloads/",
  2608. "license": [
  2609. "GPL-2.0-or-later"
  2610. ],
  2611. "authors": [
  2612. {
  2613. "name": "David Flores",
  2614. "email": "dmousex@gmail.com",
  2615. "homepage": "http://dmouse.net"
  2616. },
  2617. {
  2618. "name": "Jesus Manuel Olivas",
  2619. "email": "jesus.olivas@gmail.com",
  2620. "homepage": "http://jmolivas.com"
  2621. },
  2622. {
  2623. "name": "Drupal Console Contributors",
  2624. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2625. },
  2626. {
  2627. "name": "Eduardo Garcia",
  2628. "email": "enzo@enzolutions.com",
  2629. "homepage": "http://enzolutions.com/"
  2630. },
  2631. {
  2632. "name": "Omar Aguirre",
  2633. "email": "omersguchigu@gmail.com"
  2634. }
  2635. ],
  2636. "description": "Drupal Console English Language",
  2637. "homepage": "http://drupalconsole.com/",
  2638. "keywords": [
  2639. "console",
  2640. "development",
  2641. "drupal",
  2642. "symfony"
  2643. ],
  2644. "time": "2018-03-21T19:16:27+00:00"
  2645. },
  2646. {
  2647. "name": "drupal/console-extend-plugin",
  2648. "version": "0.9.2",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2652. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  2657. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  2658. "shasum": ""
  2659. },
  2660. "require": {
  2661. "composer-plugin-api": "^1.0",
  2662. "symfony/finder": "~2.7|~3.0",
  2663. "symfony/yaml": "~2.7|~3.0"
  2664. },
  2665. "type": "composer-plugin",
  2666. "extra": {
  2667. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  2668. },
  2669. "autoload": {
  2670. "psr-4": {
  2671. "Drupal\\Console\\Composer\\Plugin\\": "src"
  2672. }
  2673. },
  2674. "notification-url": "https://packagist.org/downloads/",
  2675. "license": [
  2676. "GPL-2.0+"
  2677. ],
  2678. "authors": [
  2679. {
  2680. "name": "Jesus Manuel Olivas",
  2681. "email": "jesus.olivas@gmail.com"
  2682. }
  2683. ],
  2684. "description": "Drupal Console Extend Plugin",
  2685. "time": "2017-07-28T17:11:54+00:00"
  2686. },
  2687. {
  2688. "name": "drupal/content_lock",
  2689. "version": "1.0.0-alpha8",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://git.drupal.org/project/content_lock",
  2693. "reference": "8.x-1.0-alpha8"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-1.0-alpha8.zip",
  2698. "reference": "8.x-1.0-alpha8",
  2699. "shasum": "dbb5986dbfbe325eb869a4ac42b88b266dc089c6"
  2700. },
  2701. "require": {
  2702. "drupal/core": "~8"
  2703. },
  2704. "require-dev": {
  2705. "drupal/conflict": "dev-2.x",
  2706. "drupal/prefetch_cache": "dev-1.x"
  2707. },
  2708. "type": "drupal-module",
  2709. "extra": {
  2710. "branch-alias": {
  2711. "dev-1.x": "1.x-dev"
  2712. },
  2713. "drupal": {
  2714. "version": "8.x-1.0-alpha8",
  2715. "datestamp": "1520356080",
  2716. "security-coverage": {
  2717. "status": "not-covered",
  2718. "message": "Alpha releases are not covered by Drupal security advisories."
  2719. }
  2720. }
  2721. },
  2722. "notification-url": "https://packages.drupal.org/8/downloads",
  2723. "license": [
  2724. "GPL-2.0-or-later"
  2725. ],
  2726. "authors": [
  2727. {
  2728. "name": "Joseph Zhao",
  2729. "homepage": "https://www.drupal.org/user/1987218"
  2730. },
  2731. {
  2732. "name": "chr.fritsch",
  2733. "homepage": "https://www.drupal.org/user/2103716"
  2734. },
  2735. {
  2736. "name": "ergonlogic",
  2737. "homepage": "https://www.drupal.org/user/368613"
  2738. }
  2739. ],
  2740. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  2741. "homepage": "https://www.drupal.org/project/content_lock",
  2742. "support": {
  2743. "source": "http://cgit.drupalcode.org/content_lock"
  2744. }
  2745. },
  2746. {
  2747. "name": "drupal/context",
  2748. "version": "4.0.0-beta2",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://git.drupal.org/project/context",
  2752. "reference": "8.x-4.0-beta2"
  2753. },
  2754. "dist": {
  2755. "type": "zip",
  2756. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  2757. "reference": "8.x-4.0-beta2",
  2758. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  2759. },
  2760. "require": {
  2761. "drupal/core": "~8.0"
  2762. },
  2763. "type": "drupal-module",
  2764. "extra": {
  2765. "branch-alias": {
  2766. "dev-4.x": "4.x-dev"
  2767. },
  2768. "drupal": {
  2769. "version": "8.x-4.0-beta2",
  2770. "datestamp": "1505378944",
  2771. "security-coverage": {
  2772. "status": "not-covered",
  2773. "message": "Beta releases are not covered by Drupal security advisories."
  2774. }
  2775. }
  2776. },
  2777. "notification-url": "https://packages.drupal.org/8/downloads",
  2778. "license": [
  2779. "MIT"
  2780. ],
  2781. "authors": [
  2782. {
  2783. "name": "Christoffer Palm",
  2784. "homepage": "http://www.oddhill.se/",
  2785. "email": "christoffer.palm@oddhill.se",
  2786. "role": "Developer"
  2787. },
  2788. {
  2789. "name": "Steven Jones",
  2790. "homepage": "https://www.drupal.org/user/99644"
  2791. },
  2792. {
  2793. "name": "alex_b",
  2794. "homepage": "https://www.drupal.org/user/53995"
  2795. },
  2796. {
  2797. "name": "boshtian",
  2798. "homepage": "https://www.drupal.org/user/1773456"
  2799. },
  2800. {
  2801. "name": "colan",
  2802. "homepage": "https://www.drupal.org/user/58704"
  2803. },
  2804. {
  2805. "name": "emanaton",
  2806. "homepage": "https://www.drupal.org/user/120853"
  2807. },
  2808. {
  2809. "name": "febbraro",
  2810. "homepage": "https://www.drupal.org/user/43670"
  2811. },
  2812. {
  2813. "name": "fizk",
  2814. "homepage": "https://www.drupal.org/user/473174"
  2815. },
  2816. {
  2817. "name": "hass",
  2818. "homepage": "https://www.drupal.org/user/85918"
  2819. },
  2820. {
  2821. "name": "hefox",
  2822. "homepage": "https://www.drupal.org/user/426416"
  2823. },
  2824. {
  2825. "name": "hyrcan",
  2826. "homepage": "https://www.drupal.org/user/26618"
  2827. },
  2828. {
  2829. "name": "jmiccolis",
  2830. "homepage": "https://www.drupal.org/user/31731"
  2831. },
  2832. {
  2833. "name": "tekante",
  2834. "homepage": "https://www.drupal.org/user/640024"
  2835. },
  2836. {
  2837. "name": "yhahn",
  2838. "homepage": "https://www.drupal.org/user/264833"
  2839. }
  2840. ],
  2841. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2842. "homepage": "https://github.com/oddhill/context",
  2843. "keywords": [
  2844. "Drupal",
  2845. "block",
  2846. "conditions",
  2847. "context",
  2848. "visibility"
  2849. ],
  2850. "support": {
  2851. "source": "https://github.com/oddhill/context",
  2852. "issues": "https://github.com/oddhill/context/issues",
  2853. "docs": "https://github.com/oddhill/context"
  2854. }
  2855. },
  2856. {
  2857. "name": "drupal/ctools",
  2858. "version": "3.0.0",
  2859. "source": {
  2860. "type": "git",
  2861. "url": "https://git.drupal.org/project/ctools",
  2862. "reference": "8.x-3.0"
  2863. },
  2864. "dist": {
  2865. "type": "zip",
  2866. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip",
  2867. "reference": "8.x-3.0",
  2868. "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
  2869. },
  2870. "require": {
  2871. "drupal/core": "~8.0"
  2872. },
  2873. "type": "drupal-module",
  2874. "extra": {
  2875. "branch-alias": {
  2876. "dev-3.x": "3.x-dev"
  2877. },
  2878. "drupal": {
  2879. "version": "8.x-3.0",
  2880. "datestamp": "1493401742",
  2881. "security-coverage": {
  2882. "status": "covered",
  2883. "message": "Covered by Drupal's security advisory policy"
  2884. }
  2885. }
  2886. },
  2887. "notification-url": "https://packages.drupal.org/8/downloads",
  2888. "license": [
  2889. "GPL-2.0+"
  2890. ],
  2891. "authors": [
  2892. {
  2893. "name": "Kris Vanderwater (EclipseGc)",
  2894. "homepage": "https://www.drupal.org/u/eclipsegc",
  2895. "role": "Maintainer"
  2896. },
  2897. {
  2898. "name": "Jakob Perry (japerry)",
  2899. "homepage": "https://www.drupal.org/u/japerry",
  2900. "role": "Maintainer"
  2901. },
  2902. {
  2903. "name": "Tim Plunkett (tim.plunkett)",
  2904. "homepage": "https://www.drupal.org/u/timplunkett",
  2905. "role": "Maintainer"
  2906. },
  2907. {
  2908. "name": "James Gilliland (neclimdul)",
  2909. "homepage": "https://www.drupal.org/u/neclimdul",
  2910. "role": "Maintainer"
  2911. },
  2912. {
  2913. "name": "Daniel Wehner (dawehner)",
  2914. "homepage": "https://www.drupal.org/u/dawehner",
  2915. "role": "Maintainer"
  2916. },
  2917. {
  2918. "name": "joelpittet",
  2919. "homepage": "https://www.drupal.org/user/160302"
  2920. },
  2921. {
  2922. "name": "merlinofchaos",
  2923. "homepage": "https://www.drupal.org/user/26979"
  2924. },
  2925. {
  2926. "name": "neclimdul",
  2927. "homepage": "https://www.drupal.org/user/48673"
  2928. },
  2929. {
  2930. "name": "sdboyer",
  2931. "homepage": "https://www.drupal.org/user/146719"
  2932. },
  2933. {
  2934. "name": "sun",
  2935. "homepage": "https://www.drupal.org/user/54136"
  2936. },
  2937. {
  2938. "name": "tim.plunkett",
  2939. "homepage": "https://www.drupal.org/user/241634"
  2940. }
  2941. ],
  2942. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2943. "homepage": "https://www.drupal.org/project/ctools",
  2944. "support": {
  2945. "source": "http://cgit.drupalcode.org/ctools",
  2946. "issues": "https://www.drupal.org/project/issues/ctools"
  2947. }
  2948. },
  2949. {
  2950. "name": "drupal/date_range_formatter",
  2951. "version": "3.1.0",
  2952. "source": {
  2953. "type": "git",
  2954. "url": "https://git.drupal.org/project/date_range_formatter",
  2955. "reference": "8.x-3.1"
  2956. },
  2957. "dist": {
  2958. "type": "zip",
  2959. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  2960. "reference": "8.x-3.1",
  2961. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  2962. },
  2963. "require": {
  2964. "drupal/core": "*"
  2965. },
  2966. "type": "drupal-module",
  2967. "extra": {
  2968. "branch-alias": {
  2969. "dev-3.x": "3.x-dev"
  2970. },
  2971. "drupal": {
  2972. "version": "8.x-3.1",
  2973. "datestamp": "1502454544",
  2974. "security-coverage": {
  2975. "status": "covered",
  2976. "message": "Covered by Drupal's security advisory policy"
  2977. }
  2978. }
  2979. },
  2980. "notification-url": "https://packages.drupal.org/8/downloads",
  2981. "license": [
  2982. "GPL-2.0-or-later"
  2983. ],
  2984. "authors": [
  2985. {
  2986. "name": "Sudishth",
  2987. "homepage": "https://www.drupal.org/user/1440562"
  2988. },
  2989. {
  2990. "name": "maximpodorov",
  2991. "homepage": "https://www.drupal.org/user/515310"
  2992. }
  2993. ],
  2994. "description": "Formats date ranges.",
  2995. "homepage": "https://www.drupal.org/project/date_range_formatter",
  2996. "support": {
  2997. "source": "http://cgit.drupalcode.org/date_range_formatter"
  2998. }
  2999. },
  3000. {
  3001. "name": "drupal/devel",
  3002. "version": "1.2.0",
  3003. "source": {
  3004. "type": "git",
  3005. "url": "https://git.drupal.org/project/devel",
  3006. "reference": "8.x-1.2"
  3007. },
  3008. "dist": {
  3009. "type": "zip",
  3010. "url": "https://ftp.drupal.org/files/projects/devel-8.x-1.2.zip",
  3011. "reference": "8.x-1.2",
  3012. "shasum": "01f3349ef75f6e21fceef24be9d3d6506ca29647"
  3013. },
  3014. "require": {
  3015. "drupal/core": "~8.0"
  3016. },
  3017. "suggest": {
  3018. "symfony/var-dumper": "Pretty print complex values better with var-dumper available"
  3019. },
  3020. "type": "drupal-module",
  3021. "extra": {
  3022. "branch-alias": {
  3023. "dev-1.x": "1.x-dev"
  3024. },
  3025. "drupal": {
  3026. "version": "8.x-1.2",
  3027. "datestamp": "1507197844",
  3028. "security-coverage": {
  3029. "status": "covered",
  3030. "message": "Covered by Drupal's security advisory policy"
  3031. }
  3032. }
  3033. },
  3034. "notification-url": "https://packages.drupal.org/8/downloads",
  3035. "license": [
  3036. "GPL-2.0+"
  3037. ],
  3038. "authors": [
  3039. {
  3040. "name": "Moshe Weitzman",
  3041. "homepage": "https://github.com/weitzman",
  3042. "email": "weitzman@tejasa.com",
  3043. "role": "Maintainer"
  3044. },
  3045. {
  3046. "name": "Hans Salvisberg",
  3047. "homepage": "https://www.drupal.org/u/salvis",
  3048. "email": "drupal@salvisberg.com",
  3049. "role": "Maintainer"
  3050. },
  3051. {
  3052. "name": "Luca Lusso",
  3053. "homepage": "https://www.drupal.org/u/lussoluca",
  3054. "role": "Maintainer"
  3055. },
  3056. {
  3057. "name": "Marco (willzyx)",
  3058. "homepage": "https://www.drupal.org/u/willzyx",
  3059. "role": "Maintainer"
  3060. },
  3061. {
  3062. "name": "See contributors",
  3063. "homepage": "https://www.drupal.org/node/3236/committers"
  3064. },
  3065. {
  3066. "name": "salvis",
  3067. "homepage": "https://www.drupal.org/user/82964"
  3068. },
  3069. {
  3070. "name": "willzyx",
  3071. "homepage": "https://www.drupal.org/user/1043862"
  3072. }
  3073. ],
  3074. "description": "Various blocks, pages, and functions for developers.",
  3075. "homepage": "http://drupal.org/project/devel",
  3076. "support": {
  3077. "source": "http://cgit.drupalcode.org/devel",
  3078. "issues": "http://drupal.org/project/devel",
  3079. "irc": "irc://irc.freenode.org/drupal-contribute"
  3080. }
  3081. },
  3082. {
  3083. "name": "drupal/devel_generate",
  3084. "version": "1.2.0",
  3085. "require": {
  3086. "drupal/core": "~8.0",
  3087. "drupal/devel": "self.version"
  3088. },
  3089. "type": "metapackage",
  3090. "extra": {
  3091. "branch-alias": {
  3092. "dev-1.x": "1.x-dev"
  3093. },
  3094. "drupal": {
  3095. "version": "8.x-1.2",
  3096. "datestamp": "1507197844",
  3097. "security-coverage": {
  3098. "status": "covered",
  3099. "message": "Covered by Drupal's security advisory policy"
  3100. }
  3101. }
  3102. },
  3103. "notification-url": "https://packages.drupal.org/8/downloads",
  3104. "license": [
  3105. "GPL-2.0-or-later"
  3106. ],
  3107. "authors": [
  3108. {
  3109. "name": "catch",
  3110. "homepage": "https://www.drupal.org/user/35733"
  3111. },
  3112. {
  3113. "name": "juampynr",
  3114. "homepage": "https://www.drupal.org/user/682736"
  3115. },
  3116. {
  3117. "name": "lussoluca",
  3118. "homepage": "https://www.drupal.org/user/138068"
  3119. },
  3120. {
  3121. "name": "moshe weitzman",
  3122. "homepage": "https://www.drupal.org/user/23"
  3123. },
  3124. {
  3125. "name": "pcambra",
  3126. "homepage": "https://www.drupal.org/user/122101"
  3127. },
  3128. {
  3129. "name": "salvis",
  3130. "homepage": "https://www.drupal.org/user/82964"
  3131. },
  3132. {
  3133. "name": "willzyx",
  3134. "homepage": "https://www.drupal.org/user/1043862"
  3135. }
  3136. ],
  3137. "description": "Generate dummy users, nodes, menus, taxonomy terms...",
  3138. "homepage": "https://www.drupal.org/project/devel",
  3139. "support": {
  3140. "source": "http://cgit.drupalcode.org/devel"
  3141. }
  3142. },
  3143. {
  3144. "name": "drupal/domain",
  3145. "version": "1.0.0-alpha14",
  3146. "source": {
  3147. "type": "git",
  3148. "url": "https://git.drupal.org/project/domain",
  3149. "reference": "8.x-1.0-alpha14"
  3150. },
  3151. "dist": {
  3152. "type": "zip",
  3153. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha14.zip",
  3154. "reference": "8.x-1.0-alpha14",
  3155. "shasum": "9889669ee19ae07fc44ab3bbe6fd7049e1317499"
  3156. },
  3157. "require": {
  3158. "drupal/core": "^8.5"
  3159. },
  3160. "require-dev": {
  3161. "drupal/domain_access": "*"
  3162. },
  3163. "type": "drupal-module",
  3164. "extra": {
  3165. "branch-alias": {
  3166. "dev-1.x": "1.x-dev"
  3167. },
  3168. "drupal": {
  3169. "version": "8.x-1.0-alpha14",
  3170. "datestamp": "1539981780",
  3171. "security-coverage": {
  3172. "status": "not-covered",
  3173. "message": "Alpha releases are not covered by Drupal security advisories."
  3174. }
  3175. }
  3176. },
  3177. "notification-url": "https://packages.drupal.org/8/downloads",
  3178. "license": [
  3179. "GPL-2.0-or-later"
  3180. ],
  3181. "authors": [
  3182. {
  3183. "name": "agentrickard",
  3184. "homepage": "https://www.drupal.org/user/20975"
  3185. },
  3186. {
  3187. "name": "nonsie",
  3188. "homepage": "https://www.drupal.org/user/29899"
  3189. }
  3190. ],
  3191. "description": "Creates domain records within a Drupal installation.",
  3192. "homepage": "https://www.drupal.org/project/domain",
  3193. "support": {
  3194. "source": "http://cgit.drupalcode.org/domain"
  3195. }
  3196. },
  3197. {
  3198. "name": "drupal/domain_alias",
  3199. "version": "1.0.0-alpha14",
  3200. "require": {
  3201. "drupal/core": "~8.0",
  3202. "drupal/domain": "self.version"
  3203. },
  3204. "type": "metapackage",
  3205. "extra": {
  3206. "branch-alias": {
  3207. "dev-1.x": "1.x-dev"
  3208. },
  3209. "drupal": {
  3210. "version": "8.x-1.0-alpha14",
  3211. "datestamp": "1539981780",
  3212. "security-coverage": {
  3213. "status": "not-covered",
  3214. "message": "Alpha releases are not covered by Drupal security advisories."
  3215. }
  3216. }
  3217. },
  3218. "notification-url": "https://packages.drupal.org/8/downloads",
  3219. "license": [
  3220. "GPL-2.0-or-later"
  3221. ],
  3222. "authors": [
  3223. {
  3224. "name": "agentrickard",
  3225. "homepage": "https://www.drupal.org/user/20975"
  3226. },
  3227. {
  3228. "name": "nonsie",
  3229. "homepage": "https://www.drupal.org/user/29899"
  3230. }
  3231. ],
  3232. "description": "Maps multiple host requests to a single domain record.",
  3233. "homepage": "https://www.drupal.org/project/domain",
  3234. "support": {
  3235. "source": "http://cgit.drupalcode.org/domain"
  3236. }
  3237. },
  3238. {
  3239. "name": "drupal/domain_config",
  3240. "version": "1.0.0-alpha14",
  3241. "require": {
  3242. "drupal/core": "~8.0",
  3243. "drupal/domain": "self.version"
  3244. },
  3245. "type": "metapackage",
  3246. "extra": {
  3247. "branch-alias": {
  3248. "dev-1.x": "1.x-dev"
  3249. },
  3250. "drupal": {
  3251. "version": "8.x-1.0-alpha14",
  3252. "datestamp": "1539981780",
  3253. "security-coverage": {
  3254. "status": "not-covered",
  3255. "message": "Alpha releases are not covered by Drupal security advisories."
  3256. }
  3257. }
  3258. },
  3259. "notification-url": "https://packages.drupal.org/8/downloads",
  3260. "license": [
  3261. "GPL-2.0-or-later"
  3262. ],
  3263. "authors": [
  3264. {
  3265. "name": "agentrickard",
  3266. "homepage": "https://www.drupal.org/user/20975"
  3267. },
  3268. {
  3269. "name": "nonsie",
  3270. "homepage": "https://www.drupal.org/user/29899"
  3271. }
  3272. ],
  3273. "description": "Allows domain specific configuration.",
  3274. "homepage": "https://www.drupal.org/project/domain",
  3275. "support": {
  3276. "source": "http://cgit.drupalcode.org/domain"
  3277. }
  3278. },
  3279. {
  3280. "name": "drupal/domain_site_settings",
  3281. "version": "1.3.0",
  3282. "source": {
  3283. "type": "git",
  3284. "url": "https://git.drupal.org/project/domain_site_settings",
  3285. "reference": "8.x-1.3"
  3286. },
  3287. "dist": {
  3288. "type": "zip",
  3289. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3290. "reference": "8.x-1.3",
  3291. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3292. },
  3293. "require": {
  3294. "drupal/core": "~8.0",
  3295. "drupal/domain": "*",
  3296. "drupal/domain_config": "*"
  3297. },
  3298. "type": "drupal-module",
  3299. "extra": {
  3300. "branch-alias": {
  3301. "dev-1.x": "1.x-dev"
  3302. },
  3303. "drupal": {
  3304. "version": "8.x-1.3",
  3305. "datestamp": "1537684980",
  3306. "security-coverage": {
  3307. "status": "covered",
  3308. "message": "Covered by Drupal's security advisory policy"
  3309. }
  3310. }
  3311. },
  3312. "notification-url": "https://packages.drupal.org/8/downloads",
  3313. "license": [
  3314. "GPL-2.0+"
  3315. ],
  3316. "authors": [
  3317. {
  3318. "name": "aloknarwaria",
  3319. "homepage": "https://www.drupal.org/user/906640"
  3320. }
  3321. ],
  3322. "description": "Basic Site Setting for Domains.",
  3323. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3324. "keywords": [
  3325. "Drupal"
  3326. ],
  3327. "support": {
  3328. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3329. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3330. }
  3331. },
  3332. {
  3333. "name": "drupal/email_registration",
  3334. "version": "1.0.0-rc5",
  3335. "source": {
  3336. "type": "git",
  3337. "url": "https://git.drupal.org/project/email_registration",
  3338. "reference": "8.x-1.0-rc5"
  3339. },
  3340. "dist": {
  3341. "type": "zip",
  3342. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc5.zip",
  3343. "reference": "8.x-1.0-rc5",
  3344. "shasum": "8e068ad37077bb3937150155ce13617d98b9b6b1"
  3345. },
  3346. "require": {
  3347. "drupal/core": "*"
  3348. },
  3349. "type": "drupal-module",
  3350. "extra": {
  3351. "branch-alias": {
  3352. "dev-1.x": "1.x-dev"
  3353. },
  3354. "drupal": {
  3355. "version": "8.x-1.0-rc5",
  3356. "datestamp": "1491318182",
  3357. "security-coverage": {
  3358. "status": "not-covered",
  3359. "message": "RC releases are not covered by Drupal security advisories."
  3360. }
  3361. }
  3362. },
  3363. "notification-url": "https://packages.drupal.org/8/downloads",
  3364. "license": [
  3365. "GPL-2.0-or-later"
  3366. ],
  3367. "authors": [
  3368. {
  3369. "name": "Chris Herberte",
  3370. "homepage": "https://www.drupal.org/user/1171"
  3371. },
  3372. {
  3373. "name": "andypost",
  3374. "homepage": "https://www.drupal.org/user/118908"
  3375. },
  3376. {
  3377. "name": "greggles",
  3378. "homepage": "https://www.drupal.org/user/36762"
  3379. },
  3380. {
  3381. "name": "moshe weitzman",
  3382. "homepage": "https://www.drupal.org/user/23"
  3383. }
  3384. ],
  3385. "description": "Allows users to register with an e-mail address as their username.",
  3386. "homepage": "https://www.drupal.org/project/email_registration",
  3387. "support": {
  3388. "source": "http://cgit.drupalcode.org/email_registration"
  3389. }
  3390. },
  3391. {
  3392. "name": "drupal/embed",
  3393. "version": "1.0.0",
  3394. "source": {
  3395. "type": "git",
  3396. "url": "https://git.drupal.org/project/embed",
  3397. "reference": "8.x-1.0"
  3398. },
  3399. "dist": {
  3400. "type": "zip",
  3401. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip",
  3402. "reference": "8.x-1.0",
  3403. "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a"
  3404. },
  3405. "require": {
  3406. "drupal/core": "~8.0"
  3407. },
  3408. "type": "drupal-module",
  3409. "extra": {
  3410. "branch-alias": {
  3411. "dev-1.x": "1.x-dev"
  3412. },
  3413. "drupal": {
  3414. "version": "8.x-1.0",
  3415. "datestamp": "1490755685",
  3416. "security-coverage": {
  3417. "status": "covered",
  3418. "message": "Covered by Drupal's security advisory policy"
  3419. }
  3420. }
  3421. },
  3422. "notification-url": "https://packages.drupal.org/8/downloads",
  3423. "license": [
  3424. "GPL-2.0+"
  3425. ],
  3426. "authors": [
  3427. {
  3428. "name": "Dave Reid",
  3429. "homepage": "https://www.drupal.org/user/53892"
  3430. },
  3431. {
  3432. "name": "Devin Carlson",
  3433. "homepage": "https://www.drupal.org/user/290182"
  3434. },
  3435. {
  3436. "name": "Drupal Media Team",
  3437. "homepage": "https://www.drupal.org/user/3260690"
  3438. },
  3439. {
  3440. "name": "cs_shadow",
  3441. "homepage": "https://www.drupal.org/user/2828287"
  3442. },
  3443. {
  3444. "name": "slashrsm",
  3445. "homepage": "https://www.drupal.org/user/744628"
  3446. }
  3447. ],
  3448. "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.",
  3449. "homepage": "https://www.drupal.org/project/embed",
  3450. "support": {
  3451. "source": "http://cgit.drupalcode.org/embed",
  3452. "issues": "https://www.drupal.org/project/issues/embed",
  3453. "irc": "irc://irc.freenode.org/drupal-media"
  3454. }
  3455. },
  3456. {
  3457. "name": "drupal/entity",
  3458. "version": "1.0.0-rc1",
  3459. "source": {
  3460. "type": "git",
  3461. "url": "https://git.drupal.org/project/entity",
  3462. "reference": "8.x-1.0-rc1"
  3463. },
  3464. "dist": {
  3465. "type": "zip",
  3466. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc1.zip",
  3467. "reference": "8.x-1.0-rc1",
  3468. "shasum": "f2dcd7afd0d36b6f261b10a204057a5c801ad20b"
  3469. },
  3470. "require": {
  3471. "drupal/core": "^8.6"
  3472. },
  3473. "type": "drupal-module",
  3474. "extra": {
  3475. "branch-alias": {
  3476. "dev-1.x": "1.x-dev"
  3477. },
  3478. "drupal": {
  3479. "version": "8.x-1.0-rc1",
  3480. "datestamp": "1539272769",
  3481. "security-coverage": {
  3482. "status": "not-covered",
  3483. "message": "RC releases are not covered by Drupal security advisories."
  3484. }
  3485. }
  3486. },
  3487. "notification-url": "https://packages.drupal.org/8/downloads",
  3488. "license": [
  3489. "GPL-2.0+"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Berdir",
  3494. "homepage": "https://www.drupal.org/user/214652"
  3495. },
  3496. {
  3497. "name": "bojanz",
  3498. "homepage": "https://www.drupal.org/user/86106"
  3499. },
  3500. {
  3501. "name": "dawehner",
  3502. "homepage": "https://www.drupal.org/user/99340"
  3503. },
  3504. {
  3505. "name": "dixon_",
  3506. "homepage": "https://www.drupal.org/user/239911"
  3507. },
  3508. {
  3509. "name": "fago",
  3510. "homepage": "https://www.drupal.org/user/16747"
  3511. }
  3512. ],
  3513. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3514. "homepage": "http://drupal.org/project/entity",
  3515. "support": {
  3516. "source": "http://cgit.drupalcode.org/entity"
  3517. }
  3518. },
  3519. {
  3520. "name": "drupal/entity_browser",
  3521. "version": "2.0.0",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://git.drupal.org/project/entity_browser",
  3525. "reference": "8.x-2.0"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0.zip",
  3530. "reference": "8.x-2.0",
  3531. "shasum": "683a7a252c947433c7b78bb838d6d8973c13cf77"
  3532. },
  3533. "require": {
  3534. "drupal/core": "~8.0"
  3535. },
  3536. "require-dev": {
  3537. "drupal/ctools": "*",
  3538. "drupal/inline_entity_form": "*",
  3539. "drupal/paragraphs": "*",
  3540. "drupal/token": "*"
  3541. },
  3542. "type": "drupal-module",
  3543. "extra": {
  3544. "branch-alias": {
  3545. "dev-2.x": "2.x-dev",
  3546. "dev-8.x-1.x": "8.1.x-dev"
  3547. },
  3548. "drupal": {
  3549. "version": "8.x-2.0",
  3550. "datestamp": "1536328684",
  3551. "security-coverage": {
  3552. "status": "covered",
  3553. "message": "Covered by Drupal's security advisory policy"
  3554. }
  3555. }
  3556. },
  3557. "notification-url": "https://packages.drupal.org/8/downloads",
  3558. "license": [
  3559. "GPL-2.0+"
  3560. ],
  3561. "authors": [
  3562. {
  3563. "name": "Janez Urevc",
  3564. "homepage": "https://github.com/slashrsm",
  3565. "role": "Maintainer"
  3566. },
  3567. {
  3568. "name": "Primoz Hmeljak",
  3569. "homepage": "https://github.com/primsi",
  3570. "role": "Maintainer"
  3571. },
  3572. {
  3573. "name": "See other contributors",
  3574. "homepage": "https://www.drupal.org/node/1943336/committers",
  3575. "role": "contributor"
  3576. },
  3577. {
  3578. "name": "Primsi",
  3579. "homepage": "https://www.drupal.org/user/282629"
  3580. },
  3581. {
  3582. "name": "marcingy",
  3583. "homepage": "https://www.drupal.org/user/77320"
  3584. },
  3585. {
  3586. "name": "samuel.mortenson",
  3587. "homepage": "https://www.drupal.org/user/2582268"
  3588. },
  3589. {
  3590. "name": "slashrsm",
  3591. "homepage": "https://www.drupal.org/user/744628"
  3592. }
  3593. ],
  3594. "description": "Entity browsing and selecting component.",
  3595. "homepage": "http://drupal.org/project/entity_browser",
  3596. "support": {
  3597. "source": "http://cgit.drupalcode.org/entity_browser",
  3598. "issues": "http://drupal.org/project/issues/entity_browser",
  3599. "irc": "irc://irc.freenode.org/drupal-contribute"
  3600. }
  3601. },
  3602. {
  3603. "name": "drupal/entity_browser_enhanced",
  3604. "version": "1.0.0-rc3",
  3605. "source": {
  3606. "type": "git",
  3607. "url": "https://git.drupal.org/project/entity_browser_enhanced",
  3608. "reference": "8.x-1.0-rc3"
  3609. },
  3610. "dist": {
  3611. "type": "zip",
  3612. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0-rc3.zip",
  3613. "reference": "8.x-1.0-rc3",
  3614. "shasum": "041a93dac5ec9f74a8834faee60995c4db7d1e65"
  3615. },
  3616. "require": {
  3617. "drupal/core": "~8.0",
  3618. "drupal/entity_browser": "*"
  3619. },
  3620. "type": "drupal-module",
  3621. "extra": {
  3622. "branch-alias": {
  3623. "dev-1.x": "1.x-dev",
  3624. "dev-8.x-1.x": "8.1.x-dev"
  3625. },
  3626. "drupal": {
  3627. "version": "8.x-1.0-rc3",
  3628. "datestamp": "1528884525",
  3629. "security-coverage": {
  3630. "status": "not-covered",
  3631. "message": "RC releases are not covered by Drupal security advisories."
  3632. }
  3633. }
  3634. },
  3635. "notification-url": "https://packages.drupal.org/8/downloads",
  3636. "license": [
  3637. "GPL-2.0-or-later"
  3638. ],
  3639. "authors": [
  3640. {
  3641. "name": "Vardot",
  3642. "homepage": "https://www.drupal.org/vardot",
  3643. "role": "Maintainer"
  3644. },
  3645. {
  3646. "name": "RajabNatshah",
  3647. "homepage": "https://www.drupal.org/user/1414312"
  3648. }
  3649. ],
  3650. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  3651. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  3652. "support": {
  3653. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  3654. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  3655. }
  3656. },
  3657. {
  3658. "name": "drupal/entity_clone",
  3659. "version": "1.0.0-alpha2",
  3660. "source": {
  3661. "type": "git",
  3662. "url": "https://git.drupal.org/project/entity_clone",
  3663. "reference": "8.x-1.0-alpha2"
  3664. },
  3665. "dist": {
  3666. "type": "zip",
  3667. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-alpha2.zip",
  3668. "reference": "8.x-1.0-alpha2",
  3669. "shasum": "55a533e56853b78f949796040ee68881a68917b5"
  3670. },
  3671. "require": {
  3672. "drupal/core": "~8.0"
  3673. },
  3674. "type": "drupal-module",
  3675. "extra": {
  3676. "branch-alias": {
  3677. "dev-1.x": "1.x-dev"
  3678. },
  3679. "drupal": {
  3680. "version": "8.x-1.0-alpha2",
  3681. "datestamp": "1513145285",
  3682. "security-coverage": {
  3683. "status": "not-covered",
  3684. "message": "Alpha releases are not covered by Drupal security advisories."
  3685. }
  3686. }
  3687. },
  3688. "notification-url": "https://packages.drupal.org/8/downloads",
  3689. "license": [
  3690. "GPL-2.0-or-later"
  3691. ],
  3692. "authors": [
  3693. {
  3694. "name": "vpeltot",
  3695. "homepage": "https://www.drupal.org/user/1361586"
  3696. }
  3697. ],
  3698. "description": "Add a clone action for all entities",
  3699. "homepage": "https://www.drupal.org/project/entity_clone",
  3700. "support": {
  3701. "source": "http://cgit.drupalcode.org/entity_clone"
  3702. }
  3703. },
  3704. {
  3705. "name": "drupal/extlink",
  3706. "version": "1.1.0",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://git.drupal.org/project/extlink",
  3710. "reference": "8.x-1.1"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.1.zip",
  3715. "reference": "8.x-1.1",
  3716. "shasum": "0894f1cd12e2e1aa6b00ea4a6dd5e7234eb2b2b2"
  3717. },
  3718. "require": {
  3719. "drupal/core": "~8.0"
  3720. },
  3721. "type": "drupal-module",
  3722. "extra": {
  3723. "branch-alias": {
  3724. "dev-1.x": "1.x-dev"
  3725. },
  3726. "drupal": {
  3727. "version": "8.x-1.1",
  3728. "datestamp": "1524232684",
  3729. "security-coverage": {
  3730. "status": "covered",
  3731. "message": "Covered by Drupal's security advisory policy"
  3732. }
  3733. }
  3734. },
  3735. "notification-url": "https://packages.drupal.org/8/downloads",
  3736. "license": [
  3737. "GPL-2.0-or-later"
  3738. ],
  3739. "authors": [
  3740. {
  3741. "name": "elachlan",
  3742. "homepage": "https://www.drupal.org/user/1021502"
  3743. },
  3744. {
  3745. "name": "jjeff",
  3746. "homepage": "https://www.drupal.org/user/17190"
  3747. },
  3748. {
  3749. "name": "quicksketch",
  3750. "homepage": "https://www.drupal.org/user/35821"
  3751. }
  3752. ],
  3753. "description": "Modify behavior and appearance of external links.",
  3754. "homepage": "https://www.drupal.org/project/extlink",
  3755. "support": {
  3756. "source": "http://cgit.drupalcode.org/extlink"
  3757. }
  3758. },
  3759. {
  3760. "name": "drupal/field_group",
  3761. "version": "1.0.0",
  3762. "source": {
  3763. "type": "git",
  3764. "url": "https://git.drupal.org/project/field_group",
  3765. "reference": "8.x-1.0"
  3766. },
  3767. "dist": {
  3768. "type": "zip",
  3769. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-1.0.zip",
  3770. "reference": "8.x-1.0",
  3771. "shasum": "e8aa3fae5c3c5dec84644bb577996938d638a611"
  3772. },
  3773. "require": {
  3774. "drupal/core": "*"
  3775. },
  3776. "type": "drupal-module",
  3777. "extra": {
  3778. "branch-alias": {
  3779. "dev-1.x": "1.x-dev"
  3780. },
  3781. "drupal": {
  3782. "version": "8.x-1.0",
  3783. "datestamp": "1510352885",
  3784. "security-coverage": {
  3785. "status": "covered",
  3786. "message": "Covered by Drupal's security advisory policy"
  3787. }
  3788. }
  3789. },
  3790. "notification-url": "https://packages.drupal.org/8/downloads",
  3791. "license": [
  3792. "GPL-2.0+"
  3793. ],
  3794. "authors": [
  3795. {
  3796. "name": "Hydra",
  3797. "homepage": "https://www.drupal.org/user/647364"
  3798. },
  3799. {
  3800. "name": "Stalski",
  3801. "homepage": "https://www.drupal.org/user/322618"
  3802. },
  3803. {
  3804. "name": "jyve",
  3805. "homepage": "https://www.drupal.org/user/591438"
  3806. },
  3807. {
  3808. "name": "swentel",
  3809. "homepage": "https://www.drupal.org/user/107403"
  3810. },
  3811. {
  3812. "name": "zuuperman",
  3813. "homepage": "https://www.drupal.org/user/361625"
  3814. }
  3815. ],
  3816. "description": "Provides the field_group module.",
  3817. "homepage": "https://www.drupal.org/project/field_group",
  3818. "support": {
  3819. "source": "http://cgit.drupalcode.org/field_group"
  3820. }
  3821. },
  3822. {
  3823. "name": "drupal/file_mdm",
  3824. "version": "1.1.0",
  3825. "source": {
  3826. "type": "git",
  3827. "url": "https://git.drupal.org/project/file_mdm",
  3828. "reference": "8.x-1.1"
  3829. },
  3830. "dist": {
  3831. "type": "zip",
  3832. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-1.1.zip",
  3833. "reference": "8.x-1.1",
  3834. "shasum": "7f354aec6f89e3141c2aa1fb3747ad5d4578c13f"
  3835. },
  3836. "require": {
  3837. "drupal/core": "~8.0",
  3838. "lsolesen/pel": "0.9.6",
  3839. "phenx/php-font-lib": "0.5",
  3840. "php": ">=5.6"
  3841. },
  3842. "require-dev": {
  3843. "drupal/image_effects": "*"
  3844. },
  3845. "type": "drupal-module",
  3846. "extra": {
  3847. "branch-alias": {
  3848. "dev-1.x": "1.x-dev"
  3849. },
  3850. "drupal": {
  3851. "version": "8.x-1.1",
  3852. "datestamp": "1488273785",
  3853. "security-coverage": {
  3854. "status": "covered",
  3855. "message": "Covered by Drupal's security advisory policy"
  3856. }
  3857. }
  3858. },
  3859. "notification-url": "https://packages.drupal.org/8/downloads",
  3860. "license": [
  3861. "GPL-2.0-or-later"
  3862. ],
  3863. "authors": [
  3864. {
  3865. "name": "mondrake",
  3866. "homepage": "https://www.drupal.org/user/1307444"
  3867. }
  3868. ],
  3869. "description": "Provides a service to manage file metadata.",
  3870. "homepage": "https://www.drupal.org/project/file_mdm",
  3871. "support": {
  3872. "source": "http://cgit.drupalcode.org/file_mdm"
  3873. }
  3874. },
  3875. {
  3876. "name": "drupal/file_mdm_exif",
  3877. "version": "1.1.0",
  3878. "require": {
  3879. "drupal/core": "~8.0",
  3880. "drupal/file_mdm": "self.version"
  3881. },
  3882. "require-dev": {
  3883. "drupal/image_effects": "*"
  3884. },
  3885. "type": "metapackage",
  3886. "extra": {
  3887. "branch-alias": {
  3888. "dev-1.x": "1.x-dev"
  3889. },
  3890. "drupal": {
  3891. "version": "8.x-1.1",
  3892. "datestamp": "1488273785",
  3893. "security-coverage": {
  3894. "status": "covered",
  3895. "message": "Covered by Drupal's security advisory policy"
  3896. }
  3897. }
  3898. },
  3899. "notification-url": "https://packages.drupal.org/8/downloads",
  3900. "license": [
  3901. "GPL-2.0-or-later"
  3902. ],
  3903. "authors": [
  3904. {
  3905. "name": "mondrake",
  3906. "homepage": "https://www.drupal.org/user/1307444"
  3907. }
  3908. ],
  3909. "description": "Provides a file metadata plugin for EXIF image information.",
  3910. "homepage": "https://www.drupal.org/project/file_mdm",
  3911. "support": {
  3912. "source": "http://cgit.drupalcode.org/file_mdm"
  3913. }
  3914. },
  3915. {
  3916. "name": "drupal/filefield_sources",
  3917. "version": "dev-1.x",
  3918. "source": {
  3919. "type": "git",
  3920. "url": "https://git.drupal.org/project/filefield_sources",
  3921. "reference": "b19c6a839804f47587828d4a50e29e0720fa4c08"
  3922. },
  3923. "require": {
  3924. "drupal/core": "*"
  3925. },
  3926. "type": "drupal-module",
  3927. "extra": {
  3928. "branch-alias": {
  3929. "dev-1.x": "1.x-dev"
  3930. },
  3931. "drupal": {
  3932. "version": "8.x-1.x-dev",
  3933. "datestamp": "1487711283",
  3934. "security-coverage": {
  3935. "status": "not-covered",
  3936. "message": "Dev releases are not covered by Drupal security advisories."
  3937. }
  3938. }
  3939. },
  3940. "notification-url": "https://packages.drupal.org/8/downloads",
  3941. "license": [
  3942. "GPL-2.0-or-later"
  3943. ],
  3944. "authors": [
  3945. {
  3946. "name": "profak",
  3947. "homepage": "https://www.drupal.org/user/782534"
  3948. },
  3949. {
  3950. "name": "quicksketch",
  3951. "homepage": "https://www.drupal.org/user/35821"
  3952. }
  3953. ],
  3954. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3955. "homepage": "https://www.drupal.org/project/filefield_sources",
  3956. "support": {
  3957. "source": "http://cgit.drupalcode.org/filefield_sources"
  3958. },
  3959. "time": "2017-02-21T21:07:00+00:00"
  3960. },
  3961. {
  3962. "name": "drupal/filter_perms",
  3963. "version": "dev-1.x",
  3964. "source": {
  3965. "type": "git",
  3966. "url": "https://git.drupal.org/project/filter_perms",
  3967. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  3968. },
  3969. "require": {
  3970. "drupal/core": "*"
  3971. },
  3972. "type": "drupal-module",
  3973. "extra": {
  3974. "branch-alias": {
  3975. "dev-1.x": "1.x-dev"
  3976. },
  3977. "drupal": {
  3978. "version": "8.x-1.x-dev",
  3979. "datestamp": "1469645939",
  3980. "security-coverage": {
  3981. "status": "not-covered",
  3982. "message": "Dev releases are not covered by Drupal security advisories."
  3983. }
  3984. }
  3985. },
  3986. "notification-url": "https://packages.drupal.org/8/downloads",
  3987. "license": [
  3988. "GPL-2.0-or-later"
  3989. ],
  3990. "authors": [
  3991. {
  3992. "name": "cYu",
  3993. "homepage": "https://www.drupal.org/user/202205"
  3994. },
  3995. {
  3996. "name": "deekayen",
  3997. "homepage": "https://www.drupal.org/user/972"
  3998. },
  3999. {
  4000. "name": "willzyx",
  4001. "homepage": "https://www.drupal.org/user/1043862"
  4002. }
  4003. ],
  4004. "description": "Provides role and module filters to simplify the user permissions page.",
  4005. "homepage": "https://www.drupal.org/project/filter_perms",
  4006. "support": {
  4007. "source": "http://cgit.drupalcode.org/filter_perms"
  4008. },
  4009. "time": "2016-07-27T19:01:11+00:00"
  4010. },
  4011. {
  4012. "name": "drupal/honeypot",
  4013. "version": "1.29.0",
  4014. "source": {
  4015. "type": "git",
  4016. "url": "https://git.drupal.org/project/honeypot",
  4017. "reference": "8.x-1.29"
  4018. },
  4019. "dist": {
  4020. "type": "zip",
  4021. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4022. "reference": "8.x-1.29",
  4023. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4024. },
  4025. "require": {
  4026. "drupal/core": "~8.0"
  4027. },
  4028. "type": "drupal-module",
  4029. "extra": {
  4030. "branch-alias": {
  4031. "dev-1.x": "1.x-dev"
  4032. },
  4033. "drupal": {
  4034. "version": "8.x-1.29",
  4035. "datestamp": "1536179280",
  4036. "security-coverage": {
  4037. "status": "covered",
  4038. "message": "Covered by Drupal's security advisory policy"
  4039. }
  4040. }
  4041. },
  4042. "notification-url": "https://packages.drupal.org/8/downloads",
  4043. "license": [
  4044. "GPL-2.0+"
  4045. ],
  4046. "authors": [
  4047. {
  4048. "name": "Jeff Geerling",
  4049. "homepage": "https://www.drupal.org/user/389011",
  4050. "email": "geerlingguy@mac.com"
  4051. }
  4052. ],
  4053. "description": "Mitigates spam form submissions using the honeypot method.",
  4054. "homepage": "https://www.drupal.org/project/honeypot",
  4055. "keywords": [
  4056. "deterrent",
  4057. "form",
  4058. "honeypot",
  4059. "honeytrap",
  4060. "php",
  4061. "spam"
  4062. ],
  4063. "support": {
  4064. "source": "http://cgit.drupalcode.org/honeypot"
  4065. }
  4066. },
  4067. {
  4068. "name": "drupal/imagemagick",
  4069. "version": "2.3.0",
  4070. "source": {
  4071. "type": "git",
  4072. "url": "https://git.drupal.org/project/imagemagick",
  4073. "reference": "8.x-2.3"
  4074. },
  4075. "dist": {
  4076. "type": "zip",
  4077. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-2.3.zip",
  4078. "reference": "8.x-2.3",
  4079. "shasum": "8359921d4700e954364c2633332c20579bb75a34"
  4080. },
  4081. "require": {
  4082. "drupal/core": "^8.3",
  4083. "drupal/file_mdm": "^1.1",
  4084. "drupal/file_mdm_exif": "^1.1"
  4085. },
  4086. "type": "drupal-module",
  4087. "extra": {
  4088. "branch-alias": {
  4089. "dev-2.x": "2.x-dev"
  4090. },
  4091. "drupal": {
  4092. "version": "8.x-2.3",
  4093. "datestamp": "1520958305",
  4094. "security-coverage": {
  4095. "status": "covered",
  4096. "message": "Covered by Drupal's security advisory policy"
  4097. }
  4098. }
  4099. },
  4100. "notification-url": "https://packages.drupal.org/8/downloads",
  4101. "license": [
  4102. "GPL-2.0-or-later"
  4103. ],
  4104. "authors": [
  4105. {
  4106. "name": "Chris Charlton",
  4107. "homepage": "https://www.drupal.org/user/17089"
  4108. },
  4109. {
  4110. "name": "chx",
  4111. "homepage": "https://www.drupal.org/user/9446"
  4112. },
  4113. {
  4114. "name": "claudiu.cristea",
  4115. "homepage": "https://www.drupal.org/user/56348"
  4116. },
  4117. {
  4118. "name": "dman",
  4119. "homepage": "https://www.drupal.org/user/33240"
  4120. },
  4121. {
  4122. "name": "dopry",
  4123. "homepage": "https://www.drupal.org/user/22202"
  4124. },
  4125. {
  4126. "name": "drewish",
  4127. "homepage": "https://www.drupal.org/user/34869"
  4128. },
  4129. {
  4130. "name": "gdl",
  4131. "homepage": "https://www.drupal.org/user/507326"
  4132. },
  4133. {
  4134. "name": "mondrake",
  4135. "homepage": "https://www.drupal.org/user/1307444"
  4136. },
  4137. {
  4138. "name": "quicksketch",
  4139. "homepage": "https://www.drupal.org/user/35821"
  4140. },
  4141. {
  4142. "name": "sun",
  4143. "homepage": "https://www.drupal.org/user/54136"
  4144. },
  4145. {
  4146. "name": "walkah",
  4147. "homepage": "https://www.drupal.org/user/1531"
  4148. }
  4149. ],
  4150. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4151. "homepage": "https://www.drupal.org/project/imagemagick",
  4152. "support": {
  4153. "source": "http://cgit.drupalcode.org/imagemagick"
  4154. }
  4155. },
  4156. {
  4157. "name": "drupal/inline_entity_form",
  4158. "version": "1.0.0-rc1",
  4159. "source": {
  4160. "type": "git",
  4161. "url": "https://git.drupal.org/project/inline_entity_form",
  4162. "reference": "8.x-1.0-rc1"
  4163. },
  4164. "dist": {
  4165. "type": "zip",
  4166. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc1.zip",
  4167. "reference": "8.x-1.0-rc1",
  4168. "shasum": "898789fb6a0662fc2572b87f8d0654a0241473f9"
  4169. },
  4170. "require": {
  4171. "drupal/core": "~8.0"
  4172. },
  4173. "require-dev": {
  4174. "drupal/entity_reference_revisions": "*"
  4175. },
  4176. "type": "drupal-module",
  4177. "extra": {
  4178. "branch-alias": {
  4179. "dev-1.x": "1.x-dev"
  4180. },
  4181. "drupal": {
  4182. "version": "8.x-1.0-rc1",
  4183. "datestamp": "1527030784",
  4184. "security-coverage": {
  4185. "status": "not-covered",
  4186. "message": "RC releases are not covered by Drupal security advisories."
  4187. }
  4188. }
  4189. },
  4190. "notification-url": "https://packages.drupal.org/8/downloads",
  4191. "license": [
  4192. "GPL-2.0+"
  4193. ],
  4194. "authors": [
  4195. {
  4196. "name": "bojanz",
  4197. "homepage": "https://www.drupal.org/user/86106"
  4198. },
  4199. {
  4200. "name": "dawehner",
  4201. "homepage": "https://www.drupal.org/user/99340"
  4202. },
  4203. {
  4204. "name": "rszrama",
  4205. "homepage": "https://www.drupal.org/user/49344"
  4206. },
  4207. {
  4208. "name": "slashrsm",
  4209. "homepage": "https://www.drupal.org/user/744628"
  4210. },
  4211. {
  4212. "name": "webflo",
  4213. "homepage": "https://www.drupal.org/user/254778"
  4214. }
  4215. ],
  4216. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4217. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4218. "support": {
  4219. "source": "http://cgit.drupalcode.org/inline_entity_form"
  4220. }
  4221. },
  4222. {
  4223. "name": "drupal/kint",
  4224. "version": "1.2.0",
  4225. "require": {
  4226. "drupal/core": "~8.0",
  4227. "drupal/devel": "self.version"
  4228. },
  4229. "type": "metapackage",
  4230. "extra": {
  4231. "branch-alias": {
  4232. "dev-1.x": "1.x-dev"
  4233. },
  4234. "drupal": {
  4235. "version": "8.x-1.2",
  4236. "datestamp": "1507197844",
  4237. "security-coverage": {
  4238. "status": "covered",
  4239. "message": "Covered by Drupal's security advisory policy"
  4240. }
  4241. }
  4242. },
  4243. "notification-url": "https://packages.drupal.org/8/downloads",
  4244. "license": [
  4245. "GPL-2.0-or-later"
  4246. ],
  4247. "authors": [
  4248. {
  4249. "name": "catch",
  4250. "homepage": "https://www.drupal.org/user/35733"
  4251. },
  4252. {
  4253. "name": "juampynr",
  4254. "homepage": "https://www.drupal.org/user/682736"
  4255. },
  4256. {
  4257. "name": "lussoluca",
  4258. "homepage": "https://www.drupal.org/user/138068"
  4259. },
  4260. {
  4261. "name": "moshe weitzman",
  4262. "homepage": "https://www.drupal.org/user/23"
  4263. },
  4264. {
  4265. "name": "pcambra",
  4266. "homepage": "https://www.drupal.org/user/122101"
  4267. },
  4268. {
  4269. "name": "salvis",
  4270. "homepage": "https://www.drupal.org/user/82964"
  4271. },
  4272. {
  4273. "name": "willzyx",
  4274. "homepage": "https://www.drupal.org/user/1043862"
  4275. }
  4276. ],
  4277. "description": "Wrapper for Kint debugging tool",
  4278. "homepage": "https://www.drupal.org/project/devel",
  4279. "support": {
  4280. "source": "http://cgit.drupalcode.org/devel"
  4281. }
  4282. },
  4283. {
  4284. "name": "drupal/link_attributes",
  4285. "version": "1.5.0",
  4286. "source": {
  4287. "type": "git",
  4288. "url": "https://git.drupal.org/project/link_attributes",
  4289. "reference": "8.x-1.5"
  4290. },
  4291. "dist": {
  4292. "type": "zip",
  4293. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.5.zip",
  4294. "reference": "8.x-1.5",
  4295. "shasum": "48c0e6ac2c3f4843372abb394c1aabe380dfa604"
  4296. },
  4297. "require": {
  4298. "drupal/core": "*"
  4299. },
  4300. "type": "drupal-module",
  4301. "extra": {
  4302. "branch-alias": {
  4303. "dev-1.x": "1.x-dev"
  4304. },
  4305. "drupal": {
  4306. "version": "8.x-1.5",
  4307. "datestamp": "1537173781",
  4308. "security-coverage": {
  4309. "status": "covered",
  4310. "message": "Covered by Drupal's security advisory policy"
  4311. }
  4312. }
  4313. },
  4314. "notification-url": "https://packages.drupal.org/8/downloads",
  4315. "license": [
  4316. "GPL-2.0-or-later"
  4317. ],
  4318. "authors": [
  4319. {
  4320. "name": "larowlan",
  4321. "homepage": "https://www.drupal.org/user/395439"
  4322. }
  4323. ],
  4324. "description": "Provides a widget to allow settings of link attributes for menu links.",
  4325. "homepage": "https://www.drupal.org/project/link_attributes",
  4326. "support": {
  4327. "source": "http://cgit.drupalcode.org/link_attributes"
  4328. }
  4329. },
  4330. {
  4331. "name": "drupal/linkit",
  4332. "version": "4.3.0",
  4333. "source": {
  4334. "type": "git",
  4335. "url": "https://git.drupal.org/project/linkit",
  4336. "reference": "8.x-4.3"
  4337. },
  4338. "dist": {
  4339. "type": "zip",
  4340. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  4341. "reference": "8.x-4.3",
  4342. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  4343. },
  4344. "require": {
  4345. "drupal/core": "~8.0"
  4346. },
  4347. "type": "drupal-module",
  4348. "extra": {
  4349. "branch-alias": {
  4350. "dev-4.x": "4.x-dev"
  4351. },
  4352. "drupal": {
  4353. "version": "8.x-4.3",
  4354. "datestamp": "1490205830",
  4355. "security-coverage": {
  4356. "status": "covered",
  4357. "message": "Covered by Drupal's security advisory policy"
  4358. }
  4359. }
  4360. },
  4361. "notification-url": "https://packages.drupal.org/8/downloads",
  4362. "license": [
  4363. "GPL-2.0+"
  4364. ],
  4365. "authors": [
  4366. {
  4367. "name": "Emil Stjerneman",
  4368. "homepage": "https://stjerneman.com",
  4369. "email": "emil@stjerneman.com",
  4370. "role": "Maintainer"
  4371. }
  4372. ],
  4373. "description": "Linkit - Enriched linking experience",
  4374. "homepage": "http://drupal.org/project/linkit",
  4375. "support": {
  4376. "source": "http://cgit.drupalcode.org/linkit",
  4377. "issues": "http://drupal.org/project/linkit"
  4378. }
  4379. },
  4380. {
  4381. "name": "drupal/login_destination",
  4382. "version": "dev-1.x",
  4383. "source": {
  4384. "type": "git",
  4385. "url": "https://git.drupal.org/project/login_destination",
  4386. "reference": "54be8b89fdc073ca40af6b9b2eeb050e0aeb7908"
  4387. },
  4388. "require": {
  4389. "drupal/core": "~8.0"
  4390. },
  4391. "type": "drupal-module",
  4392. "extra": {
  4393. "branch-alias": {
  4394. "dev-1.x": "1.x-dev"
  4395. },
  4396. "drupal": {
  4397. "version": "8.x-1.x-dev",
  4398. "datestamp": "1514805485",
  4399. "security-coverage": {
  4400. "status": "not-covered",
  4401. "message": "Dev releases are not covered by Drupal security advisories."
  4402. }
  4403. }
  4404. },
  4405. "notification-url": "https://packages.drupal.org/8/downloads",
  4406. "license": [
  4407. "GPL-2.0-or-later"
  4408. ],
  4409. "authors": [
  4410. {
  4411. "name": "Oliver Huynh",
  4412. "homepage": "https://www.drupal.org/user/243730"
  4413. },
  4414. {
  4415. "name": "akashjain132",
  4416. "homepage": "https://www.drupal.org/user/2622667"
  4417. },
  4418. {
  4419. "name": "beautifulmind",
  4420. "homepage": "https://www.drupal.org/user/219482"
  4421. },
  4422. {
  4423. "name": "ddrozdik",
  4424. "homepage": "https://www.drupal.org/user/574124"
  4425. },
  4426. {
  4427. "name": "jng12",
  4428. "homepage": "https://www.drupal.org/user/204316"
  4429. },
  4430. {
  4431. "name": "marcp",
  4432. "homepage": "https://www.drupal.org/user/20885"
  4433. },
  4434. {
  4435. "name": "mithy",
  4436. "homepage": "https://www.drupal.org/user/258911"
  4437. },
  4438. {
  4439. "name": "moshe weitzman",
  4440. "homepage": "https://www.drupal.org/user/23"
  4441. },
  4442. {
  4443. "name": "quantumized",
  4444. "homepage": "https://www.drupal.org/user/61221"
  4445. },
  4446. {
  4447. "name": "rsvelko",
  4448. "homepage": "https://www.drupal.org/user/337401"
  4449. }
  4450. ],
  4451. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  4452. "homepage": "https://www.drupal.org/project/login_destination",
  4453. "support": {
  4454. "source": "http://cgit.drupalcode.org/login_destination"
  4455. },
  4456. "time": "2018-01-01T11:13:09+00:00"
  4457. },
  4458. {
  4459. "name": "drupal/maillog",
  4460. "version": "dev-1.x",
  4461. "source": {
  4462. "type": "git",
  4463. "url": "https://git.drupal.org/project/maillog",
  4464. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4465. },
  4466. "require": {
  4467. "drupal/core": "*"
  4468. },
  4469. "type": "drupal-module",
  4470. "extra": {
  4471. "branch-alias": {
  4472. "dev-1.x": "1.x-dev"
  4473. },
  4474. "drupal": {
  4475. "version": "8.x-1.x-dev",
  4476. "datestamp": "1470431939",
  4477. "security-coverage": {
  4478. "status": "not-covered",
  4479. "message": "Project has not opted into security advisory coverage!"
  4480. }
  4481. }
  4482. },
  4483. "notification-url": "https://packages.drupal.org/8/downloads",
  4484. "license": [
  4485. "GPL-2.0-or-later"
  4486. ],
  4487. "authors": [
  4488. {
  4489. "name": "Berdir",
  4490. "homepage": "https://www.drupal.org/user/214652"
  4491. },
  4492. {
  4493. "name": "DamienMcKenna",
  4494. "homepage": "https://www.drupal.org/user/108450"
  4495. },
  4496. {
  4497. "name": "miro_dietiker",
  4498. "homepage": "https://www.drupal.org/user/227761"
  4499. },
  4500. {
  4501. "name": "pluess",
  4502. "homepage": "https://www.drupal.org/user/84659"
  4503. }
  4504. ],
  4505. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4506. "homepage": "https://www.drupal.org/project/maillog",
  4507. "support": {
  4508. "source": "http://cgit.drupalcode.org/maillog"
  4509. },
  4510. "time": "2016-08-05T21:18:07+00:00"
  4511. },
  4512. {
  4513. "name": "drupal/mailsystem",
  4514. "version": "4.1.0",
  4515. "source": {
  4516. "type": "git",
  4517. "url": "https://git.drupal.org/project/mailsystem",
  4518. "reference": "8.x-4.1"
  4519. },
  4520. "dist": {
  4521. "type": "zip",
  4522. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.1.zip",
  4523. "reference": "8.x-4.1",
  4524. "shasum": "318b87f1fdf96e6db30b04a98108af02a0fc3dcc"
  4525. },
  4526. "require": {
  4527. "drupal/core": "^8.0.5"
  4528. },
  4529. "type": "drupal-module",
  4530. "extra": {
  4531. "branch-alias": {
  4532. "dev-4.x": "4.x-dev"
  4533. },
  4534. "drupal": {
  4535. "version": "8.x-4.1",
  4536. "datestamp": "1467993646",
  4537. "security-coverage": {
  4538. "status": "covered",
  4539. "message": "Covered by Drupal's security advisory policy"
  4540. }
  4541. }
  4542. },
  4543. "notification-url": "https://packages.drupal.org/8/downloads",
  4544. "license": [
  4545. "GPL-2.0+"
  4546. ],
  4547. "authors": [
  4548. {
  4549. "name": "Berdir",
  4550. "homepage": "https://www.drupal.org/user/214652"
  4551. },
  4552. {
  4553. "name": "Les Lim",
  4554. "homepage": "https://www.drupal.org/user/84263"
  4555. },
  4556. {
  4557. "name": "Nafes",
  4558. "homepage": "https://www.drupal.org/user/2489926"
  4559. },
  4560. {
  4561. "name": "miro_dietiker",
  4562. "homepage": "https://www.drupal.org/user/227761"
  4563. },
  4564. {
  4565. "name": "pillarsdotnet",
  4566. "homepage": "https://www.drupal.org/user/36148"
  4567. }
  4568. ],
  4569. "description": "Mail System",
  4570. "homepage": "https://www.drupal.org/project/mailsystem",
  4571. "support": {
  4572. "source": "http://cgit.drupalcode.org/mailsystem"
  4573. }
  4574. },
  4575. {
  4576. "name": "drupal/matomo",
  4577. "version": "1.7.0",
  4578. "source": {
  4579. "type": "git",
  4580. "url": "https://git.drupal.org/project/matomo",
  4581. "reference": "8.x-1.7"
  4582. },
  4583. "dist": {
  4584. "type": "zip",
  4585. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.7.zip",
  4586. "reference": "8.x-1.7",
  4587. "shasum": "6b7dbc8c76800a6dadb7568cf2a3f3efdde88e13"
  4588. },
  4589. "require": {
  4590. "drupal/core": "~8.0"
  4591. },
  4592. "require-dev": {
  4593. "drupal/php": "*",
  4594. "drupal/token": "*"
  4595. },
  4596. "type": "drupal-module",
  4597. "extra": {
  4598. "branch-alias": {
  4599. "dev-1.x": "1.x-dev"
  4600. },
  4601. "drupal": {
  4602. "version": "8.x-1.7",
  4603. "datestamp": "1531470197",
  4604. "security-coverage": {
  4605. "status": "covered",
  4606. "message": "Covered by Drupal's security advisory policy"
  4607. }
  4608. }
  4609. },
  4610. "notification-url": "https://packages.drupal.org/8/downloads",
  4611. "license": [
  4612. "GPL-2.0+"
  4613. ],
  4614. "authors": [
  4615. {
  4616. "name": "hass",
  4617. "homepage": "https://www.drupal.org/u/hass"
  4618. },
  4619. {
  4620. "name": "See other contributors",
  4621. "homepage": "https://www.drupal.org/node/247808/committers"
  4622. }
  4623. ],
  4624. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4625. "homepage": "https://www.drupal.org/project/matomo",
  4626. "support": {
  4627. "source": "http://git.drupal.org/project/matomo.git",
  4628. "issues": "https://www.drupal.org/project/issues/matomo"
  4629. }
  4630. },
  4631. {
  4632. "name": "drupal/maxlength",
  4633. "version": "1.0.0-beta2",
  4634. "source": {
  4635. "type": "git",
  4636. "url": "https://git.drupal.org/project/maxlength",
  4637. "reference": "8.x-1.0-beta2"
  4638. },
  4639. "dist": {
  4640. "type": "zip",
  4641. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-beta2.zip",
  4642. "reference": "8.x-1.0-beta2",
  4643. "shasum": "27f7374e55ebdcc696d22d98be8cf4cf9bf58204"
  4644. },
  4645. "require": {
  4646. "drupal/core": "~8.0"
  4647. },
  4648. "type": "drupal-module",
  4649. "extra": {
  4650. "branch-alias": {
  4651. "dev-1.x": "1.x-dev"
  4652. },
  4653. "drupal": {
  4654. "version": "8.x-1.0-beta2",
  4655. "datestamp": "1527856384",
  4656. "security-coverage": {
  4657. "status": "not-covered",
  4658. "message": "Beta releases are not covered by Drupal security advisories."
  4659. }
  4660. }
  4661. },
  4662. "notification-url": "https://packages.drupal.org/8/downloads",
  4663. "license": [
  4664. "GPL-2.0-or-later"
  4665. ],
  4666. "authors": [
  4667. {
  4668. "name": "Aron Novak",
  4669. "homepage": "https://www.drupal.org/user/61864"
  4670. },
  4671. {
  4672. "name": "Schnitzel",
  4673. "homepage": "https://www.drupal.org/user/643820"
  4674. },
  4675. {
  4676. "name": "a_c_m",
  4677. "homepage": "https://www.drupal.org/user/195063"
  4678. },
  4679. {
  4680. "name": "artur.thiessen",
  4681. "homepage": "https://www.drupal.org/user/2390554"
  4682. },
  4683. {
  4684. "name": "barneytech",
  4685. "homepage": "https://www.drupal.org/user/669922"
  4686. },
  4687. {
  4688. "name": "claudiu_cristea",
  4689. "homepage": "https://www.drupal.org/user/2623935"
  4690. },
  4691. {
  4692. "name": "dawehner",
  4693. "homepage": "https://www.drupal.org/user/99340"
  4694. },
  4695. {
  4696. "name": "derhasi",
  4697. "homepage": "https://www.drupal.org/user/83474"
  4698. },
  4699. {
  4700. "name": "frjo",
  4701. "homepage": "https://www.drupal.org/user/5546"
  4702. },
  4703. {
  4704. "name": "hefox",
  4705. "homepage": "https://www.drupal.org/user/426416"
  4706. },
  4707. {
  4708. "name": "jm.federico",
  4709. "homepage": "https://www.drupal.org/user/509892"
  4710. },
  4711. {
  4712. "name": "k4v",
  4713. "homepage": "https://www.drupal.org/user/744246"
  4714. },
  4715. {
  4716. "name": "mariano73",
  4717. "homepage": "https://www.drupal.org/user/1324866"
  4718. },
  4719. {
  4720. "name": "mariuss",
  4721. "homepage": "https://www.drupal.org/user/28539"
  4722. },
  4723. {
  4724. "name": "sanduhrs",
  4725. "homepage": "https://www.drupal.org/user/28074"
  4726. },
  4727. {
  4728. "name": "vasi1186",
  4729. "homepage": "https://www.drupal.org/user/342104"
  4730. }
  4731. ],
  4732. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  4733. "homepage": "https://www.drupal.org/project/maxlength",
  4734. "support": {
  4735. "source": "http://cgit.drupalcode.org/maxlength"
  4736. }
  4737. },
  4738. {
  4739. "name": "drupal/menu_admin_per_menu",
  4740. "version": "1.0.0",
  4741. "source": {
  4742. "type": "git",
  4743. "url": "https://git.drupal.org/project/menu_admin_per_menu",
  4744. "reference": "8.x-1.0"
  4745. },
  4746. "dist": {
  4747. "type": "zip",
  4748. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4749. "reference": "8.x-1.0",
  4750. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4751. },
  4752. "require": {
  4753. "drupal/core": "*"
  4754. },
  4755. "type": "drupal-module",
  4756. "extra": {
  4757. "branch-alias": {
  4758. "dev-1.x": "1.x-dev"
  4759. },
  4760. "drupal": {
  4761. "version": "8.x-1.0",
  4762. "datestamp": "1507184944",
  4763. "security-coverage": {
  4764. "status": "covered",
  4765. "message": "Covered by Drupal's security advisory policy"
  4766. }
  4767. }
  4768. },
  4769. "notification-url": "https://packages.drupal.org/8/downloads",
  4770. "license": [
  4771. "GPL-2.0-or-later"
  4772. ],
  4773. "authors": [
  4774. {
  4775. "name": "anrikun",
  4776. "homepage": "https://www.drupal.org/user/410199"
  4777. },
  4778. {
  4779. "name": "mkdok",
  4780. "homepage": "https://www.drupal.org/user/3308753"
  4781. }
  4782. ],
  4783. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4784. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4785. "support": {
  4786. "source": "http://cgit.drupalcode.org/menu_admin_per_menu"
  4787. }
  4788. },
  4789. {
  4790. "name": "drupal/menu_block",
  4791. "version": "1.5.0",
  4792. "source": {
  4793. "type": "git",
  4794. "url": "https://git.drupal.org/project/menu_block",
  4795. "reference": "8.x-1.5"
  4796. },
  4797. "dist": {
  4798. "type": "zip",
  4799. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip",
  4800. "reference": "8.x-1.5",
  4801. "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b"
  4802. },
  4803. "require": {
  4804. "drupal/core": "*"
  4805. },
  4806. "type": "drupal-module",
  4807. "extra": {
  4808. "branch-alias": {
  4809. "dev-1.x": "1.x-dev"
  4810. },
  4811. "drupal": {
  4812. "version": "8.x-1.5",
  4813. "datestamp": "1525200184",
  4814. "security-coverage": {
  4815. "status": "covered",
  4816. "message": "Covered by Drupal's security advisory policy"
  4817. }
  4818. }
  4819. },
  4820. "notification-url": "https://packages.drupal.org/8/downloads",
  4821. "license": [
  4822. "GPL-2.0-or-later"
  4823. ],
  4824. "authors": [
  4825. {
  4826. "name": "Dave Reid",
  4827. "homepage": "https://www.drupal.org/user/53892"
  4828. },
  4829. {
  4830. "name": "JohnAlbin",
  4831. "homepage": "https://www.drupal.org/user/32095"
  4832. },
  4833. {
  4834. "name": "joelpittet",
  4835. "homepage": "https://www.drupal.org/user/160302"
  4836. },
  4837. {
  4838. "name": "kim.pepper",
  4839. "homepage": "https://www.drupal.org/user/370574"
  4840. },
  4841. {
  4842. "name": "rrrob",
  4843. "homepage": "https://www.drupal.org/user/273533"
  4844. }
  4845. ],
  4846. "description": "Provides configurable blocks of menu links.",
  4847. "homepage": "https://www.drupal.org/project/menu_block",
  4848. "support": {
  4849. "source": "http://cgit.drupalcode.org/menu_block"
  4850. }
  4851. },
  4852. {
  4853. "name": "drupal/menu_position",
  4854. "version": "dev-1.x",
  4855. "source": {
  4856. "type": "git",
  4857. "url": "https://git.drupal.org/project/menu_position",
  4858. "reference": "11191df8dc7bdb1ef215c3f623c098555f571552"
  4859. },
  4860. "require": {
  4861. "drupal/core": "~8.0"
  4862. },
  4863. "type": "drupal-module",
  4864. "extra": {
  4865. "branch-alias": {
  4866. "dev-1.x": "1.x-dev"
  4867. },
  4868. "drupal": {
  4869. "version": "8.x-1.x-dev",
  4870. "datestamp": "1520418485",
  4871. "security-coverage": {
  4872. "status": "not-covered",
  4873. "message": "Dev releases are not covered by Drupal security advisories."
  4874. }
  4875. }
  4876. },
  4877. "notification-url": "https://packages.drupal.org/8/downloads",
  4878. "license": [
  4879. "GPL-2.0+"
  4880. ],
  4881. "authors": [
  4882. {
  4883. "name": "BarisW",
  4884. "homepage": "https://www.drupal.org/user/107229"
  4885. },
  4886. {
  4887. "name": "JohnAlbin",
  4888. "homepage": "https://www.drupal.org/user/32095"
  4889. },
  4890. {
  4891. "name": "lbainbridge",
  4892. "homepage": "https://www.drupal.org/user/2406996"
  4893. }
  4894. ],
  4895. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  4896. "homepage": "https://www.drupal.org/project/menu_position",
  4897. "support": {
  4898. "source": "http://cgit.drupalcode.org/menu_position",
  4899. "issues": "https://www.drupal.org/project/issues/menu_position"
  4900. },
  4901. "time": "2018-08-02T13:52:40+00:00"
  4902. },
  4903. {
  4904. "name": "drupal/path_alias_xt",
  4905. "version": "dev-1.x",
  4906. "source": {
  4907. "type": "git",
  4908. "url": "https://git.drupal.org/project/path_alias_xt",
  4909. "reference": "5d88c9297e4629f390b03ce3ec8c1c8c890b296b"
  4910. },
  4911. "require": {
  4912. "drupal/core": "*"
  4913. },
  4914. "type": "drupal-module",
  4915. "extra": {
  4916. "branch-alias": {
  4917. "dev-1.x": "1.x-dev"
  4918. },
  4919. "drupal": {
  4920. "version": "8.x-1.x-dev",
  4921. "datestamp": "1500044942",
  4922. "security-coverage": {
  4923. "status": "not-covered",
  4924. "message": "Dev releases are not covered by Drupal security advisories."
  4925. }
  4926. }
  4927. },
  4928. "notification-url": "https://packages.drupal.org/8/downloads",
  4929. "license": [
  4930. "GPL-2.0-or-later"
  4931. ],
  4932. "authors": [
  4933. {
  4934. "name": "RdeBoer",
  4935. "homepage": "https://www.drupal.org/user/404007"
  4936. },
  4937. {
  4938. "name": "adriancid",
  4939. "homepage": "https://www.drupal.org/user/1962106"
  4940. },
  4941. {
  4942. "name": "sdstyles",
  4943. "homepage": "https://www.drupal.org/user/1420228"
  4944. }
  4945. ],
  4946. "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.",
  4947. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4948. "support": {
  4949. "source": "http://cgit.drupalcode.org/path_alias_xt"
  4950. },
  4951. "time": "2017-07-14T15:06:28+00:00"
  4952. },
  4953. {
  4954. "name": "drupal/pathauto",
  4955. "version": "1.3.0",
  4956. "source": {
  4957. "type": "git",
  4958. "url": "https://git.drupal.org/project/pathauto",
  4959. "reference": "8.x-1.3"
  4960. },
  4961. "dist": {
  4962. "type": "zip",
  4963. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip",
  4964. "reference": "8.x-1.3",
  4965. "shasum": "115d5998d7636a03e26c7ce34261b65809d53965"
  4966. },
  4967. "require": {
  4968. "drupal/core": "^8.5",
  4969. "drupal/ctools": "*",
  4970. "drupal/token": "*"
  4971. },
  4972. "type": "drupal-module",
  4973. "extra": {
  4974. "branch-alias": {
  4975. "dev-1.x": "1.x-dev"
  4976. },
  4977. "drupal": {
  4978. "version": "8.x-1.3",
  4979. "datestamp": "1536407884",
  4980. "security-coverage": {
  4981. "status": "covered",
  4982. "message": "Covered by Drupal's security advisory policy"
  4983. }
  4984. }
  4985. },
  4986. "notification-url": "https://packages.drupal.org/8/downloads",
  4987. "license": [
  4988. "GPL-2.0-or-later"
  4989. ],
  4990. "authors": [
  4991. {
  4992. "name": "Berdir",
  4993. "homepage": "https://www.drupal.org/user/214652"
  4994. },
  4995. {
  4996. "name": "Dave Reid",
  4997. "homepage": "https://www.drupal.org/user/53892"
  4998. },
  4999. {
  5000. "name": "Freso",
  5001. "homepage": "https://www.drupal.org/user/27504"
  5002. },
  5003. {
  5004. "name": "greggles",
  5005. "homepage": "https://www.drupal.org/user/36762"
  5006. }
  5007. ],
  5008. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5009. "homepage": "https://www.drupal.org/project/pathauto",
  5010. "support": {
  5011. "source": "http://cgit.drupalcode.org/pathauto"
  5012. }
  5013. },
  5014. {
  5015. "name": "drupal/pathologic",
  5016. "version": "1.0.0-alpha1",
  5017. "source": {
  5018. "type": "git",
  5019. "url": "https://git.drupal.org/project/pathologic",
  5020. "reference": "8.x-1.0-alpha1"
  5021. },
  5022. "dist": {
  5023. "type": "zip",
  5024. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha1.zip",
  5025. "reference": "8.x-1.0-alpha1",
  5026. "shasum": "51c699cc001969baa00cca60cf2302a32e578090"
  5027. },
  5028. "require": {
  5029. "drupal/core": "*"
  5030. },
  5031. "type": "drupal-module",
  5032. "extra": {
  5033. "branch-alias": {
  5034. "dev-1.x": "1.x-dev"
  5035. },
  5036. "drupal": {
  5037. "version": "8.x-1.0-alpha1",
  5038. "datestamp": "1525211884",
  5039. "security-coverage": {
  5040. "status": "not-covered",
  5041. "message": "Alpha releases are not covered by Drupal security advisories."
  5042. }
  5043. }
  5044. },
  5045. "notification-url": "https://packages.drupal.org/8/downloads",
  5046. "license": [
  5047. "GPL-2.0-or-later"
  5048. ],
  5049. "authors": [
  5050. {
  5051. "name": "Berdir",
  5052. "homepage": "https://www.drupal.org/user/214652"
  5053. },
  5054. {
  5055. "name": "Garrett Albright",
  5056. "homepage": "https://www.drupal.org/user/191212"
  5057. },
  5058. {
  5059. "name": "dww",
  5060. "homepage": "https://www.drupal.org/user/46549"
  5061. }
  5062. ],
  5063. "description": "Helps avoid broken links and incorrect paths in content.",
  5064. "homepage": "https://www.drupal.org/project/pathologic",
  5065. "support": {
  5066. "source": "http://cgit.drupalcode.org/pathologic"
  5067. }
  5068. },
  5069. {
  5070. "name": "drupal/persistent_login",
  5071. "version": "1.1.0",
  5072. "source": {
  5073. "type": "git",
  5074. "url": "https://git.drupal.org/project/persistent_login",
  5075. "reference": "8.x-1.1"
  5076. },
  5077. "dist": {
  5078. "type": "zip",
  5079. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.1.zip",
  5080. "reference": "8.x-1.1",
  5081. "shasum": "b1e8f725662ab915767f339e00d7b185ac9097b2"
  5082. },
  5083. "require": {
  5084. "drupal/core": "^8.3"
  5085. },
  5086. "type": "drupal-module",
  5087. "extra": {
  5088. "branch-alias": {
  5089. "dev-1.x": "1.x-dev"
  5090. },
  5091. "drupal": {
  5092. "version": "8.x-1.1",
  5093. "datestamp": "1539379980",
  5094. "security-coverage": {
  5095. "status": "covered",
  5096. "message": "Covered by Drupal's security advisory policy"
  5097. }
  5098. }
  5099. },
  5100. "notification-url": "https://packages.drupal.org/8/downloads",
  5101. "license": [
  5102. "GPL-2.0+"
  5103. ],
  5104. "authors": [
  5105. {
  5106. "name": "gapple",
  5107. "homepage": "https://www.drupal.org/user/490940"
  5108. }
  5109. ],
  5110. "description": "Provides a \"Remember Me\" feature on the login form.",
  5111. "homepage": "https://www.drupal.org/project/persistent_login",
  5112. "keywords": [
  5113. "Drupal"
  5114. ],
  5115. "support": {
  5116. "source": "http://cgit.drupalcode.org/persistent_login",
  5117. "issues": "http://drupal.org/project/issues/persistent_login"
  5118. }
  5119. },
  5120. {
  5121. "name": "drupal/profile",
  5122. "version": "1.0.0-rc1",
  5123. "source": {
  5124. "type": "git",
  5125. "url": "https://git.drupal.org/project/profile",
  5126. "reference": "8.x-1.0-rc1"
  5127. },
  5128. "dist": {
  5129. "type": "zip",
  5130. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc1.zip",
  5131. "reference": "8.x-1.0-rc1",
  5132. "shasum": "cc537ca25412adc4fa601ff42cf2fb5cbc6e7b6b"
  5133. },
  5134. "require": {
  5135. "drupal/core": "~8.1",
  5136. "drupal/entity": "*"
  5137. },
  5138. "type": "drupal-module",
  5139. "extra": {
  5140. "branch-alias": {
  5141. "dev-1.x": "1.x-dev"
  5142. },
  5143. "drupal": {
  5144. "version": "8.x-1.0-rc1",
  5145. "datestamp": "1505830324",
  5146. "security-coverage": {
  5147. "status": "not-covered",
  5148. "message": "RC releases are not covered by Drupal security advisories."
  5149. }
  5150. }
  5151. },
  5152. "notification-url": "https://packages.drupal.org/8/downloads",
  5153. "license": [
  5154. "GPL-2.0+"
  5155. ],
  5156. "authors": [
  5157. {
  5158. "name": "bojanz",
  5159. "homepage": "https://www.drupal.org/user/86106"
  5160. },
  5161. {
  5162. "name": "daggerhart",
  5163. "homepage": "https://www.drupal.org/user/167806"
  5164. },
  5165. {
  5166. "name": "dakala",
  5167. "homepage": "https://www.drupal.org/user/53175"
  5168. },
  5169. {
  5170. "name": "fago",
  5171. "homepage": "https://www.drupal.org/user/16747"
  5172. },
  5173. {
  5174. "name": "mglaman",
  5175. "homepage": "https://www.drupal.org/user/2416470"
  5176. },
  5177. {
  5178. "name": "pcambra",
  5179. "homepage": "https://www.drupal.org/user/122101"
  5180. }
  5181. ],
  5182. "description": "Provides configurable user profiles.",
  5183. "homepage": "http://drupal.org/project/profile",
  5184. "support": {
  5185. "source": "http://cgit.drupalcode.org/profile"
  5186. }
  5187. },
  5188. {
  5189. "name": "drupal/redirect",
  5190. "version": "1.3.0",
  5191. "source": {
  5192. "type": "git",
  5193. "url": "https://git.drupal.org/project/redirect",
  5194. "reference": "8.x-1.3"
  5195. },
  5196. "dist": {
  5197. "type": "zip",
  5198. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  5199. "reference": "8.x-1.3",
  5200. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  5201. },
  5202. "require": {
  5203. "drupal/core": "~8"
  5204. },
  5205. "type": "drupal-module",
  5206. "extra": {
  5207. "branch-alias": {
  5208. "dev-1.x": "1.x-dev"
  5209. },
  5210. "drupal": {
  5211. "version": "8.x-1.3",
  5212. "datestamp": "1539682684",
  5213. "security-coverage": {
  5214. "status": "covered",
  5215. "message": "Covered by Drupal's security advisory policy"
  5216. }
  5217. }
  5218. },
  5219. "notification-url": "https://packages.drupal.org/8/downloads",
  5220. "license": [
  5221. "GPL-2.0+"
  5222. ],
  5223. "authors": [
  5224. {
  5225. "name": "Berdir",
  5226. "homepage": "https://www.drupal.org/user/214652"
  5227. },
  5228. {
  5229. "name": "Dave Reid",
  5230. "homepage": "https://www.drupal.org/user/53892"
  5231. },
  5232. {
  5233. "name": "pifagor",
  5234. "homepage": "https://www.drupal.org/user/2375692"
  5235. }
  5236. ],
  5237. "description": "Allows users to redirect from old URLs to new URLs.",
  5238. "homepage": "https://www.drupal.org/project/redirect",
  5239. "support": {
  5240. "source": "http://cgit.drupalcode.org/redirect"
  5241. }
  5242. },
  5243. {
  5244. "name": "drupal/redis",
  5245. "version": "1.0.0",
  5246. "source": {
  5247. "type": "git",
  5248. "url": "https://git.drupal.org/project/redis",
  5249. "reference": "8.x-1.0"
  5250. },
  5251. "dist": {
  5252. "type": "zip",
  5253. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.0.zip",
  5254. "reference": "8.x-1.0",
  5255. "shasum": "98cf460db5c9aaacf3d5c02ac51e0c9e8e85edbb"
  5256. },
  5257. "require": {
  5258. "drupal/core": "~8.0"
  5259. },
  5260. "suggest": {
  5261. "predis/predis": "^1.1.1"
  5262. },
  5263. "type": "drupal-module",
  5264. "extra": {
  5265. "branch-alias": {
  5266. "dev-1.x": "1.x-dev"
  5267. },
  5268. "drupal": {
  5269. "version": "8.x-1.0",
  5270. "datestamp": "1527699484",
  5271. "security-coverage": {
  5272. "status": "covered",
  5273. "message": "Covered by Drupal's security advisory policy"
  5274. }
  5275. }
  5276. },
  5277. "autoload": {
  5278. "psr-4": {
  5279. "Drupal\\redis\\": "src"
  5280. }
  5281. },
  5282. "notification-url": "https://packages.drupal.org/8/downloads",
  5283. "license": [
  5284. "GPL-2.0"
  5285. ],
  5286. "authors": [
  5287. {
  5288. "name": "Berdir",
  5289. "homepage": "https://www.drupal.org/user/214652"
  5290. },
  5291. {
  5292. "name": "pounard",
  5293. "homepage": "https://www.drupal.org/user/240164"
  5294. }
  5295. ],
  5296. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5297. "homepage": "https://www.drupal.org/project/redis",
  5298. "support": {
  5299. "source": "http://cgit.drupalcode.org/redis"
  5300. }
  5301. },
  5302. {
  5303. "name": "drupal/search_api",
  5304. "version": "1.10.0",
  5305. "source": {
  5306. "type": "git",
  5307. "url": "https://git.drupal.org/project/search_api",
  5308. "reference": "8.x-1.10"
  5309. },
  5310. "dist": {
  5311. "type": "zip",
  5312. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.10.zip",
  5313. "reference": "8.x-1.10",
  5314. "shasum": "1c1d038310a079f8e8154545f743ff7a506c4b8e"
  5315. },
  5316. "require": {
  5317. "drupal/core": "^8.5"
  5318. },
  5319. "require-dev": {
  5320. "drupal/search_api_autocomplete": "@dev",
  5321. "drupal/search_api_db": "*"
  5322. },
  5323. "suggest": {
  5324. "drupal/facets": "Adds the ability to create faceted searches.",
  5325. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5326. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5327. },
  5328. "type": "drupal-module",
  5329. "extra": {
  5330. "branch-alias": {
  5331. "dev-1.x": "1.x-dev"
  5332. },
  5333. "drupal": {
  5334. "version": "8.x-1.10",
  5335. "datestamp": "1537175280",
  5336. "security-coverage": {
  5337. "status": "covered",
  5338. "message": "Covered by Drupal's security advisory policy"
  5339. }
  5340. },
  5341. "drush": {
  5342. "services": {
  5343. "drush.services.yml": "^9"
  5344. }
  5345. }
  5346. },
  5347. "notification-url": "https://packages.drupal.org/8/downloads",
  5348. "license": [
  5349. "GPL-2.0+"
  5350. ],
  5351. "authors": [
  5352. {
  5353. "name": "Thomas Seidl",
  5354. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5355. },
  5356. {
  5357. "name": "Nick Veenhof",
  5358. "homepage": "https://www.drupal.org/u/nick_vh"
  5359. },
  5360. {
  5361. "name": "See other contributors",
  5362. "homepage": "https://www.drupal.org/node/790418/committers"
  5363. }
  5364. ],
  5365. "description": "Provides a generic framework for modules offering search capabilities.",
  5366. "homepage": "https://www.drupal.org/project/search_api",
  5367. "support": {
  5368. "source": "http://git.drupal.org/project/search_api.git",
  5369. "issues": "https://www.drupal.org/project/issues/search_api",
  5370. "irc": "irc://irc.freenode.org/drupal-search-api"
  5371. }
  5372. },
  5373. {
  5374. "name": "drupal/search_api_db",
  5375. "version": "1.10.0",
  5376. "require": {
  5377. "drupal/core": "~8.0",
  5378. "drupal/search_api": "self.version"
  5379. },
  5380. "type": "metapackage",
  5381. "extra": {
  5382. "branch-alias": {
  5383. "dev-1.x": "1.x-dev"
  5384. },
  5385. "drupal": {
  5386. "version": "8.x-1.10",
  5387. "datestamp": "1537175280",
  5388. "security-coverage": {
  5389. "status": "covered",
  5390. "message": "Covered by Drupal's security advisory policy"
  5391. }
  5392. }
  5393. },
  5394. "notification-url": "https://packages.drupal.org/8/downloads",
  5395. "license": [
  5396. "GPL-2.0-or-later"
  5397. ],
  5398. "authors": [
  5399. {
  5400. "name": "Nick_vh",
  5401. "homepage": "https://www.drupal.org/user/122682"
  5402. },
  5403. {
  5404. "name": "drunken monkey",
  5405. "homepage": "https://www.drupal.org/user/205582"
  5406. }
  5407. ],
  5408. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  5409. "homepage": "https://www.drupal.org/project/search_api",
  5410. "support": {
  5411. "source": "http://cgit.drupalcode.org/search_api"
  5412. }
  5413. },
  5414. {
  5415. "name": "drupal/smart_trim",
  5416. "version": "1.1.0",
  5417. "source": {
  5418. "type": "git",
  5419. "url": "https://git.drupal.org/project/smart_trim",
  5420. "reference": "8.x-1.1"
  5421. },
  5422. "dist": {
  5423. "type": "zip",
  5424. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.1.zip",
  5425. "reference": "8.x-1.1",
  5426. "shasum": "5f1c0f15914208e0ad2ec5cce1d6419040596fc0"
  5427. },
  5428. "require": {
  5429. "drupal/core": "*"
  5430. },
  5431. "type": "drupal-module",
  5432. "extra": {
  5433. "branch-alias": {
  5434. "dev-1.x": "1.x-dev"
  5435. },
  5436. "drupal": {
  5437. "version": "8.x-1.1",
  5438. "datestamp": "1516301286",
  5439. "security-coverage": {
  5440. "status": "covered",
  5441. "message": "Covered by Drupal's security advisory policy"
  5442. }
  5443. }
  5444. },
  5445. "notification-url": "https://packages.drupal.org/8/downloads",
  5446. "license": [
  5447. "GPL-2.0+"
  5448. ],
  5449. "authors": [
  5450. {
  5451. "name": "Mark Casias (markie)",
  5452. "homepage": "https://www.drupal.org/u/markie",
  5453. "role": "Maintainer"
  5454. },
  5455. {
  5456. "name": "chrisjlee",
  5457. "homepage": "https://www.drupal.org/user/760600"
  5458. },
  5459. {
  5460. "name": "drywall",
  5461. "homepage": "https://www.drupal.org/user/192591"
  5462. },
  5463. {
  5464. "name": "jsenich",
  5465. "homepage": "https://www.drupal.org/user/58871"
  5466. },
  5467. {
  5468. "name": "markie",
  5469. "homepage": "https://www.drupal.org/user/206687"
  5470. },
  5471. {
  5472. "name": "newsignature",
  5473. "homepage": "https://www.drupal.org/user/765518"
  5474. }
  5475. ],
  5476. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  5477. "homepage": "https://drupal.org/project/smart_trim",
  5478. "support": {
  5479. "source": "https://cgit.drupalcode.org/smart_trim",
  5480. "issues": "https://drupal.org/project/issues/smart_trim"
  5481. }
  5482. },
  5483. {
  5484. "name": "drupal/smtp",
  5485. "version": "1.0.0-beta4",
  5486. "source": {
  5487. "type": "git",
  5488. "url": "https://git.drupal.org/project/smtp",
  5489. "reference": "8.x-1.0-beta4"
  5490. },
  5491. "dist": {
  5492. "type": "zip",
  5493. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0-beta4.zip",
  5494. "reference": "8.x-1.0-beta4",
  5495. "shasum": "80a4df4b2fd2d1b2dc653552d232ce98cb54bb9d"
  5496. },
  5497. "require": {
  5498. "drupal/core": "~8.0"
  5499. },
  5500. "type": "drupal-module",
  5501. "extra": {
  5502. "branch-alias": {
  5503. "dev-1.x": "1.x-dev"
  5504. },
  5505. "drupal": {
  5506. "version": "8.x-1.0-beta4",
  5507. "datestamp": "1527598380",
  5508. "security-coverage": {
  5509. "status": "not-covered",
  5510. "message": "Beta releases are not covered by Drupal security advisories."
  5511. }
  5512. }
  5513. },
  5514. "notification-url": "https://packages.drupal.org/8/downloads",
  5515. "license": [
  5516. "GPL-2.0"
  5517. ],
  5518. "authors": [
  5519. {
  5520. "name": "LukeLast",
  5521. "homepage": "https://www.drupal.org/user/30151"
  5522. },
  5523. {
  5524. "name": "japerry",
  5525. "homepage": "https://www.drupal.org/user/45640"
  5526. },
  5527. {
  5528. "name": "josesanmartin",
  5529. "homepage": "https://www.drupal.org/user/72012"
  5530. },
  5531. {
  5532. "name": "oadaeh",
  5533. "homepage": "https://www.drupal.org/user/4649"
  5534. },
  5535. {
  5536. "name": "wundo",
  5537. "homepage": "https://www.drupal.org/user/25523"
  5538. },
  5539. {
  5540. "name": "yettyn",
  5541. "homepage": "https://www.drupal.org/user/93281"
  5542. }
  5543. ],
  5544. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  5545. "homepage": "https://www.drupal.org/project/smtp",
  5546. "support": {
  5547. "source": "http://cgit.drupalcode.org/smtp",
  5548. "issues": "https://www.drupal.org/project/issues/smtp"
  5549. }
  5550. },
  5551. {
  5552. "name": "drupal/synonyms",
  5553. "version": "1.0.0-alpha1",
  5554. "source": {
  5555. "type": "git",
  5556. "url": "https://git.drupal.org/project/synonyms",
  5557. "reference": "8.x-1.0-alpha1"
  5558. },
  5559. "dist": {
  5560. "type": "zip",
  5561. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha1.zip",
  5562. "reference": "8.x-1.0-alpha1",
  5563. "shasum": "98d39b5b0a26c7b5f9e6dfc4f72285ad014d14f4"
  5564. },
  5565. "require": {
  5566. "drupal/core": "~8.0"
  5567. },
  5568. "type": "drupal-module",
  5569. "extra": {
  5570. "branch-alias": {
  5571. "dev-1.x": "1.x-dev"
  5572. },
  5573. "drupal": {
  5574. "version": "8.x-1.0-alpha1",
  5575. "datestamp": "1477604941",
  5576. "security-coverage": {
  5577. "status": "not-covered",
  5578. "message": "Alpha releases are not covered by Drupal security advisories."
  5579. }
  5580. }
  5581. },
  5582. "notification-url": "https://packages.drupal.org/8/downloads",
  5583. "license": [
  5584. "GPL-2.0-or-later"
  5585. ],
  5586. "authors": [
  5587. {
  5588. "name": "Zen",
  5589. "homepage": "https://www.drupal.org/user/21209"
  5590. },
  5591. {
  5592. "name": "bojanz",
  5593. "homepage": "https://www.drupal.org/user/86106"
  5594. },
  5595. {
  5596. "name": "bucefal91",
  5597. "homepage": "https://www.drupal.org/user/504128"
  5598. }
  5599. ],
  5600. "description": "Provides synonyms feature for content entities.",
  5601. "homepage": "https://www.drupal.org/project/synonyms",
  5602. "support": {
  5603. "source": "http://cgit.drupalcode.org/synonyms"
  5604. }
  5605. },
  5606. {
  5607. "name": "drupal/token",
  5608. "version": "1.5.0",
  5609. "source": {
  5610. "type": "git",
  5611. "url": "https://git.drupal.org/project/token",
  5612. "reference": "8.x-1.5"
  5613. },
  5614. "dist": {
  5615. "type": "zip",
  5616. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  5617. "reference": "8.x-1.5",
  5618. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  5619. },
  5620. "require": {
  5621. "drupal/core": "^8.5"
  5622. },
  5623. "type": "drupal-module",
  5624. "extra": {
  5625. "branch-alias": {
  5626. "dev-1.x": "1.x-dev"
  5627. },
  5628. "drupal": {
  5629. "version": "8.x-1.5",
  5630. "datestamp": "1537557481",
  5631. "security-coverage": {
  5632. "status": "covered",
  5633. "message": "Covered by Drupal's security advisory policy"
  5634. }
  5635. }
  5636. },
  5637. "notification-url": "https://packages.drupal.org/8/downloads",
  5638. "license": [
  5639. "GPL-2.0-or-later"
  5640. ],
  5641. "authors": [
  5642. {
  5643. "name": "Berdir",
  5644. "homepage": "https://www.drupal.org/user/214652"
  5645. },
  5646. {
  5647. "name": "Dave Reid",
  5648. "homepage": "https://www.drupal.org/user/53892"
  5649. },
  5650. {
  5651. "name": "eaton",
  5652. "homepage": "https://www.drupal.org/user/16496"
  5653. },
  5654. {
  5655. "name": "fago",
  5656. "homepage": "https://www.drupal.org/user/16747"
  5657. },
  5658. {
  5659. "name": "greggles",
  5660. "homepage": "https://www.drupal.org/user/36762"
  5661. },
  5662. {
  5663. "name": "mikeryan",
  5664. "homepage": "https://www.drupal.org/user/4420"
  5665. }
  5666. ],
  5667. "description": "Provides a user interface for the Token API and some missing core tokens.",
  5668. "homepage": "https://www.drupal.org/project/token",
  5669. "support": {
  5670. "source": "http://cgit.drupalcode.org/token"
  5671. }
  5672. },
  5673. {
  5674. "name": "drupal/toolbar_themes",
  5675. "version": "1.0.0-alpha4",
  5676. "source": {
  5677. "type": "git",
  5678. "url": "https://git.drupal.org/project/toolbar_themes",
  5679. "reference": "8.x-1.0-alpha4"
  5680. },
  5681. "dist": {
  5682. "type": "zip",
  5683. "url": "https://ftp.drupal.org/files/projects/toolbar_themes-8.x-1.0-alpha4.zip",
  5684. "reference": "8.x-1.0-alpha4",
  5685. "shasum": "15c38da8bfd5a44e47e436d8f432a0aaf6b2cd70"
  5686. },
  5687. "require": {
  5688. "drupal/core": "*"
  5689. },
  5690. "type": "drupal-module",
  5691. "extra": {
  5692. "branch-alias": {
  5693. "dev-1.x": "1.x-dev"
  5694. },
  5695. "drupal": {
  5696. "version": "8.x-1.0-alpha4",
  5697. "datestamp": "1474198439",
  5698. "security-coverage": {
  5699. "status": "not-covered",
  5700. "message": "Project has not opted into security advisory coverage!"
  5701. }
  5702. }
  5703. },
  5704. "notification-url": "https://packages.drupal.org/8/downloads",
  5705. "license": [
  5706. "GPL-2.0-or-later"
  5707. ],
  5708. "authors": [
  5709. {
  5710. "name": "Jeff Burnz",
  5711. "homepage": "https://www.drupal.org/user/61393"
  5712. }
  5713. ],
  5714. "description": "Apply themes to the toolbar.",
  5715. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5716. "support": {
  5717. "source": "http://cgit.drupalcode.org/toolbar_themes"
  5718. }
  5719. },
  5720. {
  5721. "name": "drupal/translation_views",
  5722. "version": "1.0.0-alpha4",
  5723. "source": {
  5724. "type": "git",
  5725. "url": "https://git.drupal.org/project/translation_views",
  5726. "reference": "8.x-1.0-alpha4"
  5727. },
  5728. "dist": {
  5729. "type": "zip",
  5730. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha4.zip",
  5731. "reference": "8.x-1.0-alpha4",
  5732. "shasum": "96f7828005a8d559f31f0dfcb471a68698311cda"
  5733. },
  5734. "require": {
  5735. "drupal/core": "*"
  5736. },
  5737. "type": "drupal-module",
  5738. "extra": {
  5739. "branch-alias": {
  5740. "dev-1.x": "1.x-dev"
  5741. },
  5742. "drupal": {
  5743. "version": "8.x-1.0-alpha4",
  5744. "datestamp": "1538124180",
  5745. "security-coverage": {
  5746. "status": "not-covered",
  5747. "message": "Project has not opted into security advisory coverage!"
  5748. }
  5749. }
  5750. },
  5751. "notification-url": "https://packages.drupal.org/8/downloads",
  5752. "license": [
  5753. "GPL-2.0-or-later"
  5754. ],
  5755. "authors": [
  5756. {
  5757. "name": "matsbla",
  5758. "homepage": "https://www.drupal.org/user/2325394"
  5759. },
  5760. {
  5761. "name": "vlad.dancer",
  5762. "homepage": "https://www.drupal.org/user/903844"
  5763. }
  5764. ],
  5765. "description": "Create customized lists and queries of translations from your database.",
  5766. "homepage": "https://www.drupal.org/project/translation_views",
  5767. "support": {
  5768. "source": "http://cgit.drupalcode.org/translation_views"
  5769. }
  5770. },
  5771. {
  5772. "name": "drupal/ultimate_cron",
  5773. "version": "2.0.0-alpha4",
  5774. "source": {
  5775. "type": "git",
  5776. "url": "https://git.drupal.org/project/ultimate_cron",
  5777. "reference": "8.x-2.0-alpha4"
  5778. },
  5779. "dist": {
  5780. "type": "zip",
  5781. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha4.zip",
  5782. "reference": "8.x-2.0-alpha4",
  5783. "shasum": "50cdadd061f1f6fadb961b04ed04348bcc4719d3"
  5784. },
  5785. "require": {
  5786. "drupal/core": "~8.0"
  5787. },
  5788. "type": "drupal-module",
  5789. "extra": {
  5790. "branch-alias": {
  5791. "dev-2.x": "2.x-dev"
  5792. },
  5793. "drupal": {
  5794. "version": "8.x-2.0-alpha4",
  5795. "datestamp": "1527925385",
  5796. "security-coverage": {
  5797. "status": "not-covered",
  5798. "message": "Alpha releases are not covered by Drupal security advisories."
  5799. }
  5800. }
  5801. },
  5802. "notification-url": "https://packages.drupal.org/8/downloads",
  5803. "license": [
  5804. "GPL-2.0-or-later"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "Berdir",
  5809. "homepage": "https://www.drupal.org/user/214652"
  5810. },
  5811. {
  5812. "name": "Dane Powell",
  5813. "homepage": "https://www.drupal.org/user/339326"
  5814. },
  5815. {
  5816. "name": "arnested",
  5817. "homepage": "https://www.drupal.org/user/245635"
  5818. },
  5819. {
  5820. "name": "gielfeldt",
  5821. "homepage": "https://www.drupal.org/user/366993"
  5822. },
  5823. {
  5824. "name": "miro_dietiker",
  5825. "homepage": "https://www.drupal.org/user/227761"
  5826. }
  5827. ],
  5828. "description": "Cron",
  5829. "homepage": "https://www.drupal.org/project/ultimate_cron",
  5830. "support": {
  5831. "source": "http://cgit.drupalcode.org/ultimate_cron"
  5832. }
  5833. },
  5834. {
  5835. "name": "drupal/url_to_video_filter",
  5836. "version": "1.3.0",
  5837. "source": {
  5838. "type": "git",
  5839. "url": "https://git.drupal.org/project/url_to_video_filter",
  5840. "reference": "8.x-1.3"
  5841. },
  5842. "dist": {
  5843. "type": "zip",
  5844. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  5845. "reference": "8.x-1.3",
  5846. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  5847. },
  5848. "require": {
  5849. "drupal/core": "~8.0"
  5850. },
  5851. "type": "drupal-module",
  5852. "extra": {
  5853. "branch-alias": {
  5854. "dev-1.x": "1.x-dev"
  5855. },
  5856. "drupal": {
  5857. "version": "8.x-1.3",
  5858. "datestamp": "1532695981",
  5859. "security-coverage": {
  5860. "status": "covered",
  5861. "message": "Covered by Drupal's security advisory policy"
  5862. }
  5863. }
  5864. },
  5865. "notification-url": "https://packages.drupal.org/8/downloads",
  5866. "license": [
  5867. "GPL-2.0-or-later"
  5868. ],
  5869. "authors": [
  5870. {
  5871. "name": "Jaypan",
  5872. "homepage": "https://www.drupal.org/user/324696"
  5873. }
  5874. ],
  5875. "description": "Text filter to convert URLs to embedded videos",
  5876. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5877. "support": {
  5878. "source": "http://cgit.drupalcode.org/url_to_video_filter"
  5879. }
  5880. },
  5881. {
  5882. "name": "drupal/views_bulk_edit",
  5883. "version": "2.2.0",
  5884. "source": {
  5885. "type": "git",
  5886. "url": "https://git.drupal.org/project/views_bulk_edit",
  5887. "reference": "8.x-2.2"
  5888. },
  5889. "dist": {
  5890. "type": "zip",
  5891. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  5892. "reference": "8.x-2.2",
  5893. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  5894. },
  5895. "require": {
  5896. "drupal/core": "*",
  5897. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  5898. },
  5899. "type": "drupal-module",
  5900. "extra": {
  5901. "branch-alias": {
  5902. "dev-2.x": "2.x-dev"
  5903. },
  5904. "drupal": {
  5905. "version": "8.x-2.2",
  5906. "datestamp": "1532689085",
  5907. "security-coverage": {
  5908. "status": "covered",
  5909. "message": "Covered by Drupal's security advisory policy"
  5910. }
  5911. }
  5912. },
  5913. "notification-url": "https://packages.drupal.org/8/downloads",
  5914. "license": [
  5915. "GPL-2.0+"
  5916. ],
  5917. "authors": [
  5918. {
  5919. "name": "Marcin Grabias",
  5920. "homepage": "https://www.drupal.org/u/graber"
  5921. },
  5922. {
  5923. "name": "benjy",
  5924. "homepage": "https://www.drupal.org/user/1852732"
  5925. }
  5926. ],
  5927. "description": "Allows bulk edition of entity field values.",
  5928. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5929. "support": {
  5930. "source": "http://cgit.drupalcode.org/views_bulk_edit",
  5931. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5932. }
  5933. },
  5934. {
  5935. "name": "drupal/views_bulk_operations",
  5936. "version": "2.4.0",
  5937. "source": {
  5938. "type": "git",
  5939. "url": "https://git.drupal.org/project/views_bulk_operations",
  5940. "reference": "8.x-2.4"
  5941. },
  5942. "dist": {
  5943. "type": "zip",
  5944. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.4.zip",
  5945. "reference": "8.x-2.4",
  5946. "shasum": "50c5778770f3a92e38ecf664301b77146e3cc931"
  5947. },
  5948. "require": {
  5949. "drupal/core": "^8.4"
  5950. },
  5951. "type": "drupal-module",
  5952. "extra": {
  5953. "branch-alias": {
  5954. "dev-2.x": "2.x-dev"
  5955. },
  5956. "drupal": {
  5957. "version": "8.x-2.4",
  5958. "datestamp": "1530516821",
  5959. "security-coverage": {
  5960. "status": "covered",
  5961. "message": "Covered by Drupal's security advisory policy"
  5962. }
  5963. },
  5964. "drush": {
  5965. "services": {
  5966. "drush.services.yml": "^9"
  5967. }
  5968. }
  5969. },
  5970. "notification-url": "https://packages.drupal.org/8/downloads",
  5971. "license": [
  5972. "GPL-2.0+"
  5973. ],
  5974. "authors": [
  5975. {
  5976. "name": "Marcin Grabias",
  5977. "homepage": "https://www.drupal.org/u/graber"
  5978. },
  5979. {
  5980. "name": "Jon Pugh",
  5981. "homepage": "https://www.drupal.org/user/17028"
  5982. },
  5983. {
  5984. "name": "bojanz",
  5985. "homepage": "https://www.drupal.org/user/86106"
  5986. },
  5987. {
  5988. "name": "infojunkie",
  5989. "homepage": "https://www.drupal.org/user/48424"
  5990. },
  5991. {
  5992. "name": "joelpittet",
  5993. "homepage": "https://www.drupal.org/user/160302"
  5994. }
  5995. ],
  5996. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5997. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5998. "support": {
  5999. "source": "http://cgit.drupalcode.org/views_bulk_operations",
  6000. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  6001. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  6002. }
  6003. },
  6004. {
  6005. "name": "drupal/workflow",
  6006. "version": "dev-1.x",
  6007. "source": {
  6008. "type": "git",
  6009. "url": "https://git.drupal.org/project/workflow",
  6010. "reference": "942b2a293696fd4c40fbb906f742a2d9293e5fcb"
  6011. },
  6012. "require": {
  6013. "drupal/core": "*"
  6014. },
  6015. "type": "drupal-module",
  6016. "extra": {
  6017. "branch-alias": {
  6018. "dev-1.x": "1.x-dev"
  6019. },
  6020. "drupal": {
  6021. "version": "8.x-1.1+19-dev",
  6022. "datestamp": "1537125481",
  6023. "security-coverage": {
  6024. "status": "not-covered",
  6025. "message": "Dev releases are not covered by Drupal security advisories."
  6026. }
  6027. },
  6028. "patches_applied": {
  6029. "fix bad way of including files": "https://www.drupal.org/files/issues/2018-11-01/workflow-include.patch"
  6030. }
  6031. },
  6032. "notification-url": "https://packages.drupal.org/8/downloads",
  6033. "license": [
  6034. "GPL-2.0-or-later"
  6035. ],
  6036. "authors": [
  6037. {
  6038. "name": "Bastlynn",
  6039. "homepage": "https://www.drupal.org/user/275249"
  6040. },
  6041. {
  6042. "name": "Heine",
  6043. "homepage": "https://www.drupal.org/user/17943"
  6044. },
  6045. {
  6046. "name": "JacobSingh",
  6047. "homepage": "https://www.drupal.org/user/68912"
  6048. },
  6049. {
  6050. "name": "NancyDru",
  6051. "homepage": "https://www.drupal.org/user/101412"
  6052. },
  6053. {
  6054. "name": "eaton",
  6055. "homepage": "https://www.drupal.org/user/16496"
  6056. },
  6057. {
  6058. "name": "johnv",
  6059. "homepage": "https://www.drupal.org/user/591042"
  6060. },
  6061. {
  6062. "name": "jvandyk",
  6063. "homepage": "https://www.drupal.org/user/2375"
  6064. },
  6065. {
  6066. "name": "mfredrickson",
  6067. "homepage": "https://www.drupal.org/user/31994"
  6068. },
  6069. {
  6070. "name": "q0rban",
  6071. "homepage": "https://www.drupal.org/user/31022"
  6072. }
  6073. ],
  6074. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  6075. "homepage": "https://www.drupal.org/project/workflow",
  6076. "support": {
  6077. "source": "http://cgit.drupalcode.org/workflow"
  6078. },
  6079. "time": "2018-09-16T19:25:10+00:00"
  6080. },
  6081. {
  6082. "name": "drush/drush",
  6083. "version": "9.5.2",
  6084. "source": {
  6085. "type": "git",
  6086. "url": "https://github.com/drush-ops/drush.git",
  6087. "reference": "17f0106706391675a281c6d212850853bdbe90f9"
  6088. },
  6089. "dist": {
  6090. "type": "zip",
  6091. "url": "https://api.github.com/repos/drush-ops/drush/zipball/17f0106706391675a281c6d212850853bdbe90f9",
  6092. "reference": "17f0106706391675a281c6d212850853bdbe90f9",
  6093. "shasum": ""
  6094. },
  6095. "require": {
  6096. "chi-teck/drupal-code-generator": "^1.27.0",
  6097. "composer/semver": "^1.4",
  6098. "consolidation/annotated-command": "^2.9.1",
  6099. "consolidation/config": "^1.1.0",
  6100. "consolidation/output-formatters": "^3.1.12",
  6101. "consolidation/robo": "^1.1.5",
  6102. "consolidation/site-alias": "^1.1.5",
  6103. "ext-dom": "*",
  6104. "grasmash/yaml-expander": "^1.1.1",
  6105. "league/container": "~2",
  6106. "php": ">=5.6.0",
  6107. "psr/log": "~1.0",
  6108. "psy/psysh": "~0.6",
  6109. "symfony/config": "^3.4",
  6110. "symfony/console": "^3.4",
  6111. "symfony/event-dispatcher": "^3.4",
  6112. "symfony/finder": "^3.4",
  6113. "symfony/process": "^3.4",
  6114. "symfony/var-dumper": "^3.4",
  6115. "symfony/yaml": "^3.4",
  6116. "webflo/drupal-finder": "^1.1",
  6117. "webmozart/path-util": "^2.1.0"
  6118. },
  6119. "require-dev": {
  6120. "composer/installers": "^1.2",
  6121. "cweagans/composer-patches": "~1.0",
  6122. "drupal/alinks": "1.0.0",
  6123. "drupal/devel": "^1.0@RC",
  6124. "drupal/empty_theme": "1.0",
  6125. "g1a/composer-test-scenarios": "^2.2.0",
  6126. "lox/xhprof": "dev-master",
  6127. "phpunit/phpunit": "^4.8.36 || ^6.1",
  6128. "squizlabs/php_codesniffer": "^2.7",
  6129. "vlucas/phpdotenv": "^2.4",
  6130. "webflo/drupal-core-strict": "8.6.x-dev"
  6131. },
  6132. "bin": [
  6133. "drush"
  6134. ],
  6135. "type": "library",
  6136. "extra": {
  6137. "installer-paths": {
  6138. "sut/core": [
  6139. "type:drupal-core"
  6140. ],
  6141. "sut/libraries/{$name}": [
  6142. "type:drupal-library"
  6143. ],
  6144. "sut/modules/unish/{$name}": [
  6145. "drupal/devel"
  6146. ],
  6147. "sut/themes/unish/{$name}": [
  6148. "drupal/empty_theme"
  6149. ],
  6150. "sut/modules/contrib/{$name}": [
  6151. "type:drupal-module"
  6152. ],
  6153. "sut/profiles/contrib/{$name}": [
  6154. "type:drupal-profile"
  6155. ],
  6156. "sut/themes/contrib/{$name}": [
  6157. "type:drupal-theme"
  6158. ],
  6159. "sut/drush/contrib/{$name}": [
  6160. "type:drupal-drush"
  6161. ]
  6162. },
  6163. "branch-alias": {
  6164. "dev-master": "9.x-dev"
  6165. }
  6166. },
  6167. "autoload": {
  6168. "psr-4": {
  6169. "Drush\\": "src/",
  6170. "Drush\\Internal\\": "internal-copy/",
  6171. "Unish\\": "tests/"
  6172. }
  6173. },
  6174. "notification-url": "https://packagist.org/downloads/",
  6175. "license": [
  6176. "GPL-2.0-or-later"
  6177. ],
  6178. "authors": [
  6179. {
  6180. "name": "Moshe Weitzman",
  6181. "email": "weitzman@tejasa.com"
  6182. },
  6183. {
  6184. "name": "Owen Barton",
  6185. "email": "drupal@owenbarton.com"
  6186. },
  6187. {
  6188. "name": "Greg Anderson",
  6189. "email": "greg.1.anderson@greenknowe.org"
  6190. },
  6191. {
  6192. "name": "Jonathan Araña Cruz",
  6193. "email": "jonhattan@faita.net"
  6194. },
  6195. {
  6196. "name": "Jonathan Hedstrom",
  6197. "email": "jhedstrom@gmail.com"
  6198. },
  6199. {
  6200. "name": "Christopher Gervais",
  6201. "email": "chris@ergonlogic.com"
  6202. },
  6203. {
  6204. "name": "Dave Reid",
  6205. "email": "dave@davereid.net"
  6206. },
  6207. {
  6208. "name": "Damian Lee",
  6209. "email": "damiankloip@googlemail.com"
  6210. }
  6211. ],
  6212. "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.",
  6213. "homepage": "http://www.drush.org",
  6214. "time": "2018-10-17T18:37:53+00:00"
  6215. },
  6216. {
  6217. "name": "easyrdf/easyrdf",
  6218. "version": "0.9.1",
  6219. "source": {
  6220. "type": "git",
  6221. "url": "https://github.com/njh/easyrdf.git",
  6222. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6223. },
  6224. "dist": {
  6225. "type": "zip",
  6226. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6227. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6228. "shasum": ""
  6229. },
  6230. "require": {
  6231. "ext-mbstring": "*",
  6232. "ext-pcre": "*",
  6233. "php": ">=5.2.8"
  6234. },
  6235. "require-dev": {
  6236. "phpunit/phpunit": "~3.5",
  6237. "sami/sami": "~1.4",
  6238. "squizlabs/php_codesniffer": "~1.4.3"
  6239. },
  6240. "suggest": {
  6241. "ml/json-ld": "~1.0"
  6242. },
  6243. "type": "library",
  6244. "autoload": {
  6245. "psr-0": {
  6246. "EasyRdf_": "lib/"
  6247. }
  6248. },
  6249. "notification-url": "https://packagist.org/downloads/",
  6250. "license": [
  6251. "BSD-3-Clause"
  6252. ],
  6253. "authors": [
  6254. {
  6255. "name": "Nicholas Humfrey",
  6256. "email": "njh@aelius.com",
  6257. "homepage": "http://www.aelius.com/njh/",
  6258. "role": "Developer"
  6259. },
  6260. {
  6261. "name": "Alexey Zakhlestin",
  6262. "email": "indeyets@gmail.com",
  6263. "role": "Developer"
  6264. }
  6265. ],
  6266. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  6267. "homepage": "http://www.easyrdf.org/",
  6268. "keywords": [
  6269. "Linked Data",
  6270. "RDF",
  6271. "Semantic Web",
  6272. "Turtle",
  6273. "rdfa",
  6274. "sparql"
  6275. ],
  6276. "time": "2015-02-27T09:45:49+00:00"
  6277. },
  6278. {
  6279. "name": "egulias/email-validator",
  6280. "version": "1.2.15",
  6281. "source": {
  6282. "type": "git",
  6283. "url": "https://github.com/egulias/EmailValidator.git",
  6284. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  6285. },
  6286. "dist": {
  6287. "type": "zip",
  6288. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  6289. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  6290. "shasum": ""
  6291. },
  6292. "require": {
  6293. "doctrine/lexer": "^1.0.1",
  6294. "php": ">= 5.3.3"
  6295. },
  6296. "require-dev": {
  6297. "phpunit/phpunit": "^4.8.24"
  6298. },
  6299. "type": "library",
  6300. "extra": {
  6301. "branch-alias": {
  6302. "dev-master": "2.0.x-dev"
  6303. }
  6304. },
  6305. "autoload": {
  6306. "psr-0": {
  6307. "Egulias\\": "src/"
  6308. }
  6309. },
  6310. "notification-url": "https://packagist.org/downloads/",
  6311. "license": [
  6312. "MIT"
  6313. ],
  6314. "authors": [
  6315. {
  6316. "name": "Eduardo Gulias Davis"
  6317. }
  6318. ],
  6319. "description": "A library for validating emails",
  6320. "homepage": "https://github.com/egulias/EmailValidator",
  6321. "keywords": [
  6322. "email",
  6323. "emailvalidation",
  6324. "emailvalidator",
  6325. "validation",
  6326. "validator"
  6327. ],
  6328. "time": "2018-09-25T20:59:41+00:00"
  6329. },
  6330. {
  6331. "name": "g1a/composer-test-scenarios",
  6332. "version": "2.2.0",
  6333. "source": {
  6334. "type": "git",
  6335. "url": "https://github.com/g1a/composer-test-scenarios.git",
  6336. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880"
  6337. },
  6338. "dist": {
  6339. "type": "zip",
  6340. "url": "https://api.github.com/repos/g1a/composer-test-scenarios/zipball/a166fd15191aceab89f30c097e694b7cf3db4880",
  6341. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880",
  6342. "shasum": ""
  6343. },
  6344. "bin": [
  6345. "scripts/create-scenario",
  6346. "scripts/dependency-licenses",
  6347. "scripts/install-scenario"
  6348. ],
  6349. "type": "library",
  6350. "notification-url": "https://packagist.org/downloads/",
  6351. "license": [
  6352. "MIT"
  6353. ],
  6354. "authors": [
  6355. {
  6356. "name": "Greg Anderson",
  6357. "email": "greg.1.anderson@greenknowe.org"
  6358. }
  6359. ],
  6360. "description": "Useful scripts for testing multiple sets of Composer dependencies.",
  6361. "time": "2018-08-08T23:37:23+00:00"
  6362. },
  6363. {
  6364. "name": "grasmash/expander",
  6365. "version": "1.0.0",
  6366. "source": {
  6367. "type": "git",
  6368. "url": "https://github.com/grasmash/expander.git",
  6369. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  6370. },
  6371. "dist": {
  6372. "type": "zip",
  6373. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6374. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6375. "shasum": ""
  6376. },
  6377. "require": {
  6378. "dflydev/dot-access-data": "^1.1.0",
  6379. "php": ">=5.4"
  6380. },
  6381. "require-dev": {
  6382. "greg-1-anderson/composer-test-scenarios": "^1",
  6383. "phpunit/phpunit": "^4|^5.5.4",
  6384. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6385. "squizlabs/php_codesniffer": "^2.7"
  6386. },
  6387. "type": "library",
  6388. "extra": {
  6389. "branch-alias": {
  6390. "dev-master": "1.x-dev"
  6391. }
  6392. },
  6393. "autoload": {
  6394. "psr-4": {
  6395. "Grasmash\\Expander\\": "src/"
  6396. }
  6397. },
  6398. "notification-url": "https://packagist.org/downloads/",
  6399. "license": [
  6400. "MIT"
  6401. ],
  6402. "authors": [
  6403. {
  6404. "name": "Matthew Grasmick"
  6405. }
  6406. ],
  6407. "description": "Expands internal property references in PHP arrays file.",
  6408. "time": "2017-12-21T22:14:55+00:00"
  6409. },
  6410. {
  6411. "name": "grasmash/yaml-expander",
  6412. "version": "1.4.0",
  6413. "source": {
  6414. "type": "git",
  6415. "url": "https://github.com/grasmash/yaml-expander.git",
  6416. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6417. },
  6418. "dist": {
  6419. "type": "zip",
  6420. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6421. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6422. "shasum": ""
  6423. },
  6424. "require": {
  6425. "dflydev/dot-access-data": "^1.1.0",
  6426. "php": ">=5.4",
  6427. "symfony/yaml": "^2.8.11|^3|^4"
  6428. },
  6429. "require-dev": {
  6430. "greg-1-anderson/composer-test-scenarios": "^1",
  6431. "phpunit/phpunit": "^4.8|^5.5.4",
  6432. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6433. "squizlabs/php_codesniffer": "^2.7"
  6434. },
  6435. "type": "library",
  6436. "extra": {
  6437. "branch-alias": {
  6438. "dev-master": "1.x-dev"
  6439. }
  6440. },
  6441. "autoload": {
  6442. "psr-4": {
  6443. "Grasmash\\YamlExpander\\": "src/"
  6444. }
  6445. },
  6446. "notification-url": "https://packagist.org/downloads/",
  6447. "license": [
  6448. "MIT"
  6449. ],
  6450. "authors": [
  6451. {
  6452. "name": "Matthew Grasmick"
  6453. }
  6454. ],
  6455. "description": "Expands internal property references in a yaml file.",
  6456. "time": "2017-12-16T16:06:03+00:00"
  6457. },
  6458. {
  6459. "name": "guzzlehttp/guzzle",
  6460. "version": "6.3.3",
  6461. "source": {
  6462. "type": "git",
  6463. "url": "https://github.com/guzzle/guzzle.git",
  6464. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  6465. },
  6466. "dist": {
  6467. "type": "zip",
  6468. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  6469. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  6470. "shasum": ""
  6471. },
  6472. "require": {
  6473. "guzzlehttp/promises": "^1.0",
  6474. "guzzlehttp/psr7": "^1.4",
  6475. "php": ">=5.5"
  6476. },
  6477. "require-dev": {
  6478. "ext-curl": "*",
  6479. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6480. "psr/log": "^1.0"
  6481. },
  6482. "suggest": {
  6483. "psr/log": "Required for using the Log middleware"
  6484. },
  6485. "type": "library",
  6486. "extra": {
  6487. "branch-alias": {
  6488. "dev-master": "6.3-dev"
  6489. }
  6490. },
  6491. "autoload": {
  6492. "files": [
  6493. "src/functions_include.php"
  6494. ],
  6495. "psr-4": {
  6496. "GuzzleHttp\\": "src/"
  6497. }
  6498. },
  6499. "notification-url": "https://packagist.org/downloads/",
  6500. "license": [
  6501. "MIT"
  6502. ],
  6503. "authors": [
  6504. {
  6505. "name": "Michael Dowling",
  6506. "email": "mtdowling@gmail.com",
  6507. "homepage": "https://github.com/mtdowling"
  6508. }
  6509. ],
  6510. "description": "Guzzle is a PHP HTTP client library",
  6511. "homepage": "http://guzzlephp.org/",
  6512. "keywords": [
  6513. "client",
  6514. "curl",
  6515. "framework",
  6516. "http",
  6517. "http client",
  6518. "rest",
  6519. "web service"
  6520. ],
  6521. "time": "2018-04-22T15:46:56+00:00"
  6522. },
  6523. {
  6524. "name": "guzzlehttp/promises",
  6525. "version": "v1.3.1",
  6526. "source": {
  6527. "type": "git",
  6528. "url": "https://github.com/guzzle/promises.git",
  6529. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6530. },
  6531. "dist": {
  6532. "type": "zip",
  6533. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6534. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6535. "shasum": ""
  6536. },
  6537. "require": {
  6538. "php": ">=5.5.0"
  6539. },
  6540. "require-dev": {
  6541. "phpunit/phpunit": "^4.0"
  6542. },
  6543. "type": "library",
  6544. "extra": {
  6545. "branch-alias": {
  6546. "dev-master": "1.4-dev"
  6547. }
  6548. },
  6549. "autoload": {
  6550. "psr-4": {
  6551. "GuzzleHttp\\Promise\\": "src/"
  6552. },
  6553. "files": [
  6554. "src/functions_include.php"
  6555. ]
  6556. },
  6557. "notification-url": "https://packagist.org/downloads/",
  6558. "license": [
  6559. "MIT"
  6560. ],
  6561. "authors": [
  6562. {
  6563. "name": "Michael Dowling",
  6564. "email": "mtdowling@gmail.com",
  6565. "homepage": "https://github.com/mtdowling"
  6566. }
  6567. ],
  6568. "description": "Guzzle promises library",
  6569. "keywords": [
  6570. "promise"
  6571. ],
  6572. "time": "2016-12-20T10:07:11+00:00"
  6573. },
  6574. {
  6575. "name": "guzzlehttp/psr7",
  6576. "version": "1.4.2",
  6577. "source": {
  6578. "type": "git",
  6579. "url": "https://github.com/guzzle/psr7.git",
  6580. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  6581. },
  6582. "dist": {
  6583. "type": "zip",
  6584. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  6585. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  6586. "shasum": ""
  6587. },
  6588. "require": {
  6589. "php": ">=5.4.0",
  6590. "psr/http-message": "~1.0"
  6591. },
  6592. "provide": {
  6593. "psr/http-message-implementation": "1.0"
  6594. },
  6595. "require-dev": {
  6596. "phpunit/phpunit": "~4.0"
  6597. },
  6598. "type": "library",
  6599. "extra": {
  6600. "branch-alias": {
  6601. "dev-master": "1.4-dev"
  6602. }
  6603. },
  6604. "autoload": {
  6605. "psr-4": {
  6606. "GuzzleHttp\\Psr7\\": "src/"
  6607. },
  6608. "files": [
  6609. "src/functions_include.php"
  6610. ]
  6611. },
  6612. "notification-url": "https://packagist.org/downloads/",
  6613. "license": [
  6614. "MIT"
  6615. ],
  6616. "authors": [
  6617. {
  6618. "name": "Michael Dowling",
  6619. "email": "mtdowling@gmail.com",
  6620. "homepage": "https://github.com/mtdowling"
  6621. },
  6622. {
  6623. "name": "Tobias Schultze",
  6624. "homepage": "https://github.com/Tobion"
  6625. }
  6626. ],
  6627. "description": "PSR-7 message implementation that also provides common utility methods",
  6628. "keywords": [
  6629. "http",
  6630. "message",
  6631. "request",
  6632. "response",
  6633. "stream",
  6634. "uri",
  6635. "url"
  6636. ],
  6637. "time": "2017-03-20T17:10:46+00:00"
  6638. },
  6639. {
  6640. "name": "jakub-onderka/php-console-color",
  6641. "version": "v0.2",
  6642. "source": {
  6643. "type": "git",
  6644. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6645. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6646. },
  6647. "dist": {
  6648. "type": "zip",
  6649. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6650. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6651. "shasum": ""
  6652. },
  6653. "require": {
  6654. "php": ">=5.4.0"
  6655. },
  6656. "require-dev": {
  6657. "jakub-onderka/php-code-style": "1.0",
  6658. "jakub-onderka/php-parallel-lint": "1.0",
  6659. "jakub-onderka/php-var-dump-check": "0.*",
  6660. "phpunit/phpunit": "~4.3",
  6661. "squizlabs/php_codesniffer": "1.*"
  6662. },
  6663. "type": "library",
  6664. "autoload": {
  6665. "psr-4": {
  6666. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6667. }
  6668. },
  6669. "notification-url": "https://packagist.org/downloads/",
  6670. "license": [
  6671. "BSD-2-Clause"
  6672. ],
  6673. "authors": [
  6674. {
  6675. "name": "Jakub Onderka",
  6676. "email": "jakub.onderka@gmail.com"
  6677. }
  6678. ],
  6679. "time": "2018-09-29T17:23:10+00:00"
  6680. },
  6681. {
  6682. "name": "jakub-onderka/php-console-highlighter",
  6683. "version": "v0.4",
  6684. "source": {
  6685. "type": "git",
  6686. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6687. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6688. },
  6689. "dist": {
  6690. "type": "zip",
  6691. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6692. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6693. "shasum": ""
  6694. },
  6695. "require": {
  6696. "ext-tokenizer": "*",
  6697. "jakub-onderka/php-console-color": "~0.2",
  6698. "php": ">=5.4.0"
  6699. },
  6700. "require-dev": {
  6701. "jakub-onderka/php-code-style": "~1.0",
  6702. "jakub-onderka/php-parallel-lint": "~1.0",
  6703. "jakub-onderka/php-var-dump-check": "~0.1",
  6704. "phpunit/phpunit": "~4.0",
  6705. "squizlabs/php_codesniffer": "~1.5"
  6706. },
  6707. "type": "library",
  6708. "autoload": {
  6709. "psr-4": {
  6710. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6711. }
  6712. },
  6713. "notification-url": "https://packagist.org/downloads/",
  6714. "license": [
  6715. "MIT"
  6716. ],
  6717. "authors": [
  6718. {
  6719. "name": "Jakub Onderka",
  6720. "email": "acci@acci.cz",
  6721. "homepage": "http://www.acci.cz/"
  6722. }
  6723. ],
  6724. "description": "Highlight PHP code in terminal",
  6725. "time": "2018-09-29T18:48:56+00:00"
  6726. },
  6727. {
  6728. "name": "league/container",
  6729. "version": "2.4.1",
  6730. "source": {
  6731. "type": "git",
  6732. "url": "https://github.com/thephpleague/container.git",
  6733. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6734. },
  6735. "dist": {
  6736. "type": "zip",
  6737. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6738. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6739. "shasum": ""
  6740. },
  6741. "require": {
  6742. "container-interop/container-interop": "^1.2",
  6743. "php": "^5.4.0 || ^7.0"
  6744. },
  6745. "provide": {
  6746. "container-interop/container-interop-implementation": "^1.2",
  6747. "psr/container-implementation": "^1.0"
  6748. },
  6749. "replace": {
  6750. "orno/di": "~2.0"
  6751. },
  6752. "require-dev": {
  6753. "phpunit/phpunit": "4.*"
  6754. },
  6755. "type": "library",
  6756. "extra": {
  6757. "branch-alias": {
  6758. "dev-2.x": "2.x-dev",
  6759. "dev-1.x": "1.x-dev"
  6760. }
  6761. },
  6762. "autoload": {
  6763. "psr-4": {
  6764. "League\\Container\\": "src"
  6765. }
  6766. },
  6767. "notification-url": "https://packagist.org/downloads/",
  6768. "license": [
  6769. "MIT"
  6770. ],
  6771. "authors": [
  6772. {
  6773. "name": "Phil Bennett",
  6774. "email": "philipobenito@gmail.com",
  6775. "homepage": "http://www.philipobenito.com",
  6776. "role": "Developer"
  6777. }
  6778. ],
  6779. "description": "A fast and intuitive dependency injection container.",
  6780. "homepage": "https://github.com/thephpleague/container",
  6781. "keywords": [
  6782. "container",
  6783. "dependency",
  6784. "di",
  6785. "injection",
  6786. "league",
  6787. "provider",
  6788. "service"
  6789. ],
  6790. "time": "2017-05-10T09:20:27+00:00"
  6791. },
  6792. {
  6793. "name": "lsolesen/pel",
  6794. "version": "0.9.6",
  6795. "source": {
  6796. "type": "git",
  6797. "url": "https://github.com/lsolesen/pel.git",
  6798. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23"
  6799. },
  6800. "dist": {
  6801. "type": "zip",
  6802. "url": "https://api.github.com/repos/lsolesen/pel/zipball/c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  6803. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  6804. "shasum": ""
  6805. },
  6806. "require": {
  6807. "php": ">=5.0.0"
  6808. },
  6809. "require-dev": {
  6810. "ext-gd": "*",
  6811. "phpunit/phpunit": "5.7.*",
  6812. "satooshi/php-coveralls": "1.0.*",
  6813. "squizlabs/php_codesniffer": "3.0.0RC3"
  6814. },
  6815. "type": "library",
  6816. "autoload": {
  6817. "psr-4": {
  6818. "lsolesen\\pel\\": "src/"
  6819. }
  6820. },
  6821. "notification-url": "https://packagist.org/downloads/",
  6822. "license": [
  6823. "GPL-2.0"
  6824. ],
  6825. "authors": [
  6826. {
  6827. "name": "Lars Olesen",
  6828. "email": "lars@intraface.dk",
  6829. "homepage": "http://intraface.dk",
  6830. "role": "Developer"
  6831. },
  6832. {
  6833. "name": "Martin Geisler",
  6834. "email": "martin@geisler.net",
  6835. "homepage": "http://geisler.net",
  6836. "role": "Developer"
  6837. }
  6838. ],
  6839. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  6840. "homepage": "http://lsolesen.github.com/pel/",
  6841. "keywords": [
  6842. "exif",
  6843. "image"
  6844. ],
  6845. "time": "2017-02-03T11:58:58+00:00"
  6846. },
  6847. {
  6848. "name": "masterminds/html5",
  6849. "version": "2.3.1",
  6850. "source": {
  6851. "type": "git",
  6852. "url": "https://github.com/Masterminds/html5-php.git",
  6853. "reference": "33f8d475d28741398be26cdff7a10a63003324a3"
  6854. },
  6855. "dist": {
  6856. "type": "zip",
  6857. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/33f8d475d28741398be26cdff7a10a63003324a3",
  6858. "reference": "33f8d475d28741398be26cdff7a10a63003324a3",
  6859. "shasum": ""
  6860. },
  6861. "require": {
  6862. "ext-libxml": "*",
  6863. "php": ">=5.3.0"
  6864. },
  6865. "require-dev": {
  6866. "phpunit/phpunit": "4.*",
  6867. "sami/sami": "~2.0",
  6868. "satooshi/php-coveralls": "1.0.*"
  6869. },
  6870. "type": "library",
  6871. "extra": {
  6872. "branch-alias": {
  6873. "dev-master": "2.2-dev"
  6874. }
  6875. },
  6876. "autoload": {
  6877. "psr-4": {
  6878. "Masterminds\\": "src"
  6879. }
  6880. },
  6881. "notification-url": "https://packagist.org/downloads/",
  6882. "license": [
  6883. "MIT"
  6884. ],
  6885. "authors": [
  6886. {
  6887. "name": "Matt Butcher",
  6888. "email": "technosophos@gmail.com"
  6889. },
  6890. {
  6891. "name": "Asmir Mustafic",
  6892. "email": "goetas@gmail.com"
  6893. },
  6894. {
  6895. "name": "Matt Farina",
  6896. "email": "matt@mattfarina.com"
  6897. }
  6898. ],
  6899. "description": "An HTML5 parser and serializer.",
  6900. "homepage": "http://masterminds.github.io/html5-php",
  6901. "keywords": [
  6902. "HTML5",
  6903. "dom",
  6904. "html",
  6905. "parser",
  6906. "querypath",
  6907. "serializer",
  6908. "xml"
  6909. ],
  6910. "time": "2018-10-22T16:58:34+00:00"
  6911. },
  6912. {
  6913. "name": "nikic/php-parser",
  6914. "version": "v4.1.0",
  6915. "source": {
  6916. "type": "git",
  6917. "url": "https://github.com/nikic/PHP-Parser.git",
  6918. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0"
  6919. },
  6920. "dist": {
  6921. "type": "zip",
  6922. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/d0230c5c77a7e3cfa69446febf340978540958c0",
  6923. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0",
  6924. "shasum": ""
  6925. },
  6926. "require": {
  6927. "ext-tokenizer": "*",
  6928. "php": ">=7.0"
  6929. },
  6930. "require-dev": {
  6931. "phpunit/phpunit": "^6.5 || ^7.0"
  6932. },
  6933. "bin": [
  6934. "bin/php-parse"
  6935. ],
  6936. "type": "library",
  6937. "extra": {
  6938. "branch-alias": {
  6939. "dev-master": "4.1-dev"
  6940. }
  6941. },
  6942. "autoload": {
  6943. "psr-4": {
  6944. "PhpParser\\": "lib/PhpParser"
  6945. }
  6946. },
  6947. "notification-url": "https://packagist.org/downloads/",
  6948. "license": [
  6949. "BSD-3-Clause"
  6950. ],
  6951. "authors": [
  6952. {
  6953. "name": "Nikita Popov"
  6954. }
  6955. ],
  6956. "description": "A PHP parser written in PHP",
  6957. "keywords": [
  6958. "parser",
  6959. "php"
  6960. ],
  6961. "time": "2018-10-10T09:24:14+00:00"
  6962. },
  6963. {
  6964. "name": "paragonie/random_compat",
  6965. "version": "v2.0.17",
  6966. "source": {
  6967. "type": "git",
  6968. "url": "https://github.com/paragonie/random_compat.git",
  6969. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d"
  6970. },
  6971. "dist": {
  6972. "type": "zip",
  6973. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/29af24f25bab834fcbb38ad2a69fa93b867e070d",
  6974. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d",
  6975. "shasum": ""
  6976. },
  6977. "require": {
  6978. "php": ">=5.2.0"
  6979. },
  6980. "require-dev": {
  6981. "phpunit/phpunit": "4.*|5.*"
  6982. },
  6983. "suggest": {
  6984. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6985. },
  6986. "type": "library",
  6987. "autoload": {
  6988. "files": [
  6989. "lib/random.php"
  6990. ]
  6991. },
  6992. "notification-url": "https://packagist.org/downloads/",
  6993. "license": [
  6994. "MIT"
  6995. ],
  6996. "authors": [
  6997. {
  6998. "name": "Paragon Initiative Enterprises",
  6999. "email": "security@paragonie.com",
  7000. "homepage": "https://paragonie.com"
  7001. }
  7002. ],
  7003. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7004. "keywords": [
  7005. "csprng",
  7006. "polyfill",
  7007. "pseudorandom",
  7008. "random"
  7009. ],
  7010. "time": "2018-07-04T16:31:37+00:00"
  7011. },
  7012. {
  7013. "name": "phenx/php-font-lib",
  7014. "version": "0.5",
  7015. "source": {
  7016. "type": "git",
  7017. "url": "https://github.com/PhenX/php-font-lib.git",
  7018. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962"
  7019. },
  7020. "dist": {
  7021. "type": "zip",
  7022. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7023. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7024. "shasum": ""
  7025. },
  7026. "require-dev": {
  7027. "phpunit/phpunit": "^4.8"
  7028. },
  7029. "type": "library",
  7030. "autoload": {
  7031. "psr-4": {
  7032. "FontLib\\": "src/FontLib"
  7033. }
  7034. },
  7035. "notification-url": "https://packagist.org/downloads/",
  7036. "license": [
  7037. "LGPL-3.0"
  7038. ],
  7039. "authors": [
  7040. {
  7041. "name": "Fabien Ménager",
  7042. "email": "fabien.menager@gmail.com"
  7043. }
  7044. ],
  7045. "description": "A library to read, parse, export and make subsets of different types of font files.",
  7046. "homepage": "https://github.com/PhenX/php-font-lib",
  7047. "time": "2017-02-11T10:58:43+00:00"
  7048. },
  7049. {
  7050. "name": "psr/container",
  7051. "version": "1.0.0",
  7052. "source": {
  7053. "type": "git",
  7054. "url": "https://github.com/php-fig/container.git",
  7055. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7056. },
  7057. "dist": {
  7058. "type": "zip",
  7059. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7060. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7061. "shasum": ""
  7062. },
  7063. "require": {
  7064. "php": ">=5.3.0"
  7065. },
  7066. "type": "library",
  7067. "extra": {
  7068. "branch-alias": {
  7069. "dev-master": "1.0.x-dev"
  7070. }
  7071. },
  7072. "autoload": {
  7073. "psr-4": {
  7074. "Psr\\Container\\": "src/"
  7075. }
  7076. },
  7077. "notification-url": "https://packagist.org/downloads/",
  7078. "license": [
  7079. "MIT"
  7080. ],
  7081. "authors": [
  7082. {
  7083. "name": "PHP-FIG",
  7084. "homepage": "http://www.php-fig.org/"
  7085. }
  7086. ],
  7087. "description": "Common Container Interface (PHP FIG PSR-11)",
  7088. "homepage": "https://github.com/php-fig/container",
  7089. "keywords": [
  7090. "PSR-11",
  7091. "container",
  7092. "container-interface",
  7093. "container-interop",
  7094. "psr"
  7095. ],
  7096. "time": "2017-02-14T16:28:37+00:00"
  7097. },
  7098. {
  7099. "name": "psr/http-message",
  7100. "version": "1.0.1",
  7101. "source": {
  7102. "type": "git",
  7103. "url": "https://github.com/php-fig/http-message.git",
  7104. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7105. },
  7106. "dist": {
  7107. "type": "zip",
  7108. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7109. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7110. "shasum": ""
  7111. },
  7112. "require": {
  7113. "php": ">=5.3.0"
  7114. },
  7115. "type": "library",
  7116. "extra": {
  7117. "branch-alias": {
  7118. "dev-master": "1.0.x-dev"
  7119. }
  7120. },
  7121. "autoload": {
  7122. "psr-4": {
  7123. "Psr\\Http\\Message\\": "src/"
  7124. }
  7125. },
  7126. "notification-url": "https://packagist.org/downloads/",
  7127. "license": [
  7128. "MIT"
  7129. ],
  7130. "authors": [
  7131. {
  7132. "name": "PHP-FIG",
  7133. "homepage": "http://www.php-fig.org/"
  7134. }
  7135. ],
  7136. "description": "Common interface for HTTP messages",
  7137. "homepage": "https://github.com/php-fig/http-message",
  7138. "keywords": [
  7139. "http",
  7140. "http-message",
  7141. "psr",
  7142. "psr-7",
  7143. "request",
  7144. "response"
  7145. ],
  7146. "time": "2016-08-06T14:39:51+00:00"
  7147. },
  7148. {
  7149. "name": "psr/log",
  7150. "version": "1.0.2",
  7151. "source": {
  7152. "type": "git",
  7153. "url": "https://github.com/php-fig/log.git",
  7154. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  7155. },
  7156. "dist": {
  7157. "type": "zip",
  7158. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  7159. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  7160. "shasum": ""
  7161. },
  7162. "require": {
  7163. "php": ">=5.3.0"
  7164. },
  7165. "type": "library",
  7166. "extra": {
  7167. "branch-alias": {
  7168. "dev-master": "1.0.x-dev"
  7169. }
  7170. },
  7171. "autoload": {
  7172. "psr-4": {
  7173. "Psr\\Log\\": "Psr/Log/"
  7174. }
  7175. },
  7176. "notification-url": "https://packagist.org/downloads/",
  7177. "license": [
  7178. "MIT"
  7179. ],
  7180. "authors": [
  7181. {
  7182. "name": "PHP-FIG",
  7183. "homepage": "http://www.php-fig.org/"
  7184. }
  7185. ],
  7186. "description": "Common interface for logging libraries",
  7187. "homepage": "https://github.com/php-fig/log",
  7188. "keywords": [
  7189. "log",
  7190. "psr",
  7191. "psr-3"
  7192. ],
  7193. "time": "2016-10-10T12:19:37+00:00"
  7194. },
  7195. {
  7196. "name": "psy/psysh",
  7197. "version": "v0.9.9",
  7198. "source": {
  7199. "type": "git",
  7200. "url": "https://github.com/bobthecow/psysh.git",
  7201. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  7202. },
  7203. "dist": {
  7204. "type": "zip",
  7205. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  7206. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  7207. "shasum": ""
  7208. },
  7209. "require": {
  7210. "dnoegel/php-xdg-base-dir": "0.1",
  7211. "ext-json": "*",
  7212. "ext-tokenizer": "*",
  7213. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  7214. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  7215. "php": ">=5.4.0",
  7216. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  7217. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  7218. },
  7219. "require-dev": {
  7220. "bamarni/composer-bin-plugin": "^1.2",
  7221. "hoa/console": "~2.15|~3.16",
  7222. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  7223. },
  7224. "suggest": {
  7225. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7226. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7227. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7228. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7229. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7230. },
  7231. "bin": [
  7232. "bin/psysh"
  7233. ],
  7234. "type": "library",
  7235. "extra": {
  7236. "branch-alias": {
  7237. "dev-develop": "0.9.x-dev"
  7238. }
  7239. },
  7240. "autoload": {
  7241. "files": [
  7242. "src/functions.php"
  7243. ],
  7244. "psr-4": {
  7245. "Psy\\": "src/"
  7246. }
  7247. },
  7248. "notification-url": "https://packagist.org/downloads/",
  7249. "license": [
  7250. "MIT"
  7251. ],
  7252. "authors": [
  7253. {
  7254. "name": "Justin Hileman",
  7255. "email": "justin@justinhileman.info",
  7256. "homepage": "http://justinhileman.com"
  7257. }
  7258. ],
  7259. "description": "An interactive shell for modern PHP.",
  7260. "homepage": "http://psysh.org",
  7261. "keywords": [
  7262. "REPL",
  7263. "console",
  7264. "interactive",
  7265. "shell"
  7266. ],
  7267. "time": "2018-10-13T15:16:03+00:00"
  7268. },
  7269. {
  7270. "name": "stack/builder",
  7271. "version": "v1.0.5",
  7272. "source": {
  7273. "type": "git",
  7274. "url": "https://github.com/stackphp/builder.git",
  7275. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7276. },
  7277. "dist": {
  7278. "type": "zip",
  7279. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7280. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7281. "shasum": ""
  7282. },
  7283. "require": {
  7284. "php": ">=5.3.0",
  7285. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7286. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7287. },
  7288. "require-dev": {
  7289. "silex/silex": "~1.0"
  7290. },
  7291. "type": "library",
  7292. "extra": {
  7293. "branch-alias": {
  7294. "dev-master": "1.0-dev"
  7295. }
  7296. },
  7297. "autoload": {
  7298. "psr-0": {
  7299. "Stack": "src"
  7300. }
  7301. },
  7302. "notification-url": "https://packagist.org/downloads/",
  7303. "license": [
  7304. "MIT"
  7305. ],
  7306. "authors": [
  7307. {
  7308. "name": "Igor Wiedler",
  7309. "email": "igor@wiedler.ch"
  7310. }
  7311. ],
  7312. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7313. "keywords": [
  7314. "stack"
  7315. ],
  7316. "time": "2017-11-18T14:57:29+00:00"
  7317. },
  7318. {
  7319. "name": "stecman/symfony-console-completion",
  7320. "version": "0.8.0",
  7321. "source": {
  7322. "type": "git",
  7323. "url": "https://github.com/stecman/symfony-console-completion.git",
  7324. "reference": "cd738867503477e91dbe84173dfabd431c883431"
  7325. },
  7326. "dist": {
  7327. "type": "zip",
  7328. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/cd738867503477e91dbe84173dfabd431c883431",
  7329. "reference": "cd738867503477e91dbe84173dfabd431c883431",
  7330. "shasum": ""
  7331. },
  7332. "require": {
  7333. "php": ">=5.3.2",
  7334. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  7335. },
  7336. "require-dev": {
  7337. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  7338. },
  7339. "type": "library",
  7340. "extra": {
  7341. "branch-alias": {
  7342. "dev-master": "0.6.x-dev"
  7343. }
  7344. },
  7345. "autoload": {
  7346. "psr-4": {
  7347. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  7348. }
  7349. },
  7350. "notification-url": "https://packagist.org/downloads/",
  7351. "license": [
  7352. "MIT"
  7353. ],
  7354. "authors": [
  7355. {
  7356. "name": "Stephen Holdaway",
  7357. "email": "stephen@stecman.co.nz"
  7358. }
  7359. ],
  7360. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  7361. "time": "2018-02-10T04:28:01+00:00"
  7362. },
  7363. {
  7364. "name": "symfony-cmf/routing",
  7365. "version": "1.4.1",
  7366. "source": {
  7367. "type": "git",
  7368. "url": "https://github.com/symfony-cmf/routing.git",
  7369. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7370. },
  7371. "dist": {
  7372. "type": "zip",
  7373. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7374. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7375. "shasum": ""
  7376. },
  7377. "require": {
  7378. "php": "^5.3.9|^7.0",
  7379. "psr/log": "1.*",
  7380. "symfony/http-kernel": "^2.2|3.*",
  7381. "symfony/routing": "^2.2|3.*"
  7382. },
  7383. "require-dev": {
  7384. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7385. "symfony-cmf/testing": "^1.3",
  7386. "symfony/config": "^2.2|3.*",
  7387. "symfony/dependency-injection": "^2.0.5|3.*",
  7388. "symfony/event-dispatcher": "^2.1|3.*"
  7389. },
  7390. "suggest": {
  7391. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7392. },
  7393. "type": "library",
  7394. "extra": {
  7395. "branch-alias": {
  7396. "dev-master": "1.4-dev"
  7397. }
  7398. },
  7399. "autoload": {
  7400. "psr-4": {
  7401. "Symfony\\Cmf\\Component\\Routing\\": ""
  7402. }
  7403. },
  7404. "notification-url": "https://packagist.org/downloads/",
  7405. "license": [
  7406. "MIT"
  7407. ],
  7408. "authors": [
  7409. {
  7410. "name": "Symfony CMF Community",
  7411. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7412. }
  7413. ],
  7414. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7415. "homepage": "http://cmf.symfony.com",
  7416. "keywords": [
  7417. "database",
  7418. "routing"
  7419. ],
  7420. "time": "2017-05-09T08:10:41+00:00"
  7421. },
  7422. {
  7423. "name": "symfony/class-loader",
  7424. "version": "v3.4.17",
  7425. "source": {
  7426. "type": "git",
  7427. "url": "https://github.com/symfony/class-loader.git",
  7428. "reference": "f31333bdff54c7595f834d510a6d2325573ddb36"
  7429. },
  7430. "dist": {
  7431. "type": "zip",
  7432. "url": "https://api.github.com/repos/symfony/class-loader/zipball/f31333bdff54c7595f834d510a6d2325573ddb36",
  7433. "reference": "f31333bdff54c7595f834d510a6d2325573ddb36",
  7434. "shasum": ""
  7435. },
  7436. "require": {
  7437. "php": "^5.5.9|>=7.0.8"
  7438. },
  7439. "require-dev": {
  7440. "symfony/finder": "~2.8|~3.0|~4.0",
  7441. "symfony/polyfill-apcu": "~1.1"
  7442. },
  7443. "suggest": {
  7444. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7445. },
  7446. "type": "library",
  7447. "extra": {
  7448. "branch-alias": {
  7449. "dev-master": "3.4-dev"
  7450. }
  7451. },
  7452. "autoload": {
  7453. "psr-4": {
  7454. "Symfony\\Component\\ClassLoader\\": ""
  7455. },
  7456. "exclude-from-classmap": [
  7457. "/Tests/"
  7458. ]
  7459. },
  7460. "notification-url": "https://packagist.org/downloads/",
  7461. "license": [
  7462. "MIT"
  7463. ],
  7464. "authors": [
  7465. {
  7466. "name": "Fabien Potencier",
  7467. "email": "fabien@symfony.com"
  7468. },
  7469. {
  7470. "name": "Symfony Community",
  7471. "homepage": "https://symfony.com/contributors"
  7472. }
  7473. ],
  7474. "description": "Symfony ClassLoader Component",
  7475. "homepage": "https://symfony.com",
  7476. "time": "2018-10-02T12:28:39+00:00"
  7477. },
  7478. {
  7479. "name": "symfony/config",
  7480. "version": "v3.4.17",
  7481. "source": {
  7482. "type": "git",
  7483. "url": "https://github.com/symfony/config.git",
  7484. "reference": "e5389132dc6320682de3643091121c048ff796b3"
  7485. },
  7486. "dist": {
  7487. "type": "zip",
  7488. "url": "https://api.github.com/repos/symfony/config/zipball/e5389132dc6320682de3643091121c048ff796b3",
  7489. "reference": "e5389132dc6320682de3643091121c048ff796b3",
  7490. "shasum": ""
  7491. },
  7492. "require": {
  7493. "php": "^5.5.9|>=7.0.8",
  7494. "symfony/filesystem": "~2.8|~3.0|~4.0",
  7495. "symfony/polyfill-ctype": "~1.8"
  7496. },
  7497. "conflict": {
  7498. "symfony/dependency-injection": "<3.3",
  7499. "symfony/finder": "<3.3"
  7500. },
  7501. "require-dev": {
  7502. "symfony/dependency-injection": "~3.3|~4.0",
  7503. "symfony/event-dispatcher": "~3.3|~4.0",
  7504. "symfony/finder": "~3.3|~4.0",
  7505. "symfony/yaml": "~3.0|~4.0"
  7506. },
  7507. "suggest": {
  7508. "symfony/yaml": "To use the yaml reference dumper"
  7509. },
  7510. "type": "library",
  7511. "extra": {
  7512. "branch-alias": {
  7513. "dev-master": "3.4-dev"
  7514. }
  7515. },
  7516. "autoload": {
  7517. "psr-4": {
  7518. "Symfony\\Component\\Config\\": ""
  7519. },
  7520. "exclude-from-classmap": [
  7521. "/Tests/"
  7522. ]
  7523. },
  7524. "notification-url": "https://packagist.org/downloads/",
  7525. "license": [
  7526. "MIT"
  7527. ],
  7528. "authors": [
  7529. {
  7530. "name": "Fabien Potencier",
  7531. "email": "fabien@symfony.com"
  7532. },
  7533. {
  7534. "name": "Symfony Community",
  7535. "homepage": "https://symfony.com/contributors"
  7536. }
  7537. ],
  7538. "description": "Symfony Config Component",
  7539. "homepage": "https://symfony.com",
  7540. "time": "2018-09-08T13:15:14+00:00"
  7541. },
  7542. {
  7543. "name": "symfony/console",
  7544. "version": "v3.4.17",
  7545. "source": {
  7546. "type": "git",
  7547. "url": "https://github.com/symfony/console.git",
  7548. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b"
  7549. },
  7550. "dist": {
  7551. "type": "zip",
  7552. "url": "https://api.github.com/repos/symfony/console/zipball/3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  7553. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  7554. "shasum": ""
  7555. },
  7556. "require": {
  7557. "php": "^5.5.9|>=7.0.8",
  7558. "symfony/debug": "~2.8|~3.0|~4.0",
  7559. "symfony/polyfill-mbstring": "~1.0"
  7560. },
  7561. "conflict": {
  7562. "symfony/dependency-injection": "<3.4",
  7563. "symfony/process": "<3.3"
  7564. },
  7565. "require-dev": {
  7566. "psr/log": "~1.0",
  7567. "symfony/config": "~3.3|~4.0",
  7568. "symfony/dependency-injection": "~3.4|~4.0",
  7569. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7570. "symfony/lock": "~3.4|~4.0",
  7571. "symfony/process": "~3.3|~4.0"
  7572. },
  7573. "suggest": {
  7574. "psr/log-implementation": "For using the console logger",
  7575. "symfony/event-dispatcher": "",
  7576. "symfony/lock": "",
  7577. "symfony/process": ""
  7578. },
  7579. "type": "library",
  7580. "extra": {
  7581. "branch-alias": {
  7582. "dev-master": "3.4-dev"
  7583. }
  7584. },
  7585. "autoload": {
  7586. "psr-4": {
  7587. "Symfony\\Component\\Console\\": ""
  7588. },
  7589. "exclude-from-classmap": [
  7590. "/Tests/"
  7591. ]
  7592. },
  7593. "notification-url": "https://packagist.org/downloads/",
  7594. "license": [
  7595. "MIT"
  7596. ],
  7597. "authors": [
  7598. {
  7599. "name": "Fabien Potencier",
  7600. "email": "fabien@symfony.com"
  7601. },
  7602. {
  7603. "name": "Symfony Community",
  7604. "homepage": "https://symfony.com/contributors"
  7605. }
  7606. ],
  7607. "description": "Symfony Console Component",
  7608. "homepage": "https://symfony.com",
  7609. "time": "2018-10-02T16:33:53+00:00"
  7610. },
  7611. {
  7612. "name": "symfony/css-selector",
  7613. "version": "v3.4.17",
  7614. "source": {
  7615. "type": "git",
  7616. "url": "https://github.com/symfony/css-selector.git",
  7617. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb"
  7618. },
  7619. "dist": {
  7620. "type": "zip",
  7621. "url": "https://api.github.com/repos/symfony/css-selector/zipball/3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  7622. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  7623. "shasum": ""
  7624. },
  7625. "require": {
  7626. "php": "^5.5.9|>=7.0.8"
  7627. },
  7628. "type": "library",
  7629. "extra": {
  7630. "branch-alias": {
  7631. "dev-master": "3.4-dev"
  7632. }
  7633. },
  7634. "autoload": {
  7635. "psr-4": {
  7636. "Symfony\\Component\\CssSelector\\": ""
  7637. },
  7638. "exclude-from-classmap": [
  7639. "/Tests/"
  7640. ]
  7641. },
  7642. "notification-url": "https://packagist.org/downloads/",
  7643. "license": [
  7644. "MIT"
  7645. ],
  7646. "authors": [
  7647. {
  7648. "name": "Jean-François Simon",
  7649. "email": "jeanfrancois.simon@sensiolabs.com"
  7650. },
  7651. {
  7652. "name": "Fabien Potencier",
  7653. "email": "fabien@symfony.com"
  7654. },
  7655. {
  7656. "name": "Symfony Community",
  7657. "homepage": "https://symfony.com/contributors"
  7658. }
  7659. ],
  7660. "description": "Symfony CssSelector Component",
  7661. "homepage": "https://symfony.com",
  7662. "time": "2018-10-02T16:33:53+00:00"
  7663. },
  7664. {
  7665. "name": "symfony/debug",
  7666. "version": "v3.4.17",
  7667. "source": {
  7668. "type": "git",
  7669. "url": "https://github.com/symfony/debug.git",
  7670. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6"
  7671. },
  7672. "dist": {
  7673. "type": "zip",
  7674. "url": "https://api.github.com/repos/symfony/debug/zipball/0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  7675. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  7676. "shasum": ""
  7677. },
  7678. "require": {
  7679. "php": "^5.5.9|>=7.0.8",
  7680. "psr/log": "~1.0"
  7681. },
  7682. "conflict": {
  7683. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7684. },
  7685. "require-dev": {
  7686. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7687. },
  7688. "type": "library",
  7689. "extra": {
  7690. "branch-alias": {
  7691. "dev-master": "3.4-dev"
  7692. }
  7693. },
  7694. "autoload": {
  7695. "psr-4": {
  7696. "Symfony\\Component\\Debug\\": ""
  7697. },
  7698. "exclude-from-classmap": [
  7699. "/Tests/"
  7700. ]
  7701. },
  7702. "notification-url": "https://packagist.org/downloads/",
  7703. "license": [
  7704. "MIT"
  7705. ],
  7706. "authors": [
  7707. {
  7708. "name": "Fabien Potencier",
  7709. "email": "fabien@symfony.com"
  7710. },
  7711. {
  7712. "name": "Symfony Community",
  7713. "homepage": "https://symfony.com/contributors"
  7714. }
  7715. ],
  7716. "description": "Symfony Debug Component",
  7717. "homepage": "https://symfony.com",
  7718. "time": "2018-10-02T16:33:53+00:00"
  7719. },
  7720. {
  7721. "name": "symfony/dependency-injection",
  7722. "version": "v3.4.17",
  7723. "source": {
  7724. "type": "git",
  7725. "url": "https://github.com/symfony/dependency-injection.git",
  7726. "reference": "aea20fef4e92396928b5db175788b90234c0270d"
  7727. },
  7728. "dist": {
  7729. "type": "zip",
  7730. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/aea20fef4e92396928b5db175788b90234c0270d",
  7731. "reference": "aea20fef4e92396928b5db175788b90234c0270d",
  7732. "shasum": ""
  7733. },
  7734. "require": {
  7735. "php": "^5.5.9|>=7.0.8",
  7736. "psr/container": "^1.0"
  7737. },
  7738. "conflict": {
  7739. "symfony/config": "<3.3.7",
  7740. "symfony/finder": "<3.3",
  7741. "symfony/proxy-manager-bridge": "<3.4",
  7742. "symfony/yaml": "<3.4"
  7743. },
  7744. "provide": {
  7745. "psr/container-implementation": "1.0"
  7746. },
  7747. "require-dev": {
  7748. "symfony/config": "~3.3|~4.0",
  7749. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7750. "symfony/yaml": "~3.4|~4.0"
  7751. },
  7752. "suggest": {
  7753. "symfony/config": "",
  7754. "symfony/expression-language": "For using expressions in service container configuration",
  7755. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7756. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7757. "symfony/yaml": ""
  7758. },
  7759. "type": "library",
  7760. "extra": {
  7761. "branch-alias": {
  7762. "dev-master": "3.4-dev"
  7763. }
  7764. },
  7765. "autoload": {
  7766. "psr-4": {
  7767. "Symfony\\Component\\DependencyInjection\\": ""
  7768. },
  7769. "exclude-from-classmap": [
  7770. "/Tests/"
  7771. ]
  7772. },
  7773. "notification-url": "https://packagist.org/downloads/",
  7774. "license": [
  7775. "MIT"
  7776. ],
  7777. "authors": [
  7778. {
  7779. "name": "Fabien Potencier",
  7780. "email": "fabien@symfony.com"
  7781. },
  7782. {
  7783. "name": "Symfony Community",
  7784. "homepage": "https://symfony.com/contributors"
  7785. }
  7786. ],
  7787. "description": "Symfony DependencyInjection Component",
  7788. "homepage": "https://symfony.com",
  7789. "time": "2018-10-02T12:28:39+00:00"
  7790. },
  7791. {
  7792. "name": "symfony/dom-crawler",
  7793. "version": "v3.4.17",
  7794. "source": {
  7795. "type": "git",
  7796. "url": "https://github.com/symfony/dom-crawler.git",
  7797. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722"
  7798. },
  7799. "dist": {
  7800. "type": "zip",
  7801. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/c705bee03ade5b47c087807dd9ffaaec8dda2722",
  7802. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722",
  7803. "shasum": ""
  7804. },
  7805. "require": {
  7806. "php": "^5.5.9|>=7.0.8",
  7807. "symfony/polyfill-ctype": "~1.8",
  7808. "symfony/polyfill-mbstring": "~1.0"
  7809. },
  7810. "require-dev": {
  7811. "symfony/css-selector": "~2.8|~3.0|~4.0"
  7812. },
  7813. "suggest": {
  7814. "symfony/css-selector": ""
  7815. },
  7816. "type": "library",
  7817. "extra": {
  7818. "branch-alias": {
  7819. "dev-master": "3.4-dev"
  7820. }
  7821. },
  7822. "autoload": {
  7823. "psr-4": {
  7824. "Symfony\\Component\\DomCrawler\\": ""
  7825. },
  7826. "exclude-from-classmap": [
  7827. "/Tests/"
  7828. ]
  7829. },
  7830. "notification-url": "https://packagist.org/downloads/",
  7831. "license": [
  7832. "MIT"
  7833. ],
  7834. "authors": [
  7835. {
  7836. "name": "Fabien Potencier",
  7837. "email": "fabien@symfony.com"
  7838. },
  7839. {
  7840. "name": "Symfony Community",
  7841. "homepage": "https://symfony.com/contributors"
  7842. }
  7843. ],
  7844. "description": "Symfony DomCrawler Component",
  7845. "homepage": "https://symfony.com",
  7846. "time": "2018-10-02T12:28:39+00:00"
  7847. },
  7848. {
  7849. "name": "symfony/event-dispatcher",
  7850. "version": "v3.4.17",
  7851. "source": {
  7852. "type": "git",
  7853. "url": "https://github.com/symfony/event-dispatcher.git",
  7854. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb"
  7855. },
  7856. "dist": {
  7857. "type": "zip",
  7858. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  7859. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  7860. "shasum": ""
  7861. },
  7862. "require": {
  7863. "php": "^5.5.9|>=7.0.8"
  7864. },
  7865. "conflict": {
  7866. "symfony/dependency-injection": "<3.3"
  7867. },
  7868. "require-dev": {
  7869. "psr/log": "~1.0",
  7870. "symfony/config": "~2.8|~3.0|~4.0",
  7871. "symfony/dependency-injection": "~3.3|~4.0",
  7872. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7873. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7874. },
  7875. "suggest": {
  7876. "symfony/dependency-injection": "",
  7877. "symfony/http-kernel": ""
  7878. },
  7879. "type": "library",
  7880. "extra": {
  7881. "branch-alias": {
  7882. "dev-master": "3.4-dev"
  7883. }
  7884. },
  7885. "autoload": {
  7886. "psr-4": {
  7887. "Symfony\\Component\\EventDispatcher\\": ""
  7888. },
  7889. "exclude-from-classmap": [
  7890. "/Tests/"
  7891. ]
  7892. },
  7893. "notification-url": "https://packagist.org/downloads/",
  7894. "license": [
  7895. "MIT"
  7896. ],
  7897. "authors": [
  7898. {
  7899. "name": "Fabien Potencier",
  7900. "email": "fabien@symfony.com"
  7901. },
  7902. {
  7903. "name": "Symfony Community",
  7904. "homepage": "https://symfony.com/contributors"
  7905. }
  7906. ],
  7907. "description": "Symfony EventDispatcher Component",
  7908. "homepage": "https://symfony.com",
  7909. "time": "2018-07-26T09:06:28+00:00"
  7910. },
  7911. {
  7912. "name": "symfony/filesystem",
  7913. "version": "v3.4.17",
  7914. "source": {
  7915. "type": "git",
  7916. "url": "https://github.com/symfony/filesystem.git",
  7917. "reference": "d69930fc337d767607267d57c20a7403d0a822a4"
  7918. },
  7919. "dist": {
  7920. "type": "zip",
  7921. "url": "https://api.github.com/repos/symfony/filesystem/zipball/d69930fc337d767607267d57c20a7403d0a822a4",
  7922. "reference": "d69930fc337d767607267d57c20a7403d0a822a4",
  7923. "shasum": ""
  7924. },
  7925. "require": {
  7926. "php": "^5.5.9|>=7.0.8",
  7927. "symfony/polyfill-ctype": "~1.8"
  7928. },
  7929. "type": "library",
  7930. "extra": {
  7931. "branch-alias": {
  7932. "dev-master": "3.4-dev"
  7933. }
  7934. },
  7935. "autoload": {
  7936. "psr-4": {
  7937. "Symfony\\Component\\Filesystem\\": ""
  7938. },
  7939. "exclude-from-classmap": [
  7940. "/Tests/"
  7941. ]
  7942. },
  7943. "notification-url": "https://packagist.org/downloads/",
  7944. "license": [
  7945. "MIT"
  7946. ],
  7947. "authors": [
  7948. {
  7949. "name": "Fabien Potencier",
  7950. "email": "fabien@symfony.com"
  7951. },
  7952. {
  7953. "name": "Symfony Community",
  7954. "homepage": "https://symfony.com/contributors"
  7955. }
  7956. ],
  7957. "description": "Symfony Filesystem Component",
  7958. "homepage": "https://symfony.com",
  7959. "time": "2018-10-02T12:28:39+00:00"
  7960. },
  7961. {
  7962. "name": "symfony/finder",
  7963. "version": "v3.4.17",
  7964. "source": {
  7965. "type": "git",
  7966. "url": "https://github.com/symfony/finder.git",
  7967. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d"
  7968. },
  7969. "dist": {
  7970. "type": "zip",
  7971. "url": "https://api.github.com/repos/symfony/finder/zipball/54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  7972. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  7973. "shasum": ""
  7974. },
  7975. "require": {
  7976. "php": "^5.5.9|>=7.0.8"
  7977. },
  7978. "type": "library",
  7979. "extra": {
  7980. "branch-alias": {
  7981. "dev-master": "3.4-dev"
  7982. }
  7983. },
  7984. "autoload": {
  7985. "psr-4": {
  7986. "Symfony\\Component\\Finder\\": ""
  7987. },
  7988. "exclude-from-classmap": [
  7989. "/Tests/"
  7990. ]
  7991. },
  7992. "notification-url": "https://packagist.org/downloads/",
  7993. "license": [
  7994. "MIT"
  7995. ],
  7996. "authors": [
  7997. {
  7998. "name": "Fabien Potencier",
  7999. "email": "fabien@symfony.com"
  8000. },
  8001. {
  8002. "name": "Symfony Community",
  8003. "homepage": "https://symfony.com/contributors"
  8004. }
  8005. ],
  8006. "description": "Symfony Finder Component",
  8007. "homepage": "https://symfony.com",
  8008. "time": "2018-10-03T08:46:40+00:00"
  8009. },
  8010. {
  8011. "name": "symfony/http-foundation",
  8012. "version": "v3.4.17",
  8013. "source": {
  8014. "type": "git",
  8015. "url": "https://github.com/symfony/http-foundation.git",
  8016. "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1"
  8017. },
  8018. "dist": {
  8019. "type": "zip",
  8020. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3a4498236ade473c52b92d509303e5fd1b211ab1",
  8021. "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1",
  8022. "shasum": ""
  8023. },
  8024. "require": {
  8025. "php": "^5.5.9|>=7.0.8",
  8026. "symfony/polyfill-mbstring": "~1.1",
  8027. "symfony/polyfill-php70": "~1.6"
  8028. },
  8029. "require-dev": {
  8030. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8031. },
  8032. "type": "library",
  8033. "extra": {
  8034. "branch-alias": {
  8035. "dev-master": "3.4-dev"
  8036. }
  8037. },
  8038. "autoload": {
  8039. "psr-4": {
  8040. "Symfony\\Component\\HttpFoundation\\": ""
  8041. },
  8042. "exclude-from-classmap": [
  8043. "/Tests/"
  8044. ]
  8045. },
  8046. "notification-url": "https://packagist.org/downloads/",
  8047. "license": [
  8048. "MIT"
  8049. ],
  8050. "authors": [
  8051. {
  8052. "name": "Fabien Potencier",
  8053. "email": "fabien@symfony.com"
  8054. },
  8055. {
  8056. "name": "Symfony Community",
  8057. "homepage": "https://symfony.com/contributors"
  8058. }
  8059. ],
  8060. "description": "Symfony HttpFoundation Component",
  8061. "homepage": "https://symfony.com",
  8062. "time": "2018-10-03T08:48:18+00:00"
  8063. },
  8064. {
  8065. "name": "symfony/http-kernel",
  8066. "version": "v3.4.17",
  8067. "source": {
  8068. "type": "git",
  8069. "url": "https://github.com/symfony/http-kernel.git",
  8070. "reference": "a0944a9a1d8845da724236cde9a310964acadb1c"
  8071. },
  8072. "dist": {
  8073. "type": "zip",
  8074. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a0944a9a1d8845da724236cde9a310964acadb1c",
  8075. "reference": "a0944a9a1d8845da724236cde9a310964acadb1c",
  8076. "shasum": ""
  8077. },
  8078. "require": {
  8079. "php": "^5.5.9|>=7.0.8",
  8080. "psr/log": "~1.0",
  8081. "symfony/debug": "~2.8|~3.0|~4.0",
  8082. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8083. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8084. "symfony/polyfill-ctype": "~1.8"
  8085. },
  8086. "conflict": {
  8087. "symfony/config": "<2.8",
  8088. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8089. "symfony/var-dumper": "<3.3",
  8090. "twig/twig": "<1.34|<2.4,>=2"
  8091. },
  8092. "provide": {
  8093. "psr/log-implementation": "1.0"
  8094. },
  8095. "require-dev": {
  8096. "psr/cache": "~1.0",
  8097. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8098. "symfony/class-loader": "~2.8|~3.0",
  8099. "symfony/config": "~2.8|~3.0|~4.0",
  8100. "symfony/console": "~2.8|~3.0|~4.0",
  8101. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8102. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8103. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8104. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8105. "symfony/finder": "~2.8|~3.0|~4.0",
  8106. "symfony/process": "~2.8|~3.0|~4.0",
  8107. "symfony/routing": "~3.4|~4.0",
  8108. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8109. "symfony/templating": "~2.8|~3.0|~4.0",
  8110. "symfony/translation": "~2.8|~3.0|~4.0",
  8111. "symfony/var-dumper": "~3.3|~4.0"
  8112. },
  8113. "suggest": {
  8114. "symfony/browser-kit": "",
  8115. "symfony/config": "",
  8116. "symfony/console": "",
  8117. "symfony/dependency-injection": "",
  8118. "symfony/finder": "",
  8119. "symfony/var-dumper": ""
  8120. },
  8121. "type": "library",
  8122. "extra": {
  8123. "branch-alias": {
  8124. "dev-master": "3.4-dev"
  8125. }
  8126. },
  8127. "autoload": {
  8128. "psr-4": {
  8129. "Symfony\\Component\\HttpKernel\\": ""
  8130. },
  8131. "exclude-from-classmap": [
  8132. "/Tests/"
  8133. ]
  8134. },
  8135. "notification-url": "https://packagist.org/downloads/",
  8136. "license": [
  8137. "MIT"
  8138. ],
  8139. "authors": [
  8140. {
  8141. "name": "Fabien Potencier",
  8142. "email": "fabien@symfony.com"
  8143. },
  8144. {
  8145. "name": "Symfony Community",
  8146. "homepage": "https://symfony.com/contributors"
  8147. }
  8148. ],
  8149. "description": "Symfony HttpKernel Component",
  8150. "homepage": "https://symfony.com",
  8151. "time": "2018-10-03T12:03:34+00:00"
  8152. },
  8153. {
  8154. "name": "symfony/polyfill-ctype",
  8155. "version": "v1.10.0",
  8156. "source": {
  8157. "type": "git",
  8158. "url": "https://github.com/symfony/polyfill-ctype.git",
  8159. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  8160. },
  8161. "dist": {
  8162. "type": "zip",
  8163. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  8164. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  8165. "shasum": ""
  8166. },
  8167. "require": {
  8168. "php": ">=5.3.3"
  8169. },
  8170. "suggest": {
  8171. "ext-ctype": "For best performance"
  8172. },
  8173. "type": "library",
  8174. "extra": {
  8175. "branch-alias": {
  8176. "dev-master": "1.9-dev"
  8177. }
  8178. },
  8179. "autoload": {
  8180. "psr-4": {
  8181. "Symfony\\Polyfill\\Ctype\\": ""
  8182. },
  8183. "files": [
  8184. "bootstrap.php"
  8185. ]
  8186. },
  8187. "notification-url": "https://packagist.org/downloads/",
  8188. "license": [
  8189. "MIT"
  8190. ],
  8191. "authors": [
  8192. {
  8193. "name": "Symfony Community",
  8194. "homepage": "https://symfony.com/contributors"
  8195. },
  8196. {
  8197. "name": "Gert de Pagter",
  8198. "email": "BackEndTea@gmail.com"
  8199. }
  8200. ],
  8201. "description": "Symfony polyfill for ctype functions",
  8202. "homepage": "https://symfony.com",
  8203. "keywords": [
  8204. "compatibility",
  8205. "ctype",
  8206. "polyfill",
  8207. "portable"
  8208. ],
  8209. "time": "2018-08-06T14:22:27+00:00"
  8210. },
  8211. {
  8212. "name": "symfony/polyfill-iconv",
  8213. "version": "v1.10.0",
  8214. "source": {
  8215. "type": "git",
  8216. "url": "https://github.com/symfony/polyfill-iconv.git",
  8217. "reference": "97001cfc283484c9691769f51cdf25259037eba2"
  8218. },
  8219. "dist": {
  8220. "type": "zip",
  8221. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/97001cfc283484c9691769f51cdf25259037eba2",
  8222. "reference": "97001cfc283484c9691769f51cdf25259037eba2",
  8223. "shasum": ""
  8224. },
  8225. "require": {
  8226. "php": ">=5.3.3"
  8227. },
  8228. "suggest": {
  8229. "ext-iconv": "For best performance"
  8230. },
  8231. "type": "library",
  8232. "extra": {
  8233. "branch-alias": {
  8234. "dev-master": "1.9-dev"
  8235. }
  8236. },
  8237. "autoload": {
  8238. "psr-4": {
  8239. "Symfony\\Polyfill\\Iconv\\": ""
  8240. },
  8241. "files": [
  8242. "bootstrap.php"
  8243. ]
  8244. },
  8245. "notification-url": "https://packagist.org/downloads/",
  8246. "license": [
  8247. "MIT"
  8248. ],
  8249. "authors": [
  8250. {
  8251. "name": "Nicolas Grekas",
  8252. "email": "p@tchwork.com"
  8253. },
  8254. {
  8255. "name": "Symfony Community",
  8256. "homepage": "https://symfony.com/contributors"
  8257. }
  8258. ],
  8259. "description": "Symfony polyfill for the Iconv extension",
  8260. "homepage": "https://symfony.com",
  8261. "keywords": [
  8262. "compatibility",
  8263. "iconv",
  8264. "polyfill",
  8265. "portable",
  8266. "shim"
  8267. ],
  8268. "time": "2018-09-21T06:26:08+00:00"
  8269. },
  8270. {
  8271. "name": "symfony/polyfill-mbstring",
  8272. "version": "v1.10.0",
  8273. "source": {
  8274. "type": "git",
  8275. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8276. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  8277. },
  8278. "dist": {
  8279. "type": "zip",
  8280. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  8281. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  8282. "shasum": ""
  8283. },
  8284. "require": {
  8285. "php": ">=5.3.3"
  8286. },
  8287. "suggest": {
  8288. "ext-mbstring": "For best performance"
  8289. },
  8290. "type": "library",
  8291. "extra": {
  8292. "branch-alias": {
  8293. "dev-master": "1.9-dev"
  8294. }
  8295. },
  8296. "autoload": {
  8297. "psr-4": {
  8298. "Symfony\\Polyfill\\Mbstring\\": ""
  8299. },
  8300. "files": [
  8301. "bootstrap.php"
  8302. ]
  8303. },
  8304. "notification-url": "https://packagist.org/downloads/",
  8305. "license": [
  8306. "MIT"
  8307. ],
  8308. "authors": [
  8309. {
  8310. "name": "Nicolas Grekas",
  8311. "email": "p@tchwork.com"
  8312. },
  8313. {
  8314. "name": "Symfony Community",
  8315. "homepage": "https://symfony.com/contributors"
  8316. }
  8317. ],
  8318. "description": "Symfony polyfill for the Mbstring extension",
  8319. "homepage": "https://symfony.com",
  8320. "keywords": [
  8321. "compatibility",
  8322. "mbstring",
  8323. "polyfill",
  8324. "portable",
  8325. "shim"
  8326. ],
  8327. "time": "2018-09-21T13:07:52+00:00"
  8328. },
  8329. {
  8330. "name": "symfony/polyfill-php70",
  8331. "version": "v1.10.0",
  8332. "source": {
  8333. "type": "git",
  8334. "url": "https://github.com/symfony/polyfill-php70.git",
  8335. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  8336. },
  8337. "dist": {
  8338. "type": "zip",
  8339. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  8340. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  8341. "shasum": ""
  8342. },
  8343. "require": {
  8344. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8345. "php": ">=5.3.3"
  8346. },
  8347. "type": "library",
  8348. "extra": {
  8349. "branch-alias": {
  8350. "dev-master": "1.9-dev"
  8351. }
  8352. },
  8353. "autoload": {
  8354. "psr-4": {
  8355. "Symfony\\Polyfill\\Php70\\": ""
  8356. },
  8357. "files": [
  8358. "bootstrap.php"
  8359. ],
  8360. "classmap": [
  8361. "Resources/stubs"
  8362. ]
  8363. },
  8364. "notification-url": "https://packagist.org/downloads/",
  8365. "license": [
  8366. "MIT"
  8367. ],
  8368. "authors": [
  8369. {
  8370. "name": "Nicolas Grekas",
  8371. "email": "p@tchwork.com"
  8372. },
  8373. {
  8374. "name": "Symfony Community",
  8375. "homepage": "https://symfony.com/contributors"
  8376. }
  8377. ],
  8378. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8379. "homepage": "https://symfony.com",
  8380. "keywords": [
  8381. "compatibility",
  8382. "polyfill",
  8383. "portable",
  8384. "shim"
  8385. ],
  8386. "time": "2018-09-21T06:26:08+00:00"
  8387. },
  8388. {
  8389. "name": "symfony/process",
  8390. "version": "v3.4.17",
  8391. "source": {
  8392. "type": "git",
  8393. "url": "https://github.com/symfony/process.git",
  8394. "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e"
  8395. },
  8396. "dist": {
  8397. "type": "zip",
  8398. "url": "https://api.github.com/repos/symfony/process/zipball/1dc2977afa7d70f90f3fefbcd84152813558910e",
  8399. "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e",
  8400. "shasum": ""
  8401. },
  8402. "require": {
  8403. "php": "^5.5.9|>=7.0.8"
  8404. },
  8405. "type": "library",
  8406. "extra": {
  8407. "branch-alias": {
  8408. "dev-master": "3.4-dev"
  8409. }
  8410. },
  8411. "autoload": {
  8412. "psr-4": {
  8413. "Symfony\\Component\\Process\\": ""
  8414. },
  8415. "exclude-from-classmap": [
  8416. "/Tests/"
  8417. ]
  8418. },
  8419. "notification-url": "https://packagist.org/downloads/",
  8420. "license": [
  8421. "MIT"
  8422. ],
  8423. "authors": [
  8424. {
  8425. "name": "Fabien Potencier",
  8426. "email": "fabien@symfony.com"
  8427. },
  8428. {
  8429. "name": "Symfony Community",
  8430. "homepage": "https://symfony.com/contributors"
  8431. }
  8432. ],
  8433. "description": "Symfony Process Component",
  8434. "homepage": "https://symfony.com",
  8435. "time": "2018-10-02T12:28:39+00:00"
  8436. },
  8437. {
  8438. "name": "symfony/psr-http-message-bridge",
  8439. "version": "v1.1.0",
  8440. "source": {
  8441. "type": "git",
  8442. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8443. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  8444. },
  8445. "dist": {
  8446. "type": "zip",
  8447. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  8448. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  8449. "shasum": ""
  8450. },
  8451. "require": {
  8452. "php": "^5.3.3 || ^7.0",
  8453. "psr/http-message": "^1.0",
  8454. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  8455. },
  8456. "require-dev": {
  8457. "symfony/phpunit-bridge": "^3.4 || 4.0"
  8458. },
  8459. "suggest": {
  8460. "psr/http-factory-implementation": "To use the PSR-17 factory",
  8461. "psr/http-message-implementation": "To use the HttpFoundation factory",
  8462. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  8463. },
  8464. "type": "symfony-bridge",
  8465. "extra": {
  8466. "branch-alias": {
  8467. "dev-master": "1.1-dev"
  8468. }
  8469. },
  8470. "autoload": {
  8471. "psr-4": {
  8472. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8473. }
  8474. },
  8475. "notification-url": "https://packagist.org/downloads/",
  8476. "license": [
  8477. "MIT"
  8478. ],
  8479. "authors": [
  8480. {
  8481. "name": "Symfony Community",
  8482. "homepage": "http://symfony.com/contributors"
  8483. },
  8484. {
  8485. "name": "Fabien Potencier",
  8486. "email": "fabien@symfony.com"
  8487. }
  8488. ],
  8489. "description": "PSR HTTP message bridge",
  8490. "homepage": "http://symfony.com",
  8491. "keywords": [
  8492. "http",
  8493. "http-message",
  8494. "psr-7"
  8495. ],
  8496. "time": "2018-08-30T16:28:28+00:00"
  8497. },
  8498. {
  8499. "name": "symfony/routing",
  8500. "version": "v3.4.17",
  8501. "source": {
  8502. "type": "git",
  8503. "url": "https://github.com/symfony/routing.git",
  8504. "reference": "585f6e2d740393d546978769dd56e496a6233e0b"
  8505. },
  8506. "dist": {
  8507. "type": "zip",
  8508. "url": "https://api.github.com/repos/symfony/routing/zipball/585f6e2d740393d546978769dd56e496a6233e0b",
  8509. "reference": "585f6e2d740393d546978769dd56e496a6233e0b",
  8510. "shasum": ""
  8511. },
  8512. "require": {
  8513. "php": "^5.5.9|>=7.0.8"
  8514. },
  8515. "conflict": {
  8516. "symfony/config": "<3.3.1",
  8517. "symfony/dependency-injection": "<3.3",
  8518. "symfony/yaml": "<3.4"
  8519. },
  8520. "require-dev": {
  8521. "doctrine/annotations": "~1.0",
  8522. "psr/log": "~1.0",
  8523. "symfony/config": "^3.3.1|~4.0",
  8524. "symfony/dependency-injection": "~3.3|~4.0",
  8525. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8526. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8527. "symfony/yaml": "~3.4|~4.0"
  8528. },
  8529. "suggest": {
  8530. "doctrine/annotations": "For using the annotation loader",
  8531. "symfony/config": "For using the all-in-one router or any loader",
  8532. "symfony/dependency-injection": "For loading routes from a service",
  8533. "symfony/expression-language": "For using expression matching",
  8534. "symfony/http-foundation": "For using a Symfony Request object",
  8535. "symfony/yaml": "For using the YAML loader"
  8536. },
  8537. "type": "library",
  8538. "extra": {
  8539. "branch-alias": {
  8540. "dev-master": "3.4-dev"
  8541. }
  8542. },
  8543. "autoload": {
  8544. "psr-4": {
  8545. "Symfony\\Component\\Routing\\": ""
  8546. },
  8547. "exclude-from-classmap": [
  8548. "/Tests/"
  8549. ]
  8550. },
  8551. "notification-url": "https://packagist.org/downloads/",
  8552. "license": [
  8553. "MIT"
  8554. ],
  8555. "authors": [
  8556. {
  8557. "name": "Fabien Potencier",
  8558. "email": "fabien@symfony.com"
  8559. },
  8560. {
  8561. "name": "Symfony Community",
  8562. "homepage": "https://symfony.com/contributors"
  8563. }
  8564. ],
  8565. "description": "Symfony Routing Component",
  8566. "homepage": "https://symfony.com",
  8567. "keywords": [
  8568. "router",
  8569. "routing",
  8570. "uri",
  8571. "url"
  8572. ],
  8573. "time": "2018-10-02T12:28:39+00:00"
  8574. },
  8575. {
  8576. "name": "symfony/serializer",
  8577. "version": "v3.4.17",
  8578. "source": {
  8579. "type": "git",
  8580. "url": "https://github.com/symfony/serializer.git",
  8581. "reference": "8bc00ef47a428bfebc4641f29d158e7c56137fcb"
  8582. },
  8583. "dist": {
  8584. "type": "zip",
  8585. "url": "https://api.github.com/repos/symfony/serializer/zipball/8bc00ef47a428bfebc4641f29d158e7c56137fcb",
  8586. "reference": "8bc00ef47a428bfebc4641f29d158e7c56137fcb",
  8587. "shasum": ""
  8588. },
  8589. "require": {
  8590. "php": "^5.5.9|>=7.0.8",
  8591. "symfony/polyfill-ctype": "~1.8"
  8592. },
  8593. "conflict": {
  8594. "phpdocumentor/type-resolver": "<0.2.1",
  8595. "symfony/dependency-injection": "<3.2",
  8596. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  8597. "symfony/property-info": "<3.1",
  8598. "symfony/yaml": "<3.4"
  8599. },
  8600. "require-dev": {
  8601. "doctrine/annotations": "~1.0",
  8602. "doctrine/cache": "~1.0",
  8603. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  8604. "symfony/cache": "~3.1|~4.0",
  8605. "symfony/config": "~2.8|~3.0|~4.0",
  8606. "symfony/dependency-injection": "~3.2|~4.0",
  8607. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8608. "symfony/property-access": "~2.8|~3.0|~4.0",
  8609. "symfony/property-info": "~3.1|~4.0",
  8610. "symfony/yaml": "~3.4|~4.0"
  8611. },
  8612. "suggest": {
  8613. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8614. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8615. "psr/cache-implementation": "For using the metadata cache.",
  8616. "symfony/config": "For using the XML mapping loader.",
  8617. "symfony/http-foundation": "To use the DataUriNormalizer.",
  8618. "symfony/property-access": "For using the ObjectNormalizer.",
  8619. "symfony/property-info": "To deserialize relations.",
  8620. "symfony/yaml": "For using the default YAML mapping loader."
  8621. },
  8622. "type": "library",
  8623. "extra": {
  8624. "branch-alias": {
  8625. "dev-master": "3.4-dev"
  8626. }
  8627. },
  8628. "autoload": {
  8629. "psr-4": {
  8630. "Symfony\\Component\\Serializer\\": ""
  8631. },
  8632. "exclude-from-classmap": [
  8633. "/Tests/"
  8634. ]
  8635. },
  8636. "notification-url": "https://packagist.org/downloads/",
  8637. "license": [
  8638. "MIT"
  8639. ],
  8640. "authors": [
  8641. {
  8642. "name": "Fabien Potencier",
  8643. "email": "fabien@symfony.com"
  8644. },
  8645. {
  8646. "name": "Symfony Community",
  8647. "homepage": "https://symfony.com/contributors"
  8648. }
  8649. ],
  8650. "description": "Symfony Serializer Component",
  8651. "homepage": "https://symfony.com",
  8652. "time": "2018-10-02T12:28:39+00:00"
  8653. },
  8654. {
  8655. "name": "symfony/translation",
  8656. "version": "v3.4.17",
  8657. "source": {
  8658. "type": "git",
  8659. "url": "https://github.com/symfony/translation.git",
  8660. "reference": "94bc3a79008e6640defedf5e14eb3b4f20048352"
  8661. },
  8662. "dist": {
  8663. "type": "zip",
  8664. "url": "https://api.github.com/repos/symfony/translation/zipball/94bc3a79008e6640defedf5e14eb3b4f20048352",
  8665. "reference": "94bc3a79008e6640defedf5e14eb3b4f20048352",
  8666. "shasum": ""
  8667. },
  8668. "require": {
  8669. "php": "^5.5.9|>=7.0.8",
  8670. "symfony/polyfill-mbstring": "~1.0"
  8671. },
  8672. "conflict": {
  8673. "symfony/config": "<2.8",
  8674. "symfony/dependency-injection": "<3.4",
  8675. "symfony/yaml": "<3.4"
  8676. },
  8677. "require-dev": {
  8678. "psr/log": "~1.0",
  8679. "symfony/config": "~2.8|~3.0|~4.0",
  8680. "symfony/dependency-injection": "~3.4|~4.0",
  8681. "symfony/finder": "~2.8|~3.0|~4.0",
  8682. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8683. "symfony/yaml": "~3.4|~4.0"
  8684. },
  8685. "suggest": {
  8686. "psr/log-implementation": "To use logging capability in translator",
  8687. "symfony/config": "",
  8688. "symfony/yaml": ""
  8689. },
  8690. "type": "library",
  8691. "extra": {
  8692. "branch-alias": {
  8693. "dev-master": "3.4-dev"
  8694. }
  8695. },
  8696. "autoload": {
  8697. "psr-4": {
  8698. "Symfony\\Component\\Translation\\": ""
  8699. },
  8700. "exclude-from-classmap": [
  8701. "/Tests/"
  8702. ]
  8703. },
  8704. "notification-url": "https://packagist.org/downloads/",
  8705. "license": [
  8706. "MIT"
  8707. ],
  8708. "authors": [
  8709. {
  8710. "name": "Fabien Potencier",
  8711. "email": "fabien@symfony.com"
  8712. },
  8713. {
  8714. "name": "Symfony Community",
  8715. "homepage": "https://symfony.com/contributors"
  8716. }
  8717. ],
  8718. "description": "Symfony Translation Component",
  8719. "homepage": "https://symfony.com",
  8720. "time": "2018-10-02T16:33:53+00:00"
  8721. },
  8722. {
  8723. "name": "symfony/validator",
  8724. "version": "v3.4.17",
  8725. "source": {
  8726. "type": "git",
  8727. "url": "https://github.com/symfony/validator.git",
  8728. "reference": "9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5"
  8729. },
  8730. "dist": {
  8731. "type": "zip",
  8732. "url": "https://api.github.com/repos/symfony/validator/zipball/9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5",
  8733. "reference": "9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5",
  8734. "shasum": ""
  8735. },
  8736. "require": {
  8737. "php": "^5.5.9|>=7.0.8",
  8738. "symfony/polyfill-ctype": "~1.8",
  8739. "symfony/polyfill-mbstring": "~1.0",
  8740. "symfony/translation": "~2.8|~3.0|~4.0"
  8741. },
  8742. "conflict": {
  8743. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8744. "symfony/dependency-injection": "<3.3",
  8745. "symfony/http-kernel": "<3.3.5",
  8746. "symfony/yaml": "<3.4"
  8747. },
  8748. "require-dev": {
  8749. "doctrine/annotations": "~1.0",
  8750. "doctrine/cache": "~1.0",
  8751. "egulias/email-validator": "^1.2.8|~2.0",
  8752. "symfony/cache": "~3.1|~4.0",
  8753. "symfony/config": "~2.8|~3.0|~4.0",
  8754. "symfony/dependency-injection": "~3.3|~4.0",
  8755. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8756. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8757. "symfony/http-kernel": "^3.3.5|~4.0",
  8758. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8759. "symfony/property-access": "~2.8|~3.0|~4.0",
  8760. "symfony/var-dumper": "~3.3|~4.0",
  8761. "symfony/yaml": "~3.4|~4.0"
  8762. },
  8763. "suggest": {
  8764. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8765. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8766. "egulias/email-validator": "Strict (RFC compliant) email validation",
  8767. "psr/cache-implementation": "For using the metadata cache.",
  8768. "symfony/config": "",
  8769. "symfony/expression-language": "For using the Expression validator",
  8770. "symfony/http-foundation": "",
  8771. "symfony/intl": "",
  8772. "symfony/property-access": "For accessing properties within comparison constraints",
  8773. "symfony/yaml": ""
  8774. },
  8775. "type": "library",
  8776. "extra": {
  8777. "branch-alias": {
  8778. "dev-master": "3.4-dev"
  8779. }
  8780. },
  8781. "autoload": {
  8782. "psr-4": {
  8783. "Symfony\\Component\\Validator\\": ""
  8784. },
  8785. "exclude-from-classmap": [
  8786. "/Tests/"
  8787. ]
  8788. },
  8789. "notification-url": "https://packagist.org/downloads/",
  8790. "license": [
  8791. "MIT"
  8792. ],
  8793. "authors": [
  8794. {
  8795. "name": "Fabien Potencier",
  8796. "email": "fabien@symfony.com"
  8797. },
  8798. {
  8799. "name": "Symfony Community",
  8800. "homepage": "https://symfony.com/contributors"
  8801. }
  8802. ],
  8803. "description": "Symfony Validator Component",
  8804. "homepage": "https://symfony.com",
  8805. "time": "2018-10-02T16:33:53+00:00"
  8806. },
  8807. {
  8808. "name": "symfony/var-dumper",
  8809. "version": "v3.4.17",
  8810. "source": {
  8811. "type": "git",
  8812. "url": "https://github.com/symfony/var-dumper.git",
  8813. "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181"
  8814. },
  8815. "dist": {
  8816. "type": "zip",
  8817. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ff8ac19e97e5c7c3979236b584719a1190f84181",
  8818. "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181",
  8819. "shasum": ""
  8820. },
  8821. "require": {
  8822. "php": "^5.5.9|>=7.0.8",
  8823. "symfony/polyfill-mbstring": "~1.0"
  8824. },
  8825. "conflict": {
  8826. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  8827. },
  8828. "require-dev": {
  8829. "ext-iconv": "*",
  8830. "twig/twig": "~1.34|~2.4"
  8831. },
  8832. "suggest": {
  8833. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8834. "ext-intl": "To show region name in time zone dump",
  8835. "ext-symfony_debug": ""
  8836. },
  8837. "type": "library",
  8838. "extra": {
  8839. "branch-alias": {
  8840. "dev-master": "3.4-dev"
  8841. }
  8842. },
  8843. "autoload": {
  8844. "files": [
  8845. "Resources/functions/dump.php"
  8846. ],
  8847. "psr-4": {
  8848. "Symfony\\Component\\VarDumper\\": ""
  8849. },
  8850. "exclude-from-classmap": [
  8851. "/Tests/"
  8852. ]
  8853. },
  8854. "notification-url": "https://packagist.org/downloads/",
  8855. "license": [
  8856. "MIT"
  8857. ],
  8858. "authors": [
  8859. {
  8860. "name": "Nicolas Grekas",
  8861. "email": "p@tchwork.com"
  8862. },
  8863. {
  8864. "name": "Symfony Community",
  8865. "homepage": "https://symfony.com/contributors"
  8866. }
  8867. ],
  8868. "description": "Symfony mechanism for exploring and dumping PHP variables",
  8869. "homepage": "https://symfony.com",
  8870. "keywords": [
  8871. "debug",
  8872. "dump"
  8873. ],
  8874. "time": "2018-10-02T16:33:53+00:00"
  8875. },
  8876. {
  8877. "name": "symfony/yaml",
  8878. "version": "v3.4.17",
  8879. "source": {
  8880. "type": "git",
  8881. "url": "https://github.com/symfony/yaml.git",
  8882. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f"
  8883. },
  8884. "dist": {
  8885. "type": "zip",
  8886. "url": "https://api.github.com/repos/symfony/yaml/zipball/640b6c27fed4066d64b64d5903a86043f4a4de7f",
  8887. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f",
  8888. "shasum": ""
  8889. },
  8890. "require": {
  8891. "php": "^5.5.9|>=7.0.8",
  8892. "symfony/polyfill-ctype": "~1.8"
  8893. },
  8894. "conflict": {
  8895. "symfony/console": "<3.4"
  8896. },
  8897. "require-dev": {
  8898. "symfony/console": "~3.4|~4.0"
  8899. },
  8900. "suggest": {
  8901. "symfony/console": "For validating YAML files using the lint command"
  8902. },
  8903. "type": "library",
  8904. "extra": {
  8905. "branch-alias": {
  8906. "dev-master": "3.4-dev"
  8907. }
  8908. },
  8909. "autoload": {
  8910. "psr-4": {
  8911. "Symfony\\Component\\Yaml\\": ""
  8912. },
  8913. "exclude-from-classmap": [
  8914. "/Tests/"
  8915. ]
  8916. },
  8917. "notification-url": "https://packagist.org/downloads/",
  8918. "license": [
  8919. "MIT"
  8920. ],
  8921. "authors": [
  8922. {
  8923. "name": "Fabien Potencier",
  8924. "email": "fabien@symfony.com"
  8925. },
  8926. {
  8927. "name": "Symfony Community",
  8928. "homepage": "https://symfony.com/contributors"
  8929. }
  8930. ],
  8931. "description": "Symfony Yaml Component",
  8932. "homepage": "https://symfony.com",
  8933. "time": "2018-10-02T16:33:53+00:00"
  8934. },
  8935. {
  8936. "name": "twig/twig",
  8937. "version": "v1.35.4",
  8938. "source": {
  8939. "type": "git",
  8940. "url": "https://github.com/twigphp/Twig.git",
  8941. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a"
  8942. },
  8943. "dist": {
  8944. "type": "zip",
  8945. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  8946. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  8947. "shasum": ""
  8948. },
  8949. "require": {
  8950. "php": ">=5.3.3",
  8951. "symfony/polyfill-ctype": "^1.8"
  8952. },
  8953. "require-dev": {
  8954. "psr/container": "^1.0",
  8955. "symfony/debug": "^2.7",
  8956. "symfony/phpunit-bridge": "^3.3"
  8957. },
  8958. "type": "library",
  8959. "extra": {
  8960. "branch-alias": {
  8961. "dev-master": "1.35-dev"
  8962. }
  8963. },
  8964. "autoload": {
  8965. "psr-0": {
  8966. "Twig_": "lib/"
  8967. },
  8968. "psr-4": {
  8969. "Twig\\": "src/"
  8970. }
  8971. },
  8972. "notification-url": "https://packagist.org/downloads/",
  8973. "license": [
  8974. "BSD-3-Clause"
  8975. ],
  8976. "authors": [
  8977. {
  8978. "name": "Fabien Potencier",
  8979. "email": "fabien@symfony.com",
  8980. "homepage": "http://fabien.potencier.org",
  8981. "role": "Lead Developer"
  8982. },
  8983. {
  8984. "name": "Armin Ronacher",
  8985. "email": "armin.ronacher@active-4.com",
  8986. "role": "Project Founder"
  8987. },
  8988. {
  8989. "name": "Twig Team",
  8990. "homepage": "https://twig.symfony.com/contributors",
  8991. "role": "Contributors"
  8992. }
  8993. ],
  8994. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8995. "homepage": "https://twig.symfony.com",
  8996. "keywords": [
  8997. "templating"
  8998. ],
  8999. "time": "2018-07-13T07:12:17+00:00"
  9000. },
  9001. {
  9002. "name": "webflo/drupal-finder",
  9003. "version": "1.1.0",
  9004. "source": {
  9005. "type": "git",
  9006. "url": "https://github.com/webflo/drupal-finder.git",
  9007. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  9008. },
  9009. "dist": {
  9010. "type": "zip",
  9011. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9012. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9013. "shasum": ""
  9014. },
  9015. "require-dev": {
  9016. "mikey179/vfsstream": "^1.6",
  9017. "phpunit/phpunit": "^4.8"
  9018. },
  9019. "type": "library",
  9020. "autoload": {
  9021. "classmap": [
  9022. "src/DrupalFinder.php"
  9023. ]
  9024. },
  9025. "notification-url": "https://packagist.org/downloads/",
  9026. "license": [
  9027. "GPL-2.0+"
  9028. ],
  9029. "authors": [
  9030. {
  9031. "name": "Florian Weber",
  9032. "email": "florian@webflo.org"
  9033. }
  9034. ],
  9035. "description": "Helper class to locate a Drupal installation from a given path.",
  9036. "time": "2017-10-24T08:12:11+00:00"
  9037. },
  9038. {
  9039. "name": "webmozart/assert",
  9040. "version": "1.3.0",
  9041. "source": {
  9042. "type": "git",
  9043. "url": "https://github.com/webmozart/assert.git",
  9044. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  9045. },
  9046. "dist": {
  9047. "type": "zip",
  9048. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  9049. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  9050. "shasum": ""
  9051. },
  9052. "require": {
  9053. "php": "^5.3.3 || ^7.0"
  9054. },
  9055. "require-dev": {
  9056. "phpunit/phpunit": "^4.6",
  9057. "sebastian/version": "^1.0.1"
  9058. },
  9059. "type": "library",
  9060. "extra": {
  9061. "branch-alias": {
  9062. "dev-master": "1.3-dev"
  9063. }
  9064. },
  9065. "autoload": {
  9066. "psr-4": {
  9067. "Webmozart\\Assert\\": "src/"
  9068. }
  9069. },
  9070. "notification-url": "https://packagist.org/downloads/",
  9071. "license": [
  9072. "MIT"
  9073. ],
  9074. "authors": [
  9075. {
  9076. "name": "Bernhard Schussek",
  9077. "email": "bschussek@gmail.com"
  9078. }
  9079. ],
  9080. "description": "Assertions to validate method input/output with nice error messages.",
  9081. "keywords": [
  9082. "assert",
  9083. "check",
  9084. "validate"
  9085. ],
  9086. "time": "2018-01-29T19:49:41+00:00"
  9087. },
  9088. {
  9089. "name": "webmozart/path-util",
  9090. "version": "2.3.0",
  9091. "source": {
  9092. "type": "git",
  9093. "url": "https://github.com/webmozart/path-util.git",
  9094. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9095. },
  9096. "dist": {
  9097. "type": "zip",
  9098. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9099. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9100. "shasum": ""
  9101. },
  9102. "require": {
  9103. "php": ">=5.3.3",
  9104. "webmozart/assert": "~1.0"
  9105. },
  9106. "require-dev": {
  9107. "phpunit/phpunit": "^4.6",
  9108. "sebastian/version": "^1.0.1"
  9109. },
  9110. "type": "library",
  9111. "extra": {
  9112. "branch-alias": {
  9113. "dev-master": "2.3-dev"
  9114. }
  9115. },
  9116. "autoload": {
  9117. "psr-4": {
  9118. "Webmozart\\PathUtil\\": "src/"
  9119. }
  9120. },
  9121. "notification-url": "https://packagist.org/downloads/",
  9122. "license": [
  9123. "MIT"
  9124. ],
  9125. "authors": [
  9126. {
  9127. "name": "Bernhard Schussek",
  9128. "email": "bschussek@gmail.com"
  9129. }
  9130. ],
  9131. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9132. "time": "2015-12-17T08:42:14+00:00"
  9133. },
  9134. {
  9135. "name": "wikimedia/composer-merge-plugin",
  9136. "version": "v1.4.1",
  9137. "source": {
  9138. "type": "git",
  9139. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  9140. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  9141. },
  9142. "dist": {
  9143. "type": "zip",
  9144. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  9145. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  9146. "shasum": ""
  9147. },
  9148. "require": {
  9149. "composer-plugin-api": "^1.0",
  9150. "php": ">=5.3.2"
  9151. },
  9152. "require-dev": {
  9153. "composer/composer": "~1.0.0",
  9154. "jakub-onderka/php-parallel-lint": "~0.8",
  9155. "phpunit/phpunit": "~4.8|~5.0",
  9156. "squizlabs/php_codesniffer": "~2.1.0"
  9157. },
  9158. "type": "composer-plugin",
  9159. "extra": {
  9160. "branch-alias": {
  9161. "dev-master": "1.3.x-dev"
  9162. },
  9163. "class": "Wikimedia\\Composer\\MergePlugin"
  9164. },
  9165. "autoload": {
  9166. "psr-4": {
  9167. "Wikimedia\\Composer\\": "src/"
  9168. }
  9169. },
  9170. "notification-url": "https://packagist.org/downloads/",
  9171. "license": [
  9172. "MIT"
  9173. ],
  9174. "authors": [
  9175. {
  9176. "name": "Bryan Davis",
  9177. "email": "bd808@wikimedia.org"
  9178. }
  9179. ],
  9180. "description": "Composer plugin to merge multiple composer.json files",
  9181. "time": "2017-04-25T02:31:25+00:00"
  9182. },
  9183. {
  9184. "name": "zendframework/zend-diactoros",
  9185. "version": "1.8.6",
  9186. "source": {
  9187. "type": "git",
  9188. "url": "https://github.com/zendframework/zend-diactoros.git",
  9189. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  9190. },
  9191. "dist": {
  9192. "type": "zip",
  9193. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  9194. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  9195. "shasum": ""
  9196. },
  9197. "require": {
  9198. "php": "^5.6 || ^7.0",
  9199. "psr/http-message": "^1.0"
  9200. },
  9201. "provide": {
  9202. "psr/http-message-implementation": "1.0"
  9203. },
  9204. "require-dev": {
  9205. "ext-dom": "*",
  9206. "ext-libxml": "*",
  9207. "php-http/psr7-integration-tests": "dev-master",
  9208. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  9209. "zendframework/zend-coding-standard": "~1.0"
  9210. },
  9211. "type": "library",
  9212. "extra": {
  9213. "branch-alias": {
  9214. "dev-master": "1.8.x-dev",
  9215. "dev-develop": "1.9.x-dev",
  9216. "dev-release-2.0": "2.0.x-dev"
  9217. }
  9218. },
  9219. "autoload": {
  9220. "files": [
  9221. "src/functions/create_uploaded_file.php",
  9222. "src/functions/marshal_headers_from_sapi.php",
  9223. "src/functions/marshal_method_from_sapi.php",
  9224. "src/functions/marshal_protocol_version_from_sapi.php",
  9225. "src/functions/marshal_uri_from_sapi.php",
  9226. "src/functions/normalize_server.php",
  9227. "src/functions/normalize_uploaded_files.php",
  9228. "src/functions/parse_cookie_header.php"
  9229. ],
  9230. "psr-4": {
  9231. "Zend\\Diactoros\\": "src/"
  9232. }
  9233. },
  9234. "notification-url": "https://packagist.org/downloads/",
  9235. "license": [
  9236. "BSD-2-Clause"
  9237. ],
  9238. "description": "PSR HTTP Message implementations",
  9239. "homepage": "https://github.com/zendframework/zend-diactoros",
  9240. "keywords": [
  9241. "http",
  9242. "psr",
  9243. "psr-7"
  9244. ],
  9245. "time": "2018-09-05T19:29:37+00:00"
  9246. },
  9247. {
  9248. "name": "zendframework/zend-escaper",
  9249. "version": "2.6.0",
  9250. "source": {
  9251. "type": "git",
  9252. "url": "https://github.com/zendframework/zend-escaper.git",
  9253. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  9254. },
  9255. "dist": {
  9256. "type": "zip",
  9257. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  9258. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  9259. "shasum": ""
  9260. },
  9261. "require": {
  9262. "php": "^5.6 || ^7.0"
  9263. },
  9264. "require-dev": {
  9265. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  9266. "zendframework/zend-coding-standard": "~1.0.0"
  9267. },
  9268. "type": "library",
  9269. "extra": {
  9270. "branch-alias": {
  9271. "dev-master": "2.6.x-dev",
  9272. "dev-develop": "2.7.x-dev"
  9273. }
  9274. },
  9275. "autoload": {
  9276. "psr-4": {
  9277. "Zend\\Escaper\\": "src/"
  9278. }
  9279. },
  9280. "notification-url": "https://packagist.org/downloads/",
  9281. "license": [
  9282. "BSD-3-Clause"
  9283. ],
  9284. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  9285. "keywords": [
  9286. "ZendFramework",
  9287. "escaper",
  9288. "zf"
  9289. ],
  9290. "time": "2018-04-25T15:48:53+00:00"
  9291. },
  9292. {
  9293. "name": "zendframework/zend-feed",
  9294. "version": "2.10.3",
  9295. "source": {
  9296. "type": "git",
  9297. "url": "https://github.com/zendframework/zend-feed.git",
  9298. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888"
  9299. },
  9300. "dist": {
  9301. "type": "zip",
  9302. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/6641f4cf3f4586c63f83fd70b6d19966025c8888",
  9303. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888",
  9304. "shasum": ""
  9305. },
  9306. "require": {
  9307. "php": "^5.6 || ^7.0",
  9308. "zendframework/zend-escaper": "^2.5.2",
  9309. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  9310. },
  9311. "require-dev": {
  9312. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  9313. "psr/http-message": "^1.0.1",
  9314. "zendframework/zend-cache": "^2.7.2",
  9315. "zendframework/zend-coding-standard": "~1.0.0",
  9316. "zendframework/zend-db": "^2.8.2",
  9317. "zendframework/zend-http": "^2.7",
  9318. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  9319. "zendframework/zend-validator": "^2.10.1"
  9320. },
  9321. "suggest": {
  9322. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  9323. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  9324. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  9325. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  9326. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  9327. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  9328. },
  9329. "type": "library",
  9330. "extra": {
  9331. "branch-alias": {
  9332. "dev-master": "2.10.x-dev",
  9333. "dev-develop": "2.11.x-dev"
  9334. }
  9335. },
  9336. "autoload": {
  9337. "psr-4": {
  9338. "Zend\\Feed\\": "src/"
  9339. }
  9340. },
  9341. "notification-url": "https://packagist.org/downloads/",
  9342. "license": [
  9343. "BSD-3-Clause"
  9344. ],
  9345. "description": "provides functionality for consuming RSS and Atom feeds",
  9346. "keywords": [
  9347. "ZendFramework",
  9348. "feed",
  9349. "zf"
  9350. ],
  9351. "time": "2018-08-01T13:53:20+00:00"
  9352. },
  9353. {
  9354. "name": "zendframework/zend-stdlib",
  9355. "version": "3.2.1",
  9356. "source": {
  9357. "type": "git",
  9358. "url": "https://github.com/zendframework/zend-stdlib.git",
  9359. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  9360. },
  9361. "dist": {
  9362. "type": "zip",
  9363. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  9364. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  9365. "shasum": ""
  9366. },
  9367. "require": {
  9368. "php": "^5.6 || ^7.0"
  9369. },
  9370. "require-dev": {
  9371. "phpbench/phpbench": "^0.13",
  9372. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  9373. "zendframework/zend-coding-standard": "~1.0.0"
  9374. },
  9375. "type": "library",
  9376. "extra": {
  9377. "branch-alias": {
  9378. "dev-master": "3.2.x-dev",
  9379. "dev-develop": "3.3.x-dev"
  9380. }
  9381. },
  9382. "autoload": {
  9383. "psr-4": {
  9384. "Zend\\Stdlib\\": "src/"
  9385. }
  9386. },
  9387. "notification-url": "https://packagist.org/downloads/",
  9388. "license": [
  9389. "BSD-3-Clause"
  9390. ],
  9391. "description": "SPL extensions, array utilities, error handlers, and more",
  9392. "keywords": [
  9393. "ZendFramework",
  9394. "stdlib",
  9395. "zf"
  9396. ],
  9397. "time": "2018-08-28T21:34:05+00:00"
  9398. }
  9399. ],
  9400. "packages-dev": [
  9401. {
  9402. "name": "behat/mink",
  9403. "version": "dev-master",
  9404. "source": {
  9405. "type": "git",
  9406. "url": "https://github.com/minkphp/Mink.git",
  9407. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  9408. },
  9409. "dist": {
  9410. "type": "zip",
  9411. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  9412. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  9413. "shasum": ""
  9414. },
  9415. "require": {
  9416. "php": ">=5.3.1",
  9417. "symfony/css-selector": "^2.7|^3.0|^4.0"
  9418. },
  9419. "require-dev": {
  9420. "symfony/phpunit-bridge": "^3.3|^4.0"
  9421. },
  9422. "suggest": {
  9423. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  9424. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  9425. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  9426. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  9427. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  9428. },
  9429. "type": "library",
  9430. "extra": {
  9431. "branch-alias": {
  9432. "dev-master": "1.7.x-dev"
  9433. }
  9434. },
  9435. "autoload": {
  9436. "psr-4": {
  9437. "Behat\\Mink\\": "src/"
  9438. }
  9439. },
  9440. "notification-url": "https://packagist.org/downloads/",
  9441. "license": [
  9442. "MIT"
  9443. ],
  9444. "authors": [
  9445. {
  9446. "name": "Konstantin Kudryashov",
  9447. "email": "ever.zet@gmail.com",
  9448. "homepage": "http://everzet.com"
  9449. }
  9450. ],
  9451. "description": "Browser controller/emulator abstraction for PHP",
  9452. "homepage": "http://mink.behat.org/",
  9453. "keywords": [
  9454. "browser",
  9455. "testing",
  9456. "web"
  9457. ],
  9458. "time": "2018-06-24T20:08:51+00:00"
  9459. },
  9460. {
  9461. "name": "behat/mink-browserkit-driver",
  9462. "version": "1.3.3",
  9463. "source": {
  9464. "type": "git",
  9465. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  9466. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  9467. },
  9468. "dist": {
  9469. "type": "zip",
  9470. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  9471. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  9472. "shasum": ""
  9473. },
  9474. "require": {
  9475. "behat/mink": "^1.7.1@dev",
  9476. "php": ">=5.3.6",
  9477. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  9478. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  9479. },
  9480. "require-dev": {
  9481. "mink/driver-testsuite": "dev-master",
  9482. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  9483. },
  9484. "type": "mink-driver",
  9485. "extra": {
  9486. "branch-alias": {
  9487. "dev-master": "1.3.x-dev"
  9488. }
  9489. },
  9490. "autoload": {
  9491. "psr-4": {
  9492. "Behat\\Mink\\Driver\\": "src/"
  9493. }
  9494. },
  9495. "notification-url": "https://packagist.org/downloads/",
  9496. "license": [
  9497. "MIT"
  9498. ],
  9499. "authors": [
  9500. {
  9501. "name": "Konstantin Kudryashov",
  9502. "email": "ever.zet@gmail.com",
  9503. "homepage": "http://everzet.com"
  9504. }
  9505. ],
  9506. "description": "Symfony2 BrowserKit driver for Mink framework",
  9507. "homepage": "http://mink.behat.org/",
  9508. "keywords": [
  9509. "Mink",
  9510. "Symfony2",
  9511. "browser",
  9512. "testing"
  9513. ],
  9514. "time": "2018-05-02T09:25:31+00:00"
  9515. },
  9516. {
  9517. "name": "behat/mink-goutte-driver",
  9518. "version": "v1.2.1",
  9519. "source": {
  9520. "type": "git",
  9521. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  9522. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  9523. },
  9524. "dist": {
  9525. "type": "zip",
  9526. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  9527. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  9528. "shasum": ""
  9529. },
  9530. "require": {
  9531. "behat/mink": "~1.6@dev",
  9532. "behat/mink-browserkit-driver": "~1.2@dev",
  9533. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  9534. "php": ">=5.3.1"
  9535. },
  9536. "require-dev": {
  9537. "symfony/phpunit-bridge": "~2.7|~3.0"
  9538. },
  9539. "type": "mink-driver",
  9540. "extra": {
  9541. "branch-alias": {
  9542. "dev-master": "1.2.x-dev"
  9543. }
  9544. },
  9545. "autoload": {
  9546. "psr-4": {
  9547. "Behat\\Mink\\Driver\\": "src/"
  9548. }
  9549. },
  9550. "notification-url": "https://packagist.org/downloads/",
  9551. "license": [
  9552. "MIT"
  9553. ],
  9554. "authors": [
  9555. {
  9556. "name": "Konstantin Kudryashov",
  9557. "email": "ever.zet@gmail.com",
  9558. "homepage": "http://everzet.com"
  9559. }
  9560. ],
  9561. "description": "Goutte driver for Mink framework",
  9562. "homepage": "http://mink.behat.org/",
  9563. "keywords": [
  9564. "browser",
  9565. "goutte",
  9566. "headless",
  9567. "testing"
  9568. ],
  9569. "time": "2016-03-05T09:04:22+00:00"
  9570. },
  9571. {
  9572. "name": "behat/mink-selenium2-driver",
  9573. "version": "dev-master",
  9574. "source": {
  9575. "type": "git",
  9576. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  9577. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  9578. },
  9579. "dist": {
  9580. "type": "zip",
  9581. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  9582. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  9583. "shasum": ""
  9584. },
  9585. "require": {
  9586. "behat/mink": "~1.7@dev",
  9587. "instaclick/php-webdriver": "~1.1",
  9588. "php": ">=5.3.1"
  9589. },
  9590. "require-dev": {
  9591. "mink/driver-testsuite": "dev-master"
  9592. },
  9593. "type": "mink-driver",
  9594. "extra": {
  9595. "branch-alias": {
  9596. "dev-master": "1.3.x-dev"
  9597. }
  9598. },
  9599. "autoload": {
  9600. "psr-4": {
  9601. "Behat\\Mink\\Driver\\": "src/"
  9602. }
  9603. },
  9604. "notification-url": "https://packagist.org/downloads/",
  9605. "license": [
  9606. "MIT"
  9607. ],
  9608. "authors": [
  9609. {
  9610. "name": "Konstantin Kudryashov",
  9611. "email": "ever.zet@gmail.com",
  9612. "homepage": "http://everzet.com"
  9613. },
  9614. {
  9615. "name": "Pete Otaqui",
  9616. "email": "pete@otaqui.com",
  9617. "homepage": "https://github.com/pete-otaqui"
  9618. }
  9619. ],
  9620. "description": "Selenium2 (WebDriver) driver for Mink framework",
  9621. "homepage": "http://mink.behat.org/",
  9622. "keywords": [
  9623. "ajax",
  9624. "browser",
  9625. "javascript",
  9626. "selenium",
  9627. "testing",
  9628. "webdriver"
  9629. ],
  9630. "time": "2018-10-10T12:39:06+00:00"
  9631. },
  9632. {
  9633. "name": "doctrine/instantiator",
  9634. "version": "1.0.5",
  9635. "source": {
  9636. "type": "git",
  9637. "url": "https://github.com/doctrine/instantiator.git",
  9638. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  9639. },
  9640. "dist": {
  9641. "type": "zip",
  9642. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  9643. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  9644. "shasum": ""
  9645. },
  9646. "require": {
  9647. "php": ">=5.3,<8.0-DEV"
  9648. },
  9649. "require-dev": {
  9650. "athletic/athletic": "~0.1.8",
  9651. "ext-pdo": "*",
  9652. "ext-phar": "*",
  9653. "phpunit/phpunit": "~4.0",
  9654. "squizlabs/php_codesniffer": "~2.0"
  9655. },
  9656. "type": "library",
  9657. "extra": {
  9658. "branch-alias": {
  9659. "dev-master": "1.0.x-dev"
  9660. }
  9661. },
  9662. "autoload": {
  9663. "psr-4": {
  9664. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9665. }
  9666. },
  9667. "notification-url": "https://packagist.org/downloads/",
  9668. "license": [
  9669. "MIT"
  9670. ],
  9671. "authors": [
  9672. {
  9673. "name": "Marco Pivetta",
  9674. "email": "ocramius@gmail.com",
  9675. "homepage": "http://ocramius.github.com/"
  9676. }
  9677. ],
  9678. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9679. "homepage": "https://github.com/doctrine/instantiator",
  9680. "keywords": [
  9681. "constructor",
  9682. "instantiate"
  9683. ],
  9684. "time": "2015-06-14T21:17:01+00:00"
  9685. },
  9686. {
  9687. "name": "drupal/coder",
  9688. "version": "8.3.1",
  9689. "source": {
  9690. "type": "git",
  9691. "url": "https://git.drupal.org/project/coder.git",
  9692. "reference": "29a25627e7148b3119c84f18e087fc3b8c85b959"
  9693. },
  9694. "require": {
  9695. "ext-mbstring": "*",
  9696. "php": ">=5.4.0",
  9697. "squizlabs/php_codesniffer": "^3.0.1",
  9698. "symfony/yaml": ">=2.0.0"
  9699. },
  9700. "require-dev": {
  9701. "phpunit/phpunit": ">=3.7 <6"
  9702. },
  9703. "type": "phpcodesniffer-standard",
  9704. "autoload": {
  9705. "psr-0": {
  9706. "Drupal\\": "coder_sniffer/Drupal/",
  9707. "DrupalPractice\\": "coder_sniffer/Drupal/"
  9708. }
  9709. },
  9710. "notification-url": "https://packagist.org/downloads/",
  9711. "license": [
  9712. "GPL-2.0+"
  9713. ],
  9714. "description": "Coder is a library to review Drupal code.",
  9715. "homepage": "https://www.drupal.org/project/coder",
  9716. "keywords": [
  9717. "code review",
  9718. "phpcs",
  9719. "standards"
  9720. ],
  9721. "time": "2018-09-21T14:22:49+00:00"
  9722. },
  9723. {
  9724. "name": "fabpot/goutte",
  9725. "version": "v3.2.3",
  9726. "source": {
  9727. "type": "git",
  9728. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  9729. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  9730. },
  9731. "dist": {
  9732. "type": "zip",
  9733. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  9734. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  9735. "shasum": ""
  9736. },
  9737. "require": {
  9738. "guzzlehttp/guzzle": "^6.0",
  9739. "php": ">=5.5.0",
  9740. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  9741. "symfony/css-selector": "~2.1|~3.0|~4.0",
  9742. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  9743. },
  9744. "require-dev": {
  9745. "symfony/phpunit-bridge": "^3.3 || ^4"
  9746. },
  9747. "type": "application",
  9748. "extra": {
  9749. "branch-alias": {
  9750. "dev-master": "3.2-dev"
  9751. }
  9752. },
  9753. "autoload": {
  9754. "psr-4": {
  9755. "Goutte\\": "Goutte"
  9756. },
  9757. "exclude-from-classmap": [
  9758. "Goutte/Tests"
  9759. ]
  9760. },
  9761. "notification-url": "https://packagist.org/downloads/",
  9762. "license": [
  9763. "MIT"
  9764. ],
  9765. "authors": [
  9766. {
  9767. "name": "Fabien Potencier",
  9768. "email": "fabien@symfony.com"
  9769. }
  9770. ],
  9771. "description": "A simple PHP Web Scraper",
  9772. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  9773. "keywords": [
  9774. "scraper"
  9775. ],
  9776. "time": "2018-06-29T15:13:57+00:00"
  9777. },
  9778. {
  9779. "name": "instaclick/php-webdriver",
  9780. "version": "1.4.5",
  9781. "source": {
  9782. "type": "git",
  9783. "url": "https://github.com/instaclick/php-webdriver.git",
  9784. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  9785. },
  9786. "dist": {
  9787. "type": "zip",
  9788. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  9789. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  9790. "shasum": ""
  9791. },
  9792. "require": {
  9793. "ext-curl": "*",
  9794. "php": ">=5.3.2"
  9795. },
  9796. "require-dev": {
  9797. "phpunit/phpunit": "^4.8",
  9798. "satooshi/php-coveralls": "^1.0||^2.0"
  9799. },
  9800. "type": "library",
  9801. "extra": {
  9802. "branch-alias": {
  9803. "dev-master": "1.4.x-dev"
  9804. }
  9805. },
  9806. "autoload": {
  9807. "psr-0": {
  9808. "WebDriver": "lib/"
  9809. }
  9810. },
  9811. "notification-url": "https://packagist.org/downloads/",
  9812. "license": [
  9813. "Apache-2.0"
  9814. ],
  9815. "authors": [
  9816. {
  9817. "name": "Justin Bishop",
  9818. "email": "jubishop@gmail.com",
  9819. "role": "Developer"
  9820. },
  9821. {
  9822. "name": "Anthon Pang",
  9823. "email": "apang@softwaredevelopment.ca",
  9824. "role": "Fork Maintainer"
  9825. }
  9826. ],
  9827. "description": "PHP WebDriver for Selenium 2",
  9828. "homepage": "http://instaclick.com/",
  9829. "keywords": [
  9830. "browser",
  9831. "selenium",
  9832. "webdriver",
  9833. "webtest"
  9834. ],
  9835. "time": "2017-06-30T04:02:48+00:00"
  9836. },
  9837. {
  9838. "name": "jcalderonzumba/gastonjs",
  9839. "version": "v1.2.0",
  9840. "source": {
  9841. "type": "git",
  9842. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  9843. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  9844. },
  9845. "dist": {
  9846. "type": "zip",
  9847. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  9848. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  9849. "shasum": ""
  9850. },
  9851. "require": {
  9852. "guzzlehttp/guzzle": "~5.0|~6.0",
  9853. "php": ">=5.4"
  9854. },
  9855. "require-dev": {
  9856. "phpunit/phpunit": "~4.6",
  9857. "silex/silex": "~1.2",
  9858. "symfony/phpunit-bridge": "~2.7",
  9859. "symfony/process": "~2.1"
  9860. },
  9861. "type": "phantomjs-api",
  9862. "extra": {
  9863. "branch-alias": {
  9864. "dev-master": "1.1.x-dev"
  9865. }
  9866. },
  9867. "autoload": {
  9868. "psr-4": {
  9869. "Zumba\\GastonJS\\": "src"
  9870. }
  9871. },
  9872. "notification-url": "https://packagist.org/downloads/",
  9873. "license": [
  9874. "MIT"
  9875. ],
  9876. "authors": [
  9877. {
  9878. "name": "Juan Francisco Calderón Zumba",
  9879. "email": "juanfcz@gmail.com",
  9880. "homepage": "http://github.com/jcalderonzumba"
  9881. }
  9882. ],
  9883. "description": "PhantomJS API based server for webpage automation",
  9884. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  9885. "keywords": [
  9886. "api",
  9887. "automation",
  9888. "browser",
  9889. "headless",
  9890. "phantomjs"
  9891. ],
  9892. "time": "2017-03-31T07:31:47+00:00"
  9893. },
  9894. {
  9895. "name": "jcalderonzumba/mink-phantomjs-driver",
  9896. "version": "v0.3.3",
  9897. "source": {
  9898. "type": "git",
  9899. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  9900. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  9901. },
  9902. "dist": {
  9903. "type": "zip",
  9904. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  9905. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  9906. "shasum": ""
  9907. },
  9908. "require": {
  9909. "behat/mink": "~1.7",
  9910. "jcalderonzumba/gastonjs": "~1.0",
  9911. "php": ">=5.4",
  9912. "twig/twig": "~1.20|~2.0"
  9913. },
  9914. "require-dev": {
  9915. "mink/driver-testsuite": "dev-master",
  9916. "phpunit/phpunit": "~4.6"
  9917. },
  9918. "type": "mink-driver",
  9919. "extra": {
  9920. "branch-alias": {
  9921. "dev-master": "0.4.x-dev"
  9922. }
  9923. },
  9924. "autoload": {
  9925. "psr-4": {
  9926. "Zumba\\Mink\\Driver\\": "src"
  9927. }
  9928. },
  9929. "notification-url": "https://packagist.org/downloads/",
  9930. "license": [
  9931. "MIT"
  9932. ],
  9933. "authors": [
  9934. {
  9935. "name": "Juan Francisco Calderón Zumba",
  9936. "email": "juanfcz@gmail.com",
  9937. "homepage": "http://github.com/jcalderonzumba"
  9938. }
  9939. ],
  9940. "description": "PhantomJS driver for Mink framework",
  9941. "homepage": "http://mink.behat.org/",
  9942. "keywords": [
  9943. "ajax",
  9944. "browser",
  9945. "headless",
  9946. "javascript",
  9947. "phantomjs",
  9948. "testing"
  9949. ],
  9950. "time": "2016-12-01T10:57:30+00:00"
  9951. },
  9952. {
  9953. "name": "mikey179/vfsStream",
  9954. "version": "v1.6.5",
  9955. "source": {
  9956. "type": "git",
  9957. "url": "https://github.com/mikey179/vfsStream.git",
  9958. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  9959. },
  9960. "dist": {
  9961. "type": "zip",
  9962. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  9963. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  9964. "shasum": ""
  9965. },
  9966. "require": {
  9967. "php": ">=5.3.0"
  9968. },
  9969. "require-dev": {
  9970. "phpunit/phpunit": "~4.5"
  9971. },
  9972. "type": "library",
  9973. "extra": {
  9974. "branch-alias": {
  9975. "dev-master": "1.6.x-dev"
  9976. }
  9977. },
  9978. "autoload": {
  9979. "psr-0": {
  9980. "org\\bovigo\\vfs\\": "src/main/php"
  9981. }
  9982. },
  9983. "notification-url": "https://packagist.org/downloads/",
  9984. "license": [
  9985. "BSD-3-Clause"
  9986. ],
  9987. "authors": [
  9988. {
  9989. "name": "Frank Kleine",
  9990. "homepage": "http://frankkleine.de/",
  9991. "role": "Developer"
  9992. }
  9993. ],
  9994. "description": "Virtual file system to mock the real file system in unit tests.",
  9995. "homepage": "http://vfs.bovigo.org/",
  9996. "time": "2017-08-01T08:02:14+00:00"
  9997. },
  9998. {
  9999. "name": "myclabs/deep-copy",
  10000. "version": "1.7.0",
  10001. "source": {
  10002. "type": "git",
  10003. "url": "https://github.com/myclabs/DeepCopy.git",
  10004. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  10005. },
  10006. "dist": {
  10007. "type": "zip",
  10008. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10009. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10010. "shasum": ""
  10011. },
  10012. "require": {
  10013. "php": "^5.6 || ^7.0"
  10014. },
  10015. "require-dev": {
  10016. "doctrine/collections": "^1.0",
  10017. "doctrine/common": "^2.6",
  10018. "phpunit/phpunit": "^4.1"
  10019. },
  10020. "type": "library",
  10021. "autoload": {
  10022. "psr-4": {
  10023. "DeepCopy\\": "src/DeepCopy/"
  10024. },
  10025. "files": [
  10026. "src/DeepCopy/deep_copy.php"
  10027. ]
  10028. },
  10029. "notification-url": "https://packagist.org/downloads/",
  10030. "license": [
  10031. "MIT"
  10032. ],
  10033. "description": "Create deep copies (clones) of your objects",
  10034. "keywords": [
  10035. "clone",
  10036. "copy",
  10037. "duplicate",
  10038. "object",
  10039. "object graph"
  10040. ],
  10041. "time": "2017-10-19T19:58:43+00:00"
  10042. },
  10043. {
  10044. "name": "phar-io/manifest",
  10045. "version": "1.0.1",
  10046. "source": {
  10047. "type": "git",
  10048. "url": "https://github.com/phar-io/manifest.git",
  10049. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  10050. },
  10051. "dist": {
  10052. "type": "zip",
  10053. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  10054. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  10055. "shasum": ""
  10056. },
  10057. "require": {
  10058. "ext-dom": "*",
  10059. "ext-phar": "*",
  10060. "phar-io/version": "^1.0.1",
  10061. "php": "^5.6 || ^7.0"
  10062. },
  10063. "type": "library",
  10064. "extra": {
  10065. "branch-alias": {
  10066. "dev-master": "1.0.x-dev"
  10067. }
  10068. },
  10069. "autoload": {
  10070. "classmap": [
  10071. "src/"
  10072. ]
  10073. },
  10074. "notification-url": "https://packagist.org/downloads/",
  10075. "license": [
  10076. "BSD-3-Clause"
  10077. ],
  10078. "authors": [
  10079. {
  10080. "name": "Arne Blankerts",
  10081. "email": "arne@blankerts.de",
  10082. "role": "Developer"
  10083. },
  10084. {
  10085. "name": "Sebastian Heuer",
  10086. "email": "sebastian@phpeople.de",
  10087. "role": "Developer"
  10088. },
  10089. {
  10090. "name": "Sebastian Bergmann",
  10091. "email": "sebastian@phpunit.de",
  10092. "role": "Developer"
  10093. }
  10094. ],
  10095. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10096. "time": "2017-03-05T18:14:27+00:00"
  10097. },
  10098. {
  10099. "name": "phar-io/version",
  10100. "version": "1.0.1",
  10101. "source": {
  10102. "type": "git",
  10103. "url": "https://github.com/phar-io/version.git",
  10104. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  10105. },
  10106. "dist": {
  10107. "type": "zip",
  10108. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  10109. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  10110. "shasum": ""
  10111. },
  10112. "require": {
  10113. "php": "^5.6 || ^7.0"
  10114. },
  10115. "type": "library",
  10116. "autoload": {
  10117. "classmap": [
  10118. "src/"
  10119. ]
  10120. },
  10121. "notification-url": "https://packagist.org/downloads/",
  10122. "license": [
  10123. "BSD-3-Clause"
  10124. ],
  10125. "authors": [
  10126. {
  10127. "name": "Arne Blankerts",
  10128. "email": "arne@blankerts.de",
  10129. "role": "Developer"
  10130. },
  10131. {
  10132. "name": "Sebastian Heuer",
  10133. "email": "sebastian@phpeople.de",
  10134. "role": "Developer"
  10135. },
  10136. {
  10137. "name": "Sebastian Bergmann",
  10138. "email": "sebastian@phpunit.de",
  10139. "role": "Developer"
  10140. }
  10141. ],
  10142. "description": "Library for handling version information and constraints",
  10143. "time": "2017-03-05T17:38:23+00:00"
  10144. },
  10145. {
  10146. "name": "phpdocumentor/reflection-common",
  10147. "version": "1.0.1",
  10148. "source": {
  10149. "type": "git",
  10150. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10151. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  10152. },
  10153. "dist": {
  10154. "type": "zip",
  10155. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  10156. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  10157. "shasum": ""
  10158. },
  10159. "require": {
  10160. "php": ">=5.5"
  10161. },
  10162. "require-dev": {
  10163. "phpunit/phpunit": "^4.6"
  10164. },
  10165. "type": "library",
  10166. "extra": {
  10167. "branch-alias": {
  10168. "dev-master": "1.0.x-dev"
  10169. }
  10170. },
  10171. "autoload": {
  10172. "psr-4": {
  10173. "phpDocumentor\\Reflection\\": [
  10174. "src"
  10175. ]
  10176. }
  10177. },
  10178. "notification-url": "https://packagist.org/downloads/",
  10179. "license": [
  10180. "MIT"
  10181. ],
  10182. "authors": [
  10183. {
  10184. "name": "Jaap van Otterdijk",
  10185. "email": "opensource@ijaap.nl"
  10186. }
  10187. ],
  10188. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10189. "homepage": "http://www.phpdoc.org",
  10190. "keywords": [
  10191. "FQSEN",
  10192. "phpDocumentor",
  10193. "phpdoc",
  10194. "reflection",
  10195. "static analysis"
  10196. ],
  10197. "time": "2017-09-11T18:02:19+00:00"
  10198. },
  10199. {
  10200. "name": "phpdocumentor/reflection-docblock",
  10201. "version": "4.3.0",
  10202. "source": {
  10203. "type": "git",
  10204. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  10205. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  10206. },
  10207. "dist": {
  10208. "type": "zip",
  10209. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  10210. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  10211. "shasum": ""
  10212. },
  10213. "require": {
  10214. "php": "^7.0",
  10215. "phpdocumentor/reflection-common": "^1.0.0",
  10216. "phpdocumentor/type-resolver": "^0.4.0",
  10217. "webmozart/assert": "^1.0"
  10218. },
  10219. "require-dev": {
  10220. "doctrine/instantiator": "~1.0.5",
  10221. "mockery/mockery": "^1.0",
  10222. "phpunit/phpunit": "^6.4"
  10223. },
  10224. "type": "library",
  10225. "extra": {
  10226. "branch-alias": {
  10227. "dev-master": "4.x-dev"
  10228. }
  10229. },
  10230. "autoload": {
  10231. "psr-4": {
  10232. "phpDocumentor\\Reflection\\": [
  10233. "src/"
  10234. ]
  10235. }
  10236. },
  10237. "notification-url": "https://packagist.org/downloads/",
  10238. "license": [
  10239. "MIT"
  10240. ],
  10241. "authors": [
  10242. {
  10243. "name": "Mike van Riel",
  10244. "email": "me@mikevanriel.com"
  10245. }
  10246. ],
  10247. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  10248. "time": "2017-11-30T07:14:17+00:00"
  10249. },
  10250. {
  10251. "name": "phpdocumentor/type-resolver",
  10252. "version": "0.4.0",
  10253. "source": {
  10254. "type": "git",
  10255. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10256. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  10257. },
  10258. "dist": {
  10259. "type": "zip",
  10260. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  10261. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  10262. "shasum": ""
  10263. },
  10264. "require": {
  10265. "php": "^5.5 || ^7.0",
  10266. "phpdocumentor/reflection-common": "^1.0"
  10267. },
  10268. "require-dev": {
  10269. "mockery/mockery": "^0.9.4",
  10270. "phpunit/phpunit": "^5.2||^4.8.24"
  10271. },
  10272. "type": "library",
  10273. "extra": {
  10274. "branch-alias": {
  10275. "dev-master": "1.0.x-dev"
  10276. }
  10277. },
  10278. "autoload": {
  10279. "psr-4": {
  10280. "phpDocumentor\\Reflection\\": [
  10281. "src/"
  10282. ]
  10283. }
  10284. },
  10285. "notification-url": "https://packagist.org/downloads/",
  10286. "license": [
  10287. "MIT"
  10288. ],
  10289. "authors": [
  10290. {
  10291. "name": "Mike van Riel",
  10292. "email": "me@mikevanriel.com"
  10293. }
  10294. ],
  10295. "time": "2017-07-14T14:27:02+00:00"
  10296. },
  10297. {
  10298. "name": "phpspec/prophecy",
  10299. "version": "1.8.0",
  10300. "source": {
  10301. "type": "git",
  10302. "url": "https://github.com/phpspec/prophecy.git",
  10303. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  10304. },
  10305. "dist": {
  10306. "type": "zip",
  10307. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  10308. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  10309. "shasum": ""
  10310. },
  10311. "require": {
  10312. "doctrine/instantiator": "^1.0.2",
  10313. "php": "^5.3|^7.0",
  10314. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  10315. "sebastian/comparator": "^1.1|^2.0|^3.0",
  10316. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  10317. },
  10318. "require-dev": {
  10319. "phpspec/phpspec": "^2.5|^3.2",
  10320. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  10321. },
  10322. "type": "library",
  10323. "extra": {
  10324. "branch-alias": {
  10325. "dev-master": "1.8.x-dev"
  10326. }
  10327. },
  10328. "autoload": {
  10329. "psr-0": {
  10330. "Prophecy\\": "src/"
  10331. }
  10332. },
  10333. "notification-url": "https://packagist.org/downloads/",
  10334. "license": [
  10335. "MIT"
  10336. ],
  10337. "authors": [
  10338. {
  10339. "name": "Konstantin Kudryashov",
  10340. "email": "ever.zet@gmail.com",
  10341. "homepage": "http://everzet.com"
  10342. },
  10343. {
  10344. "name": "Marcello Duarte",
  10345. "email": "marcello.duarte@gmail.com"
  10346. }
  10347. ],
  10348. "description": "Highly opinionated mocking framework for PHP 5.3+",
  10349. "homepage": "https://github.com/phpspec/prophecy",
  10350. "keywords": [
  10351. "Double",
  10352. "Dummy",
  10353. "fake",
  10354. "mock",
  10355. "spy",
  10356. "stub"
  10357. ],
  10358. "time": "2018-08-05T17:53:17+00:00"
  10359. },
  10360. {
  10361. "name": "phpunit/php-code-coverage",
  10362. "version": "5.3.2",
  10363. "source": {
  10364. "type": "git",
  10365. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10366. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  10367. },
  10368. "dist": {
  10369. "type": "zip",
  10370. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  10371. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  10372. "shasum": ""
  10373. },
  10374. "require": {
  10375. "ext-dom": "*",
  10376. "ext-xmlwriter": "*",
  10377. "php": "^7.0",
  10378. "phpunit/php-file-iterator": "^1.4.2",
  10379. "phpunit/php-text-template": "^1.2.1",
  10380. "phpunit/php-token-stream": "^2.0.1",
  10381. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  10382. "sebastian/environment": "^3.0",
  10383. "sebastian/version": "^2.0.1",
  10384. "theseer/tokenizer": "^1.1"
  10385. },
  10386. "require-dev": {
  10387. "phpunit/phpunit": "^6.0"
  10388. },
  10389. "suggest": {
  10390. "ext-xdebug": "^2.5.5"
  10391. },
  10392. "type": "library",
  10393. "extra": {
  10394. "branch-alias": {
  10395. "dev-master": "5.3.x-dev"
  10396. }
  10397. },
  10398. "autoload": {
  10399. "classmap": [
  10400. "src/"
  10401. ]
  10402. },
  10403. "notification-url": "https://packagist.org/downloads/",
  10404. "license": [
  10405. "BSD-3-Clause"
  10406. ],
  10407. "authors": [
  10408. {
  10409. "name": "Sebastian Bergmann",
  10410. "email": "sebastian@phpunit.de",
  10411. "role": "lead"
  10412. }
  10413. ],
  10414. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10415. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10416. "keywords": [
  10417. "coverage",
  10418. "testing",
  10419. "xunit"
  10420. ],
  10421. "time": "2018-04-06T15:36:58+00:00"
  10422. },
  10423. {
  10424. "name": "phpunit/php-file-iterator",
  10425. "version": "1.4.5",
  10426. "source": {
  10427. "type": "git",
  10428. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10429. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  10430. },
  10431. "dist": {
  10432. "type": "zip",
  10433. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  10434. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  10435. "shasum": ""
  10436. },
  10437. "require": {
  10438. "php": ">=5.3.3"
  10439. },
  10440. "type": "library",
  10441. "extra": {
  10442. "branch-alias": {
  10443. "dev-master": "1.4.x-dev"
  10444. }
  10445. },
  10446. "autoload": {
  10447. "classmap": [
  10448. "src/"
  10449. ]
  10450. },
  10451. "notification-url": "https://packagist.org/downloads/",
  10452. "license": [
  10453. "BSD-3-Clause"
  10454. ],
  10455. "authors": [
  10456. {
  10457. "name": "Sebastian Bergmann",
  10458. "email": "sb@sebastian-bergmann.de",
  10459. "role": "lead"
  10460. }
  10461. ],
  10462. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10463. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10464. "keywords": [
  10465. "filesystem",
  10466. "iterator"
  10467. ],
  10468. "time": "2017-11-27T13:52:08+00:00"
  10469. },
  10470. {
  10471. "name": "phpunit/php-text-template",
  10472. "version": "1.2.1",
  10473. "source": {
  10474. "type": "git",
  10475. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10476. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  10477. },
  10478. "dist": {
  10479. "type": "zip",
  10480. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10481. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10482. "shasum": ""
  10483. },
  10484. "require": {
  10485. "php": ">=5.3.3"
  10486. },
  10487. "type": "library",
  10488. "autoload": {
  10489. "classmap": [
  10490. "src/"
  10491. ]
  10492. },
  10493. "notification-url": "https://packagist.org/downloads/",
  10494. "license": [
  10495. "BSD-3-Clause"
  10496. ],
  10497. "authors": [
  10498. {
  10499. "name": "Sebastian Bergmann",
  10500. "email": "sebastian@phpunit.de",
  10501. "role": "lead"
  10502. }
  10503. ],
  10504. "description": "Simple template engine.",
  10505. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10506. "keywords": [
  10507. "template"
  10508. ],
  10509. "time": "2015-06-21T13:50:34+00:00"
  10510. },
  10511. {
  10512. "name": "phpunit/php-timer",
  10513. "version": "1.0.9",
  10514. "source": {
  10515. "type": "git",
  10516. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10517. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  10518. },
  10519. "dist": {
  10520. "type": "zip",
  10521. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  10522. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  10523. "shasum": ""
  10524. },
  10525. "require": {
  10526. "php": "^5.3.3 || ^7.0"
  10527. },
  10528. "require-dev": {
  10529. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10530. },
  10531. "type": "library",
  10532. "extra": {
  10533. "branch-alias": {
  10534. "dev-master": "1.0-dev"
  10535. }
  10536. },
  10537. "autoload": {
  10538. "classmap": [
  10539. "src/"
  10540. ]
  10541. },
  10542. "notification-url": "https://packagist.org/downloads/",
  10543. "license": [
  10544. "BSD-3-Clause"
  10545. ],
  10546. "authors": [
  10547. {
  10548. "name": "Sebastian Bergmann",
  10549. "email": "sb@sebastian-bergmann.de",
  10550. "role": "lead"
  10551. }
  10552. ],
  10553. "description": "Utility class for timing",
  10554. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10555. "keywords": [
  10556. "timer"
  10557. ],
  10558. "time": "2017-02-26T11:10:40+00:00"
  10559. },
  10560. {
  10561. "name": "phpunit/php-token-stream",
  10562. "version": "2.0.2",
  10563. "source": {
  10564. "type": "git",
  10565. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  10566. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  10567. },
  10568. "dist": {
  10569. "type": "zip",
  10570. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  10571. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  10572. "shasum": ""
  10573. },
  10574. "require": {
  10575. "ext-tokenizer": "*",
  10576. "php": "^7.0"
  10577. },
  10578. "require-dev": {
  10579. "phpunit/phpunit": "^6.2.4"
  10580. },
  10581. "type": "library",
  10582. "extra": {
  10583. "branch-alias": {
  10584. "dev-master": "2.0-dev"
  10585. }
  10586. },
  10587. "autoload": {
  10588. "classmap": [
  10589. "src/"
  10590. ]
  10591. },
  10592. "notification-url": "https://packagist.org/downloads/",
  10593. "license": [
  10594. "BSD-3-Clause"
  10595. ],
  10596. "authors": [
  10597. {
  10598. "name": "Sebastian Bergmann",
  10599. "email": "sebastian@phpunit.de"
  10600. }
  10601. ],
  10602. "description": "Wrapper around PHP's tokenizer extension.",
  10603. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  10604. "keywords": [
  10605. "tokenizer"
  10606. ],
  10607. "time": "2017-11-27T05:48:46+00:00"
  10608. },
  10609. {
  10610. "name": "phpunit/phpunit",
  10611. "version": "6.5.13",
  10612. "source": {
  10613. "type": "git",
  10614. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10615. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  10616. },
  10617. "dist": {
  10618. "type": "zip",
  10619. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  10620. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  10621. "shasum": ""
  10622. },
  10623. "require": {
  10624. "ext-dom": "*",
  10625. "ext-json": "*",
  10626. "ext-libxml": "*",
  10627. "ext-mbstring": "*",
  10628. "ext-xml": "*",
  10629. "myclabs/deep-copy": "^1.6.1",
  10630. "phar-io/manifest": "^1.0.1",
  10631. "phar-io/version": "^1.0",
  10632. "php": "^7.0",
  10633. "phpspec/prophecy": "^1.7",
  10634. "phpunit/php-code-coverage": "^5.3",
  10635. "phpunit/php-file-iterator": "^1.4.3",
  10636. "phpunit/php-text-template": "^1.2.1",
  10637. "phpunit/php-timer": "^1.0.9",
  10638. "phpunit/phpunit-mock-objects": "^5.0.9",
  10639. "sebastian/comparator": "^2.1",
  10640. "sebastian/diff": "^2.0",
  10641. "sebastian/environment": "^3.1",
  10642. "sebastian/exporter": "^3.1",
  10643. "sebastian/global-state": "^2.0",
  10644. "sebastian/object-enumerator": "^3.0.3",
  10645. "sebastian/resource-operations": "^1.0",
  10646. "sebastian/version": "^2.0.1"
  10647. },
  10648. "conflict": {
  10649. "phpdocumentor/reflection-docblock": "3.0.2",
  10650. "phpunit/dbunit": "<3.0"
  10651. },
  10652. "require-dev": {
  10653. "ext-pdo": "*"
  10654. },
  10655. "suggest": {
  10656. "ext-xdebug": "*",
  10657. "phpunit/php-invoker": "^1.1"
  10658. },
  10659. "bin": [
  10660. "phpunit"
  10661. ],
  10662. "type": "library",
  10663. "extra": {
  10664. "branch-alias": {
  10665. "dev-master": "6.5.x-dev"
  10666. }
  10667. },
  10668. "autoload": {
  10669. "classmap": [
  10670. "src/"
  10671. ]
  10672. },
  10673. "notification-url": "https://packagist.org/downloads/",
  10674. "license": [
  10675. "BSD-3-Clause"
  10676. ],
  10677. "authors": [
  10678. {
  10679. "name": "Sebastian Bergmann",
  10680. "email": "sebastian@phpunit.de",
  10681. "role": "lead"
  10682. }
  10683. ],
  10684. "description": "The PHP Unit Testing framework.",
  10685. "homepage": "https://phpunit.de/",
  10686. "keywords": [
  10687. "phpunit",
  10688. "testing",
  10689. "xunit"
  10690. ],
  10691. "time": "2018-09-08T15:10:43+00:00"
  10692. },
  10693. {
  10694. "name": "phpunit/phpunit-mock-objects",
  10695. "version": "5.0.10",
  10696. "source": {
  10697. "type": "git",
  10698. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  10699. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  10700. },
  10701. "dist": {
  10702. "type": "zip",
  10703. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  10704. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  10705. "shasum": ""
  10706. },
  10707. "require": {
  10708. "doctrine/instantiator": "^1.0.5",
  10709. "php": "^7.0",
  10710. "phpunit/php-text-template": "^1.2.1",
  10711. "sebastian/exporter": "^3.1"
  10712. },
  10713. "conflict": {
  10714. "phpunit/phpunit": "<6.0"
  10715. },
  10716. "require-dev": {
  10717. "phpunit/phpunit": "^6.5.11"
  10718. },
  10719. "suggest": {
  10720. "ext-soap": "*"
  10721. },
  10722. "type": "library",
  10723. "extra": {
  10724. "branch-alias": {
  10725. "dev-master": "5.0.x-dev"
  10726. }
  10727. },
  10728. "autoload": {
  10729. "classmap": [
  10730. "src/"
  10731. ]
  10732. },
  10733. "notification-url": "https://packagist.org/downloads/",
  10734. "license": [
  10735. "BSD-3-Clause"
  10736. ],
  10737. "authors": [
  10738. {
  10739. "name": "Sebastian Bergmann",
  10740. "email": "sebastian@phpunit.de",
  10741. "role": "lead"
  10742. }
  10743. ],
  10744. "description": "Mock Object library for PHPUnit",
  10745. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  10746. "keywords": [
  10747. "mock",
  10748. "xunit"
  10749. ],
  10750. "time": "2018-08-09T05:50:03+00:00"
  10751. },
  10752. {
  10753. "name": "sebastian/code-unit-reverse-lookup",
  10754. "version": "1.0.1",
  10755. "source": {
  10756. "type": "git",
  10757. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10758. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  10759. },
  10760. "dist": {
  10761. "type": "zip",
  10762. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  10763. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  10764. "shasum": ""
  10765. },
  10766. "require": {
  10767. "php": "^5.6 || ^7.0"
  10768. },
  10769. "require-dev": {
  10770. "phpunit/phpunit": "^5.7 || ^6.0"
  10771. },
  10772. "type": "library",
  10773. "extra": {
  10774. "branch-alias": {
  10775. "dev-master": "1.0.x-dev"
  10776. }
  10777. },
  10778. "autoload": {
  10779. "classmap": [
  10780. "src/"
  10781. ]
  10782. },
  10783. "notification-url": "https://packagist.org/downloads/",
  10784. "license": [
  10785. "BSD-3-Clause"
  10786. ],
  10787. "authors": [
  10788. {
  10789. "name": "Sebastian Bergmann",
  10790. "email": "sebastian@phpunit.de"
  10791. }
  10792. ],
  10793. "description": "Looks up which function or method a line of code belongs to",
  10794. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10795. "time": "2017-03-04T06:30:41+00:00"
  10796. },
  10797. {
  10798. "name": "sebastian/comparator",
  10799. "version": "2.1.3",
  10800. "source": {
  10801. "type": "git",
  10802. "url": "https://github.com/sebastianbergmann/comparator.git",
  10803. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  10804. },
  10805. "dist": {
  10806. "type": "zip",
  10807. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  10808. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  10809. "shasum": ""
  10810. },
  10811. "require": {
  10812. "php": "^7.0",
  10813. "sebastian/diff": "^2.0 || ^3.0",
  10814. "sebastian/exporter": "^3.1"
  10815. },
  10816. "require-dev": {
  10817. "phpunit/phpunit": "^6.4"
  10818. },
  10819. "type": "library",
  10820. "extra": {
  10821. "branch-alias": {
  10822. "dev-master": "2.1.x-dev"
  10823. }
  10824. },
  10825. "autoload": {
  10826. "classmap": [
  10827. "src/"
  10828. ]
  10829. },
  10830. "notification-url": "https://packagist.org/downloads/",
  10831. "license": [
  10832. "BSD-3-Clause"
  10833. ],
  10834. "authors": [
  10835. {
  10836. "name": "Jeff Welch",
  10837. "email": "whatthejeff@gmail.com"
  10838. },
  10839. {
  10840. "name": "Volker Dusch",
  10841. "email": "github@wallbash.com"
  10842. },
  10843. {
  10844. "name": "Bernhard Schussek",
  10845. "email": "bschussek@2bepublished.at"
  10846. },
  10847. {
  10848. "name": "Sebastian Bergmann",
  10849. "email": "sebastian@phpunit.de"
  10850. }
  10851. ],
  10852. "description": "Provides the functionality to compare PHP values for equality",
  10853. "homepage": "https://github.com/sebastianbergmann/comparator",
  10854. "keywords": [
  10855. "comparator",
  10856. "compare",
  10857. "equality"
  10858. ],
  10859. "time": "2018-02-01T13:46:46+00:00"
  10860. },
  10861. {
  10862. "name": "sebastian/diff",
  10863. "version": "2.0.1",
  10864. "source": {
  10865. "type": "git",
  10866. "url": "https://github.com/sebastianbergmann/diff.git",
  10867. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  10868. },
  10869. "dist": {
  10870. "type": "zip",
  10871. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  10872. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  10873. "shasum": ""
  10874. },
  10875. "require": {
  10876. "php": "^7.0"
  10877. },
  10878. "require-dev": {
  10879. "phpunit/phpunit": "^6.2"
  10880. },
  10881. "type": "library",
  10882. "extra": {
  10883. "branch-alias": {
  10884. "dev-master": "2.0-dev"
  10885. }
  10886. },
  10887. "autoload": {
  10888. "classmap": [
  10889. "src/"
  10890. ]
  10891. },
  10892. "notification-url": "https://packagist.org/downloads/",
  10893. "license": [
  10894. "BSD-3-Clause"
  10895. ],
  10896. "authors": [
  10897. {
  10898. "name": "Kore Nordmann",
  10899. "email": "mail@kore-nordmann.de"
  10900. },
  10901. {
  10902. "name": "Sebastian Bergmann",
  10903. "email": "sebastian@phpunit.de"
  10904. }
  10905. ],
  10906. "description": "Diff implementation",
  10907. "homepage": "https://github.com/sebastianbergmann/diff",
  10908. "keywords": [
  10909. "diff"
  10910. ],
  10911. "time": "2017-08-03T08:09:46+00:00"
  10912. },
  10913. {
  10914. "name": "sebastian/environment",
  10915. "version": "3.1.0",
  10916. "source": {
  10917. "type": "git",
  10918. "url": "https://github.com/sebastianbergmann/environment.git",
  10919. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  10920. },
  10921. "dist": {
  10922. "type": "zip",
  10923. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  10924. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  10925. "shasum": ""
  10926. },
  10927. "require": {
  10928. "php": "^7.0"
  10929. },
  10930. "require-dev": {
  10931. "phpunit/phpunit": "^6.1"
  10932. },
  10933. "type": "library",
  10934. "extra": {
  10935. "branch-alias": {
  10936. "dev-master": "3.1.x-dev"
  10937. }
  10938. },
  10939. "autoload": {
  10940. "classmap": [
  10941. "src/"
  10942. ]
  10943. },
  10944. "notification-url": "https://packagist.org/downloads/",
  10945. "license": [
  10946. "BSD-3-Clause"
  10947. ],
  10948. "authors": [
  10949. {
  10950. "name": "Sebastian Bergmann",
  10951. "email": "sebastian@phpunit.de"
  10952. }
  10953. ],
  10954. "description": "Provides functionality to handle HHVM/PHP environments",
  10955. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10956. "keywords": [
  10957. "Xdebug",
  10958. "environment",
  10959. "hhvm"
  10960. ],
  10961. "time": "2017-07-01T08:51:00+00:00"
  10962. },
  10963. {
  10964. "name": "sebastian/exporter",
  10965. "version": "3.1.0",
  10966. "source": {
  10967. "type": "git",
  10968. "url": "https://github.com/sebastianbergmann/exporter.git",
  10969. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  10970. },
  10971. "dist": {
  10972. "type": "zip",
  10973. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  10974. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  10975. "shasum": ""
  10976. },
  10977. "require": {
  10978. "php": "^7.0",
  10979. "sebastian/recursion-context": "^3.0"
  10980. },
  10981. "require-dev": {
  10982. "ext-mbstring": "*",
  10983. "phpunit/phpunit": "^6.0"
  10984. },
  10985. "type": "library",
  10986. "extra": {
  10987. "branch-alias": {
  10988. "dev-master": "3.1.x-dev"
  10989. }
  10990. },
  10991. "autoload": {
  10992. "classmap": [
  10993. "src/"
  10994. ]
  10995. },
  10996. "notification-url": "https://packagist.org/downloads/",
  10997. "license": [
  10998. "BSD-3-Clause"
  10999. ],
  11000. "authors": [
  11001. {
  11002. "name": "Jeff Welch",
  11003. "email": "whatthejeff@gmail.com"
  11004. },
  11005. {
  11006. "name": "Volker Dusch",
  11007. "email": "github@wallbash.com"
  11008. },
  11009. {
  11010. "name": "Bernhard Schussek",
  11011. "email": "bschussek@2bepublished.at"
  11012. },
  11013. {
  11014. "name": "Sebastian Bergmann",
  11015. "email": "sebastian@phpunit.de"
  11016. },
  11017. {
  11018. "name": "Adam Harvey",
  11019. "email": "aharvey@php.net"
  11020. }
  11021. ],
  11022. "description": "Provides the functionality to export PHP variables for visualization",
  11023. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  11024. "keywords": [
  11025. "export",
  11026. "exporter"
  11027. ],
  11028. "time": "2017-04-03T13:19:02+00:00"
  11029. },
  11030. {
  11031. "name": "sebastian/global-state",
  11032. "version": "2.0.0",
  11033. "source": {
  11034. "type": "git",
  11035. "url": "https://github.com/sebastianbergmann/global-state.git",
  11036. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  11037. },
  11038. "dist": {
  11039. "type": "zip",
  11040. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11041. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11042. "shasum": ""
  11043. },
  11044. "require": {
  11045. "php": "^7.0"
  11046. },
  11047. "require-dev": {
  11048. "phpunit/phpunit": "^6.0"
  11049. },
  11050. "suggest": {
  11051. "ext-uopz": "*"
  11052. },
  11053. "type": "library",
  11054. "extra": {
  11055. "branch-alias": {
  11056. "dev-master": "2.0-dev"
  11057. }
  11058. },
  11059. "autoload": {
  11060. "classmap": [
  11061. "src/"
  11062. ]
  11063. },
  11064. "notification-url": "https://packagist.org/downloads/",
  11065. "license": [
  11066. "BSD-3-Clause"
  11067. ],
  11068. "authors": [
  11069. {
  11070. "name": "Sebastian Bergmann",
  11071. "email": "sebastian@phpunit.de"
  11072. }
  11073. ],
  11074. "description": "Snapshotting of global state",
  11075. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11076. "keywords": [
  11077. "global state"
  11078. ],
  11079. "time": "2017-04-27T15:39:26+00:00"
  11080. },
  11081. {
  11082. "name": "sebastian/object-enumerator",
  11083. "version": "3.0.3",
  11084. "source": {
  11085. "type": "git",
  11086. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11087. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  11088. },
  11089. "dist": {
  11090. "type": "zip",
  11091. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  11092. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  11093. "shasum": ""
  11094. },
  11095. "require": {
  11096. "php": "^7.0",
  11097. "sebastian/object-reflector": "^1.1.1",
  11098. "sebastian/recursion-context": "^3.0"
  11099. },
  11100. "require-dev": {
  11101. "phpunit/phpunit": "^6.0"
  11102. },
  11103. "type": "library",
  11104. "extra": {
  11105. "branch-alias": {
  11106. "dev-master": "3.0.x-dev"
  11107. }
  11108. },
  11109. "autoload": {
  11110. "classmap": [
  11111. "src/"
  11112. ]
  11113. },
  11114. "notification-url": "https://packagist.org/downloads/",
  11115. "license": [
  11116. "BSD-3-Clause"
  11117. ],
  11118. "authors": [
  11119. {
  11120. "name": "Sebastian Bergmann",
  11121. "email": "sebastian@phpunit.de"
  11122. }
  11123. ],
  11124. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11125. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11126. "time": "2017-08-03T12:35:26+00:00"
  11127. },
  11128. {
  11129. "name": "sebastian/object-reflector",
  11130. "version": "1.1.1",
  11131. "source": {
  11132. "type": "git",
  11133. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11134. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  11135. },
  11136. "dist": {
  11137. "type": "zip",
  11138. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  11139. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  11140. "shasum": ""
  11141. },
  11142. "require": {
  11143. "php": "^7.0"
  11144. },
  11145. "require-dev": {
  11146. "phpunit/phpunit": "^6.0"
  11147. },
  11148. "type": "library",
  11149. "extra": {
  11150. "branch-alias": {
  11151. "dev-master": "1.1-dev"
  11152. }
  11153. },
  11154. "autoload": {
  11155. "classmap": [
  11156. "src/"
  11157. ]
  11158. },
  11159. "notification-url": "https://packagist.org/downloads/",
  11160. "license": [
  11161. "BSD-3-Clause"
  11162. ],
  11163. "authors": [
  11164. {
  11165. "name": "Sebastian Bergmann",
  11166. "email": "sebastian@phpunit.de"
  11167. }
  11168. ],
  11169. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11170. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11171. "time": "2017-03-29T09:07:27+00:00"
  11172. },
  11173. {
  11174. "name": "sebastian/recursion-context",
  11175. "version": "3.0.0",
  11176. "source": {
  11177. "type": "git",
  11178. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11179. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  11180. },
  11181. "dist": {
  11182. "type": "zip",
  11183. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  11184. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  11185. "shasum": ""
  11186. },
  11187. "require": {
  11188. "php": "^7.0"
  11189. },
  11190. "require-dev": {
  11191. "phpunit/phpunit": "^6.0"
  11192. },
  11193. "type": "library",
  11194. "extra": {
  11195. "branch-alias": {
  11196. "dev-master": "3.0.x-dev"
  11197. }
  11198. },
  11199. "autoload": {
  11200. "classmap": [
  11201. "src/"
  11202. ]
  11203. },
  11204. "notification-url": "https://packagist.org/downloads/",
  11205. "license": [
  11206. "BSD-3-Clause"
  11207. ],
  11208. "authors": [
  11209. {
  11210. "name": "Jeff Welch",
  11211. "email": "whatthejeff@gmail.com"
  11212. },
  11213. {
  11214. "name": "Sebastian Bergmann",
  11215. "email": "sebastian@phpunit.de"
  11216. },
  11217. {
  11218. "name": "Adam Harvey",
  11219. "email": "aharvey@php.net"
  11220. }
  11221. ],
  11222. "description": "Provides functionality to recursively process PHP variables",
  11223. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11224. "time": "2017-03-03T06:23:57+00:00"
  11225. },
  11226. {
  11227. "name": "sebastian/resource-operations",
  11228. "version": "1.0.0",
  11229. "source": {
  11230. "type": "git",
  11231. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11232. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  11233. },
  11234. "dist": {
  11235. "type": "zip",
  11236. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  11237. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  11238. "shasum": ""
  11239. },
  11240. "require": {
  11241. "php": ">=5.6.0"
  11242. },
  11243. "type": "library",
  11244. "extra": {
  11245. "branch-alias": {
  11246. "dev-master": "1.0.x-dev"
  11247. }
  11248. },
  11249. "autoload": {
  11250. "classmap": [
  11251. "src/"
  11252. ]
  11253. },
  11254. "notification-url": "https://packagist.org/downloads/",
  11255. "license": [
  11256. "BSD-3-Clause"
  11257. ],
  11258. "authors": [
  11259. {
  11260. "name": "Sebastian Bergmann",
  11261. "email": "sebastian@phpunit.de"
  11262. }
  11263. ],
  11264. "description": "Provides a list of PHP built-in functions that operate on resources",
  11265. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11266. "time": "2015-07-28T20:34:47+00:00"
  11267. },
  11268. {
  11269. "name": "sebastian/version",
  11270. "version": "2.0.1",
  11271. "source": {
  11272. "type": "git",
  11273. "url": "https://github.com/sebastianbergmann/version.git",
  11274. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  11275. },
  11276. "dist": {
  11277. "type": "zip",
  11278. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  11279. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  11280. "shasum": ""
  11281. },
  11282. "require": {
  11283. "php": ">=5.6"
  11284. },
  11285. "type": "library",
  11286. "extra": {
  11287. "branch-alias": {
  11288. "dev-master": "2.0.x-dev"
  11289. }
  11290. },
  11291. "autoload": {
  11292. "classmap": [
  11293. "src/"
  11294. ]
  11295. },
  11296. "notification-url": "https://packagist.org/downloads/",
  11297. "license": [
  11298. "BSD-3-Clause"
  11299. ],
  11300. "authors": [
  11301. {
  11302. "name": "Sebastian Bergmann",
  11303. "email": "sebastian@phpunit.de",
  11304. "role": "lead"
  11305. }
  11306. ],
  11307. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11308. "homepage": "https://github.com/sebastianbergmann/version",
  11309. "time": "2016-10-03T07:35:21+00:00"
  11310. },
  11311. {
  11312. "name": "squizlabs/php_codesniffer",
  11313. "version": "3.3.2",
  11314. "source": {
  11315. "type": "git",
  11316. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  11317. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e"
  11318. },
  11319. "dist": {
  11320. "type": "zip",
  11321. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  11322. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  11323. "shasum": ""
  11324. },
  11325. "require": {
  11326. "ext-simplexml": "*",
  11327. "ext-tokenizer": "*",
  11328. "ext-xmlwriter": "*",
  11329. "php": ">=5.4.0"
  11330. },
  11331. "require-dev": {
  11332. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  11333. },
  11334. "bin": [
  11335. "bin/phpcs",
  11336. "bin/phpcbf"
  11337. ],
  11338. "type": "library",
  11339. "extra": {
  11340. "branch-alias": {
  11341. "dev-master": "3.x-dev"
  11342. }
  11343. },
  11344. "notification-url": "https://packagist.org/downloads/",
  11345. "license": [
  11346. "BSD-3-Clause"
  11347. ],
  11348. "authors": [
  11349. {
  11350. "name": "Greg Sherwood",
  11351. "role": "lead"
  11352. }
  11353. ],
  11354. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  11355. "homepage": "http://www.squizlabs.com/php-codesniffer",
  11356. "keywords": [
  11357. "phpcs",
  11358. "standards"
  11359. ],
  11360. "time": "2018-09-23T23:08:17+00:00"
  11361. },
  11362. {
  11363. "name": "symfony/browser-kit",
  11364. "version": "v3.4.17",
  11365. "source": {
  11366. "type": "git",
  11367. "url": "https://github.com/symfony/browser-kit.git",
  11368. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0"
  11369. },
  11370. "dist": {
  11371. "type": "zip",
  11372. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  11373. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  11374. "shasum": ""
  11375. },
  11376. "require": {
  11377. "php": "^5.5.9|>=7.0.8",
  11378. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  11379. },
  11380. "require-dev": {
  11381. "symfony/css-selector": "~2.8|~3.0|~4.0",
  11382. "symfony/process": "~2.8|~3.0|~4.0"
  11383. },
  11384. "suggest": {
  11385. "symfony/process": ""
  11386. },
  11387. "type": "library",
  11388. "extra": {
  11389. "branch-alias": {
  11390. "dev-master": "3.4-dev"
  11391. }
  11392. },
  11393. "autoload": {
  11394. "psr-4": {
  11395. "Symfony\\Component\\BrowserKit\\": ""
  11396. },
  11397. "exclude-from-classmap": [
  11398. "/Tests/"
  11399. ]
  11400. },
  11401. "notification-url": "https://packagist.org/downloads/",
  11402. "license": [
  11403. "MIT"
  11404. ],
  11405. "authors": [
  11406. {
  11407. "name": "Fabien Potencier",
  11408. "email": "fabien@symfony.com"
  11409. },
  11410. {
  11411. "name": "Symfony Community",
  11412. "homepage": "https://symfony.com/contributors"
  11413. }
  11414. ],
  11415. "description": "Symfony BrowserKit Component",
  11416. "homepage": "https://symfony.com",
  11417. "time": "2018-07-26T09:06:28+00:00"
  11418. },
  11419. {
  11420. "name": "symfony/phpunit-bridge",
  11421. "version": "v3.4.17",
  11422. "source": {
  11423. "type": "git",
  11424. "url": "https://github.com/symfony/phpunit-bridge.git",
  11425. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4"
  11426. },
  11427. "dist": {
  11428. "type": "zip",
  11429. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/76e013a98031356604e5a730c9eb22713dc4dda4",
  11430. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4",
  11431. "shasum": ""
  11432. },
  11433. "require": {
  11434. "php": ">=5.3.3"
  11435. },
  11436. "conflict": {
  11437. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  11438. },
  11439. "suggest": {
  11440. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  11441. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  11442. },
  11443. "bin": [
  11444. "bin/simple-phpunit"
  11445. ],
  11446. "type": "symfony-bridge",
  11447. "extra": {
  11448. "branch-alias": {
  11449. "dev-master": "3.4-dev"
  11450. },
  11451. "thanks": {
  11452. "name": "phpunit/phpunit",
  11453. "url": "https://github.com/sebastianbergmann/phpunit"
  11454. }
  11455. },
  11456. "autoload": {
  11457. "files": [
  11458. "bootstrap.php"
  11459. ],
  11460. "psr-4": {
  11461. "Symfony\\Bridge\\PhpUnit\\": ""
  11462. },
  11463. "exclude-from-classmap": [
  11464. "/Tests/"
  11465. ]
  11466. },
  11467. "notification-url": "https://packagist.org/downloads/",
  11468. "license": [
  11469. "MIT"
  11470. ],
  11471. "authors": [
  11472. {
  11473. "name": "Nicolas Grekas",
  11474. "email": "p@tchwork.com"
  11475. },
  11476. {
  11477. "name": "Symfony Community",
  11478. "homepage": "https://symfony.com/contributors"
  11479. }
  11480. ],
  11481. "description": "Symfony PHPUnit Bridge",
  11482. "homepage": "https://symfony.com",
  11483. "time": "2018-10-02T12:28:39+00:00"
  11484. },
  11485. {
  11486. "name": "theseer/tokenizer",
  11487. "version": "1.1.0",
  11488. "source": {
  11489. "type": "git",
  11490. "url": "https://github.com/theseer/tokenizer.git",
  11491. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  11492. },
  11493. "dist": {
  11494. "type": "zip",
  11495. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  11496. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  11497. "shasum": ""
  11498. },
  11499. "require": {
  11500. "ext-dom": "*",
  11501. "ext-tokenizer": "*",
  11502. "ext-xmlwriter": "*",
  11503. "php": "^7.0"
  11504. },
  11505. "type": "library",
  11506. "autoload": {
  11507. "classmap": [
  11508. "src/"
  11509. ]
  11510. },
  11511. "notification-url": "https://packagist.org/downloads/",
  11512. "license": [
  11513. "BSD-3-Clause"
  11514. ],
  11515. "authors": [
  11516. {
  11517. "name": "Arne Blankerts",
  11518. "email": "arne@blankerts.de",
  11519. "role": "Developer"
  11520. }
  11521. ],
  11522. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11523. "time": "2017-04-07T12:08:54+00:00"
  11524. }
  11525. ],
  11526. "aliases": [],
  11527. "minimum-stability": "dev",
  11528. "stability-flags": {
  11529. "drupal/advanced_text_formatter": 10,
  11530. "drupal/autocomplete_deluxe": 10,
  11531. "drupal/better_exposed_filters": 15,
  11532. "drupal/better_messages": 15,
  11533. "drupal/bulkdelete": 20,
  11534. "drupal/content_lock": 15,
  11535. "drupal/context": 10,
  11536. "drupal/domain": 15,
  11537. "drupal/domain_alias": 15,
  11538. "drupal/domain_config": 15,
  11539. "drupal/email_registration": 5,
  11540. "drupal/entity_browser_enhanced": 5,
  11541. "drupal/entity_clone": 15,
  11542. "drupal/filefield_sources": 20,
  11543. "drupal/filter_perms": 20,
  11544. "drupal/inline_entity_form": 5,
  11545. "drupal/login_destination": 20,
  11546. "drupal/maillog": 20,
  11547. "drupal/maxlength": 10,
  11548. "drupal/menu_position": 20,
  11549. "drupal/path_alias_xt": 20,
  11550. "drupal/pathologic": 15,
  11551. "drupal/profile": 5,
  11552. "drupal/smtp": 10,
  11553. "drupal/synonyms": 15,
  11554. "drupal/translation_views": 15,
  11555. "drupal/toolbar_themes": 15,
  11556. "drupal/ultimate_cron": 15,
  11557. "drupal/workflow": 20,
  11558. "behat/mink": 20,
  11559. "behat/mink-selenium2-driver": 20
  11560. },
  11561. "prefer-stable": true,
  11562. "prefer-lowest": false,
  11563. "platform": {
  11564. "ext-date": "*",
  11565. "ext-dom": "*",
  11566. "ext-filter": "*",
  11567. "ext-gd": "*",
  11568. "ext-hash": "*",
  11569. "ext-json": "*",
  11570. "ext-pcre": "*",
  11571. "ext-pdo": "*",
  11572. "ext-session": "*",
  11573. "ext-simplexml": "*",
  11574. "ext-spl": "*",
  11575. "ext-tokenizer": "*",
  11576. "ext-xml": "*",
  11577. "php": "^5.5.9|>=7.0.8"
  11578. },
  11579. "platform-dev": []
  11580. }