composer.lock 446 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534
  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": "f857de64bd17f2661ef282f4b5bc17c5",
  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": "commerceguys/addressing",
  172. "version": "v1.0.2",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/commerceguys/addressing.git",
  176. "reference": "f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b",
  181. "reference": "f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b",
  182. "shasum": ""
  183. },
  184. "require": {
  185. "doctrine/collections": "~1.0",
  186. "php": ">=5.5.0"
  187. },
  188. "require-dev": {
  189. "mikey179/vfsstream": "1.*",
  190. "phpunit/phpunit": "~4.0",
  191. "squizlabs/php_codesniffer": "2.*",
  192. "symfony/validator": ">=3.2"
  193. },
  194. "suggest": {
  195. "symfony/validator": "to validate addresses"
  196. },
  197. "type": "library",
  198. "extra": {
  199. "branch-alias": {
  200. "dev-master": "1.x-dev"
  201. }
  202. },
  203. "autoload": {
  204. "psr-4": {
  205. "CommerceGuys\\Addressing\\": "src"
  206. }
  207. },
  208. "notification-url": "https://packagist.org/downloads/",
  209. "license": [
  210. "MIT"
  211. ],
  212. "authors": [
  213. {
  214. "name": "Bojan Zivanovic"
  215. },
  216. {
  217. "name": "Damien Tournoud"
  218. }
  219. ],
  220. "description": "Addressing library powered by CLDR and Google's address data.",
  221. "keywords": [
  222. "address",
  223. "internationalization",
  224. "localization",
  225. "postal"
  226. ],
  227. "time": "2018-10-21T23:38:05+00:00"
  228. },
  229. {
  230. "name": "components/highlightjs",
  231. "version": "9.7.0",
  232. "dist": {
  233. "type": "zip",
  234. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip",
  235. "reference": null,
  236. "shasum": null
  237. },
  238. "type": "drupal-library"
  239. },
  240. {
  241. "name": "composer/installers",
  242. "version": "v1.6.0",
  243. "source": {
  244. "type": "git",
  245. "url": "https://github.com/composer/installers.git",
  246. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  247. },
  248. "dist": {
  249. "type": "zip",
  250. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  251. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  252. "shasum": ""
  253. },
  254. "require": {
  255. "composer-plugin-api": "^1.0"
  256. },
  257. "replace": {
  258. "roundcube/plugin-installer": "*",
  259. "shama/baton": "*"
  260. },
  261. "require-dev": {
  262. "composer/composer": "1.0.*@dev",
  263. "phpunit/phpunit": "^4.8.36"
  264. },
  265. "type": "composer-plugin",
  266. "extra": {
  267. "class": "Composer\\Installers\\Plugin",
  268. "branch-alias": {
  269. "dev-master": "1.0-dev"
  270. }
  271. },
  272. "autoload": {
  273. "psr-4": {
  274. "Composer\\Installers\\": "src/Composer/Installers"
  275. }
  276. },
  277. "notification-url": "https://packagist.org/downloads/",
  278. "license": [
  279. "MIT"
  280. ],
  281. "authors": [
  282. {
  283. "name": "Kyle Robinson Young",
  284. "email": "kyle@dontkry.com",
  285. "homepage": "https://github.com/shama"
  286. }
  287. ],
  288. "description": "A multi-framework Composer library installer",
  289. "homepage": "https://composer.github.io/installers/",
  290. "keywords": [
  291. "Craft",
  292. "Dolibarr",
  293. "Eliasis",
  294. "Hurad",
  295. "ImageCMS",
  296. "Kanboard",
  297. "Lan Management System",
  298. "MODX Evo",
  299. "Mautic",
  300. "Maya",
  301. "OXID",
  302. "Plentymarkets",
  303. "Porto",
  304. "RadPHP",
  305. "SMF",
  306. "Thelia",
  307. "WolfCMS",
  308. "agl",
  309. "aimeos",
  310. "annotatecms",
  311. "attogram",
  312. "bitrix",
  313. "cakephp",
  314. "chef",
  315. "cockpit",
  316. "codeigniter",
  317. "concrete5",
  318. "croogo",
  319. "dokuwiki",
  320. "drupal",
  321. "eZ Platform",
  322. "elgg",
  323. "expressionengine",
  324. "fuelphp",
  325. "grav",
  326. "installer",
  327. "itop",
  328. "joomla",
  329. "kohana",
  330. "laravel",
  331. "lavalite",
  332. "lithium",
  333. "magento",
  334. "majima",
  335. "mako",
  336. "mediawiki",
  337. "modulework",
  338. "modx",
  339. "moodle",
  340. "osclass",
  341. "phpbb",
  342. "piwik",
  343. "ppi",
  344. "puppet",
  345. "pxcms",
  346. "reindex",
  347. "roundcube",
  348. "shopware",
  349. "silverstripe",
  350. "sydes",
  351. "symfony",
  352. "typo3",
  353. "wordpress",
  354. "yawik",
  355. "zend",
  356. "zikula"
  357. ],
  358. "time": "2018-08-27T06:10:37+00:00"
  359. },
  360. {
  361. "name": "composer/semver",
  362. "version": "1.4.2",
  363. "source": {
  364. "type": "git",
  365. "url": "https://github.com/composer/semver.git",
  366. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  367. },
  368. "dist": {
  369. "type": "zip",
  370. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  371. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  372. "shasum": ""
  373. },
  374. "require": {
  375. "php": "^5.3.2 || ^7.0"
  376. },
  377. "require-dev": {
  378. "phpunit/phpunit": "^4.5 || ^5.0.5",
  379. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  380. },
  381. "type": "library",
  382. "extra": {
  383. "branch-alias": {
  384. "dev-master": "1.x-dev"
  385. }
  386. },
  387. "autoload": {
  388. "psr-4": {
  389. "Composer\\Semver\\": "src"
  390. }
  391. },
  392. "notification-url": "https://packagist.org/downloads/",
  393. "license": [
  394. "MIT"
  395. ],
  396. "authors": [
  397. {
  398. "name": "Nils Adermann",
  399. "email": "naderman@naderman.de",
  400. "homepage": "http://www.naderman.de"
  401. },
  402. {
  403. "name": "Jordi Boggiano",
  404. "email": "j.boggiano@seld.be",
  405. "homepage": "http://seld.be"
  406. },
  407. {
  408. "name": "Rob Bast",
  409. "email": "rob.bast@gmail.com",
  410. "homepage": "http://robbast.nl"
  411. }
  412. ],
  413. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  414. "keywords": [
  415. "semantic",
  416. "semver",
  417. "validation",
  418. "versioning"
  419. ],
  420. "time": "2016-08-30T16:08:34+00:00"
  421. },
  422. {
  423. "name": "consolidation/annotated-command",
  424. "version": "2.11.0",
  425. "source": {
  426. "type": "git",
  427. "url": "https://github.com/consolidation/annotated-command.git",
  428. "reference": "edea407f57104ed518cc3c3b47d5b84403ee267a"
  429. },
  430. "dist": {
  431. "type": "zip",
  432. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/edea407f57104ed518cc3c3b47d5b84403ee267a",
  433. "reference": "edea407f57104ed518cc3c3b47d5b84403ee267a",
  434. "shasum": ""
  435. },
  436. "require": {
  437. "consolidation/output-formatters": "^3.4",
  438. "php": ">=5.4.0",
  439. "psr/log": "^1",
  440. "symfony/console": "^2.8|^3|^4",
  441. "symfony/event-dispatcher": "^2.5|^3|^4",
  442. "symfony/finder": "^2.5|^3|^4"
  443. },
  444. "require-dev": {
  445. "g1a/composer-test-scenarios": "^3",
  446. "php-coveralls/php-coveralls": "^1",
  447. "phpunit/phpunit": "^6",
  448. "squizlabs/php_codesniffer": "^2.7"
  449. },
  450. "type": "library",
  451. "extra": {
  452. "scenarios": {
  453. "symfony4": {
  454. "require": {
  455. "symfony/console": "^4.0"
  456. },
  457. "config": {
  458. "platform": {
  459. "php": "7.1.3"
  460. }
  461. }
  462. },
  463. "symfony2": {
  464. "require": {
  465. "symfony/console": "^2.8"
  466. },
  467. "require-dev": {
  468. "phpunit/phpunit": "^4.8.36"
  469. },
  470. "remove": [
  471. "php-coveralls/php-coveralls"
  472. ],
  473. "config": {
  474. "platform": {
  475. "php": "5.4.8"
  476. }
  477. },
  478. "scenario-options": {
  479. "create-lockfile": "false"
  480. }
  481. },
  482. "phpunit4": {
  483. "require-dev": {
  484. "phpunit/phpunit": "^4.8.36"
  485. },
  486. "remove": [
  487. "php-coveralls/php-coveralls"
  488. ],
  489. "config": {
  490. "platform": {
  491. "php": "5.4.8"
  492. }
  493. }
  494. }
  495. },
  496. "branch-alias": {
  497. "dev-master": "2.x-dev"
  498. }
  499. },
  500. "autoload": {
  501. "psr-4": {
  502. "Consolidation\\AnnotatedCommand\\": "src"
  503. }
  504. },
  505. "notification-url": "https://packagist.org/downloads/",
  506. "license": [
  507. "MIT"
  508. ],
  509. "authors": [
  510. {
  511. "name": "Greg Anderson",
  512. "email": "greg.1.anderson@greenknowe.org"
  513. }
  514. ],
  515. "description": "Initialize Symfony Console commands from annotated command class methods.",
  516. "time": "2018-12-29T04:43:17+00:00"
  517. },
  518. {
  519. "name": "consolidation/config",
  520. "version": "1.1.1",
  521. "source": {
  522. "type": "git",
  523. "url": "https://github.com/consolidation/config.git",
  524. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c"
  525. },
  526. "dist": {
  527. "type": "zip",
  528. "url": "https://api.github.com/repos/consolidation/config/zipball/925231dfff32f05b787e1fddb265e789b939cf4c",
  529. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c",
  530. "shasum": ""
  531. },
  532. "require": {
  533. "dflydev/dot-access-data": "^1.1.0",
  534. "grasmash/expander": "^1",
  535. "php": ">=5.4.0"
  536. },
  537. "require-dev": {
  538. "g1a/composer-test-scenarios": "^1",
  539. "phpunit/phpunit": "^5",
  540. "satooshi/php-coveralls": "^1.0",
  541. "squizlabs/php_codesniffer": "2.*",
  542. "symfony/console": "^2.5|^3|^4",
  543. "symfony/yaml": "^2.8.11|^3|^4"
  544. },
  545. "suggest": {
  546. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "branch-alias": {
  551. "dev-master": "1.x-dev"
  552. }
  553. },
  554. "autoload": {
  555. "psr-4": {
  556. "Consolidation\\Config\\": "src"
  557. }
  558. },
  559. "notification-url": "https://packagist.org/downloads/",
  560. "license": [
  561. "MIT"
  562. ],
  563. "authors": [
  564. {
  565. "name": "Greg Anderson",
  566. "email": "greg.1.anderson@greenknowe.org"
  567. }
  568. ],
  569. "description": "Provide configuration services for a commandline tool.",
  570. "time": "2018-10-24T17:55:35+00:00"
  571. },
  572. {
  573. "name": "consolidation/log",
  574. "version": "1.1.1",
  575. "source": {
  576. "type": "git",
  577. "url": "https://github.com/consolidation/log.git",
  578. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  579. },
  580. "dist": {
  581. "type": "zip",
  582. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  583. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  584. "shasum": ""
  585. },
  586. "require": {
  587. "php": ">=5.4.5",
  588. "psr/log": "^1.0",
  589. "symfony/console": "^2.8|^3|^4"
  590. },
  591. "require-dev": {
  592. "g1a/composer-test-scenarios": "^3",
  593. "php-coveralls/php-coveralls": "^1",
  594. "phpunit/phpunit": "^6",
  595. "squizlabs/php_codesniffer": "^2"
  596. },
  597. "type": "library",
  598. "extra": {
  599. "scenarios": {
  600. "symfony4": {
  601. "require": {
  602. "symfony/console": "^4.0"
  603. },
  604. "config": {
  605. "platform": {
  606. "php": "7.1.3"
  607. }
  608. }
  609. },
  610. "symfony2": {
  611. "require": {
  612. "symfony/console": "^2.8"
  613. },
  614. "require-dev": {
  615. "phpunit/phpunit": "^4.8.36"
  616. },
  617. "remove": [
  618. "php-coveralls/php-coveralls"
  619. ],
  620. "config": {
  621. "platform": {
  622. "php": "5.4.8"
  623. }
  624. }
  625. },
  626. "phpunit4": {
  627. "require-dev": {
  628. "phpunit/phpunit": "^4.8.36"
  629. },
  630. "remove": [
  631. "php-coveralls/php-coveralls"
  632. ],
  633. "config": {
  634. "platform": {
  635. "php": "5.4.8"
  636. }
  637. }
  638. }
  639. },
  640. "branch-alias": {
  641. "dev-master": "1.x-dev"
  642. }
  643. },
  644. "autoload": {
  645. "psr-4": {
  646. "Consolidation\\Log\\": "src"
  647. }
  648. },
  649. "notification-url": "https://packagist.org/downloads/",
  650. "license": [
  651. "MIT"
  652. ],
  653. "authors": [
  654. {
  655. "name": "Greg Anderson",
  656. "email": "greg.1.anderson@greenknowe.org"
  657. }
  658. ],
  659. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  660. "time": "2019-01-01T17:30:51+00:00"
  661. },
  662. {
  663. "name": "consolidation/output-formatters",
  664. "version": "3.4.0",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/consolidation/output-formatters.git",
  668. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a942680232094c4a5b21c0b7e54c20cce623ae19",
  673. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19",
  674. "shasum": ""
  675. },
  676. "require": {
  677. "dflydev/dot-access-data": "^1.1.0",
  678. "php": ">=5.4.0",
  679. "symfony/console": "^2.8|^3|^4",
  680. "symfony/finder": "^2.5|^3|^4"
  681. },
  682. "require-dev": {
  683. "g1a/composer-test-scenarios": "^2",
  684. "phpunit/phpunit": "^5.7.27",
  685. "satooshi/php-coveralls": "^2",
  686. "squizlabs/php_codesniffer": "^2.7",
  687. "symfony/console": "3.2.3",
  688. "symfony/var-dumper": "^2.8|^3|^4",
  689. "victorjonsson/markdowndocs": "^1.3"
  690. },
  691. "suggest": {
  692. "symfony/var-dumper": "For using the var_dump formatter"
  693. },
  694. "type": "library",
  695. "extra": {
  696. "branch-alias": {
  697. "dev-master": "3.x-dev"
  698. }
  699. },
  700. "autoload": {
  701. "psr-4": {
  702. "Consolidation\\OutputFormatters\\": "src"
  703. }
  704. },
  705. "notification-url": "https://packagist.org/downloads/",
  706. "license": [
  707. "MIT"
  708. ],
  709. "authors": [
  710. {
  711. "name": "Greg Anderson",
  712. "email": "greg.1.anderson@greenknowe.org"
  713. }
  714. ],
  715. "description": "Format text by applying transformations provided by plug-in formatters.",
  716. "time": "2018-10-19T22:35:38+00:00"
  717. },
  718. {
  719. "name": "consolidation/robo",
  720. "version": "1.4.3",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/consolidation/Robo.git",
  724. "reference": "d0b6f516ec940add7abed4f1432d30cca5f8ae0c"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/consolidation/Robo/zipball/d0b6f516ec940add7abed4f1432d30cca5f8ae0c",
  729. "reference": "d0b6f516ec940add7abed4f1432d30cca5f8ae0c",
  730. "shasum": ""
  731. },
  732. "require": {
  733. "consolidation/annotated-command": "^2.10.2",
  734. "consolidation/config": "^1.0.10",
  735. "consolidation/log": "~1",
  736. "consolidation/output-formatters": "^3.1.13",
  737. "consolidation/self-update": "^1",
  738. "grasmash/yaml-expander": "^1.3",
  739. "league/container": "^2.2",
  740. "php": ">=5.5.0",
  741. "symfony/console": "^2.8|^3|^4",
  742. "symfony/event-dispatcher": "^2.5|^3|^4",
  743. "symfony/filesystem": "^2.5|^3|^4",
  744. "symfony/finder": "^2.5|^3|^4",
  745. "symfony/process": "^2.5|^3|^4"
  746. },
  747. "replace": {
  748. "codegyre/robo": "< 1.0"
  749. },
  750. "require-dev": {
  751. "codeception/aspect-mock": "^1|^2.1.1",
  752. "codeception/base": "^2.3.7",
  753. "codeception/verify": "^0.3.2",
  754. "g1a/composer-test-scenarios": "^3",
  755. "goaop/framework": "~2.1.2",
  756. "goaop/parser-reflection": "^1.1.0",
  757. "natxet/cssmin": "3.0.4",
  758. "nikic/php-parser": "^3.1.5",
  759. "patchwork/jsqueeze": "~2",
  760. "pear/archive_tar": "^1.4.2",
  761. "php-coveralls/php-coveralls": "^1",
  762. "phpunit/php-code-coverage": "~2|~4",
  763. "squizlabs/php_codesniffer": "^2.8"
  764. },
  765. "suggest": {
  766. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  767. "natxet/CssMin": "For minifying CSS files in taskMinify",
  768. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  769. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  770. },
  771. "bin": [
  772. "robo"
  773. ],
  774. "type": "library",
  775. "extra": {
  776. "scenarios": {
  777. "symfony4": {
  778. "require": {
  779. "symfony/console": "^4"
  780. },
  781. "config": {
  782. "platform": {
  783. "php": "7.1.3"
  784. }
  785. }
  786. },
  787. "symfony2": {
  788. "require": {
  789. "symfony/console": "^2.8"
  790. },
  791. "remove": [
  792. "goaop/framework"
  793. ],
  794. "config": {
  795. "platform": {
  796. "php": "5.5.9"
  797. }
  798. },
  799. "scenario-options": {
  800. "create-lockfile": "false"
  801. }
  802. }
  803. },
  804. "branch-alias": {
  805. "dev-master": "2.x-dev"
  806. }
  807. },
  808. "autoload": {
  809. "psr-4": {
  810. "Robo\\": "src"
  811. }
  812. },
  813. "notification-url": "https://packagist.org/downloads/",
  814. "license": [
  815. "MIT"
  816. ],
  817. "authors": [
  818. {
  819. "name": "Davert",
  820. "email": "davert.php@resend.cc"
  821. }
  822. ],
  823. "description": "Modern task runner",
  824. "time": "2019-01-02T21:33:28+00:00"
  825. },
  826. {
  827. "name": "consolidation/self-update",
  828. "version": "1.1.5",
  829. "source": {
  830. "type": "git",
  831. "url": "https://github.com/consolidation/self-update.git",
  832. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  833. },
  834. "dist": {
  835. "type": "zip",
  836. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  837. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  838. "shasum": ""
  839. },
  840. "require": {
  841. "php": ">=5.5.0",
  842. "symfony/console": "^2.8|^3|^4",
  843. "symfony/filesystem": "^2.5|^3|^4"
  844. },
  845. "bin": [
  846. "scripts/release"
  847. ],
  848. "type": "library",
  849. "extra": {
  850. "branch-alias": {
  851. "dev-master": "1.x-dev"
  852. }
  853. },
  854. "autoload": {
  855. "psr-4": {
  856. "SelfUpdate\\": "src"
  857. }
  858. },
  859. "notification-url": "https://packagist.org/downloads/",
  860. "license": [
  861. "MIT"
  862. ],
  863. "authors": [
  864. {
  865. "name": "Greg Anderson",
  866. "email": "greg.1.anderson@greenknowe.org"
  867. },
  868. {
  869. "name": "Alexander Menk",
  870. "email": "menk@mestrona.net"
  871. }
  872. ],
  873. "description": "Provides a self:update command for Symfony Console applications.",
  874. "time": "2018-10-28T01:52:03+00:00"
  875. },
  876. {
  877. "name": "consolidation/site-alias",
  878. "version": "1.1.11",
  879. "source": {
  880. "type": "git",
  881. "url": "https://github.com/consolidation/site-alias.git",
  882. "reference": "54ea74ee7dbd54ef356798028ca9a3548cb8df14"
  883. },
  884. "dist": {
  885. "type": "zip",
  886. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/54ea74ee7dbd54ef356798028ca9a3548cb8df14",
  887. "reference": "54ea74ee7dbd54ef356798028ca9a3548cb8df14",
  888. "shasum": ""
  889. },
  890. "require": {
  891. "php": ">=5.5.0"
  892. },
  893. "require-dev": {
  894. "consolidation/robo": "^1.2.3",
  895. "g1a/composer-test-scenarios": "^2",
  896. "knplabs/github-api": "^2.7",
  897. "php-http/guzzle6-adapter": "^1.1",
  898. "phpunit/phpunit": "^5",
  899. "satooshi/php-coveralls": "^2",
  900. "squizlabs/php_codesniffer": "^2.8",
  901. "symfony/console": "^2.8|^3|^4",
  902. "symfony/yaml": "~2.3|^3"
  903. },
  904. "type": "library",
  905. "extra": {
  906. "branch-alias": {
  907. "dev-master": "1.x-dev"
  908. }
  909. },
  910. "autoload": {
  911. "psr-4": {
  912. "Consolidation\\SiteAlias\\": "src"
  913. }
  914. },
  915. "notification-url": "https://packagist.org/downloads/",
  916. "license": [
  917. "MIT"
  918. ],
  919. "authors": [
  920. {
  921. "name": "Moshe Weitzman",
  922. "email": "weitzman@tejasa.com"
  923. },
  924. {
  925. "name": "Greg Anderson",
  926. "email": "greg.1.anderson@greenknowe.org"
  927. }
  928. ],
  929. "description": "Manage alias records for local and remote sites.",
  930. "time": "2018-11-03T05:07:56+00:00"
  931. },
  932. {
  933. "name": "container-interop/container-interop",
  934. "version": "1.2.0",
  935. "source": {
  936. "type": "git",
  937. "url": "https://github.com/container-interop/container-interop.git",
  938. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  939. },
  940. "dist": {
  941. "type": "zip",
  942. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  943. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  944. "shasum": ""
  945. },
  946. "require": {
  947. "psr/container": "^1.0"
  948. },
  949. "type": "library",
  950. "autoload": {
  951. "psr-4": {
  952. "Interop\\Container\\": "src/Interop/Container/"
  953. }
  954. },
  955. "notification-url": "https://packagist.org/downloads/",
  956. "license": [
  957. "MIT"
  958. ],
  959. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  960. "homepage": "https://github.com/container-interop/container-interop",
  961. "time": "2017-02-14T19:40:03+00:00"
  962. },
  963. {
  964. "name": "cweagans/composer-patches",
  965. "version": "1.6.5",
  966. "source": {
  967. "type": "git",
  968. "url": "https://github.com/cweagans/composer-patches.git",
  969. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  970. },
  971. "dist": {
  972. "type": "zip",
  973. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  974. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  975. "shasum": ""
  976. },
  977. "require": {
  978. "composer-plugin-api": "^1.0",
  979. "php": ">=5.3.0"
  980. },
  981. "require-dev": {
  982. "composer/composer": "~1.0",
  983. "phpunit/phpunit": "~4.6"
  984. },
  985. "type": "composer-plugin",
  986. "extra": {
  987. "class": "cweagans\\Composer\\Patches"
  988. },
  989. "autoload": {
  990. "psr-4": {
  991. "cweagans\\Composer\\": "src"
  992. }
  993. },
  994. "notification-url": "https://packagist.org/downloads/",
  995. "license": [
  996. "BSD-3-Clause"
  997. ],
  998. "authors": [
  999. {
  1000. "name": "Cameron Eagans",
  1001. "email": "me@cweagans.net"
  1002. }
  1003. ],
  1004. "description": "Provides a way to patch Composer packages.",
  1005. "time": "2018-05-11T18:00:16+00:00"
  1006. },
  1007. {
  1008. "name": "d3/d3",
  1009. "version": "v3.5.17",
  1010. "dist": {
  1011. "type": "zip",
  1012. "url": "https://github.com/d3/d3/archive/v3.5.17.zip",
  1013. "reference": null,
  1014. "shasum": null
  1015. },
  1016. "type": "drupal-library"
  1017. },
  1018. {
  1019. "name": "dflydev/dot-access-configuration",
  1020. "version": "v1.0.3",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1024. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1029. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1030. "shasum": ""
  1031. },
  1032. "require": {
  1033. "dflydev/dot-access-data": "1.*",
  1034. "dflydev/placeholder-resolver": "1.*",
  1035. "php": ">=5.3.2"
  1036. },
  1037. "require-dev": {
  1038. "symfony/yaml": "~2.1"
  1039. },
  1040. "suggest": {
  1041. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1042. },
  1043. "type": "library",
  1044. "extra": {
  1045. "branch-alias": {
  1046. "dev-master": "1.0-dev"
  1047. }
  1048. },
  1049. "autoload": {
  1050. "psr-0": {
  1051. "Dflydev\\DotAccessConfiguration": "src"
  1052. }
  1053. },
  1054. "notification-url": "https://packagist.org/downloads/",
  1055. "license": [
  1056. "MIT"
  1057. ],
  1058. "authors": [
  1059. {
  1060. "name": "Dragonfly Development Inc.",
  1061. "email": "info@dflydev.com",
  1062. "homepage": "http://dflydev.com"
  1063. },
  1064. {
  1065. "name": "Beau Simensen",
  1066. "email": "beau@dflydev.com",
  1067. "homepage": "http://beausimensen.com"
  1068. }
  1069. ],
  1070. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1071. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1072. "keywords": [
  1073. "config",
  1074. "configuration"
  1075. ],
  1076. "time": "2018-09-08T23:00:17+00:00"
  1077. },
  1078. {
  1079. "name": "dflydev/dot-access-data",
  1080. "version": "v1.1.0",
  1081. "source": {
  1082. "type": "git",
  1083. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1084. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1085. },
  1086. "dist": {
  1087. "type": "zip",
  1088. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1089. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1090. "shasum": ""
  1091. },
  1092. "require": {
  1093. "php": ">=5.3.2"
  1094. },
  1095. "type": "library",
  1096. "extra": {
  1097. "branch-alias": {
  1098. "dev-master": "1.0-dev"
  1099. }
  1100. },
  1101. "autoload": {
  1102. "psr-0": {
  1103. "Dflydev\\DotAccessData": "src"
  1104. }
  1105. },
  1106. "notification-url": "https://packagist.org/downloads/",
  1107. "license": [
  1108. "MIT"
  1109. ],
  1110. "authors": [
  1111. {
  1112. "name": "Dragonfly Development Inc.",
  1113. "email": "info@dflydev.com",
  1114. "homepage": "http://dflydev.com"
  1115. },
  1116. {
  1117. "name": "Beau Simensen",
  1118. "email": "beau@dflydev.com",
  1119. "homepage": "http://beausimensen.com"
  1120. },
  1121. {
  1122. "name": "Carlos Frutos",
  1123. "email": "carlos@kiwing.it",
  1124. "homepage": "https://github.com/cfrutos"
  1125. }
  1126. ],
  1127. "description": "Given a deep data structure, access data by dot notation.",
  1128. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1129. "keywords": [
  1130. "access",
  1131. "data",
  1132. "dot",
  1133. "notation"
  1134. ],
  1135. "time": "2017-01-20T21:14:22+00:00"
  1136. },
  1137. {
  1138. "name": "dflydev/placeholder-resolver",
  1139. "version": "v1.0.2",
  1140. "source": {
  1141. "type": "git",
  1142. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1143. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1144. },
  1145. "dist": {
  1146. "type": "zip",
  1147. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1148. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1149. "shasum": ""
  1150. },
  1151. "require": {
  1152. "php": ">=5.3.2"
  1153. },
  1154. "type": "library",
  1155. "extra": {
  1156. "branch-alias": {
  1157. "dev-master": "1.0-dev"
  1158. }
  1159. },
  1160. "autoload": {
  1161. "psr-0": {
  1162. "Dflydev\\PlaceholderResolver": "src"
  1163. }
  1164. },
  1165. "notification-url": "https://packagist.org/downloads/",
  1166. "license": [
  1167. "MIT"
  1168. ],
  1169. "authors": [
  1170. {
  1171. "name": "Dragonfly Development Inc.",
  1172. "email": "info@dflydev.com",
  1173. "homepage": "http://dflydev.com"
  1174. },
  1175. {
  1176. "name": "Beau Simensen",
  1177. "email": "beau@dflydev.com",
  1178. "homepage": "http://beausimensen.com"
  1179. }
  1180. ],
  1181. "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.",
  1182. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1183. "keywords": [
  1184. "placeholder",
  1185. "resolver"
  1186. ],
  1187. "time": "2012-10-28T21:08:28+00:00"
  1188. },
  1189. {
  1190. "name": "dnoegel/php-xdg-base-dir",
  1191. "version": "0.1",
  1192. "source": {
  1193. "type": "git",
  1194. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1195. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1196. },
  1197. "dist": {
  1198. "type": "zip",
  1199. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1200. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1201. "shasum": ""
  1202. },
  1203. "require": {
  1204. "php": ">=5.3.2"
  1205. },
  1206. "require-dev": {
  1207. "phpunit/phpunit": "@stable"
  1208. },
  1209. "type": "project",
  1210. "autoload": {
  1211. "psr-4": {
  1212. "XdgBaseDir\\": "src/"
  1213. }
  1214. },
  1215. "notification-url": "https://packagist.org/downloads/",
  1216. "license": [
  1217. "MIT"
  1218. ],
  1219. "description": "implementation of xdg base directory specification for php",
  1220. "time": "2014-10-24T07:27:01+00:00"
  1221. },
  1222. {
  1223. "name": "doctrine/annotations",
  1224. "version": "v1.2.7",
  1225. "source": {
  1226. "type": "git",
  1227. "url": "https://github.com/doctrine/annotations.git",
  1228. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  1229. },
  1230. "dist": {
  1231. "type": "zip",
  1232. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1233. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1234. "shasum": ""
  1235. },
  1236. "require": {
  1237. "doctrine/lexer": "1.*",
  1238. "php": ">=5.3.2"
  1239. },
  1240. "require-dev": {
  1241. "doctrine/cache": "1.*",
  1242. "phpunit/phpunit": "4.*"
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "branch-alias": {
  1247. "dev-master": "1.3.x-dev"
  1248. }
  1249. },
  1250. "autoload": {
  1251. "psr-0": {
  1252. "Doctrine\\Common\\Annotations\\": "lib/"
  1253. }
  1254. },
  1255. "notification-url": "https://packagist.org/downloads/",
  1256. "license": [
  1257. "MIT"
  1258. ],
  1259. "authors": [
  1260. {
  1261. "name": "Roman Borschel",
  1262. "email": "roman@code-factory.org"
  1263. },
  1264. {
  1265. "name": "Benjamin Eberlei",
  1266. "email": "kontakt@beberlei.de"
  1267. },
  1268. {
  1269. "name": "Guilherme Blanco",
  1270. "email": "guilhermeblanco@gmail.com"
  1271. },
  1272. {
  1273. "name": "Jonathan Wage",
  1274. "email": "jonwage@gmail.com"
  1275. },
  1276. {
  1277. "name": "Johannes Schmitt",
  1278. "email": "schmittjoh@gmail.com"
  1279. }
  1280. ],
  1281. "description": "Docblock Annotations Parser",
  1282. "homepage": "http://www.doctrine-project.org",
  1283. "keywords": [
  1284. "annotations",
  1285. "docblock",
  1286. "parser"
  1287. ],
  1288. "time": "2015-08-31T12:32:49+00:00"
  1289. },
  1290. {
  1291. "name": "doctrine/cache",
  1292. "version": "v1.6.2",
  1293. "source": {
  1294. "type": "git",
  1295. "url": "https://github.com/doctrine/cache.git",
  1296. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1297. },
  1298. "dist": {
  1299. "type": "zip",
  1300. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1301. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1302. "shasum": ""
  1303. },
  1304. "require": {
  1305. "php": "~5.5|~7.0"
  1306. },
  1307. "conflict": {
  1308. "doctrine/common": ">2.2,<2.4"
  1309. },
  1310. "require-dev": {
  1311. "phpunit/phpunit": "~4.8|~5.0",
  1312. "predis/predis": "~1.0",
  1313. "satooshi/php-coveralls": "~0.6"
  1314. },
  1315. "type": "library",
  1316. "extra": {
  1317. "branch-alias": {
  1318. "dev-master": "1.6.x-dev"
  1319. }
  1320. },
  1321. "autoload": {
  1322. "psr-4": {
  1323. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1324. }
  1325. },
  1326. "notification-url": "https://packagist.org/downloads/",
  1327. "license": [
  1328. "MIT"
  1329. ],
  1330. "authors": [
  1331. {
  1332. "name": "Roman Borschel",
  1333. "email": "roman@code-factory.org"
  1334. },
  1335. {
  1336. "name": "Benjamin Eberlei",
  1337. "email": "kontakt@beberlei.de"
  1338. },
  1339. {
  1340. "name": "Guilherme Blanco",
  1341. "email": "guilhermeblanco@gmail.com"
  1342. },
  1343. {
  1344. "name": "Jonathan Wage",
  1345. "email": "jonwage@gmail.com"
  1346. },
  1347. {
  1348. "name": "Johannes Schmitt",
  1349. "email": "schmittjoh@gmail.com"
  1350. }
  1351. ],
  1352. "description": "Caching library offering an object-oriented API for many cache backends",
  1353. "homepage": "http://www.doctrine-project.org",
  1354. "keywords": [
  1355. "cache",
  1356. "caching"
  1357. ],
  1358. "time": "2017-07-22T12:49:21+00:00"
  1359. },
  1360. {
  1361. "name": "doctrine/collections",
  1362. "version": "v1.4.0",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/doctrine/collections.git",
  1366. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1371. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "php": "^5.6 || ^7.0"
  1376. },
  1377. "require-dev": {
  1378. "doctrine/coding-standard": "~0.1@dev",
  1379. "phpunit/phpunit": "^5.7"
  1380. },
  1381. "type": "library",
  1382. "extra": {
  1383. "branch-alias": {
  1384. "dev-master": "1.3.x-dev"
  1385. }
  1386. },
  1387. "autoload": {
  1388. "psr-0": {
  1389. "Doctrine\\Common\\Collections\\": "lib/"
  1390. }
  1391. },
  1392. "notification-url": "https://packagist.org/downloads/",
  1393. "license": [
  1394. "MIT"
  1395. ],
  1396. "authors": [
  1397. {
  1398. "name": "Roman Borschel",
  1399. "email": "roman@code-factory.org"
  1400. },
  1401. {
  1402. "name": "Benjamin Eberlei",
  1403. "email": "kontakt@beberlei.de"
  1404. },
  1405. {
  1406. "name": "Guilherme Blanco",
  1407. "email": "guilhermeblanco@gmail.com"
  1408. },
  1409. {
  1410. "name": "Jonathan Wage",
  1411. "email": "jonwage@gmail.com"
  1412. },
  1413. {
  1414. "name": "Johannes Schmitt",
  1415. "email": "schmittjoh@gmail.com"
  1416. }
  1417. ],
  1418. "description": "Collections Abstraction library",
  1419. "homepage": "http://www.doctrine-project.org",
  1420. "keywords": [
  1421. "array",
  1422. "collections",
  1423. "iterator"
  1424. ],
  1425. "time": "2017-01-03T10:49:41+00:00"
  1426. },
  1427. {
  1428. "name": "doctrine/common",
  1429. "version": "v2.7.3",
  1430. "source": {
  1431. "type": "git",
  1432. "url": "https://github.com/doctrine/common.git",
  1433. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1434. },
  1435. "dist": {
  1436. "type": "zip",
  1437. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1438. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1439. "shasum": ""
  1440. },
  1441. "require": {
  1442. "doctrine/annotations": "1.*",
  1443. "doctrine/cache": "1.*",
  1444. "doctrine/collections": "1.*",
  1445. "doctrine/inflector": "1.*",
  1446. "doctrine/lexer": "1.*",
  1447. "php": "~5.6|~7.0"
  1448. },
  1449. "require-dev": {
  1450. "phpunit/phpunit": "^5.4.6"
  1451. },
  1452. "type": "library",
  1453. "extra": {
  1454. "branch-alias": {
  1455. "dev-master": "2.7.x-dev"
  1456. }
  1457. },
  1458. "autoload": {
  1459. "psr-4": {
  1460. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1461. }
  1462. },
  1463. "notification-url": "https://packagist.org/downloads/",
  1464. "license": [
  1465. "MIT"
  1466. ],
  1467. "authors": [
  1468. {
  1469. "name": "Roman Borschel",
  1470. "email": "roman@code-factory.org"
  1471. },
  1472. {
  1473. "name": "Benjamin Eberlei",
  1474. "email": "kontakt@beberlei.de"
  1475. },
  1476. {
  1477. "name": "Guilherme Blanco",
  1478. "email": "guilhermeblanco@gmail.com"
  1479. },
  1480. {
  1481. "name": "Jonathan Wage",
  1482. "email": "jonwage@gmail.com"
  1483. },
  1484. {
  1485. "name": "Johannes Schmitt",
  1486. "email": "schmittjoh@gmail.com"
  1487. }
  1488. ],
  1489. "description": "Common Library for Doctrine projects",
  1490. "homepage": "http://www.doctrine-project.org",
  1491. "keywords": [
  1492. "annotations",
  1493. "collections",
  1494. "eventmanager",
  1495. "persistence",
  1496. "spl"
  1497. ],
  1498. "time": "2017-07-22T08:35:12+00:00"
  1499. },
  1500. {
  1501. "name": "doctrine/inflector",
  1502. "version": "v1.2.0",
  1503. "source": {
  1504. "type": "git",
  1505. "url": "https://github.com/doctrine/inflector.git",
  1506. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1507. },
  1508. "dist": {
  1509. "type": "zip",
  1510. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1511. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1512. "shasum": ""
  1513. },
  1514. "require": {
  1515. "php": "^7.0"
  1516. },
  1517. "require-dev": {
  1518. "phpunit/phpunit": "^6.2"
  1519. },
  1520. "type": "library",
  1521. "extra": {
  1522. "branch-alias": {
  1523. "dev-master": "1.2.x-dev"
  1524. }
  1525. },
  1526. "autoload": {
  1527. "psr-4": {
  1528. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1529. }
  1530. },
  1531. "notification-url": "https://packagist.org/downloads/",
  1532. "license": [
  1533. "MIT"
  1534. ],
  1535. "authors": [
  1536. {
  1537. "name": "Roman Borschel",
  1538. "email": "roman@code-factory.org"
  1539. },
  1540. {
  1541. "name": "Benjamin Eberlei",
  1542. "email": "kontakt@beberlei.de"
  1543. },
  1544. {
  1545. "name": "Guilherme Blanco",
  1546. "email": "guilhermeblanco@gmail.com"
  1547. },
  1548. {
  1549. "name": "Jonathan Wage",
  1550. "email": "jonwage@gmail.com"
  1551. },
  1552. {
  1553. "name": "Johannes Schmitt",
  1554. "email": "schmittjoh@gmail.com"
  1555. }
  1556. ],
  1557. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1558. "homepage": "http://www.doctrine-project.org",
  1559. "keywords": [
  1560. "inflection",
  1561. "pluralize",
  1562. "singularize",
  1563. "string"
  1564. ],
  1565. "time": "2017-07-22T12:18:28+00:00"
  1566. },
  1567. {
  1568. "name": "doctrine/lexer",
  1569. "version": "v1.0.1",
  1570. "source": {
  1571. "type": "git",
  1572. "url": "https://github.com/doctrine/lexer.git",
  1573. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1574. },
  1575. "dist": {
  1576. "type": "zip",
  1577. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1578. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1579. "shasum": ""
  1580. },
  1581. "require": {
  1582. "php": ">=5.3.2"
  1583. },
  1584. "type": "library",
  1585. "extra": {
  1586. "branch-alias": {
  1587. "dev-master": "1.0.x-dev"
  1588. }
  1589. },
  1590. "autoload": {
  1591. "psr-0": {
  1592. "Doctrine\\Common\\Lexer\\": "lib/"
  1593. }
  1594. },
  1595. "notification-url": "https://packagist.org/downloads/",
  1596. "license": [
  1597. "MIT"
  1598. ],
  1599. "authors": [
  1600. {
  1601. "name": "Roman Borschel",
  1602. "email": "roman@code-factory.org"
  1603. },
  1604. {
  1605. "name": "Guilherme Blanco",
  1606. "email": "guilhermeblanco@gmail.com"
  1607. },
  1608. {
  1609. "name": "Johannes Schmitt",
  1610. "email": "schmittjoh@gmail.com"
  1611. }
  1612. ],
  1613. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1614. "homepage": "http://www.doctrine-project.org",
  1615. "keywords": [
  1616. "lexer",
  1617. "parser"
  1618. ],
  1619. "time": "2014-09-09T13:34:57+00:00"
  1620. },
  1621. {
  1622. "name": "drupal/actions_permissions",
  1623. "version": "2.4.0",
  1624. "require": {
  1625. "drupal/core": "*",
  1626. "drupal/views_bulk_operations": "self.version"
  1627. },
  1628. "type": "metapackage",
  1629. "extra": {
  1630. "branch-alias": {
  1631. "dev-2.x": "2.x-dev"
  1632. },
  1633. "drupal": {
  1634. "version": "8.x-2.4",
  1635. "datestamp": "1530516821",
  1636. "security-coverage": {
  1637. "status": "covered",
  1638. "message": "Covered by Drupal's security advisory policy"
  1639. }
  1640. }
  1641. },
  1642. "notification-url": "https://packages.drupal.org/8/downloads",
  1643. "license": [
  1644. "GPL-2.0-or-later"
  1645. ],
  1646. "authors": [
  1647. {
  1648. "name": "Graber",
  1649. "homepage": "https://www.drupal.org/user/1599440"
  1650. },
  1651. {
  1652. "name": "Jon Pugh",
  1653. "homepage": "https://www.drupal.org/user/17028"
  1654. },
  1655. {
  1656. "name": "bojanz",
  1657. "homepage": "https://www.drupal.org/user/86106"
  1658. },
  1659. {
  1660. "name": "infojunkie",
  1661. "homepage": "https://www.drupal.org/user/48424"
  1662. },
  1663. {
  1664. "name": "joelpittet",
  1665. "homepage": "https://www.drupal.org/user/160302"
  1666. }
  1667. ],
  1668. "description": "Adds access permissions on all actions allowing admins to restrict access on a per-role basis.",
  1669. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  1670. "support": {
  1671. "source": "http://cgit.drupalcode.org/views_bulk_operations"
  1672. }
  1673. },
  1674. {
  1675. "name": "drupal/address",
  1676. "version": "1.4.0",
  1677. "source": {
  1678. "type": "git",
  1679. "url": "https://git.drupal.org/project/address",
  1680. "reference": "8.x-1.4"
  1681. },
  1682. "dist": {
  1683. "type": "zip",
  1684. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.4.zip",
  1685. "reference": "8.x-1.4",
  1686. "shasum": "143e426be73418c719c6bddd5fb81c610604e860"
  1687. },
  1688. "require": {
  1689. "commerceguys/addressing": "^1.0.0",
  1690. "drupal/core": "*"
  1691. },
  1692. "require-dev": {
  1693. "drupal/token": "*"
  1694. },
  1695. "type": "drupal-module",
  1696. "extra": {
  1697. "branch-alias": {
  1698. "dev-1.x": "1.x-dev"
  1699. },
  1700. "drupal": {
  1701. "version": "8.x-1.4",
  1702. "datestamp": "1527081784",
  1703. "security-coverage": {
  1704. "status": "covered",
  1705. "message": "Covered by Drupal's security advisory policy"
  1706. }
  1707. }
  1708. },
  1709. "notification-url": "https://packages.drupal.org/8/downloads",
  1710. "license": [
  1711. "GPL-2.0+"
  1712. ],
  1713. "authors": [
  1714. {
  1715. "name": "bojanz",
  1716. "homepage": "https://www.drupal.org/user/86106"
  1717. },
  1718. {
  1719. "name": "googletorp",
  1720. "homepage": "https://www.drupal.org/user/386230"
  1721. },
  1722. {
  1723. "name": "rszrama",
  1724. "homepage": "https://www.drupal.org/user/49344"
  1725. }
  1726. ],
  1727. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1728. "homepage": "http://drupal.org/project/address",
  1729. "support": {
  1730. "source": "http://cgit.drupalcode.org/address"
  1731. }
  1732. },
  1733. {
  1734. "name": "drupal/admin_toolbar",
  1735. "version": "1.25.0",
  1736. "source": {
  1737. "type": "git",
  1738. "url": "https://git.drupal.org/project/admin_toolbar",
  1739. "reference": "8.x-1.25"
  1740. },
  1741. "dist": {
  1742. "type": "zip",
  1743. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.25.zip",
  1744. "reference": "8.x-1.25",
  1745. "shasum": "bc24929d5e49932518797c1228e647e98b03542b"
  1746. },
  1747. "require": {
  1748. "drupal/core": "*"
  1749. },
  1750. "type": "drupal-module",
  1751. "extra": {
  1752. "branch-alias": {
  1753. "dev-1.x": "1.x-dev"
  1754. },
  1755. "drupal": {
  1756. "version": "8.x-1.25",
  1757. "datestamp": "1542915384",
  1758. "security-coverage": {
  1759. "status": "covered",
  1760. "message": "Covered by Drupal's security advisory policy"
  1761. }
  1762. }
  1763. },
  1764. "notification-url": "https://packages.drupal.org/8/downloads",
  1765. "license": [
  1766. "GPL-2.0+"
  1767. ],
  1768. "authors": [
  1769. {
  1770. "name": "Wilfrid Roze (eme)",
  1771. "homepage": "https://www.drupal.org/u/eme",
  1772. "role": "Maintainer"
  1773. },
  1774. {
  1775. "name": "Romain Jarraud (romainj)",
  1776. "homepage": "https://www.drupal.org/u/romainj",
  1777. "role": "Maintainer"
  1778. },
  1779. {
  1780. "name": "Adrian Cid Almaguer (adriancid)",
  1781. "homepage": "https://www.drupal.org/u/adriancid",
  1782. "email": "adriancid@gmail.com",
  1783. "role": "Maintainer"
  1784. },
  1785. {
  1786. "name": "Mohamed Anis Taktak (matio89)",
  1787. "homepage": "https://www.drupal.org/u/matio89",
  1788. "role": "Maintainer"
  1789. },
  1790. {
  1791. "name": "fethi.krout",
  1792. "homepage": "https://www.drupal.org/user/3206765"
  1793. },
  1794. {
  1795. "name": "matio89",
  1796. "homepage": "https://www.drupal.org/user/2320090"
  1797. },
  1798. {
  1799. "name": "romainj",
  1800. "homepage": "https://www.drupal.org/user/370706"
  1801. }
  1802. ],
  1803. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1804. "homepage": "http://drupal.org/project/admin_toolbar",
  1805. "keywords": [
  1806. "Drupal",
  1807. "Toolbar"
  1808. ],
  1809. "support": {
  1810. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1811. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1812. }
  1813. },
  1814. {
  1815. "name": "drupal/adminimal_theme",
  1816. "version": "1.4.0",
  1817. "source": {
  1818. "type": "git",
  1819. "url": "https://git.drupal.org/project/adminimal_theme",
  1820. "reference": "8.x-1.4"
  1821. },
  1822. "dist": {
  1823. "type": "zip",
  1824. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.4.zip",
  1825. "reference": "8.x-1.4",
  1826. "shasum": "af9cbce473d0bd9590889992200ed175cb7e1159"
  1827. },
  1828. "require": {
  1829. "drupal/core": "~8.0"
  1830. },
  1831. "type": "drupal-theme",
  1832. "extra": {
  1833. "branch-alias": {
  1834. "dev-1.x": "1.x-dev"
  1835. },
  1836. "drupal": {
  1837. "version": "8.x-1.4",
  1838. "datestamp": "1547996580",
  1839. "security-coverage": {
  1840. "status": "covered",
  1841. "message": "Covered by Drupal's security advisory policy"
  1842. }
  1843. }
  1844. },
  1845. "notification-url": "https://packages.drupal.org/8/downloads",
  1846. "license": [
  1847. "GPL-2.0+"
  1848. ],
  1849. "authors": [
  1850. {
  1851. "name": "ANDiTKO",
  1852. "homepage": "https://www.drupal.org/user/1428124"
  1853. },
  1854. {
  1855. "name": "andrey.troeglazov",
  1856. "homepage": "https://www.drupal.org/user/3145389"
  1857. },
  1858. {
  1859. "name": "realityloop",
  1860. "homepage": "https://www.drupal.org/user/139189"
  1861. }
  1862. ],
  1863. "description": "Drupal administration theme with modern minimalist design.",
  1864. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1865. "support": {
  1866. "source": "http://cgit.drupalcode.org/adminimal_theme",
  1867. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1868. }
  1869. },
  1870. {
  1871. "name": "drupal/advanced_text_formatter",
  1872. "version": "1.0.0-beta3",
  1873. "source": {
  1874. "type": "git",
  1875. "url": "https://git.drupal.org/project/advanced_text_formatter",
  1876. "reference": "8.x-1.0-beta3"
  1877. },
  1878. "dist": {
  1879. "type": "zip",
  1880. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-8.x-1.0-beta3.zip",
  1881. "reference": "8.x-1.0-beta3",
  1882. "shasum": "35e0154440ba7836dda70b8627f156872da75302"
  1883. },
  1884. "require": {
  1885. "drupal/core": "*"
  1886. },
  1887. "type": "drupal-module",
  1888. "extra": {
  1889. "branch-alias": {
  1890. "dev-1.x": "1.x-dev"
  1891. },
  1892. "drupal": {
  1893. "version": "8.x-1.0-beta3",
  1894. "datestamp": "1445163539",
  1895. "security-coverage": {
  1896. "status": "not-covered",
  1897. "message": "Beta releases are not covered by Drupal security advisories."
  1898. }
  1899. }
  1900. },
  1901. "notification-url": "https://packages.drupal.org/8/downloads",
  1902. "license": [
  1903. "GPL-2.0-or-later"
  1904. ],
  1905. "authors": [
  1906. {
  1907. "name": "thmnhat",
  1908. "homepage": "https://www.drupal.org/user/998946"
  1909. }
  1910. ],
  1911. "description": "Provides an additional formatter for text field, text area and text format.",
  1912. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1913. "support": {
  1914. "source": "http://cgit.drupalcode.org/advanced_text_formatter"
  1915. }
  1916. },
  1917. {
  1918. "name": "drupal/audiofield",
  1919. "version": "1.8.0",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://git.drupal.org/project/audiofield",
  1923. "reference": "8.x-1.8"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.8.zip",
  1928. "reference": "8.x-1.8",
  1929. "shasum": "a2e4c5b7f81ec6d3d015b22a63560fd1a8f56682"
  1930. },
  1931. "require": {
  1932. "drupal/core": "~8.0"
  1933. },
  1934. "type": "drupal-module",
  1935. "extra": {
  1936. "branch-alias": {
  1937. "dev-1.x": "1.x-dev"
  1938. },
  1939. "drupal": {
  1940. "version": "8.x-1.8",
  1941. "datestamp": "1543249980",
  1942. "security-coverage": {
  1943. "status": "covered",
  1944. "message": "Covered by Drupal's security advisory policy"
  1945. }
  1946. },
  1947. "drush": {
  1948. "services": {
  1949. "drush.services.yml": "^9"
  1950. }
  1951. }
  1952. },
  1953. "notification-url": "https://packages.drupal.org/8/downloads",
  1954. "license": [
  1955. "GPL-2.0+"
  1956. ],
  1957. "authors": [
  1958. {
  1959. "name": "Daniel Moberly",
  1960. "homepage": "https://www.drupal.org/u/danielmoberly",
  1961. "role": "Maintainer"
  1962. },
  1963. {
  1964. "name": "josipsaric",
  1965. "homepage": "https://www.drupal.org/user/3063287"
  1966. },
  1967. {
  1968. "name": "tamerzg",
  1969. "homepage": "https://www.drupal.org/user/464564"
  1970. }
  1971. ],
  1972. "description": "AudioField Module",
  1973. "homepage": "https://www.drupal.org/project/audiofield",
  1974. "support": {
  1975. "source": "http://cgit.drupalcode.org/audiofield",
  1976. "issues": "https://www.drupal.org/project/issues/audiofield"
  1977. }
  1978. },
  1979. {
  1980. "name": "drupal/autocomplete_deluxe",
  1981. "version": "1.0.0-beta1",
  1982. "source": {
  1983. "type": "git",
  1984. "url": "https://git.drupal.org/project/autocomplete_deluxe",
  1985. "reference": "8.x-1.0-beta1"
  1986. },
  1987. "dist": {
  1988. "type": "zip",
  1989. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-8.x-1.0-beta1.zip",
  1990. "reference": "8.x-1.0-beta1",
  1991. "shasum": "f59d928761a01a055c2240155a84b1d7286fe666"
  1992. },
  1993. "require": {
  1994. "drupal/core": "~8.0"
  1995. },
  1996. "type": "drupal-module",
  1997. "extra": {
  1998. "branch-alias": {
  1999. "dev-1.x": "1.x-dev"
  2000. },
  2001. "drupal": {
  2002. "version": "8.x-1.0-beta1",
  2003. "datestamp": "1502921644",
  2004. "security-coverage": {
  2005. "status": "not-covered",
  2006. "message": "Beta releases are not covered by Drupal security advisories."
  2007. }
  2008. }
  2009. },
  2010. "notification-url": "https://packages.drupal.org/8/downloads",
  2011. "license": [
  2012. "GPL-2.0+"
  2013. ],
  2014. "authors": [
  2015. {
  2016. "name": "Edward Chan",
  2017. "homepage": "https://www.drupal.org/user/1781334"
  2018. },
  2019. {
  2020. "name": "edwardchiapet",
  2021. "homepage": "https://www.drupal.org/user/2354784"
  2022. },
  2023. {
  2024. "name": "mpriscella",
  2025. "homepage": "https://www.drupal.org/user/2354820"
  2026. },
  2027. {
  2028. "name": "sepgil",
  2029. "homepage": "https://www.drupal.org/user/512828"
  2030. }
  2031. ],
  2032. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2033. "homepage": "https://www.drupal.org/sandbox/edwardchan/2888186",
  2034. "support": {
  2035. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2036. "issues": "https://www.drupal.org/project/issues/2888186"
  2037. }
  2038. },
  2039. {
  2040. "name": "drupal/autologout",
  2041. "version": "1.0.0",
  2042. "source": {
  2043. "type": "git",
  2044. "url": "https://git.drupal.org/project/autologout",
  2045. "reference": "8.x-1.0"
  2046. },
  2047. "dist": {
  2048. "type": "zip",
  2049. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2050. "reference": "8.x-1.0",
  2051. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2052. },
  2053. "require": {
  2054. "drupal/core": "~8.0"
  2055. },
  2056. "type": "drupal-module",
  2057. "extra": {
  2058. "branch-alias": {
  2059. "dev-1.x": "1.x-dev"
  2060. },
  2061. "drupal": {
  2062. "version": "8.x-1.0",
  2063. "datestamp": "1494237185",
  2064. "security-coverage": {
  2065. "status": "covered",
  2066. "message": "Covered by Drupal's security advisory policy"
  2067. }
  2068. }
  2069. },
  2070. "notification-url": "https://packages.drupal.org/8/downloads",
  2071. "license": [
  2072. "GPL-2.0+"
  2073. ],
  2074. "authors": [
  2075. {
  2076. "name": "AjK",
  2077. "homepage": "https://www.drupal.org/user/39030"
  2078. },
  2079. {
  2080. "name": "AjitS",
  2081. "homepage": "https://www.drupal.org/user/981944"
  2082. },
  2083. {
  2084. "name": "dandrews",
  2085. "homepage": "https://www.drupal.org/user/2014490"
  2086. },
  2087. {
  2088. "name": "johnennew",
  2089. "homepage": "https://www.drupal.org/user/1150042"
  2090. },
  2091. {
  2092. "name": "jrglasgow",
  2093. "homepage": "https://www.drupal.org/user/36590"
  2094. },
  2095. {
  2096. "name": "kmasood",
  2097. "homepage": "https://www.drupal.org/user/1262860"
  2098. },
  2099. {
  2100. "name": "levelos",
  2101. "homepage": "https://www.drupal.org/user/54135"
  2102. },
  2103. {
  2104. "name": "prabeen.giri",
  2105. "homepage": "https://www.drupal.org/user/913078"
  2106. },
  2107. {
  2108. "name": "str8",
  2109. "homepage": "https://www.drupal.org/user/2865063"
  2110. }
  2111. ],
  2112. "description": "Adds automated timed logout.",
  2113. "homepage": "http://drupal.org/project/autologout",
  2114. "support": {
  2115. "source": "http://cgit.drupalcode.org/autologout"
  2116. }
  2117. },
  2118. {
  2119. "name": "drupal/better_exposed_filters",
  2120. "version": "3.0.0-alpha5",
  2121. "source": {
  2122. "type": "git",
  2123. "url": "https://git.drupal.org/project/better_exposed_filters",
  2124. "reference": "8.x-3.0-alpha5"
  2125. },
  2126. "dist": {
  2127. "type": "zip",
  2128. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-3.0-alpha5.zip",
  2129. "reference": "8.x-3.0-alpha5",
  2130. "shasum": "8dbcff4b3bcd24f753d5d1ba6a523442a3690a76"
  2131. },
  2132. "require": {
  2133. "drupal/core": "*"
  2134. },
  2135. "type": "drupal-module",
  2136. "extra": {
  2137. "branch-alias": {
  2138. "dev-3.x": "3.x-dev"
  2139. },
  2140. "drupal": {
  2141. "version": "8.x-3.0-alpha5",
  2142. "datestamp": "1540513084",
  2143. "security-coverage": {
  2144. "status": "not-covered",
  2145. "message": "Alpha releases are not covered by Drupal security advisories."
  2146. }
  2147. }
  2148. },
  2149. "notification-url": "https://packages.drupal.org/8/downloads",
  2150. "license": [
  2151. "GPL-2.0-or-later"
  2152. ],
  2153. "authors": [
  2154. {
  2155. "name": "chr.fritsch",
  2156. "homepage": "https://www.drupal.org/user/2103716"
  2157. },
  2158. {
  2159. "name": "jkopel",
  2160. "homepage": "https://www.drupal.org/user/66207"
  2161. },
  2162. {
  2163. "name": "mikeker",
  2164. "homepage": "https://www.drupal.org/user/192273"
  2165. },
  2166. {
  2167. "name": "mortona2k",
  2168. "homepage": "https://www.drupal.org/user/1029484"
  2169. },
  2170. {
  2171. "name": "rlhawk",
  2172. "homepage": "https://www.drupal.org/user/352283"
  2173. }
  2174. ],
  2175. "description": "Provides advanced options (such as links, checkboxes, or jQueryUI widgets) for exposed Views elements.",
  2176. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2177. "support": {
  2178. "source": "http://cgit.drupalcode.org/better_exposed_filters"
  2179. }
  2180. },
  2181. {
  2182. "name": "drupal/better_messages",
  2183. "version": "1.0.0-alpha2",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://git.drupal.org/project/better_messages",
  2187. "reference": "8.x-1.0-alpha2"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2192. "reference": "8.x-1.0-alpha2",
  2193. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2194. },
  2195. "require": {
  2196. "drupal/core": "~8.0"
  2197. },
  2198. "type": "drupal-module",
  2199. "extra": {
  2200. "branch-alias": {
  2201. "dev-1.x": "1.x-dev"
  2202. },
  2203. "drupal": {
  2204. "version": "8.x-1.0-alpha2",
  2205. "datestamp": "1517663880",
  2206. "security-coverage": {
  2207. "status": "not-covered",
  2208. "message": "Alpha releases are not covered by Drupal security advisories."
  2209. }
  2210. }
  2211. },
  2212. "notification-url": "https://packages.drupal.org/8/downloads",
  2213. "license": [
  2214. "GPL-2.0-or-later"
  2215. ],
  2216. "authors": [
  2217. {
  2218. "name": "Mohammed J. Razem",
  2219. "homepage": "https://www.drupal.org/user/255384"
  2220. },
  2221. {
  2222. "name": "bucefal91",
  2223. "homepage": "https://www.drupal.org/user/504128"
  2224. },
  2225. {
  2226. "name": "le72",
  2227. "homepage": "https://www.drupal.org/user/1866896"
  2228. }
  2229. ],
  2230. "description": "Better Messages module for Drupal 8.",
  2231. "homepage": "https://www.drupal.org/project/better_messages",
  2232. "support": {
  2233. "source": "http://cgit.drupalcode.org/better_messages"
  2234. }
  2235. },
  2236. {
  2237. "name": "drupal/betterlogin",
  2238. "version": "1.2.0",
  2239. "source": {
  2240. "type": "git",
  2241. "url": "https://git.drupal.org/project/betterlogin",
  2242. "reference": "8.x-1.2"
  2243. },
  2244. "dist": {
  2245. "type": "zip",
  2246. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.2.zip",
  2247. "reference": "8.x-1.2",
  2248. "shasum": "6b9ab142bf563685346d2b4e2db46ada209ed6ad"
  2249. },
  2250. "require": {
  2251. "drupal/core": "~8.0"
  2252. },
  2253. "type": "drupal-module",
  2254. "extra": {
  2255. "branch-alias": {
  2256. "dev-1.x": "1.x-dev"
  2257. },
  2258. "drupal": {
  2259. "version": "8.x-1.2",
  2260. "datestamp": "1515587585",
  2261. "security-coverage": {
  2262. "status": "covered",
  2263. "message": "Covered by Drupal's security advisory policy"
  2264. }
  2265. }
  2266. },
  2267. "notification-url": "https://packages.drupal.org/8/downloads",
  2268. "license": [
  2269. "GPL-2.0-or-later"
  2270. ],
  2271. "authors": [
  2272. {
  2273. "name": "Yogesh Pawar",
  2274. "homepage": "https://www.drupal.org/user/2922907"
  2275. },
  2276. {
  2277. "name": "theamoeba",
  2278. "homepage": "https://www.drupal.org/user/251700"
  2279. }
  2280. ],
  2281. "description": "Make the login screens better :)",
  2282. "homepage": "https://www.drupal.org/project/betterlogin",
  2283. "support": {
  2284. "source": "http://cgit.drupalcode.org/betterlogin"
  2285. }
  2286. },
  2287. {
  2288. "name": "drupal/block_class",
  2289. "version": "1.0.0",
  2290. "source": {
  2291. "type": "git",
  2292. "url": "https://git.drupal.org/project/block_class",
  2293. "reference": "8.x-1.0"
  2294. },
  2295. "dist": {
  2296. "type": "zip",
  2297. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.0.zip",
  2298. "reference": "8.x-1.0",
  2299. "shasum": "1a691999d051a3c010c2b6f2df73954ee02f424d"
  2300. },
  2301. "require": {
  2302. "drupal/core": "*"
  2303. },
  2304. "type": "drupal-module",
  2305. "extra": {
  2306. "branch-alias": {
  2307. "dev-1.x": "1.x-dev"
  2308. },
  2309. "drupal": {
  2310. "version": "8.x-1.0",
  2311. "datestamp": "1531440821",
  2312. "security-coverage": {
  2313. "status": "covered",
  2314. "message": "Covered by Drupal's security advisory policy"
  2315. }
  2316. }
  2317. },
  2318. "notification-url": "https://packages.drupal.org/8/downloads",
  2319. "license": [
  2320. "GPL-2.0+"
  2321. ],
  2322. "authors": [
  2323. {
  2324. "name": "Todd Nienkerk",
  2325. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2326. "role": "Maintainer"
  2327. },
  2328. {
  2329. "name": "Renato Gonçalves (RenatoG)",
  2330. "homepage": "https://www.drupal.org/u/RenatoG",
  2331. "email": "renatog@ciandt.com",
  2332. "role": "Maintainer"
  2333. },
  2334. {
  2335. "name": "Aaron Stanush",
  2336. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2337. "role": "Maintainer"
  2338. },
  2339. {
  2340. "name": "David Suissa (DYdave)",
  2341. "homepage": "https://www.drupal.org/u/DYdave",
  2342. "role": "Maintainer"
  2343. },
  2344. {
  2345. "name": "Four Kitchens",
  2346. "homepage": "https://www.drupal.org/user/358502",
  2347. "role": "Maintainer"
  2348. },
  2349. {
  2350. "name": "berenddeboer",
  2351. "homepage": "https://www.drupal.org/u/berenddeboer",
  2352. "role": "Maintainer"
  2353. },
  2354. {
  2355. "name": "elliotttf",
  2356. "homepage": "https://www.drupal.org/u/elliotttf",
  2357. "role": "Maintainer"
  2358. },
  2359. {
  2360. "name": "Michal Minecki (mirzu)",
  2361. "homepage": "https://www.drupal.org/u/mirzu",
  2362. "role": "Maintainer"
  2363. },
  2364. {
  2365. "name": "Patrick Coffey (pcoffey)",
  2366. "homepage": "https://www.drupal.org/u/pcoffey",
  2367. "role": "Maintainer"
  2368. },
  2369. {
  2370. "name": "Taylor Smith (tsmith512)",
  2371. "homepage": "https://www.drupal.org/u/tsmith512",
  2372. "role": "Maintainer"
  2373. },
  2374. {
  2375. "name": "tsmith512",
  2376. "homepage": "https://www.drupal.org/user/2031446"
  2377. }
  2378. ],
  2379. "description": "Allows assigning classes to Blocks.",
  2380. "homepage": "https://www.drupal.org/project/block_class",
  2381. "support": {
  2382. "source": "https://cgit.drupalcode.org/block_class",
  2383. "issues": "https://www.drupal.org/project/issues/block_class",
  2384. "irc": "irc://irc.freenode.org/drupal-contribute"
  2385. }
  2386. },
  2387. {
  2388. "name": "drupal/bulkdelete",
  2389. "version": "dev-1.x",
  2390. "source": {
  2391. "type": "git",
  2392. "url": "https://git.drupal.org/project/bulkdelete",
  2393. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2394. },
  2395. "require": {
  2396. "drupal/core": "~8.0"
  2397. },
  2398. "type": "drupal-module",
  2399. "extra": {
  2400. "branch-alias": {
  2401. "dev-1.x": "1.x-dev"
  2402. },
  2403. "drupal": {
  2404. "version": "8.x-1.x-dev",
  2405. "datestamp": "1495565583",
  2406. "security-coverage": {
  2407. "status": "not-covered",
  2408. "message": "Dev releases are not covered by Drupal security advisories."
  2409. }
  2410. }
  2411. },
  2412. "notification-url": "https://packages.drupal.org/8/downloads",
  2413. "license": [
  2414. "GPL-2.0-or-later"
  2415. ],
  2416. "authors": [
  2417. {
  2418. "name": "Kars-T",
  2419. "homepage": "https://www.drupal.org/user/224499"
  2420. },
  2421. {
  2422. "name": "Rahul Seth",
  2423. "homepage": "https://www.drupal.org/user/2694359"
  2424. },
  2425. {
  2426. "name": "adriancid",
  2427. "homepage": "https://www.drupal.org/user/1962106"
  2428. },
  2429. {
  2430. "name": "robertDouglass",
  2431. "homepage": "https://www.drupal.org/user/5449"
  2432. }
  2433. ],
  2434. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2435. "homepage": "https://www.drupal.org/project/bulkdelete",
  2436. "support": {
  2437. "source": "http://cgit.drupalcode.org/bulkdelete"
  2438. },
  2439. "time": "2017-05-23T18:49:48+00:00"
  2440. },
  2441. {
  2442. "name": "drupal/computed_field",
  2443. "version": "2.0.0-beta1",
  2444. "source": {
  2445. "type": "git",
  2446. "url": "https://git.drupal.org/project/computed_field",
  2447. "reference": "8.x-2.0-beta1"
  2448. },
  2449. "dist": {
  2450. "type": "zip",
  2451. "url": "https://ftp.drupal.org/files/projects/computed_field-8.x-2.0-beta1.zip",
  2452. "reference": "8.x-2.0-beta1",
  2453. "shasum": "a918cb85b7865f15cc5a5c327e37964e53545161"
  2454. },
  2455. "require": {
  2456. "drupal/core": "~8.0"
  2457. },
  2458. "type": "drupal-module",
  2459. "extra": {
  2460. "branch-alias": {
  2461. "dev-2.x": "2.x-dev"
  2462. },
  2463. "drupal": {
  2464. "version": "8.x-2.0-beta1",
  2465. "datestamp": "1546032480",
  2466. "security-coverage": {
  2467. "status": "not-covered",
  2468. "message": "Beta releases are not covered by Drupal security advisories."
  2469. }
  2470. }
  2471. },
  2472. "notification-url": "https://packages.drupal.org/8/downloads",
  2473. "license": [
  2474. "GPL-2.0-or-later"
  2475. ],
  2476. "authors": [
  2477. {
  2478. "name": "Agileware",
  2479. "homepage": "https://www.drupal.org/user/89106"
  2480. },
  2481. {
  2482. "name": "Moonshine",
  2483. "homepage": "https://www.drupal.org/user/133705"
  2484. },
  2485. {
  2486. "name": "Pedro Lozano",
  2487. "homepage": "https://www.drupal.org/user/123766"
  2488. },
  2489. {
  2490. "name": "colan",
  2491. "homepage": "https://www.drupal.org/user/58704"
  2492. },
  2493. {
  2494. "name": "dealancer",
  2495. "homepage": "https://www.drupal.org/user/243418"
  2496. },
  2497. {
  2498. "name": "markus_petrux",
  2499. "homepage": "https://www.drupal.org/user/39593"
  2500. },
  2501. {
  2502. "name": "nickcaballero",
  2503. "homepage": "https://www.drupal.org/user/588336"
  2504. },
  2505. {
  2506. "name": "ram4nd",
  2507. "homepage": "https://www.drupal.org/user/601534"
  2508. }
  2509. ],
  2510. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2511. "homepage": "https://www.drupal.org/project/computed_field",
  2512. "support": {
  2513. "source": "http://cgit.drupalcode.org/computed_field"
  2514. }
  2515. },
  2516. {
  2517. "name": "drupal/config_devel",
  2518. "version": "1.2.0",
  2519. "source": {
  2520. "type": "git",
  2521. "url": "https://git.drupal.org/project/config_devel",
  2522. "reference": "8.x-1.2"
  2523. },
  2524. "dist": {
  2525. "type": "zip",
  2526. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2527. "reference": "8.x-1.2",
  2528. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2529. },
  2530. "require": {
  2531. "drupal/core": "~8.0"
  2532. },
  2533. "type": "drupal-module",
  2534. "extra": {
  2535. "branch-alias": {
  2536. "dev-1.x": "1.x-dev"
  2537. },
  2538. "drupal": {
  2539. "version": "8.x-1.2",
  2540. "datestamp": "1510843084",
  2541. "security-coverage": {
  2542. "status": "covered",
  2543. "message": "Covered by Drupal's security advisory policy"
  2544. }
  2545. }
  2546. },
  2547. "notification-url": "https://packages.drupal.org/8/downloads",
  2548. "license": [
  2549. "GPL-2.0+"
  2550. ],
  2551. "authors": [
  2552. {
  2553. "name": "alexpott",
  2554. "homepage": "https://www.drupal.org/user/157725"
  2555. },
  2556. {
  2557. "name": "benjy",
  2558. "homepage": "https://www.drupal.org/user/1852732"
  2559. },
  2560. {
  2561. "name": "chx",
  2562. "homepage": "https://www.drupal.org/user/9446"
  2563. },
  2564. {
  2565. "name": "joachim",
  2566. "homepage": "https://www.drupal.org/user/107701"
  2567. },
  2568. {
  2569. "name": "nedjo",
  2570. "homepage": "https://www.drupal.org/user/4481"
  2571. },
  2572. {
  2573. "name": "tim.plunkett",
  2574. "homepage": "https://www.drupal.org/user/241634"
  2575. },
  2576. {
  2577. "name": "vijaycs85",
  2578. "homepage": "https://www.drupal.org/user/93488"
  2579. }
  2580. ],
  2581. "description": "Helps developers work with configuration.",
  2582. "homepage": "https://www.drupal.org/project/config_devel",
  2583. "support": {
  2584. "source": "http://cgit.drupalcode.org/config_devel"
  2585. }
  2586. },
  2587. {
  2588. "name": "drupal/config_filter",
  2589. "version": "1.4.0",
  2590. "source": {
  2591. "type": "git",
  2592. "url": "https://git.drupal.org/project/config_filter",
  2593. "reference": "8.x-1.4"
  2594. },
  2595. "dist": {
  2596. "type": "zip",
  2597. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.4.zip",
  2598. "reference": "8.x-1.4",
  2599. "shasum": "4b2b7f4dfc8358212f9e25f63dcc77cc2c1dcf6c"
  2600. },
  2601. "require": {
  2602. "drupal/core": "~8.0"
  2603. },
  2604. "suggest": {
  2605. "drupal/config_split": "Split site configuration for different environments."
  2606. },
  2607. "type": "drupal-module",
  2608. "extra": {
  2609. "branch-alias": {
  2610. "dev-1.x": "1.x-dev"
  2611. },
  2612. "drupal": {
  2613. "version": "8.x-1.4",
  2614. "datestamp": "1542184982",
  2615. "security-coverage": {
  2616. "status": "covered",
  2617. "message": "Covered by Drupal's security advisory policy"
  2618. }
  2619. }
  2620. },
  2621. "notification-url": "https://packages.drupal.org/8/downloads",
  2622. "license": [
  2623. "GPL-2.0+"
  2624. ],
  2625. "authors": [
  2626. {
  2627. "name": "Fabian Bircher",
  2628. "homepage": "https://www.drupal.org/u/bircher",
  2629. "email": "opensource@fabianbircher.com",
  2630. "role": "Maintainer"
  2631. },
  2632. {
  2633. "name": "Nuvole Web",
  2634. "homepage": "http://nuvole.org",
  2635. "email": "info@nuvole.org",
  2636. "role": "Maintainer"
  2637. },
  2638. {
  2639. "name": "pescetti",
  2640. "homepage": "https://www.drupal.org/user/436244"
  2641. }
  2642. ],
  2643. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2644. "homepage": "https://www.drupal.org/project/config_filter",
  2645. "keywords": [
  2646. "Drupal",
  2647. "configuration",
  2648. "configuration management"
  2649. ],
  2650. "support": {
  2651. "source": "http://cgit.drupalcode.org/config_filter",
  2652. "issues": "https://www.drupal.org/project/issues/config_filter",
  2653. "irc": "irc://irc.freenode.org/drupal-contribute"
  2654. }
  2655. },
  2656. {
  2657. "name": "drupal/config_ignore",
  2658. "version": "2.1.0",
  2659. "source": {
  2660. "type": "git",
  2661. "url": "https://git.drupal.org/project/config_ignore",
  2662. "reference": "8.x-2.1"
  2663. },
  2664. "dist": {
  2665. "type": "zip",
  2666. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2667. "reference": "8.x-2.1",
  2668. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2669. },
  2670. "require": {
  2671. "drupal/config_filter": "1.*",
  2672. "drupal/core": "~8.0"
  2673. },
  2674. "type": "drupal-module",
  2675. "extra": {
  2676. "branch-alias": {
  2677. "dev-2.x": "2.x-dev"
  2678. },
  2679. "drupal": {
  2680. "version": "8.x-2.1",
  2681. "datestamp": "1507706044",
  2682. "security-coverage": {
  2683. "status": "covered",
  2684. "message": "Covered by Drupal's security advisory policy"
  2685. }
  2686. }
  2687. },
  2688. "notification-url": "https://packages.drupal.org/8/downloads",
  2689. "license": [
  2690. "GPL-2.0+"
  2691. ],
  2692. "authors": [
  2693. {
  2694. "name": "Tommy Lynge Jørgensen",
  2695. "homepage": "https://www.drupal.org/u/tlyngej",
  2696. "email": "tlyngej@gmail.com",
  2697. "role": "Maintainer"
  2698. },
  2699. {
  2700. "name": "Fabian Bircher",
  2701. "homepage": "https://www.drupal.org/u/bircher",
  2702. "role": "Maintainer"
  2703. }
  2704. ],
  2705. "description": "Ignore certain configuration during import.",
  2706. "homepage": "http://drupal.org/project/config_ignore",
  2707. "support": {
  2708. "source": "http://cgit.drupalcode.org/config_ignore",
  2709. "issues": "http://drupal.org/project/config_ignore",
  2710. "irc": "irc://irc.freenode.org/drupal-contribute"
  2711. }
  2712. },
  2713. {
  2714. "name": "drupal/config_update",
  2715. "version": "1.6.0",
  2716. "source": {
  2717. "type": "git",
  2718. "url": "https://git.drupal.org/project/config_update",
  2719. "reference": "8.x-1.6"
  2720. },
  2721. "dist": {
  2722. "type": "zip",
  2723. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2724. "reference": "8.x-1.6",
  2725. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2726. },
  2727. "require": {
  2728. "drupal/core": "*"
  2729. },
  2730. "type": "drupal-module",
  2731. "extra": {
  2732. "branch-alias": {
  2733. "dev-1.x": "1.x-dev"
  2734. },
  2735. "drupal": {
  2736. "version": "8.x-1.6",
  2737. "datestamp": "1545090480",
  2738. "security-coverage": {
  2739. "status": "covered",
  2740. "message": "Covered by Drupal's security advisory policy"
  2741. }
  2742. }
  2743. },
  2744. "notification-url": "https://packages.drupal.org/8/downloads",
  2745. "license": [
  2746. "GPL-2.0-or-later"
  2747. ],
  2748. "authors": [
  2749. {
  2750. "name": "jhodgdon",
  2751. "homepage": "https://www.drupal.org/user/155601"
  2752. },
  2753. {
  2754. "name": "nedjo",
  2755. "homepage": "https://www.drupal.org/user/4481"
  2756. }
  2757. ],
  2758. "description": "Provides basic revert and update functionality for other modules",
  2759. "homepage": "https://www.drupal.org/project/config_update",
  2760. "support": {
  2761. "source": "http://cgit.drupalcode.org/config_update"
  2762. }
  2763. },
  2764. {
  2765. "name": "drupal/console",
  2766. "version": "1.8.0",
  2767. "source": {
  2768. "type": "git",
  2769. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2770. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  2771. },
  2772. "dist": {
  2773. "type": "zip",
  2774. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2775. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2776. "shasum": ""
  2777. },
  2778. "require": {
  2779. "alchemy/zippy": "0.4.3",
  2780. "composer/installers": "~1.0",
  2781. "doctrine/annotations": "^1.2",
  2782. "doctrine/collections": "^1.3",
  2783. "drupal/console-core": "1.8.0",
  2784. "drupal/console-extend-plugin": "~0",
  2785. "guzzlehttp/guzzle": "~6.1",
  2786. "php": "^5.5.9 || ^7.0",
  2787. "psy/psysh": "0.6.* || ~0.8",
  2788. "symfony/css-selector": "~2.8|~3.0",
  2789. "symfony/dom-crawler": "~2.8|~3.0",
  2790. "symfony/http-foundation": "~2.8|~3.0"
  2791. },
  2792. "suggest": {
  2793. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  2794. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  2795. },
  2796. "bin": [
  2797. "bin/drupal"
  2798. ],
  2799. "type": "library",
  2800. "autoload": {
  2801. "psr-4": {
  2802. "Drupal\\Console\\": "src"
  2803. }
  2804. },
  2805. "notification-url": "https://packagist.org/downloads/",
  2806. "license": [
  2807. "GPL-2.0-or-later"
  2808. ],
  2809. "authors": [
  2810. {
  2811. "name": "David Flores",
  2812. "email": "dmousex@gmail.com",
  2813. "homepage": "http://dmouse.net"
  2814. },
  2815. {
  2816. "name": "Jesus Manuel Olivas",
  2817. "email": "jesus.olivas@gmail.com",
  2818. "homepage": "http://jmolivas.com"
  2819. },
  2820. {
  2821. "name": "Eduardo Garcia",
  2822. "email": "enzo@enzolutions.com",
  2823. "homepage": "http://enzolutions.com/"
  2824. },
  2825. {
  2826. "name": "Omar Aguirre",
  2827. "email": "omersguchigu@gmail.com"
  2828. },
  2829. {
  2830. "name": "Drupal Console Contributors",
  2831. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2832. }
  2833. ],
  2834. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2835. "homepage": "http://drupalconsole.com/",
  2836. "keywords": [
  2837. "console",
  2838. "development",
  2839. "drupal",
  2840. "symfony"
  2841. ],
  2842. "time": "2018-03-21T20:50:16+00:00"
  2843. },
  2844. {
  2845. "name": "drupal/console-core",
  2846. "version": "1.8.0",
  2847. "source": {
  2848. "type": "git",
  2849. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2850. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  2851. },
  2852. "dist": {
  2853. "type": "zip",
  2854. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  2855. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  2856. "shasum": ""
  2857. },
  2858. "require": {
  2859. "dflydev/dot-access-configuration": "^1.0",
  2860. "drupal/console-en": "1.8.0",
  2861. "php": "^5.5.9 || ^7.0",
  2862. "stecman/symfony-console-completion": "~0.7",
  2863. "symfony/config": "~2.8|~3.0",
  2864. "symfony/console": "~2.8|~3.0",
  2865. "symfony/debug": "~2.8|~3.0",
  2866. "symfony/dependency-injection": "~2.8|~3.0",
  2867. "symfony/event-dispatcher": "~2.8|~3.0",
  2868. "symfony/filesystem": "~2.8|~3.0",
  2869. "symfony/finder": "~2.8|~3.0",
  2870. "symfony/process": "~2.8|~3.0",
  2871. "symfony/translation": "~2.8|~3.0",
  2872. "symfony/yaml": "~2.8|~3.0",
  2873. "twig/twig": "^1.23.1",
  2874. "webflo/drupal-finder": "^1.0",
  2875. "webmozart/path-util": "^2.3"
  2876. },
  2877. "type": "library",
  2878. "autoload": {
  2879. "files": [
  2880. "src/functions.php"
  2881. ],
  2882. "psr-4": {
  2883. "Drupal\\Console\\Core\\": "src"
  2884. }
  2885. },
  2886. "notification-url": "https://packagist.org/downloads/",
  2887. "license": [
  2888. "GPL-2.0-or-later"
  2889. ],
  2890. "authors": [
  2891. {
  2892. "name": "David Flores",
  2893. "email": "dmousex@gmail.com",
  2894. "homepage": "http://dmouse.net"
  2895. },
  2896. {
  2897. "name": "Jesus Manuel Olivas",
  2898. "email": "jesus.olivas@gmail.com",
  2899. "homepage": "http://jmolivas.com"
  2900. },
  2901. {
  2902. "name": "Drupal Console Contributors",
  2903. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2904. },
  2905. {
  2906. "name": "Eduardo Garcia",
  2907. "email": "enzo@enzolutions.com",
  2908. "homepage": "http://enzolutions.com/"
  2909. },
  2910. {
  2911. "name": "Omar Aguirre",
  2912. "email": "omersguchigu@gmail.com"
  2913. }
  2914. ],
  2915. "description": "Drupal Console Core",
  2916. "homepage": "http://drupalconsole.com/",
  2917. "keywords": [
  2918. "console",
  2919. "development",
  2920. "drupal",
  2921. "symfony"
  2922. ],
  2923. "time": "2018-03-21T19:33:23+00:00"
  2924. },
  2925. {
  2926. "name": "drupal/console-en",
  2927. "version": "1.8.0",
  2928. "source": {
  2929. "type": "git",
  2930. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2931. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  2932. },
  2933. "dist": {
  2934. "type": "zip",
  2935. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  2936. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  2937. "shasum": ""
  2938. },
  2939. "type": "drupal-console-language",
  2940. "notification-url": "https://packagist.org/downloads/",
  2941. "license": [
  2942. "GPL-2.0-or-later"
  2943. ],
  2944. "authors": [
  2945. {
  2946. "name": "David Flores",
  2947. "email": "dmousex@gmail.com",
  2948. "homepage": "http://dmouse.net"
  2949. },
  2950. {
  2951. "name": "Jesus Manuel Olivas",
  2952. "email": "jesus.olivas@gmail.com",
  2953. "homepage": "http://jmolivas.com"
  2954. },
  2955. {
  2956. "name": "Drupal Console Contributors",
  2957. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2958. },
  2959. {
  2960. "name": "Eduardo Garcia",
  2961. "email": "enzo@enzolutions.com",
  2962. "homepage": "http://enzolutions.com/"
  2963. },
  2964. {
  2965. "name": "Omar Aguirre",
  2966. "email": "omersguchigu@gmail.com"
  2967. }
  2968. ],
  2969. "description": "Drupal Console English Language",
  2970. "homepage": "http://drupalconsole.com/",
  2971. "keywords": [
  2972. "console",
  2973. "development",
  2974. "drupal",
  2975. "symfony"
  2976. ],
  2977. "time": "2018-03-21T19:16:27+00:00"
  2978. },
  2979. {
  2980. "name": "drupal/console-extend-plugin",
  2981. "version": "0.9.2",
  2982. "source": {
  2983. "type": "git",
  2984. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2985. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  2986. },
  2987. "dist": {
  2988. "type": "zip",
  2989. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  2990. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  2991. "shasum": ""
  2992. },
  2993. "require": {
  2994. "composer-plugin-api": "^1.0",
  2995. "symfony/finder": "~2.7|~3.0",
  2996. "symfony/yaml": "~2.7|~3.0"
  2997. },
  2998. "type": "composer-plugin",
  2999. "extra": {
  3000. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3001. },
  3002. "autoload": {
  3003. "psr-4": {
  3004. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3005. }
  3006. },
  3007. "notification-url": "https://packagist.org/downloads/",
  3008. "license": [
  3009. "GPL-2.0+"
  3010. ],
  3011. "authors": [
  3012. {
  3013. "name": "Jesus Manuel Olivas",
  3014. "email": "jesus.olivas@gmail.com"
  3015. }
  3016. ],
  3017. "description": "Drupal Console Extend Plugin",
  3018. "time": "2017-07-28T17:11:54+00:00"
  3019. },
  3020. {
  3021. "name": "drupal/content_lock",
  3022. "version": "1.0.0-alpha8",
  3023. "source": {
  3024. "type": "git",
  3025. "url": "https://git.drupal.org/project/content_lock",
  3026. "reference": "8.x-1.0-alpha8"
  3027. },
  3028. "dist": {
  3029. "type": "zip",
  3030. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-1.0-alpha8.zip",
  3031. "reference": "8.x-1.0-alpha8",
  3032. "shasum": "dbb5986dbfbe325eb869a4ac42b88b266dc089c6"
  3033. },
  3034. "require": {
  3035. "drupal/core": "~8"
  3036. },
  3037. "require-dev": {
  3038. "drupal/conflict": "dev-2.x",
  3039. "drupal/prefetch_cache": "dev-1.x"
  3040. },
  3041. "type": "drupal-module",
  3042. "extra": {
  3043. "branch-alias": {
  3044. "dev-1.x": "1.x-dev"
  3045. },
  3046. "drupal": {
  3047. "version": "8.x-1.0-alpha8",
  3048. "datestamp": "1520356080",
  3049. "security-coverage": {
  3050. "status": "not-covered",
  3051. "message": "Alpha releases are not covered by Drupal security advisories."
  3052. }
  3053. }
  3054. },
  3055. "notification-url": "https://packages.drupal.org/8/downloads",
  3056. "license": [
  3057. "GPL-2.0-or-later"
  3058. ],
  3059. "authors": [
  3060. {
  3061. "name": "Joseph Zhao",
  3062. "homepage": "https://www.drupal.org/user/1987218"
  3063. },
  3064. {
  3065. "name": "chr.fritsch",
  3066. "homepage": "https://www.drupal.org/user/2103716"
  3067. },
  3068. {
  3069. "name": "ergonlogic",
  3070. "homepage": "https://www.drupal.org/user/368613"
  3071. }
  3072. ],
  3073. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3074. "homepage": "https://www.drupal.org/project/content_lock",
  3075. "support": {
  3076. "source": "http://cgit.drupalcode.org/content_lock"
  3077. }
  3078. },
  3079. {
  3080. "name": "drupal/context",
  3081. "version": "4.0.0-beta2",
  3082. "source": {
  3083. "type": "git",
  3084. "url": "https://git.drupal.org/project/context",
  3085. "reference": "8.x-4.0-beta2"
  3086. },
  3087. "dist": {
  3088. "type": "zip",
  3089. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  3090. "reference": "8.x-4.0-beta2",
  3091. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  3092. },
  3093. "require": {
  3094. "drupal/core": "~8.0"
  3095. },
  3096. "type": "drupal-module",
  3097. "extra": {
  3098. "branch-alias": {
  3099. "dev-4.x": "4.x-dev"
  3100. },
  3101. "drupal": {
  3102. "version": "8.x-4.0-beta2",
  3103. "datestamp": "1505378944",
  3104. "security-coverage": {
  3105. "status": "not-covered",
  3106. "message": "Beta releases are not covered by Drupal security advisories."
  3107. }
  3108. }
  3109. },
  3110. "notification-url": "https://packages.drupal.org/8/downloads",
  3111. "license": [
  3112. "MIT"
  3113. ],
  3114. "authors": [
  3115. {
  3116. "name": "Christoffer Palm",
  3117. "homepage": "http://www.oddhill.se/",
  3118. "email": "christoffer.palm@oddhill.se",
  3119. "role": "Developer"
  3120. },
  3121. {
  3122. "name": "Steven Jones",
  3123. "homepage": "https://www.drupal.org/user/99644"
  3124. },
  3125. {
  3126. "name": "alex_b",
  3127. "homepage": "https://www.drupal.org/user/53995"
  3128. },
  3129. {
  3130. "name": "boshtian",
  3131. "homepage": "https://www.drupal.org/user/1773456"
  3132. },
  3133. {
  3134. "name": "colan",
  3135. "homepage": "https://www.drupal.org/user/58704"
  3136. },
  3137. {
  3138. "name": "emanaton",
  3139. "homepage": "https://www.drupal.org/user/120853"
  3140. },
  3141. {
  3142. "name": "febbraro",
  3143. "homepage": "https://www.drupal.org/user/43670"
  3144. },
  3145. {
  3146. "name": "fizk",
  3147. "homepage": "https://www.drupal.org/user/473174"
  3148. },
  3149. {
  3150. "name": "hass",
  3151. "homepage": "https://www.drupal.org/user/85918"
  3152. },
  3153. {
  3154. "name": "hefox",
  3155. "homepage": "https://www.drupal.org/user/426416"
  3156. },
  3157. {
  3158. "name": "hyrcan",
  3159. "homepage": "https://www.drupal.org/user/26618"
  3160. },
  3161. {
  3162. "name": "jmiccolis",
  3163. "homepage": "https://www.drupal.org/user/31731"
  3164. },
  3165. {
  3166. "name": "tekante",
  3167. "homepage": "https://www.drupal.org/user/640024"
  3168. },
  3169. {
  3170. "name": "yhahn",
  3171. "homepage": "https://www.drupal.org/user/264833"
  3172. }
  3173. ],
  3174. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3175. "homepage": "https://github.com/oddhill/context",
  3176. "keywords": [
  3177. "Drupal",
  3178. "block",
  3179. "conditions",
  3180. "context",
  3181. "visibility"
  3182. ],
  3183. "support": {
  3184. "source": "https://github.com/oddhill/context",
  3185. "issues": "https://github.com/oddhill/context/issues",
  3186. "docs": "https://github.com/oddhill/context"
  3187. }
  3188. },
  3189. {
  3190. "name": "drupal/cshs",
  3191. "version": "dev-1.x",
  3192. "source": {
  3193. "type": "git",
  3194. "url": "https://git.drupal.org/project/cshs",
  3195. "reference": "c4a2deff253e24c83b14f960ce9dce49fa115f60"
  3196. },
  3197. "require": {
  3198. "drupal/core": "*"
  3199. },
  3200. "type": "drupal-module",
  3201. "extra": {
  3202. "branch-alias": {
  3203. "dev-1.x": "1.x-dev"
  3204. },
  3205. "drupal": {
  3206. "version": "8.x-1.0-beta4+4-dev",
  3207. "datestamp": "1512800285",
  3208. "security-coverage": {
  3209. "status": "not-covered",
  3210. "message": "Dev releases are not covered by Drupal security advisories."
  3211. }
  3212. }
  3213. },
  3214. "notification-url": "https://packages.drupal.org/8/downloads",
  3215. "license": [
  3216. "GPL-2.0-or-later"
  3217. ],
  3218. "authors": [
  3219. {
  3220. "name": "BR0kEN",
  3221. "homepage": "https://www.drupal.org/user/2802285"
  3222. },
  3223. {
  3224. "name": "purushotam.rai",
  3225. "homepage": "https://www.drupal.org/user/3193859"
  3226. },
  3227. {
  3228. "name": "valderama",
  3229. "homepage": "https://www.drupal.org/user/103634"
  3230. }
  3231. ],
  3232. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3233. "homepage": "https://www.drupal.org/project/cshs",
  3234. "support": {
  3235. "source": "http://cgit.drupalcode.org/cshs"
  3236. },
  3237. "time": "2018-06-24T13:39:17+00:00"
  3238. },
  3239. {
  3240. "name": "drupal/ctools",
  3241. "version": "3.0.0",
  3242. "source": {
  3243. "type": "git",
  3244. "url": "https://git.drupal.org/project/ctools",
  3245. "reference": "8.x-3.0"
  3246. },
  3247. "dist": {
  3248. "type": "zip",
  3249. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip",
  3250. "reference": "8.x-3.0",
  3251. "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
  3252. },
  3253. "require": {
  3254. "drupal/core": "~8.0"
  3255. },
  3256. "type": "drupal-module",
  3257. "extra": {
  3258. "branch-alias": {
  3259. "dev-3.x": "3.x-dev"
  3260. },
  3261. "drupal": {
  3262. "version": "8.x-3.0",
  3263. "datestamp": "1493401742",
  3264. "security-coverage": {
  3265. "status": "covered",
  3266. "message": "Covered by Drupal's security advisory policy"
  3267. }
  3268. }
  3269. },
  3270. "notification-url": "https://packages.drupal.org/8/downloads",
  3271. "license": [
  3272. "GPL-2.0+"
  3273. ],
  3274. "authors": [
  3275. {
  3276. "name": "Kris Vanderwater (EclipseGc)",
  3277. "homepage": "https://www.drupal.org/u/eclipsegc",
  3278. "role": "Maintainer"
  3279. },
  3280. {
  3281. "name": "Jakob Perry (japerry)",
  3282. "homepage": "https://www.drupal.org/u/japerry",
  3283. "role": "Maintainer"
  3284. },
  3285. {
  3286. "name": "Tim Plunkett (tim.plunkett)",
  3287. "homepage": "https://www.drupal.org/u/timplunkett",
  3288. "role": "Maintainer"
  3289. },
  3290. {
  3291. "name": "James Gilliland (neclimdul)",
  3292. "homepage": "https://www.drupal.org/u/neclimdul",
  3293. "role": "Maintainer"
  3294. },
  3295. {
  3296. "name": "Daniel Wehner (dawehner)",
  3297. "homepage": "https://www.drupal.org/u/dawehner",
  3298. "role": "Maintainer"
  3299. },
  3300. {
  3301. "name": "joelpittet",
  3302. "homepage": "https://www.drupal.org/user/160302"
  3303. },
  3304. {
  3305. "name": "merlinofchaos",
  3306. "homepage": "https://www.drupal.org/user/26979"
  3307. },
  3308. {
  3309. "name": "neclimdul",
  3310. "homepage": "https://www.drupal.org/user/48673"
  3311. },
  3312. {
  3313. "name": "sdboyer",
  3314. "homepage": "https://www.drupal.org/user/146719"
  3315. },
  3316. {
  3317. "name": "sun",
  3318. "homepage": "https://www.drupal.org/user/54136"
  3319. },
  3320. {
  3321. "name": "tim.plunkett",
  3322. "homepage": "https://www.drupal.org/user/241634"
  3323. }
  3324. ],
  3325. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3326. "homepage": "https://www.drupal.org/project/ctools",
  3327. "support": {
  3328. "source": "http://cgit.drupalcode.org/ctools",
  3329. "issues": "https://www.drupal.org/project/issues/ctools"
  3330. }
  3331. },
  3332. {
  3333. "name": "drupal/date_range_formatter",
  3334. "version": "3.1.0",
  3335. "source": {
  3336. "type": "git",
  3337. "url": "https://git.drupal.org/project/date_range_formatter",
  3338. "reference": "8.x-3.1"
  3339. },
  3340. "dist": {
  3341. "type": "zip",
  3342. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3343. "reference": "8.x-3.1",
  3344. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3345. },
  3346. "require": {
  3347. "drupal/core": "*"
  3348. },
  3349. "type": "drupal-module",
  3350. "extra": {
  3351. "branch-alias": {
  3352. "dev-3.x": "3.x-dev"
  3353. },
  3354. "drupal": {
  3355. "version": "8.x-3.1",
  3356. "datestamp": "1502454544",
  3357. "security-coverage": {
  3358. "status": "covered",
  3359. "message": "Covered by Drupal's security advisory policy"
  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": "Sudishth",
  3370. "homepage": "https://www.drupal.org/user/1440562"
  3371. },
  3372. {
  3373. "name": "maximpodorov",
  3374. "homepage": "https://www.drupal.org/user/515310"
  3375. }
  3376. ],
  3377. "description": "Formats date ranges.",
  3378. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3379. "support": {
  3380. "source": "http://cgit.drupalcode.org/date_range_formatter"
  3381. }
  3382. },
  3383. {
  3384. "name": "drupal/devel",
  3385. "version": "1.2.0",
  3386. "source": {
  3387. "type": "git",
  3388. "url": "https://git.drupal.org/project/devel",
  3389. "reference": "8.x-1.2"
  3390. },
  3391. "dist": {
  3392. "type": "zip",
  3393. "url": "https://ftp.drupal.org/files/projects/devel-8.x-1.2.zip",
  3394. "reference": "8.x-1.2",
  3395. "shasum": "01f3349ef75f6e21fceef24be9d3d6506ca29647"
  3396. },
  3397. "require": {
  3398. "drupal/core": "~8.0"
  3399. },
  3400. "suggest": {
  3401. "symfony/var-dumper": "Pretty print complex values better with var-dumper available"
  3402. },
  3403. "type": "drupal-module",
  3404. "extra": {
  3405. "branch-alias": {
  3406. "dev-1.x": "1.x-dev"
  3407. },
  3408. "drupal": {
  3409. "version": "8.x-1.2",
  3410. "datestamp": "1507197844",
  3411. "security-coverage": {
  3412. "status": "covered",
  3413. "message": "Covered by Drupal's security advisory policy"
  3414. }
  3415. }
  3416. },
  3417. "notification-url": "https://packages.drupal.org/8/downloads",
  3418. "license": [
  3419. "GPL-2.0+"
  3420. ],
  3421. "authors": [
  3422. {
  3423. "name": "Moshe Weitzman",
  3424. "homepage": "https://github.com/weitzman",
  3425. "email": "weitzman@tejasa.com",
  3426. "role": "Maintainer"
  3427. },
  3428. {
  3429. "name": "Hans Salvisberg",
  3430. "homepage": "https://www.drupal.org/u/salvis",
  3431. "email": "drupal@salvisberg.com",
  3432. "role": "Maintainer"
  3433. },
  3434. {
  3435. "name": "Luca Lusso",
  3436. "homepage": "https://www.drupal.org/u/lussoluca",
  3437. "role": "Maintainer"
  3438. },
  3439. {
  3440. "name": "Marco (willzyx)",
  3441. "homepage": "https://www.drupal.org/u/willzyx",
  3442. "role": "Maintainer"
  3443. },
  3444. {
  3445. "name": "See contributors",
  3446. "homepage": "https://www.drupal.org/node/3236/committers"
  3447. },
  3448. {
  3449. "name": "salvis",
  3450. "homepage": "https://www.drupal.org/user/82964"
  3451. },
  3452. {
  3453. "name": "willzyx",
  3454. "homepage": "https://www.drupal.org/user/1043862"
  3455. }
  3456. ],
  3457. "description": "Various blocks, pages, and functions for developers.",
  3458. "homepage": "http://drupal.org/project/devel",
  3459. "support": {
  3460. "source": "http://cgit.drupalcode.org/devel",
  3461. "issues": "http://drupal.org/project/devel",
  3462. "irc": "irc://irc.freenode.org/drupal-contribute"
  3463. }
  3464. },
  3465. {
  3466. "name": "drupal/devel_generate",
  3467. "version": "1.2.0",
  3468. "require": {
  3469. "drupal/core": "~8.0",
  3470. "drupal/devel": "self.version"
  3471. },
  3472. "type": "metapackage",
  3473. "extra": {
  3474. "branch-alias": {
  3475. "dev-1.x": "1.x-dev"
  3476. },
  3477. "drupal": {
  3478. "version": "8.x-1.2",
  3479. "datestamp": "1507197844",
  3480. "security-coverage": {
  3481. "status": "covered",
  3482. "message": "Covered by Drupal's security advisory policy"
  3483. }
  3484. }
  3485. },
  3486. "notification-url": "https://packages.drupal.org/8/downloads",
  3487. "license": [
  3488. "GPL-2.0-or-later"
  3489. ],
  3490. "authors": [
  3491. {
  3492. "name": "catch",
  3493. "homepage": "https://www.drupal.org/user/35733"
  3494. },
  3495. {
  3496. "name": "juampynr",
  3497. "homepage": "https://www.drupal.org/user/682736"
  3498. },
  3499. {
  3500. "name": "lussoluca",
  3501. "homepage": "https://www.drupal.org/user/138068"
  3502. },
  3503. {
  3504. "name": "moshe weitzman",
  3505. "homepage": "https://www.drupal.org/user/23"
  3506. },
  3507. {
  3508. "name": "pcambra",
  3509. "homepage": "https://www.drupal.org/user/122101"
  3510. },
  3511. {
  3512. "name": "salvis",
  3513. "homepage": "https://www.drupal.org/user/82964"
  3514. },
  3515. {
  3516. "name": "willzyx",
  3517. "homepage": "https://www.drupal.org/user/1043862"
  3518. }
  3519. ],
  3520. "description": "Generate dummy users, nodes, menus, taxonomy terms...",
  3521. "homepage": "https://www.drupal.org/project/devel",
  3522. "support": {
  3523. "source": "http://cgit.drupalcode.org/devel"
  3524. }
  3525. },
  3526. {
  3527. "name": "drupal/domain",
  3528. "version": "dev-1.x",
  3529. "source": {
  3530. "type": "git",
  3531. "url": "https://git.drupal.org/project/domain",
  3532. "reference": "ff62d2096b166f4709e0e0d6ddf4b120cb3647ca"
  3533. },
  3534. "require": {
  3535. "drupal/core": "^8.5"
  3536. },
  3537. "require-dev": {
  3538. "drupal/domain_access": "*"
  3539. },
  3540. "type": "drupal-module",
  3541. "extra": {
  3542. "branch-alias": {
  3543. "dev-1.x": "1.x-dev"
  3544. },
  3545. "drupal": {
  3546. "version": "8.x-1.0-alpha14+23-dev",
  3547. "datestamp": "1543354380",
  3548. "security-coverage": {
  3549. "status": "not-covered",
  3550. "message": "Dev releases are not covered by Drupal security advisories."
  3551. }
  3552. }
  3553. },
  3554. "notification-url": "https://packages.drupal.org/8/downloads",
  3555. "license": [
  3556. "GPL-2.0-or-later"
  3557. ],
  3558. "authors": [
  3559. {
  3560. "name": "agentrickard",
  3561. "homepage": "https://www.drupal.org/user/20975"
  3562. },
  3563. {
  3564. "name": "nonsie",
  3565. "homepage": "https://www.drupal.org/user/29899"
  3566. }
  3567. ],
  3568. "description": "Creates domain records within a Drupal installation.",
  3569. "homepage": "https://www.drupal.org/project/domain",
  3570. "support": {
  3571. "source": "http://cgit.drupalcode.org/domain"
  3572. },
  3573. "time": "2019-01-04T19:11:55+00:00"
  3574. },
  3575. {
  3576. "name": "drupal/domain_alias",
  3577. "version": "dev-1.x",
  3578. "require": {
  3579. "drupal/core": "~8.0",
  3580. "drupal/domain": "self.version"
  3581. },
  3582. "type": "metapackage",
  3583. "extra": {
  3584. "branch-alias": {
  3585. "dev-1.x": "1.x-dev"
  3586. },
  3587. "drupal": {
  3588. "version": "8.x-1.0-alpha14+23-dev",
  3589. "datestamp": "1543354380",
  3590. "security-coverage": {
  3591. "status": "not-covered",
  3592. "message": "Dev releases are not covered by Drupal security advisories."
  3593. }
  3594. }
  3595. },
  3596. "notification-url": "https://packages.drupal.org/8/downloads",
  3597. "license": [
  3598. "GPL-2.0-or-later"
  3599. ],
  3600. "authors": [
  3601. {
  3602. "name": "agentrickard",
  3603. "homepage": "https://www.drupal.org/user/20975"
  3604. },
  3605. {
  3606. "name": "nonsie",
  3607. "homepage": "https://www.drupal.org/user/29899"
  3608. }
  3609. ],
  3610. "description": "Maps multiple host requests to a single domain record.",
  3611. "homepage": "https://www.drupal.org/project/domain",
  3612. "support": {
  3613. "source": "http://cgit.drupalcode.org/domain"
  3614. }
  3615. },
  3616. {
  3617. "name": "drupal/domain_config",
  3618. "version": "dev-1.x",
  3619. "require": {
  3620. "drupal/core": "~8.0",
  3621. "drupal/domain": "self.version"
  3622. },
  3623. "type": "metapackage",
  3624. "extra": {
  3625. "branch-alias": {
  3626. "dev-1.x": "1.x-dev"
  3627. },
  3628. "drupal": {
  3629. "version": "8.x-1.0-alpha14+23-dev",
  3630. "datestamp": "1543354380",
  3631. "security-coverage": {
  3632. "status": "not-covered",
  3633. "message": "Dev releases are not covered by Drupal security advisories."
  3634. }
  3635. }
  3636. },
  3637. "notification-url": "https://packages.drupal.org/8/downloads",
  3638. "license": [
  3639. "GPL-2.0-or-later"
  3640. ],
  3641. "authors": [
  3642. {
  3643. "name": "agentrickard",
  3644. "homepage": "https://www.drupal.org/user/20975"
  3645. },
  3646. {
  3647. "name": "nonsie",
  3648. "homepage": "https://www.drupal.org/user/29899"
  3649. }
  3650. ],
  3651. "description": "Allows domain specific configuration.",
  3652. "homepage": "https://www.drupal.org/project/domain",
  3653. "support": {
  3654. "source": "http://cgit.drupalcode.org/domain"
  3655. }
  3656. },
  3657. {
  3658. "name": "drupal/domain_site_settings",
  3659. "version": "1.3.0",
  3660. "source": {
  3661. "type": "git",
  3662. "url": "https://git.drupal.org/project/domain_site_settings",
  3663. "reference": "8.x-1.3"
  3664. },
  3665. "dist": {
  3666. "type": "zip",
  3667. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3668. "reference": "8.x-1.3",
  3669. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3670. },
  3671. "require": {
  3672. "drupal/core": "~8.0",
  3673. "drupal/domain": "*",
  3674. "drupal/domain_config": "*"
  3675. },
  3676. "type": "drupal-module",
  3677. "extra": {
  3678. "branch-alias": {
  3679. "dev-1.x": "1.x-dev"
  3680. },
  3681. "drupal": {
  3682. "version": "8.x-1.3",
  3683. "datestamp": "1537684980",
  3684. "security-coverage": {
  3685. "status": "covered",
  3686. "message": "Covered by Drupal's security advisory policy"
  3687. }
  3688. }
  3689. },
  3690. "notification-url": "https://packages.drupal.org/8/downloads",
  3691. "license": [
  3692. "GPL-2.0+"
  3693. ],
  3694. "authors": [
  3695. {
  3696. "name": "aloknarwaria",
  3697. "homepage": "https://www.drupal.org/user/906640"
  3698. }
  3699. ],
  3700. "description": "Basic Site Setting for Domains.",
  3701. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3702. "keywords": [
  3703. "Drupal"
  3704. ],
  3705. "support": {
  3706. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3707. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3708. }
  3709. },
  3710. {
  3711. "name": "drupal/email_registration",
  3712. "version": "1.0.0-rc6",
  3713. "source": {
  3714. "type": "git",
  3715. "url": "https://git.drupal.org/project/email_registration",
  3716. "reference": "8.x-1.0-rc6"
  3717. },
  3718. "dist": {
  3719. "type": "zip",
  3720. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc6.zip",
  3721. "reference": "8.x-1.0-rc6",
  3722. "shasum": "b004bc24b79faaa9e8b2fe59a04eaab02f44c363"
  3723. },
  3724. "require": {
  3725. "drupal/core": "*"
  3726. },
  3727. "type": "drupal-module",
  3728. "extra": {
  3729. "branch-alias": {
  3730. "dev-1.x": "1.x-dev"
  3731. },
  3732. "drupal": {
  3733. "version": "8.x-1.0-rc6",
  3734. "datestamp": "1545350880",
  3735. "security-coverage": {
  3736. "status": "not-covered",
  3737. "message": "RC releases are not covered by Drupal security advisories."
  3738. }
  3739. }
  3740. },
  3741. "notification-url": "https://packages.drupal.org/8/downloads",
  3742. "license": [
  3743. "GPL-2.0+"
  3744. ],
  3745. "authors": [
  3746. {
  3747. "name": "Greg Knaddison (greggles)",
  3748. "homepage": "https://www.drupal.org/u/greggles",
  3749. "role": "Maintainer"
  3750. },
  3751. {
  3752. "name": "Andrey Postnikov (andypost)",
  3753. "homepage": "https://www.drupal.org/u/andypost",
  3754. "role": "Maintainer"
  3755. },
  3756. {
  3757. "name": "Chris Herberte",
  3758. "homepage": "https://www.drupal.org/u/chris-herberte",
  3759. "role": "Maintainer"
  3760. },
  3761. {
  3762. "name": "Moshe Weitzman (moshe weitzman)",
  3763. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3764. "role": "Maintainer"
  3765. }
  3766. ],
  3767. "description": "Allows users to register with an email address as their username.",
  3768. "homepage": "https://www.drupal.org/project/email_registration",
  3769. "support": {
  3770. "source": "http://cgit.drupalcode.org/email_registration",
  3771. "issues": "http://drupal.org/project/issues/email_registration"
  3772. }
  3773. },
  3774. {
  3775. "name": "drupal/embed",
  3776. "version": "1.0.0",
  3777. "source": {
  3778. "type": "git",
  3779. "url": "https://git.drupal.org/project/embed",
  3780. "reference": "8.x-1.0"
  3781. },
  3782. "dist": {
  3783. "type": "zip",
  3784. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip",
  3785. "reference": "8.x-1.0",
  3786. "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a"
  3787. },
  3788. "require": {
  3789. "drupal/core": "~8.0"
  3790. },
  3791. "type": "drupal-module",
  3792. "extra": {
  3793. "branch-alias": {
  3794. "dev-1.x": "1.x-dev"
  3795. },
  3796. "drupal": {
  3797. "version": "8.x-1.0",
  3798. "datestamp": "1490755685",
  3799. "security-coverage": {
  3800. "status": "covered",
  3801. "message": "Covered by Drupal's security advisory policy"
  3802. }
  3803. }
  3804. },
  3805. "notification-url": "https://packages.drupal.org/8/downloads",
  3806. "license": [
  3807. "GPL-2.0+"
  3808. ],
  3809. "authors": [
  3810. {
  3811. "name": "Dave Reid",
  3812. "homepage": "https://www.drupal.org/user/53892"
  3813. },
  3814. {
  3815. "name": "Devin Carlson",
  3816. "homepage": "https://www.drupal.org/user/290182"
  3817. },
  3818. {
  3819. "name": "Drupal Media Team",
  3820. "homepage": "https://www.drupal.org/user/3260690"
  3821. },
  3822. {
  3823. "name": "cs_shadow",
  3824. "homepage": "https://www.drupal.org/user/2828287"
  3825. },
  3826. {
  3827. "name": "slashrsm",
  3828. "homepage": "https://www.drupal.org/user/744628"
  3829. }
  3830. ],
  3831. "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.",
  3832. "homepage": "https://www.drupal.org/project/embed",
  3833. "support": {
  3834. "source": "http://cgit.drupalcode.org/embed",
  3835. "issues": "https://www.drupal.org/project/issues/embed",
  3836. "irc": "irc://irc.freenode.org/drupal-media"
  3837. }
  3838. },
  3839. {
  3840. "name": "drupal/entity",
  3841. "version": "1.0.0-rc1",
  3842. "source": {
  3843. "type": "git",
  3844. "url": "https://git.drupal.org/project/entity",
  3845. "reference": "8.x-1.0-rc1"
  3846. },
  3847. "dist": {
  3848. "type": "zip",
  3849. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc1.zip",
  3850. "reference": "8.x-1.0-rc1",
  3851. "shasum": "f2dcd7afd0d36b6f261b10a204057a5c801ad20b"
  3852. },
  3853. "require": {
  3854. "drupal/core": "^8.6"
  3855. },
  3856. "type": "drupal-module",
  3857. "extra": {
  3858. "branch-alias": {
  3859. "dev-1.x": "1.x-dev"
  3860. },
  3861. "drupal": {
  3862. "version": "8.x-1.0-rc1",
  3863. "datestamp": "1539272769",
  3864. "security-coverage": {
  3865. "status": "not-covered",
  3866. "message": "RC releases are not covered by Drupal security advisories."
  3867. }
  3868. }
  3869. },
  3870. "notification-url": "https://packages.drupal.org/8/downloads",
  3871. "license": [
  3872. "GPL-2.0+"
  3873. ],
  3874. "authors": [
  3875. {
  3876. "name": "Berdir",
  3877. "homepage": "https://www.drupal.org/user/214652"
  3878. },
  3879. {
  3880. "name": "bojanz",
  3881. "homepage": "https://www.drupal.org/user/86106"
  3882. },
  3883. {
  3884. "name": "dawehner",
  3885. "homepage": "https://www.drupal.org/user/99340"
  3886. },
  3887. {
  3888. "name": "dixon_",
  3889. "homepage": "https://www.drupal.org/user/239911"
  3890. },
  3891. {
  3892. "name": "fago",
  3893. "homepage": "https://www.drupal.org/user/16747"
  3894. }
  3895. ],
  3896. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3897. "homepage": "http://drupal.org/project/entity",
  3898. "support": {
  3899. "source": "http://cgit.drupalcode.org/entity"
  3900. }
  3901. },
  3902. {
  3903. "name": "drupal/entity_browser",
  3904. "version": "2.0.0",
  3905. "source": {
  3906. "type": "git",
  3907. "url": "https://git.drupal.org/project/entity_browser",
  3908. "reference": "8.x-2.0"
  3909. },
  3910. "dist": {
  3911. "type": "zip",
  3912. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0.zip",
  3913. "reference": "8.x-2.0",
  3914. "shasum": "683a7a252c947433c7b78bb838d6d8973c13cf77"
  3915. },
  3916. "require": {
  3917. "drupal/core": "~8.0"
  3918. },
  3919. "require-dev": {
  3920. "drupal/ctools": "*",
  3921. "drupal/inline_entity_form": "*",
  3922. "drupal/paragraphs": "*",
  3923. "drupal/token": "*"
  3924. },
  3925. "type": "drupal-module",
  3926. "extra": {
  3927. "branch-alias": {
  3928. "dev-2.x": "2.x-dev",
  3929. "dev-8.x-1.x": "8.1.x-dev"
  3930. },
  3931. "drupal": {
  3932. "version": "8.x-2.0",
  3933. "datestamp": "1536328684",
  3934. "security-coverage": {
  3935. "status": "covered",
  3936. "message": "Covered by Drupal's security advisory policy"
  3937. }
  3938. }
  3939. },
  3940. "notification-url": "https://packages.drupal.org/8/downloads",
  3941. "license": [
  3942. "GPL-2.0+"
  3943. ],
  3944. "authors": [
  3945. {
  3946. "name": "Janez Urevc",
  3947. "homepage": "https://github.com/slashrsm",
  3948. "role": "Maintainer"
  3949. },
  3950. {
  3951. "name": "Primoz Hmeljak",
  3952. "homepage": "https://github.com/primsi",
  3953. "role": "Maintainer"
  3954. },
  3955. {
  3956. "name": "See other contributors",
  3957. "homepage": "https://www.drupal.org/node/1943336/committers",
  3958. "role": "contributor"
  3959. },
  3960. {
  3961. "name": "Primsi",
  3962. "homepage": "https://www.drupal.org/user/282629"
  3963. },
  3964. {
  3965. "name": "marcingy",
  3966. "homepage": "https://www.drupal.org/user/77320"
  3967. },
  3968. {
  3969. "name": "samuel.mortenson",
  3970. "homepage": "https://www.drupal.org/user/2582268"
  3971. },
  3972. {
  3973. "name": "slashrsm",
  3974. "homepage": "https://www.drupal.org/user/744628"
  3975. }
  3976. ],
  3977. "description": "Entity browsing and selecting component.",
  3978. "homepage": "http://drupal.org/project/entity_browser",
  3979. "support": {
  3980. "source": "http://cgit.drupalcode.org/entity_browser",
  3981. "issues": "http://drupal.org/project/issues/entity_browser",
  3982. "irc": "irc://irc.freenode.org/drupal-contribute"
  3983. }
  3984. },
  3985. {
  3986. "name": "drupal/entity_browser_enhanced",
  3987. "version": "1.0.0-rc3",
  3988. "source": {
  3989. "type": "git",
  3990. "url": "https://git.drupal.org/project/entity_browser_enhanced",
  3991. "reference": "8.x-1.0-rc3"
  3992. },
  3993. "dist": {
  3994. "type": "zip",
  3995. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0-rc3.zip",
  3996. "reference": "8.x-1.0-rc3",
  3997. "shasum": "041a93dac5ec9f74a8834faee60995c4db7d1e65"
  3998. },
  3999. "require": {
  4000. "drupal/core": "~8.0",
  4001. "drupal/entity_browser": "*"
  4002. },
  4003. "type": "drupal-module",
  4004. "extra": {
  4005. "branch-alias": {
  4006. "dev-1.x": "1.x-dev",
  4007. "dev-8.x-1.x": "8.1.x-dev"
  4008. },
  4009. "drupal": {
  4010. "version": "8.x-1.0-rc3",
  4011. "datestamp": "1528884525",
  4012. "security-coverage": {
  4013. "status": "not-covered",
  4014. "message": "RC releases are not covered by Drupal security advisories."
  4015. }
  4016. }
  4017. },
  4018. "notification-url": "https://packages.drupal.org/8/downloads",
  4019. "license": [
  4020. "GPL-2.0-or-later"
  4021. ],
  4022. "authors": [
  4023. {
  4024. "name": "Vardot",
  4025. "homepage": "https://www.drupal.org/vardot",
  4026. "role": "Maintainer"
  4027. },
  4028. {
  4029. "name": "RajabNatshah",
  4030. "homepage": "https://www.drupal.org/user/1414312"
  4031. }
  4032. ],
  4033. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4034. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4035. "support": {
  4036. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4037. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4038. }
  4039. },
  4040. {
  4041. "name": "drupal/entity_clone",
  4042. "version": "1.0.0-beta1",
  4043. "source": {
  4044. "type": "git",
  4045. "url": "https://git.drupal.org/project/entity_clone",
  4046. "reference": "8.x-1.0-beta1"
  4047. },
  4048. "dist": {
  4049. "type": "zip",
  4050. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta1.zip",
  4051. "reference": "8.x-1.0-beta1",
  4052. "shasum": "d0ace20bbe1672fbe6d0cdd6da8f5b80cd156643"
  4053. },
  4054. "require": {
  4055. "drupal/core": "~8.0"
  4056. },
  4057. "type": "drupal-module",
  4058. "extra": {
  4059. "branch-alias": {
  4060. "dev-1.x": "1.x-dev"
  4061. },
  4062. "drupal": {
  4063. "version": "8.x-1.0-beta1",
  4064. "datestamp": "1546583284",
  4065. "security-coverage": {
  4066. "status": "not-covered",
  4067. "message": "Beta releases are not covered by Drupal security advisories."
  4068. }
  4069. }
  4070. },
  4071. "notification-url": "https://packages.drupal.org/8/downloads",
  4072. "license": [
  4073. "GPL-2.0-or-later"
  4074. ],
  4075. "authors": [
  4076. {
  4077. "name": "vpeltot",
  4078. "homepage": "https://www.drupal.org/user/1361586"
  4079. }
  4080. ],
  4081. "description": "Add a clone action for all entities",
  4082. "homepage": "https://www.drupal.org/project/entity_clone",
  4083. "support": {
  4084. "source": "http://cgit.drupalcode.org/entity_clone"
  4085. }
  4086. },
  4087. {
  4088. "name": "drupal/examples",
  4089. "version": "dev-1.x",
  4090. "source": {
  4091. "type": "git",
  4092. "url": "https://git.drupal.org/project/examples",
  4093. "reference": "0be75808520a7c921ad7c87ac1cc87d716f5dc51"
  4094. },
  4095. "require": {
  4096. "drupal/core": "*"
  4097. },
  4098. "require-dev": {
  4099. "drupal/stream_wrapper_example": "*"
  4100. },
  4101. "suggest": {
  4102. "drupal/devel": "Some modules will be able to pretty-print PHP with this module."
  4103. },
  4104. "type": "drupal-module",
  4105. "extra": {
  4106. "branch-alias": {
  4107. "dev-1.x": "1.x-dev"
  4108. },
  4109. "drupal": {
  4110. "version": "8.x-1.x-dev",
  4111. "datestamp": "1536200285",
  4112. "security-coverage": {
  4113. "status": "not-covered",
  4114. "message": "Project has not opted into security advisory coverage!"
  4115. }
  4116. }
  4117. },
  4118. "notification-url": "https://packages.drupal.org/8/downloads",
  4119. "license": [
  4120. "GPL-2.0+"
  4121. ],
  4122. "authors": [
  4123. {
  4124. "name": "Dave Reid",
  4125. "homepage": "https://www.drupal.org/user/53892"
  4126. },
  4127. {
  4128. "name": "Itangalo",
  4129. "homepage": "https://www.drupal.org/user/153998"
  4130. },
  4131. {
  4132. "name": "Mile23",
  4133. "homepage": "https://www.drupal.org/user/116231"
  4134. },
  4135. {
  4136. "name": "Torenware",
  4137. "homepage": "https://www.drupal.org/user/18784"
  4138. },
  4139. {
  4140. "name": "add1sun",
  4141. "homepage": "https://www.drupal.org/user/65088"
  4142. },
  4143. {
  4144. "name": "cyberswat",
  4145. "homepage": "https://www.drupal.org/user/27802"
  4146. },
  4147. {
  4148. "name": "ilo",
  4149. "homepage": "https://www.drupal.org/user/118449"
  4150. },
  4151. {
  4152. "name": "jhodgdon",
  4153. "homepage": "https://www.drupal.org/user/155601"
  4154. },
  4155. {
  4156. "name": "jn2",
  4157. "homepage": "https://www.drupal.org/user/1001014"
  4158. },
  4159. {
  4160. "name": "katbailey",
  4161. "homepage": "https://www.drupal.org/user/172987"
  4162. },
  4163. {
  4164. "name": "linclark",
  4165. "homepage": "https://www.drupal.org/user/396253"
  4166. },
  4167. {
  4168. "name": "marvil07",
  4169. "homepage": "https://www.drupal.org/user/132175"
  4170. },
  4171. {
  4172. "name": "mikl",
  4173. "homepage": "https://www.drupal.org/user/58679"
  4174. },
  4175. {
  4176. "name": "rfay",
  4177. "homepage": "https://www.drupal.org/user/30906"
  4178. },
  4179. {
  4180. "name": "socketwench",
  4181. "homepage": "https://www.drupal.org/user/65793"
  4182. },
  4183. {
  4184. "name": "yched",
  4185. "homepage": "https://www.drupal.org/user/39567"
  4186. }
  4187. ],
  4188. "description": "The Examples for Developers project aims to provide high-quality, well-documented API examples for a broad range of Drupal core functionality.",
  4189. "homepage": "https://www.drupal.org/project/examples",
  4190. "support": {
  4191. "source": "http://cgit.drupalcode.org/examples",
  4192. "issues": "https://www.drupal.org/project/issues/examples",
  4193. "documentation": "https://api.drupal.org/api/examples"
  4194. },
  4195. "time": "2018-09-10T23:01:03+00:00"
  4196. },
  4197. {
  4198. "name": "drupal/extlink",
  4199. "version": "1.1.0",
  4200. "source": {
  4201. "type": "git",
  4202. "url": "https://git.drupal.org/project/extlink",
  4203. "reference": "8.x-1.1"
  4204. },
  4205. "dist": {
  4206. "type": "zip",
  4207. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.1.zip",
  4208. "reference": "8.x-1.1",
  4209. "shasum": "0894f1cd12e2e1aa6b00ea4a6dd5e7234eb2b2b2"
  4210. },
  4211. "require": {
  4212. "drupal/core": "~8.0"
  4213. },
  4214. "type": "drupal-module",
  4215. "extra": {
  4216. "branch-alias": {
  4217. "dev-1.x": "1.x-dev"
  4218. },
  4219. "drupal": {
  4220. "version": "8.x-1.1",
  4221. "datestamp": "1524232684",
  4222. "security-coverage": {
  4223. "status": "covered",
  4224. "message": "Covered by Drupal's security advisory policy"
  4225. }
  4226. }
  4227. },
  4228. "notification-url": "https://packages.drupal.org/8/downloads",
  4229. "license": [
  4230. "GPL-2.0-or-later"
  4231. ],
  4232. "authors": [
  4233. {
  4234. "name": "elachlan",
  4235. "homepage": "https://www.drupal.org/user/1021502"
  4236. },
  4237. {
  4238. "name": "jjeff",
  4239. "homepage": "https://www.drupal.org/user/17190"
  4240. },
  4241. {
  4242. "name": "quicksketch",
  4243. "homepage": "https://www.drupal.org/user/35821"
  4244. }
  4245. ],
  4246. "description": "Modify behavior and appearance of external links.",
  4247. "homepage": "https://www.drupal.org/project/extlink",
  4248. "support": {
  4249. "source": "http://cgit.drupalcode.org/extlink"
  4250. }
  4251. },
  4252. {
  4253. "name": "drupal/field_group",
  4254. "version": "1.0.0",
  4255. "source": {
  4256. "type": "git",
  4257. "url": "https://git.drupal.org/project/field_group",
  4258. "reference": "8.x-1.0"
  4259. },
  4260. "dist": {
  4261. "type": "zip",
  4262. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-1.0.zip",
  4263. "reference": "8.x-1.0",
  4264. "shasum": "e8aa3fae5c3c5dec84644bb577996938d638a611"
  4265. },
  4266. "require": {
  4267. "drupal/core": "*"
  4268. },
  4269. "type": "drupal-module",
  4270. "extra": {
  4271. "branch-alias": {
  4272. "dev-1.x": "1.x-dev"
  4273. },
  4274. "drupal": {
  4275. "version": "8.x-1.0",
  4276. "datestamp": "1510352885",
  4277. "security-coverage": {
  4278. "status": "covered",
  4279. "message": "Covered by Drupal's security advisory policy"
  4280. }
  4281. }
  4282. },
  4283. "notification-url": "https://packages.drupal.org/8/downloads",
  4284. "license": [
  4285. "GPL-2.0+"
  4286. ],
  4287. "authors": [
  4288. {
  4289. "name": "Hydra",
  4290. "homepage": "https://www.drupal.org/user/647364"
  4291. },
  4292. {
  4293. "name": "Stalski",
  4294. "homepage": "https://www.drupal.org/user/322618"
  4295. },
  4296. {
  4297. "name": "jyve",
  4298. "homepage": "https://www.drupal.org/user/591438"
  4299. },
  4300. {
  4301. "name": "swentel",
  4302. "homepage": "https://www.drupal.org/user/107403"
  4303. },
  4304. {
  4305. "name": "zuuperman",
  4306. "homepage": "https://www.drupal.org/user/361625"
  4307. }
  4308. ],
  4309. "description": "Provides the field_group module.",
  4310. "homepage": "https://www.drupal.org/project/field_group",
  4311. "support": {
  4312. "source": "http://cgit.drupalcode.org/field_group"
  4313. }
  4314. },
  4315. {
  4316. "name": "drupal/file_mdm",
  4317. "version": "1.1.0",
  4318. "source": {
  4319. "type": "git",
  4320. "url": "https://git.drupal.org/project/file_mdm",
  4321. "reference": "8.x-1.1"
  4322. },
  4323. "dist": {
  4324. "type": "zip",
  4325. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-1.1.zip",
  4326. "reference": "8.x-1.1",
  4327. "shasum": "7f354aec6f89e3141c2aa1fb3747ad5d4578c13f"
  4328. },
  4329. "require": {
  4330. "drupal/core": "~8.0",
  4331. "lsolesen/pel": "0.9.6",
  4332. "phenx/php-font-lib": "0.5",
  4333. "php": ">=5.6"
  4334. },
  4335. "require-dev": {
  4336. "drupal/image_effects": "*"
  4337. },
  4338. "type": "drupal-module",
  4339. "extra": {
  4340. "branch-alias": {
  4341. "dev-1.x": "1.x-dev"
  4342. },
  4343. "drupal": {
  4344. "version": "8.x-1.1",
  4345. "datestamp": "1488273785",
  4346. "security-coverage": {
  4347. "status": "covered",
  4348. "message": "Covered by Drupal's security advisory policy"
  4349. }
  4350. }
  4351. },
  4352. "notification-url": "https://packages.drupal.org/8/downloads",
  4353. "license": [
  4354. "GPL-2.0-or-later"
  4355. ],
  4356. "authors": [
  4357. {
  4358. "name": "mondrake",
  4359. "homepage": "https://www.drupal.org/user/1307444"
  4360. }
  4361. ],
  4362. "description": "Provides a service to manage file metadata.",
  4363. "homepage": "https://www.drupal.org/project/file_mdm",
  4364. "support": {
  4365. "source": "http://cgit.drupalcode.org/file_mdm"
  4366. }
  4367. },
  4368. {
  4369. "name": "drupal/file_mdm_exif",
  4370. "version": "1.1.0",
  4371. "require": {
  4372. "drupal/core": "~8.0",
  4373. "drupal/file_mdm": "self.version"
  4374. },
  4375. "require-dev": {
  4376. "drupal/image_effects": "*"
  4377. },
  4378. "type": "metapackage",
  4379. "extra": {
  4380. "branch-alias": {
  4381. "dev-1.x": "1.x-dev"
  4382. },
  4383. "drupal": {
  4384. "version": "8.x-1.1",
  4385. "datestamp": "1488273785",
  4386. "security-coverage": {
  4387. "status": "covered",
  4388. "message": "Covered by Drupal's security advisory policy"
  4389. }
  4390. }
  4391. },
  4392. "notification-url": "https://packages.drupal.org/8/downloads",
  4393. "license": [
  4394. "GPL-2.0-or-later"
  4395. ],
  4396. "authors": [
  4397. {
  4398. "name": "mondrake",
  4399. "homepage": "https://www.drupal.org/user/1307444"
  4400. }
  4401. ],
  4402. "description": "Provides a file metadata plugin for EXIF image information.",
  4403. "homepage": "https://www.drupal.org/project/file_mdm",
  4404. "support": {
  4405. "source": "http://cgit.drupalcode.org/file_mdm"
  4406. }
  4407. },
  4408. {
  4409. "name": "drupal/filefield_sources",
  4410. "version": "dev-1.x",
  4411. "source": {
  4412. "type": "git",
  4413. "url": "https://git.drupal.org/project/filefield_sources",
  4414. "reference": "b19c6a839804f47587828d4a50e29e0720fa4c08"
  4415. },
  4416. "require": {
  4417. "drupal/core": "*"
  4418. },
  4419. "type": "drupal-module",
  4420. "extra": {
  4421. "branch-alias": {
  4422. "dev-1.x": "1.x-dev"
  4423. },
  4424. "drupal": {
  4425. "version": "8.x-1.x-dev",
  4426. "datestamp": "1487711283",
  4427. "security-coverage": {
  4428. "status": "not-covered",
  4429. "message": "Dev releases are not covered by Drupal security advisories."
  4430. }
  4431. }
  4432. },
  4433. "notification-url": "https://packages.drupal.org/8/downloads",
  4434. "license": [
  4435. "GPL-2.0-or-later"
  4436. ],
  4437. "authors": [
  4438. {
  4439. "name": "profak",
  4440. "homepage": "https://www.drupal.org/user/782534"
  4441. },
  4442. {
  4443. "name": "quicksketch",
  4444. "homepage": "https://www.drupal.org/user/35821"
  4445. }
  4446. ],
  4447. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4448. "homepage": "https://www.drupal.org/project/filefield_sources",
  4449. "support": {
  4450. "source": "http://cgit.drupalcode.org/filefield_sources"
  4451. },
  4452. "time": "2017-02-21T21:07:00+00:00"
  4453. },
  4454. {
  4455. "name": "drupal/filter_perms",
  4456. "version": "dev-1.x",
  4457. "source": {
  4458. "type": "git",
  4459. "url": "https://git.drupal.org/project/filter_perms",
  4460. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4461. },
  4462. "require": {
  4463. "drupal/core": "*"
  4464. },
  4465. "type": "drupal-module",
  4466. "extra": {
  4467. "branch-alias": {
  4468. "dev-1.x": "1.x-dev"
  4469. },
  4470. "drupal": {
  4471. "version": "8.x-1.x-dev",
  4472. "datestamp": "1469645939",
  4473. "security-coverage": {
  4474. "status": "not-covered",
  4475. "message": "Dev releases are not covered by Drupal security advisories."
  4476. }
  4477. }
  4478. },
  4479. "notification-url": "https://packages.drupal.org/8/downloads",
  4480. "license": [
  4481. "GPL-2.0-or-later"
  4482. ],
  4483. "authors": [
  4484. {
  4485. "name": "cYu",
  4486. "homepage": "https://www.drupal.org/user/202205"
  4487. },
  4488. {
  4489. "name": "deekayen",
  4490. "homepage": "https://www.drupal.org/user/972"
  4491. },
  4492. {
  4493. "name": "willzyx",
  4494. "homepage": "https://www.drupal.org/user/1043862"
  4495. }
  4496. ],
  4497. "description": "Provides role and module filters to simplify the user permissions page.",
  4498. "homepage": "https://www.drupal.org/project/filter_perms",
  4499. "support": {
  4500. "source": "http://cgit.drupalcode.org/filter_perms"
  4501. },
  4502. "time": "2016-07-27T19:01:11+00:00"
  4503. },
  4504. {
  4505. "name": "drupal/honeypot",
  4506. "version": "1.29.0",
  4507. "source": {
  4508. "type": "git",
  4509. "url": "https://git.drupal.org/project/honeypot",
  4510. "reference": "8.x-1.29"
  4511. },
  4512. "dist": {
  4513. "type": "zip",
  4514. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4515. "reference": "8.x-1.29",
  4516. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4517. },
  4518. "require": {
  4519. "drupal/core": "~8.0"
  4520. },
  4521. "type": "drupal-module",
  4522. "extra": {
  4523. "branch-alias": {
  4524. "dev-1.x": "1.x-dev"
  4525. },
  4526. "drupal": {
  4527. "version": "8.x-1.29",
  4528. "datestamp": "1536179280",
  4529. "security-coverage": {
  4530. "status": "covered",
  4531. "message": "Covered by Drupal's security advisory policy"
  4532. }
  4533. }
  4534. },
  4535. "notification-url": "https://packages.drupal.org/8/downloads",
  4536. "license": [
  4537. "GPL-2.0+"
  4538. ],
  4539. "authors": [
  4540. {
  4541. "name": "Jeff Geerling",
  4542. "homepage": "https://www.drupal.org/user/389011",
  4543. "email": "geerlingguy@mac.com"
  4544. }
  4545. ],
  4546. "description": "Mitigates spam form submissions using the honeypot method.",
  4547. "homepage": "https://www.drupal.org/project/honeypot",
  4548. "keywords": [
  4549. "deterrent",
  4550. "form",
  4551. "honeypot",
  4552. "honeytrap",
  4553. "php",
  4554. "spam"
  4555. ],
  4556. "support": {
  4557. "source": "http://cgit.drupalcode.org/honeypot"
  4558. }
  4559. },
  4560. {
  4561. "name": "drupal/imagemagick",
  4562. "version": "2.3.0",
  4563. "source": {
  4564. "type": "git",
  4565. "url": "https://git.drupal.org/project/imagemagick",
  4566. "reference": "8.x-2.3"
  4567. },
  4568. "dist": {
  4569. "type": "zip",
  4570. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-2.3.zip",
  4571. "reference": "8.x-2.3",
  4572. "shasum": "8359921d4700e954364c2633332c20579bb75a34"
  4573. },
  4574. "require": {
  4575. "drupal/core": "^8.3",
  4576. "drupal/file_mdm": "^1.1",
  4577. "drupal/file_mdm_exif": "^1.1"
  4578. },
  4579. "type": "drupal-module",
  4580. "extra": {
  4581. "branch-alias": {
  4582. "dev-2.x": "2.x-dev"
  4583. },
  4584. "drupal": {
  4585. "version": "8.x-2.3",
  4586. "datestamp": "1520958305",
  4587. "security-coverage": {
  4588. "status": "covered",
  4589. "message": "Covered by Drupal's security advisory policy"
  4590. }
  4591. }
  4592. },
  4593. "notification-url": "https://packages.drupal.org/8/downloads",
  4594. "license": [
  4595. "GPL-2.0-or-later"
  4596. ],
  4597. "authors": [
  4598. {
  4599. "name": "Chris Charlton",
  4600. "homepage": "https://www.drupal.org/user/17089"
  4601. },
  4602. {
  4603. "name": "chx",
  4604. "homepage": "https://www.drupal.org/user/9446"
  4605. },
  4606. {
  4607. "name": "claudiu.cristea",
  4608. "homepage": "https://www.drupal.org/user/56348"
  4609. },
  4610. {
  4611. "name": "dman",
  4612. "homepage": "https://www.drupal.org/user/33240"
  4613. },
  4614. {
  4615. "name": "dopry",
  4616. "homepage": "https://www.drupal.org/user/22202"
  4617. },
  4618. {
  4619. "name": "drewish",
  4620. "homepage": "https://www.drupal.org/user/34869"
  4621. },
  4622. {
  4623. "name": "gdl",
  4624. "homepage": "https://www.drupal.org/user/507326"
  4625. },
  4626. {
  4627. "name": "mondrake",
  4628. "homepage": "https://www.drupal.org/user/1307444"
  4629. },
  4630. {
  4631. "name": "quicksketch",
  4632. "homepage": "https://www.drupal.org/user/35821"
  4633. },
  4634. {
  4635. "name": "sun",
  4636. "homepage": "https://www.drupal.org/user/54136"
  4637. },
  4638. {
  4639. "name": "walkah",
  4640. "homepage": "https://www.drupal.org/user/1531"
  4641. }
  4642. ],
  4643. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4644. "homepage": "https://www.drupal.org/project/imagemagick",
  4645. "support": {
  4646. "source": "http://cgit.drupalcode.org/imagemagick"
  4647. }
  4648. },
  4649. {
  4650. "name": "drupal/inline_entity_form",
  4651. "version": "1.0.0-rc1",
  4652. "source": {
  4653. "type": "git",
  4654. "url": "https://git.drupal.org/project/inline_entity_form",
  4655. "reference": "8.x-1.0-rc1"
  4656. },
  4657. "dist": {
  4658. "type": "zip",
  4659. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc1.zip",
  4660. "reference": "8.x-1.0-rc1",
  4661. "shasum": "898789fb6a0662fc2572b87f8d0654a0241473f9"
  4662. },
  4663. "require": {
  4664. "drupal/core": "~8.0"
  4665. },
  4666. "require-dev": {
  4667. "drupal/entity_reference_revisions": "*"
  4668. },
  4669. "type": "drupal-module",
  4670. "extra": {
  4671. "branch-alias": {
  4672. "dev-1.x": "1.x-dev"
  4673. },
  4674. "drupal": {
  4675. "version": "8.x-1.0-rc1",
  4676. "datestamp": "1527030784",
  4677. "security-coverage": {
  4678. "status": "not-covered",
  4679. "message": "RC releases are not covered by Drupal security advisories."
  4680. }
  4681. }
  4682. },
  4683. "notification-url": "https://packages.drupal.org/8/downloads",
  4684. "license": [
  4685. "GPL-2.0+"
  4686. ],
  4687. "authors": [
  4688. {
  4689. "name": "bojanz",
  4690. "homepage": "https://www.drupal.org/user/86106"
  4691. },
  4692. {
  4693. "name": "dawehner",
  4694. "homepage": "https://www.drupal.org/user/99340"
  4695. },
  4696. {
  4697. "name": "rszrama",
  4698. "homepage": "https://www.drupal.org/user/49344"
  4699. },
  4700. {
  4701. "name": "slashrsm",
  4702. "homepage": "https://www.drupal.org/user/744628"
  4703. },
  4704. {
  4705. "name": "webflo",
  4706. "homepage": "https://www.drupal.org/user/254778"
  4707. }
  4708. ],
  4709. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4710. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4711. "support": {
  4712. "source": "http://cgit.drupalcode.org/inline_entity_form"
  4713. }
  4714. },
  4715. {
  4716. "name": "drupal/kint",
  4717. "version": "1.2.0",
  4718. "require": {
  4719. "drupal/core": "~8.0",
  4720. "drupal/devel": "self.version"
  4721. },
  4722. "type": "metapackage",
  4723. "extra": {
  4724. "branch-alias": {
  4725. "dev-1.x": "1.x-dev"
  4726. },
  4727. "drupal": {
  4728. "version": "8.x-1.2",
  4729. "datestamp": "1507197844",
  4730. "security-coverage": {
  4731. "status": "covered",
  4732. "message": "Covered by Drupal's security advisory policy"
  4733. }
  4734. }
  4735. },
  4736. "notification-url": "https://packages.drupal.org/8/downloads",
  4737. "license": [
  4738. "GPL-2.0-or-later"
  4739. ],
  4740. "authors": [
  4741. {
  4742. "name": "catch",
  4743. "homepage": "https://www.drupal.org/user/35733"
  4744. },
  4745. {
  4746. "name": "juampynr",
  4747. "homepage": "https://www.drupal.org/user/682736"
  4748. },
  4749. {
  4750. "name": "lussoluca",
  4751. "homepage": "https://www.drupal.org/user/138068"
  4752. },
  4753. {
  4754. "name": "moshe weitzman",
  4755. "homepage": "https://www.drupal.org/user/23"
  4756. },
  4757. {
  4758. "name": "pcambra",
  4759. "homepage": "https://www.drupal.org/user/122101"
  4760. },
  4761. {
  4762. "name": "salvis",
  4763. "homepage": "https://www.drupal.org/user/82964"
  4764. },
  4765. {
  4766. "name": "willzyx",
  4767. "homepage": "https://www.drupal.org/user/1043862"
  4768. }
  4769. ],
  4770. "description": "Wrapper for Kint debugging tool",
  4771. "homepage": "https://www.drupal.org/project/devel",
  4772. "support": {
  4773. "source": "http://cgit.drupalcode.org/devel"
  4774. }
  4775. },
  4776. {
  4777. "name": "drupal/link_attributes",
  4778. "version": "1.5.0",
  4779. "source": {
  4780. "type": "git",
  4781. "url": "https://git.drupal.org/project/link_attributes",
  4782. "reference": "8.x-1.5"
  4783. },
  4784. "dist": {
  4785. "type": "zip",
  4786. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.5.zip",
  4787. "reference": "8.x-1.5",
  4788. "shasum": "48c0e6ac2c3f4843372abb394c1aabe380dfa604"
  4789. },
  4790. "require": {
  4791. "drupal/core": "*"
  4792. },
  4793. "type": "drupal-module",
  4794. "extra": {
  4795. "branch-alias": {
  4796. "dev-1.x": "1.x-dev"
  4797. },
  4798. "drupal": {
  4799. "version": "8.x-1.5",
  4800. "datestamp": "1537173781",
  4801. "security-coverage": {
  4802. "status": "covered",
  4803. "message": "Covered by Drupal's security advisory policy"
  4804. }
  4805. }
  4806. },
  4807. "notification-url": "https://packages.drupal.org/8/downloads",
  4808. "license": [
  4809. "GPL-2.0-or-later"
  4810. ],
  4811. "authors": [
  4812. {
  4813. "name": "larowlan",
  4814. "homepage": "https://www.drupal.org/user/395439"
  4815. }
  4816. ],
  4817. "description": "Provides a widget to allow settings of link attributes for menu links.",
  4818. "homepage": "https://www.drupal.org/project/link_attributes",
  4819. "support": {
  4820. "source": "http://cgit.drupalcode.org/link_attributes"
  4821. }
  4822. },
  4823. {
  4824. "name": "drupal/linkit",
  4825. "version": "4.3.0",
  4826. "source": {
  4827. "type": "git",
  4828. "url": "https://git.drupal.org/project/linkit",
  4829. "reference": "8.x-4.3"
  4830. },
  4831. "dist": {
  4832. "type": "zip",
  4833. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  4834. "reference": "8.x-4.3",
  4835. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  4836. },
  4837. "require": {
  4838. "drupal/core": "~8.0"
  4839. },
  4840. "type": "drupal-module",
  4841. "extra": {
  4842. "branch-alias": {
  4843. "dev-4.x": "4.x-dev"
  4844. },
  4845. "drupal": {
  4846. "version": "8.x-4.3",
  4847. "datestamp": "1490205830",
  4848. "security-coverage": {
  4849. "status": "covered",
  4850. "message": "Covered by Drupal's security advisory policy"
  4851. }
  4852. }
  4853. },
  4854. "notification-url": "https://packages.drupal.org/8/downloads",
  4855. "license": [
  4856. "GPL-2.0+"
  4857. ],
  4858. "authors": [
  4859. {
  4860. "name": "Emil Stjerneman",
  4861. "homepage": "https://stjerneman.com",
  4862. "email": "emil@stjerneman.com",
  4863. "role": "Maintainer"
  4864. }
  4865. ],
  4866. "description": "Linkit - Enriched linking experience",
  4867. "homepage": "http://drupal.org/project/linkit",
  4868. "support": {
  4869. "source": "http://cgit.drupalcode.org/linkit",
  4870. "issues": "http://drupal.org/project/linkit"
  4871. }
  4872. },
  4873. {
  4874. "name": "drupal/login_destination",
  4875. "version": "dev-1.x",
  4876. "source": {
  4877. "type": "git",
  4878. "url": "https://git.drupal.org/project/login_destination",
  4879. "reference": "54be8b89fdc073ca40af6b9b2eeb050e0aeb7908"
  4880. },
  4881. "require": {
  4882. "drupal/core": "~8.0"
  4883. },
  4884. "type": "drupal-module",
  4885. "extra": {
  4886. "branch-alias": {
  4887. "dev-1.x": "1.x-dev"
  4888. },
  4889. "drupal": {
  4890. "version": "8.x-1.x-dev",
  4891. "datestamp": "1514805485",
  4892. "security-coverage": {
  4893. "status": "not-covered",
  4894. "message": "Dev releases are not covered by Drupal security advisories."
  4895. }
  4896. }
  4897. },
  4898. "notification-url": "https://packages.drupal.org/8/downloads",
  4899. "license": [
  4900. "GPL-2.0-or-later"
  4901. ],
  4902. "authors": [
  4903. {
  4904. "name": "Oliver Huynh",
  4905. "homepage": "https://www.drupal.org/user/243730"
  4906. },
  4907. {
  4908. "name": "akashjain132",
  4909. "homepage": "https://www.drupal.org/user/2622667"
  4910. },
  4911. {
  4912. "name": "beautifulmind",
  4913. "homepage": "https://www.drupal.org/user/219482"
  4914. },
  4915. {
  4916. "name": "ddrozdik",
  4917. "homepage": "https://www.drupal.org/user/574124"
  4918. },
  4919. {
  4920. "name": "jng12",
  4921. "homepage": "https://www.drupal.org/user/204316"
  4922. },
  4923. {
  4924. "name": "marcp",
  4925. "homepage": "https://www.drupal.org/user/20885"
  4926. },
  4927. {
  4928. "name": "mithy",
  4929. "homepage": "https://www.drupal.org/user/258911"
  4930. },
  4931. {
  4932. "name": "moshe weitzman",
  4933. "homepage": "https://www.drupal.org/user/23"
  4934. },
  4935. {
  4936. "name": "quantumized",
  4937. "homepage": "https://www.drupal.org/user/61221"
  4938. },
  4939. {
  4940. "name": "rsvelko",
  4941. "homepage": "https://www.drupal.org/user/337401"
  4942. }
  4943. ],
  4944. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  4945. "homepage": "https://www.drupal.org/project/login_destination",
  4946. "support": {
  4947. "source": "http://cgit.drupalcode.org/login_destination"
  4948. },
  4949. "time": "2018-01-01T11:13:09+00:00"
  4950. },
  4951. {
  4952. "name": "drupal/maillog",
  4953. "version": "dev-1.x",
  4954. "source": {
  4955. "type": "git",
  4956. "url": "https://git.drupal.org/project/maillog",
  4957. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4958. },
  4959. "require": {
  4960. "drupal/core": "*"
  4961. },
  4962. "type": "drupal-module",
  4963. "extra": {
  4964. "branch-alias": {
  4965. "dev-1.x": "1.x-dev"
  4966. },
  4967. "drupal": {
  4968. "version": "8.x-1.x-dev",
  4969. "datestamp": "1470431939",
  4970. "security-coverage": {
  4971. "status": "not-covered",
  4972. "message": "Project has not opted into security advisory coverage!"
  4973. }
  4974. }
  4975. },
  4976. "notification-url": "https://packages.drupal.org/8/downloads",
  4977. "license": [
  4978. "GPL-2.0-or-later"
  4979. ],
  4980. "authors": [
  4981. {
  4982. "name": "Berdir",
  4983. "homepage": "https://www.drupal.org/user/214652"
  4984. },
  4985. {
  4986. "name": "DamienMcKenna",
  4987. "homepage": "https://www.drupal.org/user/108450"
  4988. },
  4989. {
  4990. "name": "miro_dietiker",
  4991. "homepage": "https://www.drupal.org/user/227761"
  4992. },
  4993. {
  4994. "name": "pluess",
  4995. "homepage": "https://www.drupal.org/user/84659"
  4996. }
  4997. ],
  4998. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4999. "homepage": "https://www.drupal.org/project/maillog",
  5000. "support": {
  5001. "source": "http://cgit.drupalcode.org/maillog"
  5002. },
  5003. "time": "2016-08-05T21:18:07+00:00"
  5004. },
  5005. {
  5006. "name": "drupal/mailsystem",
  5007. "version": "4.1.0",
  5008. "source": {
  5009. "type": "git",
  5010. "url": "https://git.drupal.org/project/mailsystem",
  5011. "reference": "8.x-4.1"
  5012. },
  5013. "dist": {
  5014. "type": "zip",
  5015. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.1.zip",
  5016. "reference": "8.x-4.1",
  5017. "shasum": "318b87f1fdf96e6db30b04a98108af02a0fc3dcc"
  5018. },
  5019. "require": {
  5020. "drupal/core": "^8.0.5"
  5021. },
  5022. "type": "drupal-module",
  5023. "extra": {
  5024. "branch-alias": {
  5025. "dev-4.x": "4.x-dev"
  5026. },
  5027. "drupal": {
  5028. "version": "8.x-4.1",
  5029. "datestamp": "1467993646",
  5030. "security-coverage": {
  5031. "status": "covered",
  5032. "message": "Covered by Drupal's security advisory policy"
  5033. }
  5034. }
  5035. },
  5036. "notification-url": "https://packages.drupal.org/8/downloads",
  5037. "license": [
  5038. "GPL-2.0+"
  5039. ],
  5040. "authors": [
  5041. {
  5042. "name": "Berdir",
  5043. "homepage": "https://www.drupal.org/user/214652"
  5044. },
  5045. {
  5046. "name": "Les Lim",
  5047. "homepage": "https://www.drupal.org/user/84263"
  5048. },
  5049. {
  5050. "name": "Nafes",
  5051. "homepage": "https://www.drupal.org/user/2489926"
  5052. },
  5053. {
  5054. "name": "miro_dietiker",
  5055. "homepage": "https://www.drupal.org/user/227761"
  5056. },
  5057. {
  5058. "name": "pillarsdotnet",
  5059. "homepage": "https://www.drupal.org/user/36148"
  5060. }
  5061. ],
  5062. "description": "Mail System",
  5063. "homepage": "https://www.drupal.org/project/mailsystem",
  5064. "support": {
  5065. "source": "http://cgit.drupalcode.org/mailsystem"
  5066. }
  5067. },
  5068. {
  5069. "name": "drupal/matomo",
  5070. "version": "1.7.0",
  5071. "source": {
  5072. "type": "git",
  5073. "url": "https://git.drupal.org/project/matomo",
  5074. "reference": "8.x-1.7"
  5075. },
  5076. "dist": {
  5077. "type": "zip",
  5078. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.7.zip",
  5079. "reference": "8.x-1.7",
  5080. "shasum": "6b7dbc8c76800a6dadb7568cf2a3f3efdde88e13"
  5081. },
  5082. "require": {
  5083. "drupal/core": "~8.0"
  5084. },
  5085. "require-dev": {
  5086. "drupal/php": "*",
  5087. "drupal/token": "*"
  5088. },
  5089. "type": "drupal-module",
  5090. "extra": {
  5091. "branch-alias": {
  5092. "dev-1.x": "1.x-dev"
  5093. },
  5094. "drupal": {
  5095. "version": "8.x-1.7",
  5096. "datestamp": "1531470197",
  5097. "security-coverage": {
  5098. "status": "covered",
  5099. "message": "Covered by Drupal's security advisory policy"
  5100. }
  5101. }
  5102. },
  5103. "notification-url": "https://packages.drupal.org/8/downloads",
  5104. "license": [
  5105. "GPL-2.0+"
  5106. ],
  5107. "authors": [
  5108. {
  5109. "name": "hass",
  5110. "homepage": "https://www.drupal.org/u/hass"
  5111. },
  5112. {
  5113. "name": "See other contributors",
  5114. "homepage": "https://www.drupal.org/node/247808/committers"
  5115. }
  5116. ],
  5117. "description": "Adds Matomo javascript tracking code to all your site's pages",
  5118. "homepage": "https://www.drupal.org/project/matomo",
  5119. "support": {
  5120. "source": "http://git.drupal.org/project/matomo.git",
  5121. "issues": "https://www.drupal.org/project/issues/matomo"
  5122. }
  5123. },
  5124. {
  5125. "name": "drupal/maxlength",
  5126. "version": "1.0.0-beta2",
  5127. "source": {
  5128. "type": "git",
  5129. "url": "https://git.drupal.org/project/maxlength",
  5130. "reference": "8.x-1.0-beta2"
  5131. },
  5132. "dist": {
  5133. "type": "zip",
  5134. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-beta2.zip",
  5135. "reference": "8.x-1.0-beta2",
  5136. "shasum": "27f7374e55ebdcc696d22d98be8cf4cf9bf58204"
  5137. },
  5138. "require": {
  5139. "drupal/core": "~8.0"
  5140. },
  5141. "type": "drupal-module",
  5142. "extra": {
  5143. "branch-alias": {
  5144. "dev-1.x": "1.x-dev"
  5145. },
  5146. "drupal": {
  5147. "version": "8.x-1.0-beta2",
  5148. "datestamp": "1527856384",
  5149. "security-coverage": {
  5150. "status": "not-covered",
  5151. "message": "Beta releases are not covered by Drupal security advisories."
  5152. }
  5153. }
  5154. },
  5155. "notification-url": "https://packages.drupal.org/8/downloads",
  5156. "license": [
  5157. "GPL-2.0-or-later"
  5158. ],
  5159. "authors": [
  5160. {
  5161. "name": "Aron Novak",
  5162. "homepage": "https://www.drupal.org/user/61864"
  5163. },
  5164. {
  5165. "name": "Schnitzel",
  5166. "homepage": "https://www.drupal.org/user/643820"
  5167. },
  5168. {
  5169. "name": "a_c_m",
  5170. "homepage": "https://www.drupal.org/user/195063"
  5171. },
  5172. {
  5173. "name": "artur.thiessen",
  5174. "homepage": "https://www.drupal.org/user/2390554"
  5175. },
  5176. {
  5177. "name": "barneytech",
  5178. "homepage": "https://www.drupal.org/user/669922"
  5179. },
  5180. {
  5181. "name": "claudiu_cristea",
  5182. "homepage": "https://www.drupal.org/user/2623935"
  5183. },
  5184. {
  5185. "name": "dawehner",
  5186. "homepage": "https://www.drupal.org/user/99340"
  5187. },
  5188. {
  5189. "name": "derhasi",
  5190. "homepage": "https://www.drupal.org/user/83474"
  5191. },
  5192. {
  5193. "name": "frjo",
  5194. "homepage": "https://www.drupal.org/user/5546"
  5195. },
  5196. {
  5197. "name": "hefox",
  5198. "homepage": "https://www.drupal.org/user/426416"
  5199. },
  5200. {
  5201. "name": "jm.federico",
  5202. "homepage": "https://www.drupal.org/user/509892"
  5203. },
  5204. {
  5205. "name": "k4v",
  5206. "homepage": "https://www.drupal.org/user/744246"
  5207. },
  5208. {
  5209. "name": "mariano73",
  5210. "homepage": "https://www.drupal.org/user/1324866"
  5211. },
  5212. {
  5213. "name": "mariuss",
  5214. "homepage": "https://www.drupal.org/user/28539"
  5215. },
  5216. {
  5217. "name": "sanduhrs",
  5218. "homepage": "https://www.drupal.org/user/28074"
  5219. },
  5220. {
  5221. "name": "vasi1186",
  5222. "homepage": "https://www.drupal.org/user/342104"
  5223. }
  5224. ],
  5225. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  5226. "homepage": "https://www.drupal.org/project/maxlength",
  5227. "support": {
  5228. "source": "http://cgit.drupalcode.org/maxlength"
  5229. }
  5230. },
  5231. {
  5232. "name": "drupal/menu_admin_per_menu",
  5233. "version": "1.0.0",
  5234. "source": {
  5235. "type": "git",
  5236. "url": "https://git.drupal.org/project/menu_admin_per_menu",
  5237. "reference": "8.x-1.0"
  5238. },
  5239. "dist": {
  5240. "type": "zip",
  5241. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  5242. "reference": "8.x-1.0",
  5243. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  5244. },
  5245. "require": {
  5246. "drupal/core": "*"
  5247. },
  5248. "type": "drupal-module",
  5249. "extra": {
  5250. "branch-alias": {
  5251. "dev-1.x": "1.x-dev"
  5252. },
  5253. "drupal": {
  5254. "version": "8.x-1.0",
  5255. "datestamp": "1507184944",
  5256. "security-coverage": {
  5257. "status": "covered",
  5258. "message": "Covered by Drupal's security advisory policy"
  5259. }
  5260. }
  5261. },
  5262. "notification-url": "https://packages.drupal.org/8/downloads",
  5263. "license": [
  5264. "GPL-2.0-or-later"
  5265. ],
  5266. "authors": [
  5267. {
  5268. "name": "anrikun",
  5269. "homepage": "https://www.drupal.org/user/410199"
  5270. },
  5271. {
  5272. "name": "mkdok",
  5273. "homepage": "https://www.drupal.org/user/3308753"
  5274. }
  5275. ],
  5276. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5277. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5278. "support": {
  5279. "source": "http://cgit.drupalcode.org/menu_admin_per_menu"
  5280. }
  5281. },
  5282. {
  5283. "name": "drupal/menu_block",
  5284. "version": "1.5.0",
  5285. "source": {
  5286. "type": "git",
  5287. "url": "https://git.drupal.org/project/menu_block",
  5288. "reference": "8.x-1.5"
  5289. },
  5290. "dist": {
  5291. "type": "zip",
  5292. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip",
  5293. "reference": "8.x-1.5",
  5294. "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b"
  5295. },
  5296. "require": {
  5297. "drupal/core": "*"
  5298. },
  5299. "type": "drupal-module",
  5300. "extra": {
  5301. "branch-alias": {
  5302. "dev-1.x": "1.x-dev"
  5303. },
  5304. "drupal": {
  5305. "version": "8.x-1.5",
  5306. "datestamp": "1525200184",
  5307. "security-coverage": {
  5308. "status": "covered",
  5309. "message": "Covered by Drupal's security advisory policy"
  5310. }
  5311. }
  5312. },
  5313. "notification-url": "https://packages.drupal.org/8/downloads",
  5314. "license": [
  5315. "GPL-2.0-or-later"
  5316. ],
  5317. "authors": [
  5318. {
  5319. "name": "Dave Reid",
  5320. "homepage": "https://www.drupal.org/user/53892"
  5321. },
  5322. {
  5323. "name": "JohnAlbin",
  5324. "homepage": "https://www.drupal.org/user/32095"
  5325. },
  5326. {
  5327. "name": "joelpittet",
  5328. "homepage": "https://www.drupal.org/user/160302"
  5329. },
  5330. {
  5331. "name": "kim.pepper",
  5332. "homepage": "https://www.drupal.org/user/370574"
  5333. },
  5334. {
  5335. "name": "rrrob",
  5336. "homepage": "https://www.drupal.org/user/273533"
  5337. }
  5338. ],
  5339. "description": "Provides configurable blocks of menu links.",
  5340. "homepage": "https://www.drupal.org/project/menu_block",
  5341. "support": {
  5342. "source": "http://cgit.drupalcode.org/menu_block"
  5343. }
  5344. },
  5345. {
  5346. "name": "drupal/menu_position",
  5347. "version": "dev-1.x",
  5348. "source": {
  5349. "type": "git",
  5350. "url": "https://git.drupal.org/project/menu_position",
  5351. "reference": "552e5b1fc5baaec4d0496dd1c67df710093beccb"
  5352. },
  5353. "require": {
  5354. "drupal/core": "~8.0"
  5355. },
  5356. "type": "drupal-module",
  5357. "extra": {
  5358. "branch-alias": {
  5359. "dev-1.x": "1.x-dev"
  5360. },
  5361. "drupal": {
  5362. "version": "8.x-1.x-dev",
  5363. "datestamp": "1546518480",
  5364. "security-coverage": {
  5365. "status": "not-covered",
  5366. "message": "Dev releases are not covered by Drupal security advisories."
  5367. }
  5368. }
  5369. },
  5370. "notification-url": "https://packages.drupal.org/8/downloads",
  5371. "license": [
  5372. "GPL-2.0+"
  5373. ],
  5374. "authors": [
  5375. {
  5376. "name": "BarisW",
  5377. "homepage": "https://www.drupal.org/user/107229"
  5378. },
  5379. {
  5380. "name": "JohnAlbin",
  5381. "homepage": "https://www.drupal.org/user/32095"
  5382. },
  5383. {
  5384. "name": "lbainbridge",
  5385. "homepage": "https://www.drupal.org/user/2406996"
  5386. }
  5387. ],
  5388. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5389. "homepage": "https://www.drupal.org/project/menu_position",
  5390. "support": {
  5391. "source": "http://cgit.drupalcode.org/menu_position",
  5392. "issues": "https://www.drupal.org/project/issues/menu_position"
  5393. },
  5394. "time": "2019-01-03T12:23:26+00:00"
  5395. },
  5396. {
  5397. "name": "drupal/migrate_plus",
  5398. "version": "4.1.0",
  5399. "source": {
  5400. "type": "git",
  5401. "url": "https://git.drupal.org/project/migrate_plus",
  5402. "reference": "8.x-4.1"
  5403. },
  5404. "dist": {
  5405. "type": "zip",
  5406. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.1.zip",
  5407. "reference": "8.x-4.1",
  5408. "shasum": "cfd7ef2b17ede664b2b74eb101032a03c386457e"
  5409. },
  5410. "require": {
  5411. "drupal/core": "^8.3"
  5412. },
  5413. "require-dev": {
  5414. "drupal/migrate_example_advanced_setup": "*",
  5415. "drupal/migrate_example_setup": "*",
  5416. "drupal/migrate_tools": "*"
  5417. },
  5418. "suggest": {
  5419. "ext-soap": "*",
  5420. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  5421. },
  5422. "type": "drupal-module",
  5423. "extra": {
  5424. "branch-alias": {
  5425. "dev-4.x": "4.x-dev"
  5426. },
  5427. "drupal": {
  5428. "version": "8.x-4.1",
  5429. "datestamp": "1546879080",
  5430. "security-coverage": {
  5431. "status": "covered",
  5432. "message": "Covered by Drupal's security advisory policy"
  5433. }
  5434. }
  5435. },
  5436. "notification-url": "https://packages.drupal.org/8/downloads",
  5437. "license": [
  5438. "GPL-2.0+"
  5439. ],
  5440. "authors": [
  5441. {
  5442. "name": "Mike Ryan",
  5443. "homepage": "https://www.drupal.org/u/mikeryan",
  5444. "role": "Maintainer"
  5445. },
  5446. {
  5447. "name": "mikeryan",
  5448. "homepage": "https://www.drupal.org/user/4420"
  5449. }
  5450. ],
  5451. "description": "Enhancements to core migration support.",
  5452. "homepage": "https://www.drupal.org/project/migrate_plus",
  5453. "support": {
  5454. "source": "https://cgit.drupalcode.org/migrate_plus",
  5455. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  5456. "irc": "irc://irc.freenode.org/drupal-migrate"
  5457. }
  5458. },
  5459. {
  5460. "name": "drupal/migrate_tools",
  5461. "version": "dev-4.x",
  5462. "source": {
  5463. "type": "git",
  5464. "url": "https://git.drupal.org/project/migrate_tools",
  5465. "reference": "853604c682a28b7d6960fa3d55eba36a443182bb"
  5466. },
  5467. "require": {
  5468. "drupal/core": "^8.3",
  5469. "drupal/migrate_plus": "^4"
  5470. },
  5471. "require-dev": {
  5472. "drupal/migrate_plus": "4.x-dev",
  5473. "drupal/migrate_source_csv": "^2.2",
  5474. "drush/drush": "^9"
  5475. },
  5476. "type": "drupal-module",
  5477. "extra": {
  5478. "branch-alias": {
  5479. "dev-4.x": "4.x-dev"
  5480. },
  5481. "drupal": {
  5482. "version": "8.x-4.0+14-dev",
  5483. "datestamp": "1545344880",
  5484. "security-coverage": {
  5485. "status": "not-covered",
  5486. "message": "Dev releases are not covered by Drupal security advisories."
  5487. }
  5488. },
  5489. "drush": {
  5490. "services": {
  5491. "drush.services.yml": "^9"
  5492. }
  5493. }
  5494. },
  5495. "notification-url": "https://packages.drupal.org/8/downloads",
  5496. "license": [
  5497. "GPL-2.0-or-later"
  5498. ],
  5499. "authors": [
  5500. {
  5501. "name": "heddn",
  5502. "homepage": "https://www.drupal.org/user/1463982"
  5503. },
  5504. {
  5505. "name": "mikeryan",
  5506. "homepage": "https://www.drupal.org/user/4420"
  5507. },
  5508. {
  5509. "name": "moshe weitzman",
  5510. "homepage": "https://www.drupal.org/user/23"
  5511. }
  5512. ],
  5513. "description": "Tools to assist in developing and running migrations.",
  5514. "homepage": "http://drupal.org/project/migrate_tools",
  5515. "support": {
  5516. "source": "http://cgit.drupalcode.org/migrate_tools",
  5517. "issues": "http://drupal.org/project/migrate_tools",
  5518. "irc": "irc://irc.freenode.org/drupal-migrate"
  5519. },
  5520. "time": "2018-12-20T22:27:32+00:00"
  5521. },
  5522. {
  5523. "name": "drupal/pagerer",
  5524. "version": "1.4.0",
  5525. "source": {
  5526. "type": "git",
  5527. "url": "https://git.drupal.org/project/pagerer",
  5528. "reference": "8.x-1.4"
  5529. },
  5530. "dist": {
  5531. "type": "zip",
  5532. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-1.4.zip",
  5533. "reference": "8.x-1.4",
  5534. "shasum": "9b4eb6899b0927859e7d5198f1fd814a10a66ddb"
  5535. },
  5536. "require": {
  5537. "drupal/core": "^8.1"
  5538. },
  5539. "type": "drupal-module",
  5540. "extra": {
  5541. "branch-alias": {
  5542. "dev-1.x": "1.x-dev"
  5543. },
  5544. "drupal": {
  5545. "version": "8.x-1.4",
  5546. "datestamp": "1522851484",
  5547. "security-coverage": {
  5548. "status": "covered",
  5549. "message": "Covered by Drupal's security advisory policy"
  5550. }
  5551. }
  5552. },
  5553. "notification-url": "https://packages.drupal.org/8/downloads",
  5554. "license": [
  5555. "GPL-2.0-or-later"
  5556. ],
  5557. "authors": [
  5558. {
  5559. "name": "mondrake",
  5560. "homepage": "https://www.drupal.org/user/1307444"
  5561. }
  5562. ],
  5563. "description": "Configurable pager styles.",
  5564. "homepage": "https://www.drupal.org/project/pagerer",
  5565. "support": {
  5566. "source": "http://cgit.drupalcode.org/pagerer"
  5567. }
  5568. },
  5569. {
  5570. "name": "drupal/path_alias_xt",
  5571. "version": "dev-1.x",
  5572. "source": {
  5573. "type": "git",
  5574. "url": "https://git.drupal.org/project/path_alias_xt",
  5575. "reference": "3a2d9beffd86d155c3a38a5194516f27c8793f14"
  5576. },
  5577. "require": {
  5578. "drupal/core": "*"
  5579. },
  5580. "type": "drupal-module",
  5581. "extra": {
  5582. "branch-alias": {
  5583. "dev-1.x": "1.x-dev"
  5584. },
  5585. "drupal": {
  5586. "version": "8.x-1.x-dev",
  5587. "datestamp": "1500044942",
  5588. "security-coverage": {
  5589. "status": "not-covered",
  5590. "message": "Dev releases are not covered by Drupal security advisories."
  5591. }
  5592. }
  5593. },
  5594. "notification-url": "https://packages.drupal.org/8/downloads",
  5595. "license": [
  5596. "GPL-2.0-or-later"
  5597. ],
  5598. "authors": [
  5599. {
  5600. "name": "RdeBoer",
  5601. "homepage": "https://www.drupal.org/user/404007"
  5602. },
  5603. {
  5604. "name": "adriancid",
  5605. "homepage": "https://www.drupal.org/user/1962106"
  5606. },
  5607. {
  5608. "name": "sdstyles",
  5609. "homepage": "https://www.drupal.org/user/1420228"
  5610. }
  5611. ],
  5612. "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.",
  5613. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5614. "support": {
  5615. "source": "http://cgit.drupalcode.org/path_alias_xt"
  5616. },
  5617. "time": "2018-11-19T15:25:48+00:00"
  5618. },
  5619. {
  5620. "name": "drupal/pathauto",
  5621. "version": "1.3.0",
  5622. "source": {
  5623. "type": "git",
  5624. "url": "https://git.drupal.org/project/pathauto",
  5625. "reference": "8.x-1.3"
  5626. },
  5627. "dist": {
  5628. "type": "zip",
  5629. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip",
  5630. "reference": "8.x-1.3",
  5631. "shasum": "115d5998d7636a03e26c7ce34261b65809d53965"
  5632. },
  5633. "require": {
  5634. "drupal/core": "^8.5",
  5635. "drupal/ctools": "*",
  5636. "drupal/token": "*"
  5637. },
  5638. "type": "drupal-module",
  5639. "extra": {
  5640. "branch-alias": {
  5641. "dev-1.x": "1.x-dev"
  5642. },
  5643. "drupal": {
  5644. "version": "8.x-1.3",
  5645. "datestamp": "1536407884",
  5646. "security-coverage": {
  5647. "status": "covered",
  5648. "message": "Covered by Drupal's security advisory policy"
  5649. }
  5650. }
  5651. },
  5652. "notification-url": "https://packages.drupal.org/8/downloads",
  5653. "license": [
  5654. "GPL-2.0-or-later"
  5655. ],
  5656. "authors": [
  5657. {
  5658. "name": "Berdir",
  5659. "homepage": "https://www.drupal.org/user/214652"
  5660. },
  5661. {
  5662. "name": "Dave Reid",
  5663. "homepage": "https://www.drupal.org/user/53892"
  5664. },
  5665. {
  5666. "name": "Freso",
  5667. "homepage": "https://www.drupal.org/user/27504"
  5668. },
  5669. {
  5670. "name": "greggles",
  5671. "homepage": "https://www.drupal.org/user/36762"
  5672. }
  5673. ],
  5674. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5675. "homepage": "https://www.drupal.org/project/pathauto",
  5676. "support": {
  5677. "source": "http://cgit.drupalcode.org/pathauto"
  5678. }
  5679. },
  5680. {
  5681. "name": "drupal/pathologic",
  5682. "version": "1.0.0-alpha1",
  5683. "source": {
  5684. "type": "git",
  5685. "url": "https://git.drupal.org/project/pathologic",
  5686. "reference": "8.x-1.0-alpha1"
  5687. },
  5688. "dist": {
  5689. "type": "zip",
  5690. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha1.zip",
  5691. "reference": "8.x-1.0-alpha1",
  5692. "shasum": "51c699cc001969baa00cca60cf2302a32e578090"
  5693. },
  5694. "require": {
  5695. "drupal/core": "*"
  5696. },
  5697. "type": "drupal-module",
  5698. "extra": {
  5699. "branch-alias": {
  5700. "dev-1.x": "1.x-dev"
  5701. },
  5702. "drupal": {
  5703. "version": "8.x-1.0-alpha1",
  5704. "datestamp": "1525211884",
  5705. "security-coverage": {
  5706. "status": "not-covered",
  5707. "message": "Alpha releases are not covered by Drupal security advisories."
  5708. }
  5709. }
  5710. },
  5711. "notification-url": "https://packages.drupal.org/8/downloads",
  5712. "license": [
  5713. "GPL-2.0-or-later"
  5714. ],
  5715. "authors": [
  5716. {
  5717. "name": "Berdir",
  5718. "homepage": "https://www.drupal.org/user/214652"
  5719. },
  5720. {
  5721. "name": "Garrett Albright",
  5722. "homepage": "https://www.drupal.org/user/191212"
  5723. },
  5724. {
  5725. "name": "dww",
  5726. "homepage": "https://www.drupal.org/user/46549"
  5727. }
  5728. ],
  5729. "description": "Helps avoid broken links and incorrect paths in content.",
  5730. "homepage": "https://www.drupal.org/project/pathologic",
  5731. "support": {
  5732. "source": "http://cgit.drupalcode.org/pathologic"
  5733. }
  5734. },
  5735. {
  5736. "name": "drupal/persistent_login",
  5737. "version": "1.1.0",
  5738. "source": {
  5739. "type": "git",
  5740. "url": "https://git.drupal.org/project/persistent_login",
  5741. "reference": "8.x-1.1"
  5742. },
  5743. "dist": {
  5744. "type": "zip",
  5745. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.1.zip",
  5746. "reference": "8.x-1.1",
  5747. "shasum": "b1e8f725662ab915767f339e00d7b185ac9097b2"
  5748. },
  5749. "require": {
  5750. "drupal/core": "^8.3"
  5751. },
  5752. "type": "drupal-module",
  5753. "extra": {
  5754. "branch-alias": {
  5755. "dev-1.x": "1.x-dev"
  5756. },
  5757. "drupal": {
  5758. "version": "8.x-1.1",
  5759. "datestamp": "1539379980",
  5760. "security-coverage": {
  5761. "status": "covered",
  5762. "message": "Covered by Drupal's security advisory policy"
  5763. }
  5764. }
  5765. },
  5766. "notification-url": "https://packages.drupal.org/8/downloads",
  5767. "license": [
  5768. "GPL-2.0+"
  5769. ],
  5770. "authors": [
  5771. {
  5772. "name": "gapple",
  5773. "homepage": "https://www.drupal.org/user/490940"
  5774. }
  5775. ],
  5776. "description": "Provides a \"Remember Me\" feature on the login form.",
  5777. "homepage": "https://www.drupal.org/project/persistent_login",
  5778. "keywords": [
  5779. "Drupal"
  5780. ],
  5781. "support": {
  5782. "source": "http://cgit.drupalcode.org/persistent_login",
  5783. "issues": "http://drupal.org/project/issues/persistent_login"
  5784. }
  5785. },
  5786. {
  5787. "name": "drupal/profile",
  5788. "version": "1.0.0-rc1",
  5789. "source": {
  5790. "type": "git",
  5791. "url": "https://git.drupal.org/project/profile",
  5792. "reference": "8.x-1.0-rc1"
  5793. },
  5794. "dist": {
  5795. "type": "zip",
  5796. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc1.zip",
  5797. "reference": "8.x-1.0-rc1",
  5798. "shasum": "cc537ca25412adc4fa601ff42cf2fb5cbc6e7b6b"
  5799. },
  5800. "require": {
  5801. "drupal/core": "~8.1",
  5802. "drupal/entity": "*"
  5803. },
  5804. "type": "drupal-module",
  5805. "extra": {
  5806. "branch-alias": {
  5807. "dev-1.x": "1.x-dev"
  5808. },
  5809. "drupal": {
  5810. "version": "8.x-1.0-rc1",
  5811. "datestamp": "1505830324",
  5812. "security-coverage": {
  5813. "status": "not-covered",
  5814. "message": "RC releases are not covered by Drupal security advisories."
  5815. }
  5816. }
  5817. },
  5818. "notification-url": "https://packages.drupal.org/8/downloads",
  5819. "license": [
  5820. "GPL-2.0+"
  5821. ],
  5822. "authors": [
  5823. {
  5824. "name": "bojanz",
  5825. "homepage": "https://www.drupal.org/user/86106"
  5826. },
  5827. {
  5828. "name": "daggerhart",
  5829. "homepage": "https://www.drupal.org/user/167806"
  5830. },
  5831. {
  5832. "name": "dakala",
  5833. "homepage": "https://www.drupal.org/user/53175"
  5834. },
  5835. {
  5836. "name": "fago",
  5837. "homepage": "https://www.drupal.org/user/16747"
  5838. },
  5839. {
  5840. "name": "mglaman",
  5841. "homepage": "https://www.drupal.org/user/2416470"
  5842. },
  5843. {
  5844. "name": "pcambra",
  5845. "homepage": "https://www.drupal.org/user/122101"
  5846. }
  5847. ],
  5848. "description": "Provides configurable user profiles.",
  5849. "homepage": "http://drupal.org/project/profile",
  5850. "support": {
  5851. "source": "http://cgit.drupalcode.org/profile"
  5852. }
  5853. },
  5854. {
  5855. "name": "drupal/redirect",
  5856. "version": "1.3.0",
  5857. "source": {
  5858. "type": "git",
  5859. "url": "https://git.drupal.org/project/redirect",
  5860. "reference": "8.x-1.3"
  5861. },
  5862. "dist": {
  5863. "type": "zip",
  5864. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  5865. "reference": "8.x-1.3",
  5866. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  5867. },
  5868. "require": {
  5869. "drupal/core": "~8"
  5870. },
  5871. "type": "drupal-module",
  5872. "extra": {
  5873. "branch-alias": {
  5874. "dev-1.x": "1.x-dev"
  5875. },
  5876. "drupal": {
  5877. "version": "8.x-1.3",
  5878. "datestamp": "1539682684",
  5879. "security-coverage": {
  5880. "status": "covered",
  5881. "message": "Covered by Drupal's security advisory policy"
  5882. }
  5883. }
  5884. },
  5885. "notification-url": "https://packages.drupal.org/8/downloads",
  5886. "license": [
  5887. "GPL-2.0+"
  5888. ],
  5889. "authors": [
  5890. {
  5891. "name": "Berdir",
  5892. "homepage": "https://www.drupal.org/user/214652"
  5893. },
  5894. {
  5895. "name": "Dave Reid",
  5896. "homepage": "https://www.drupal.org/user/53892"
  5897. },
  5898. {
  5899. "name": "pifagor",
  5900. "homepage": "https://www.drupal.org/user/2375692"
  5901. }
  5902. ],
  5903. "description": "Allows users to redirect from old URLs to new URLs.",
  5904. "homepage": "https://www.drupal.org/project/redirect",
  5905. "support": {
  5906. "source": "http://cgit.drupalcode.org/redirect"
  5907. }
  5908. },
  5909. {
  5910. "name": "drupal/redis",
  5911. "version": "1.1.0",
  5912. "source": {
  5913. "type": "git",
  5914. "url": "https://git.drupal.org/project/redis",
  5915. "reference": "8.x-1.1"
  5916. },
  5917. "dist": {
  5918. "type": "zip",
  5919. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.1.zip",
  5920. "reference": "8.x-1.1",
  5921. "shasum": "33337fe1cbd2824797e87533b30e4886b48ecd77"
  5922. },
  5923. "require": {
  5924. "drupal/core": "~8.0"
  5925. },
  5926. "suggest": {
  5927. "predis/predis": "^1.1.1"
  5928. },
  5929. "type": "drupal-module",
  5930. "extra": {
  5931. "branch-alias": {
  5932. "dev-1.x": "1.x-dev"
  5933. },
  5934. "drupal": {
  5935. "version": "8.x-1.1",
  5936. "datestamp": "1541600580",
  5937. "security-coverage": {
  5938. "status": "covered",
  5939. "message": "Covered by Drupal's security advisory policy"
  5940. }
  5941. }
  5942. },
  5943. "autoload": {
  5944. "psr-4": {
  5945. "Drupal\\redis\\": "src"
  5946. }
  5947. },
  5948. "notification-url": "https://packages.drupal.org/8/downloads",
  5949. "license": [
  5950. "GPL-2.0"
  5951. ],
  5952. "authors": [
  5953. {
  5954. "name": "Berdir",
  5955. "homepage": "https://www.drupal.org/user/214652"
  5956. },
  5957. {
  5958. "name": "pounard",
  5959. "homepage": "https://www.drupal.org/user/240164"
  5960. }
  5961. ],
  5962. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5963. "homepage": "https://www.drupal.org/project/redis",
  5964. "support": {
  5965. "source": "http://cgit.drupalcode.org/redis"
  5966. }
  5967. },
  5968. {
  5969. "name": "drupal/search_api",
  5970. "version": "1.11.0",
  5971. "source": {
  5972. "type": "git",
  5973. "url": "https://git.drupal.org/project/search_api",
  5974. "reference": "8.x-1.11"
  5975. },
  5976. "dist": {
  5977. "type": "zip",
  5978. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.11.zip",
  5979. "reference": "8.x-1.11",
  5980. "shasum": "d2bf92afa2ee760977dde1fadcb5bb64a4c2d7c1"
  5981. },
  5982. "require": {
  5983. "drupal/core": "^8.5"
  5984. },
  5985. "require-dev": {
  5986. "drupal/search_api_autocomplete": "@dev",
  5987. "drupal/search_api_db": "*"
  5988. },
  5989. "suggest": {
  5990. "drupal/facets": "Adds the ability to create faceted searches.",
  5991. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5992. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5993. },
  5994. "type": "drupal-module",
  5995. "extra": {
  5996. "branch-alias": {
  5997. "dev-1.x": "1.x-dev"
  5998. },
  5999. "drupal": {
  6000. "version": "8.x-1.11",
  6001. "datestamp": "1542564480",
  6002. "security-coverage": {
  6003. "status": "covered",
  6004. "message": "Covered by Drupal's security advisory policy"
  6005. }
  6006. },
  6007. "drush": {
  6008. "services": {
  6009. "drush.services.yml": "^9"
  6010. }
  6011. }
  6012. },
  6013. "notification-url": "https://packages.drupal.org/8/downloads",
  6014. "license": [
  6015. "GPL-2.0+"
  6016. ],
  6017. "authors": [
  6018. {
  6019. "name": "Thomas Seidl",
  6020. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6021. },
  6022. {
  6023. "name": "Nick Veenhof",
  6024. "homepage": "https://www.drupal.org/u/nick_vh"
  6025. },
  6026. {
  6027. "name": "See other contributors",
  6028. "homepage": "https://www.drupal.org/node/790418/committers"
  6029. }
  6030. ],
  6031. "description": "Provides a generic framework for modules offering search capabilities.",
  6032. "homepage": "https://www.drupal.org/project/search_api",
  6033. "support": {
  6034. "source": "http://git.drupal.org/project/search_api.git",
  6035. "issues": "https://www.drupal.org/project/issues/search_api",
  6036. "irc": "irc://irc.freenode.org/drupal-search-api"
  6037. }
  6038. },
  6039. {
  6040. "name": "drupal/search_api_db",
  6041. "version": "1.11.0",
  6042. "require": {
  6043. "drupal/core": "~8.0",
  6044. "drupal/search_api": "self.version"
  6045. },
  6046. "type": "metapackage",
  6047. "extra": {
  6048. "branch-alias": {
  6049. "dev-1.x": "1.x-dev"
  6050. },
  6051. "drupal": {
  6052. "version": "8.x-1.11",
  6053. "datestamp": "1542564480",
  6054. "security-coverage": {
  6055. "status": "covered",
  6056. "message": "Covered by Drupal's security advisory policy"
  6057. }
  6058. }
  6059. },
  6060. "notification-url": "https://packages.drupal.org/8/downloads",
  6061. "license": [
  6062. "GPL-2.0-or-later"
  6063. ],
  6064. "authors": [
  6065. {
  6066. "name": "Nick_vh",
  6067. "homepage": "https://www.drupal.org/user/122682"
  6068. },
  6069. {
  6070. "name": "drunken monkey",
  6071. "homepage": "https://www.drupal.org/user/205582"
  6072. }
  6073. ],
  6074. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6075. "homepage": "https://www.drupal.org/project/search_api",
  6076. "support": {
  6077. "source": "http://cgit.drupalcode.org/search_api"
  6078. }
  6079. },
  6080. {
  6081. "name": "drupal/smart_trim",
  6082. "version": "1.1.0",
  6083. "source": {
  6084. "type": "git",
  6085. "url": "https://git.drupal.org/project/smart_trim",
  6086. "reference": "8.x-1.1"
  6087. },
  6088. "dist": {
  6089. "type": "zip",
  6090. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.1.zip",
  6091. "reference": "8.x-1.1",
  6092. "shasum": "5f1c0f15914208e0ad2ec5cce1d6419040596fc0"
  6093. },
  6094. "require": {
  6095. "drupal/core": "*"
  6096. },
  6097. "type": "drupal-module",
  6098. "extra": {
  6099. "branch-alias": {
  6100. "dev-1.x": "1.x-dev"
  6101. },
  6102. "drupal": {
  6103. "version": "8.x-1.1",
  6104. "datestamp": "1516301286",
  6105. "security-coverage": {
  6106. "status": "covered",
  6107. "message": "Covered by Drupal's security advisory policy"
  6108. }
  6109. }
  6110. },
  6111. "notification-url": "https://packages.drupal.org/8/downloads",
  6112. "license": [
  6113. "GPL-2.0+"
  6114. ],
  6115. "authors": [
  6116. {
  6117. "name": "Mark Casias (markie)",
  6118. "homepage": "https://www.drupal.org/u/markie",
  6119. "role": "Maintainer"
  6120. },
  6121. {
  6122. "name": "chrisjlee",
  6123. "homepage": "https://www.drupal.org/user/760600"
  6124. },
  6125. {
  6126. "name": "drywall",
  6127. "homepage": "https://www.drupal.org/user/192591"
  6128. },
  6129. {
  6130. "name": "jsenich",
  6131. "homepage": "https://www.drupal.org/user/58871"
  6132. },
  6133. {
  6134. "name": "markie",
  6135. "homepage": "https://www.drupal.org/user/206687"
  6136. },
  6137. {
  6138. "name": "newsignature",
  6139. "homepage": "https://www.drupal.org/user/765518"
  6140. }
  6141. ],
  6142. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6143. "homepage": "https://drupal.org/project/smart_trim",
  6144. "support": {
  6145. "source": "https://cgit.drupalcode.org/smart_trim",
  6146. "issues": "https://drupal.org/project/issues/smart_trim"
  6147. }
  6148. },
  6149. {
  6150. "name": "drupal/smtp",
  6151. "version": "1.0.0-beta4",
  6152. "source": {
  6153. "type": "git",
  6154. "url": "https://git.drupal.org/project/smtp",
  6155. "reference": "8.x-1.0-beta4"
  6156. },
  6157. "dist": {
  6158. "type": "zip",
  6159. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0-beta4.zip",
  6160. "reference": "8.x-1.0-beta4",
  6161. "shasum": "80a4df4b2fd2d1b2dc653552d232ce98cb54bb9d"
  6162. },
  6163. "require": {
  6164. "drupal/core": "~8.0"
  6165. },
  6166. "type": "drupal-module",
  6167. "extra": {
  6168. "branch-alias": {
  6169. "dev-1.x": "1.x-dev"
  6170. },
  6171. "drupal": {
  6172. "version": "8.x-1.0-beta4",
  6173. "datestamp": "1527598380",
  6174. "security-coverage": {
  6175. "status": "not-covered",
  6176. "message": "Beta releases are not covered by Drupal security advisories."
  6177. }
  6178. }
  6179. },
  6180. "notification-url": "https://packages.drupal.org/8/downloads",
  6181. "license": [
  6182. "GPL-2.0"
  6183. ],
  6184. "authors": [
  6185. {
  6186. "name": "LukeLast",
  6187. "homepage": "https://www.drupal.org/user/30151"
  6188. },
  6189. {
  6190. "name": "japerry",
  6191. "homepage": "https://www.drupal.org/user/45640"
  6192. },
  6193. {
  6194. "name": "josesanmartin",
  6195. "homepage": "https://www.drupal.org/user/72012"
  6196. },
  6197. {
  6198. "name": "oadaeh",
  6199. "homepage": "https://www.drupal.org/user/4649"
  6200. },
  6201. {
  6202. "name": "wundo",
  6203. "homepage": "https://www.drupal.org/user/25523"
  6204. },
  6205. {
  6206. "name": "yettyn",
  6207. "homepage": "https://www.drupal.org/user/93281"
  6208. }
  6209. ],
  6210. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6211. "homepage": "https://www.drupal.org/project/smtp",
  6212. "support": {
  6213. "source": "http://cgit.drupalcode.org/smtp",
  6214. "issues": "https://www.drupal.org/project/issues/smtp"
  6215. }
  6216. },
  6217. {
  6218. "name": "drupal/synonyms",
  6219. "version": "dev-1.x",
  6220. "source": {
  6221. "type": "git",
  6222. "url": "https://git.drupal.org/project/synonyms",
  6223. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  6224. },
  6225. "require": {
  6226. "drupal/core": "^8.2"
  6227. },
  6228. "type": "drupal-module",
  6229. "extra": {
  6230. "branch-alias": {
  6231. "dev-1.x": "1.x-dev"
  6232. },
  6233. "drupal": {
  6234. "version": "8.x-1.0-alpha1+4-dev",
  6235. "datestamp": "1520765584",
  6236. "security-coverage": {
  6237. "status": "not-covered",
  6238. "message": "Dev releases are not covered by Drupal security advisories."
  6239. }
  6240. }
  6241. },
  6242. "notification-url": "https://packages.drupal.org/8/downloads",
  6243. "license": [
  6244. "GPL-2.0-or-later"
  6245. ],
  6246. "authors": [
  6247. {
  6248. "name": "Zen",
  6249. "homepage": "https://www.drupal.org/user/21209"
  6250. },
  6251. {
  6252. "name": "bojanz",
  6253. "homepage": "https://www.drupal.org/user/86106"
  6254. },
  6255. {
  6256. "name": "bucefal91",
  6257. "homepage": "https://www.drupal.org/user/504128"
  6258. }
  6259. ],
  6260. "description": "Provides synonyms feature for content entities.",
  6261. "homepage": "https://www.drupal.org/project/synonyms",
  6262. "support": {
  6263. "source": "http://cgit.drupalcode.org/synonyms"
  6264. },
  6265. "time": "2018-10-21T17:05:25+00:00"
  6266. },
  6267. {
  6268. "name": "drupal/telephone_formatter",
  6269. "version": "1.0.0-beta1",
  6270. "source": {
  6271. "type": "git",
  6272. "url": "https://git.drupal.org/project/telephone_formatter",
  6273. "reference": "8.x-1.0-beta1"
  6274. },
  6275. "dist": {
  6276. "type": "zip",
  6277. "url": "https://ftp.drupal.org/files/projects/telephone_formatter-8.x-1.0-beta1.zip",
  6278. "reference": "8.x-1.0-beta1",
  6279. "shasum": "6d606d98840d983ace3f642879cb49683f2c1711"
  6280. },
  6281. "require": {
  6282. "drupal/core": "*",
  6283. "giggsey/libphonenumber-for-php": "^8.0"
  6284. },
  6285. "suggest": {
  6286. "drupal/telephone_validation": "Unsure data quality"
  6287. },
  6288. "type": "drupal-module",
  6289. "extra": {
  6290. "branch-alias": {
  6291. "dev-1.x": "1.x-dev"
  6292. },
  6293. "drupal": {
  6294. "version": "8.x-1.0-beta1",
  6295. "datestamp": "1492638542",
  6296. "security-coverage": {
  6297. "status": "not-covered",
  6298. "message": "Beta releases are not covered by Drupal security advisories."
  6299. }
  6300. }
  6301. },
  6302. "notification-url": "https://packages.drupal.org/8/downloads",
  6303. "license": [
  6304. "GPL-2.0+"
  6305. ],
  6306. "authors": [
  6307. {
  6308. "name": "Jakub Piasecki",
  6309. "homepage": "https://www.drupal.org/user/1532844",
  6310. "email": "jakub@piaseccy.pl"
  6311. }
  6312. ],
  6313. "description": "Additional formatters to Telephone field.",
  6314. "homepage": "https://www.drupal.org/project/telephone_formatter",
  6315. "support": {
  6316. "source": "http://cgit.drupalcode.org/telephone_formatter",
  6317. "issues": "http://drupal.org/project/issues/telephone_formatter"
  6318. }
  6319. },
  6320. {
  6321. "name": "drupal/token",
  6322. "version": "1.5.0",
  6323. "source": {
  6324. "type": "git",
  6325. "url": "https://git.drupal.org/project/token",
  6326. "reference": "8.x-1.5"
  6327. },
  6328. "dist": {
  6329. "type": "zip",
  6330. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  6331. "reference": "8.x-1.5",
  6332. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  6333. },
  6334. "require": {
  6335. "drupal/core": "^8.5"
  6336. },
  6337. "type": "drupal-module",
  6338. "extra": {
  6339. "branch-alias": {
  6340. "dev-1.x": "1.x-dev"
  6341. },
  6342. "drupal": {
  6343. "version": "8.x-1.5",
  6344. "datestamp": "1537557481",
  6345. "security-coverage": {
  6346. "status": "covered",
  6347. "message": "Covered by Drupal's security advisory policy"
  6348. }
  6349. }
  6350. },
  6351. "notification-url": "https://packages.drupal.org/8/downloads",
  6352. "license": [
  6353. "GPL-2.0-or-later"
  6354. ],
  6355. "authors": [
  6356. {
  6357. "name": "Berdir",
  6358. "homepage": "https://www.drupal.org/user/214652"
  6359. },
  6360. {
  6361. "name": "Dave Reid",
  6362. "homepage": "https://www.drupal.org/user/53892"
  6363. },
  6364. {
  6365. "name": "eaton",
  6366. "homepage": "https://www.drupal.org/user/16496"
  6367. },
  6368. {
  6369. "name": "fago",
  6370. "homepage": "https://www.drupal.org/user/16747"
  6371. },
  6372. {
  6373. "name": "greggles",
  6374. "homepage": "https://www.drupal.org/user/36762"
  6375. },
  6376. {
  6377. "name": "mikeryan",
  6378. "homepage": "https://www.drupal.org/user/4420"
  6379. }
  6380. ],
  6381. "description": "Provides a user interface for the Token API and some missing core tokens.",
  6382. "homepage": "https://www.drupal.org/project/token",
  6383. "support": {
  6384. "source": "http://cgit.drupalcode.org/token"
  6385. }
  6386. },
  6387. {
  6388. "name": "drupal/toolbar_themes",
  6389. "version": "1.0.0-alpha4",
  6390. "source": {
  6391. "type": "git",
  6392. "url": "https://git.drupal.org/project/toolbar_themes",
  6393. "reference": "8.x-1.0-alpha4"
  6394. },
  6395. "dist": {
  6396. "type": "zip",
  6397. "url": "https://ftp.drupal.org/files/projects/toolbar_themes-8.x-1.0-alpha4.zip",
  6398. "reference": "8.x-1.0-alpha4",
  6399. "shasum": "15c38da8bfd5a44e47e436d8f432a0aaf6b2cd70"
  6400. },
  6401. "require": {
  6402. "drupal/core": "*"
  6403. },
  6404. "type": "drupal-module",
  6405. "extra": {
  6406. "branch-alias": {
  6407. "dev-1.x": "1.x-dev"
  6408. },
  6409. "drupal": {
  6410. "version": "8.x-1.0-alpha4",
  6411. "datestamp": "1474198439",
  6412. "security-coverage": {
  6413. "status": "not-covered",
  6414. "message": "Project has not opted into security advisory coverage!"
  6415. }
  6416. }
  6417. },
  6418. "notification-url": "https://packages.drupal.org/8/downloads",
  6419. "license": [
  6420. "GPL-2.0-or-later"
  6421. ],
  6422. "authors": [
  6423. {
  6424. "name": "Jeff Burnz",
  6425. "homepage": "https://www.drupal.org/user/61393"
  6426. }
  6427. ],
  6428. "description": "Apply themes to the toolbar.",
  6429. "homepage": "https://www.drupal.org/project/toolbar_themes",
  6430. "support": {
  6431. "source": "http://cgit.drupalcode.org/toolbar_themes"
  6432. }
  6433. },
  6434. {
  6435. "name": "drupal/translation_views",
  6436. "version": "1.0.0-alpha4",
  6437. "source": {
  6438. "type": "git",
  6439. "url": "https://git.drupal.org/project/translation_views",
  6440. "reference": "8.x-1.0-alpha4"
  6441. },
  6442. "dist": {
  6443. "type": "zip",
  6444. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha4.zip",
  6445. "reference": "8.x-1.0-alpha4",
  6446. "shasum": "96f7828005a8d559f31f0dfcb471a68698311cda"
  6447. },
  6448. "require": {
  6449. "drupal/core": "*"
  6450. },
  6451. "type": "drupal-module",
  6452. "extra": {
  6453. "branch-alias": {
  6454. "dev-1.x": "1.x-dev"
  6455. },
  6456. "drupal": {
  6457. "version": "8.x-1.0-alpha4",
  6458. "datestamp": "1538124180",
  6459. "security-coverage": {
  6460. "status": "not-covered",
  6461. "message": "Project has not opted into security advisory coverage!"
  6462. }
  6463. }
  6464. },
  6465. "notification-url": "https://packages.drupal.org/8/downloads",
  6466. "license": [
  6467. "GPL-2.0-or-later"
  6468. ],
  6469. "authors": [
  6470. {
  6471. "name": "matsbla",
  6472. "homepage": "https://www.drupal.org/user/2325394"
  6473. },
  6474. {
  6475. "name": "vlad.dancer",
  6476. "homepage": "https://www.drupal.org/user/903844"
  6477. }
  6478. ],
  6479. "description": "Create customized lists and queries of translations from your database.",
  6480. "homepage": "https://www.drupal.org/project/translation_views",
  6481. "support": {
  6482. "source": "http://cgit.drupalcode.org/translation_views"
  6483. }
  6484. },
  6485. {
  6486. "name": "drupal/ultimate_cron",
  6487. "version": "2.0.0-alpha4",
  6488. "source": {
  6489. "type": "git",
  6490. "url": "https://git.drupal.org/project/ultimate_cron",
  6491. "reference": "8.x-2.0-alpha4"
  6492. },
  6493. "dist": {
  6494. "type": "zip",
  6495. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha4.zip",
  6496. "reference": "8.x-2.0-alpha4",
  6497. "shasum": "50cdadd061f1f6fadb961b04ed04348bcc4719d3"
  6498. },
  6499. "require": {
  6500. "drupal/core": "~8.0"
  6501. },
  6502. "type": "drupal-module",
  6503. "extra": {
  6504. "branch-alias": {
  6505. "dev-2.x": "2.x-dev"
  6506. },
  6507. "drupal": {
  6508. "version": "8.x-2.0-alpha4",
  6509. "datestamp": "1527925385",
  6510. "security-coverage": {
  6511. "status": "not-covered",
  6512. "message": "Alpha releases are not covered by Drupal security advisories."
  6513. }
  6514. }
  6515. },
  6516. "notification-url": "https://packages.drupal.org/8/downloads",
  6517. "license": [
  6518. "GPL-2.0-or-later"
  6519. ],
  6520. "authors": [
  6521. {
  6522. "name": "Berdir",
  6523. "homepage": "https://www.drupal.org/user/214652"
  6524. },
  6525. {
  6526. "name": "Dane Powell",
  6527. "homepage": "https://www.drupal.org/user/339326"
  6528. },
  6529. {
  6530. "name": "arnested",
  6531. "homepage": "https://www.drupal.org/user/245635"
  6532. },
  6533. {
  6534. "name": "gielfeldt",
  6535. "homepage": "https://www.drupal.org/user/366993"
  6536. },
  6537. {
  6538. "name": "miro_dietiker",
  6539. "homepage": "https://www.drupal.org/user/227761"
  6540. }
  6541. ],
  6542. "description": "Cron",
  6543. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6544. "support": {
  6545. "source": "http://cgit.drupalcode.org/ultimate_cron"
  6546. }
  6547. },
  6548. {
  6549. "name": "drupal/url_to_video_filter",
  6550. "version": "1.3.0",
  6551. "source": {
  6552. "type": "git",
  6553. "url": "https://git.drupal.org/project/url_to_video_filter",
  6554. "reference": "8.x-1.3"
  6555. },
  6556. "dist": {
  6557. "type": "zip",
  6558. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  6559. "reference": "8.x-1.3",
  6560. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  6561. },
  6562. "require": {
  6563. "drupal/core": "~8.0"
  6564. },
  6565. "type": "drupal-module",
  6566. "extra": {
  6567. "branch-alias": {
  6568. "dev-1.x": "1.x-dev"
  6569. },
  6570. "drupal": {
  6571. "version": "8.x-1.3",
  6572. "datestamp": "1532695981",
  6573. "security-coverage": {
  6574. "status": "covered",
  6575. "message": "Covered by Drupal's security advisory policy"
  6576. }
  6577. }
  6578. },
  6579. "notification-url": "https://packages.drupal.org/8/downloads",
  6580. "license": [
  6581. "GPL-2.0-or-later"
  6582. ],
  6583. "authors": [
  6584. {
  6585. "name": "Jaypan",
  6586. "homepage": "https://www.drupal.org/user/324696"
  6587. }
  6588. ],
  6589. "description": "Text filter to convert URLs to embedded videos",
  6590. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  6591. "support": {
  6592. "source": "http://cgit.drupalcode.org/url_to_video_filter"
  6593. }
  6594. },
  6595. {
  6596. "name": "drupal/video_embed_field",
  6597. "version": "2.0.0",
  6598. "source": {
  6599. "type": "git",
  6600. "url": "https://git.drupal.org/project/video_embed_field",
  6601. "reference": "8.x-2.0"
  6602. },
  6603. "dist": {
  6604. "type": "zip",
  6605. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.0.zip",
  6606. "reference": "8.x-2.0",
  6607. "shasum": "e864f090b3cb9405376ca324d81ace83613e2019"
  6608. },
  6609. "require": {
  6610. "drupal/core": "*"
  6611. },
  6612. "require-dev": {
  6613. "drupal/colorbox": "*",
  6614. "drupal/media_entity": "*",
  6615. "drupal/media_entity_embeddable_video": "*"
  6616. },
  6617. "type": "drupal-module",
  6618. "extra": {
  6619. "branch-alias": {
  6620. "dev-2.x": "2.x-dev"
  6621. },
  6622. "drupal": {
  6623. "version": "8.x-1.x",
  6624. "datestamp": "1523338084",
  6625. "security-coverage": {
  6626. "status": "covered",
  6627. "message": "Covered by Drupal's security advisory policy"
  6628. },
  6629. "package": "Field types"
  6630. }
  6631. },
  6632. "notification-url": "https://packages.drupal.org/8/downloads",
  6633. "license": [
  6634. "GPL-2.0+"
  6635. ],
  6636. "authors": [
  6637. {
  6638. "name": "Sam152",
  6639. "homepage": "https://www.drupal.org/user/1485048"
  6640. },
  6641. {
  6642. "name": "jec006",
  6643. "homepage": "https://www.drupal.org/user/855980"
  6644. },
  6645. {
  6646. "name": "plopesc",
  6647. "homepage": "https://www.drupal.org/user/282415"
  6648. }
  6649. ],
  6650. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  6651. "homepage": "https://www.drupal.org/project/video_embed_field",
  6652. "support": {
  6653. "source": "http://cgit.drupalcode.org/video_embed_field"
  6654. }
  6655. },
  6656. {
  6657. "name": "drupal/views_bulk_edit",
  6658. "version": "2.2.0",
  6659. "source": {
  6660. "type": "git",
  6661. "url": "https://git.drupal.org/project/views_bulk_edit",
  6662. "reference": "8.x-2.2"
  6663. },
  6664. "dist": {
  6665. "type": "zip",
  6666. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  6667. "reference": "8.x-2.2",
  6668. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  6669. },
  6670. "require": {
  6671. "drupal/core": "*",
  6672. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  6673. },
  6674. "type": "drupal-module",
  6675. "extra": {
  6676. "branch-alias": {
  6677. "dev-2.x": "2.x-dev"
  6678. },
  6679. "drupal": {
  6680. "version": "8.x-2.2",
  6681. "datestamp": "1532689085",
  6682. "security-coverage": {
  6683. "status": "covered",
  6684. "message": "Covered by Drupal's security advisory policy"
  6685. }
  6686. }
  6687. },
  6688. "notification-url": "https://packages.drupal.org/8/downloads",
  6689. "license": [
  6690. "GPL-2.0+"
  6691. ],
  6692. "authors": [
  6693. {
  6694. "name": "Marcin Grabias",
  6695. "homepage": "https://www.drupal.org/u/graber"
  6696. },
  6697. {
  6698. "name": "benjy",
  6699. "homepage": "https://www.drupal.org/user/1852732"
  6700. }
  6701. ],
  6702. "description": "Allows bulk edition of entity field values.",
  6703. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  6704. "support": {
  6705. "source": "http://cgit.drupalcode.org/views_bulk_edit",
  6706. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  6707. }
  6708. },
  6709. {
  6710. "name": "drupal/views_bulk_operations",
  6711. "version": "2.4.0",
  6712. "source": {
  6713. "type": "git",
  6714. "url": "https://git.drupal.org/project/views_bulk_operations",
  6715. "reference": "8.x-2.4"
  6716. },
  6717. "dist": {
  6718. "type": "zip",
  6719. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.4.zip",
  6720. "reference": "8.x-2.4",
  6721. "shasum": "50c5778770f3a92e38ecf664301b77146e3cc931"
  6722. },
  6723. "require": {
  6724. "drupal/core": "^8.4"
  6725. },
  6726. "type": "drupal-module",
  6727. "extra": {
  6728. "branch-alias": {
  6729. "dev-2.x": "2.x-dev"
  6730. },
  6731. "drupal": {
  6732. "version": "8.x-2.4",
  6733. "datestamp": "1530516821",
  6734. "security-coverage": {
  6735. "status": "covered",
  6736. "message": "Covered by Drupal's security advisory policy"
  6737. }
  6738. },
  6739. "drush": {
  6740. "services": {
  6741. "drush.services.yml": "^9"
  6742. }
  6743. }
  6744. },
  6745. "notification-url": "https://packages.drupal.org/8/downloads",
  6746. "license": [
  6747. "GPL-2.0+"
  6748. ],
  6749. "authors": [
  6750. {
  6751. "name": "Marcin Grabias",
  6752. "homepage": "https://www.drupal.org/u/graber"
  6753. },
  6754. {
  6755. "name": "Jon Pugh",
  6756. "homepage": "https://www.drupal.org/user/17028"
  6757. },
  6758. {
  6759. "name": "bojanz",
  6760. "homepage": "https://www.drupal.org/user/86106"
  6761. },
  6762. {
  6763. "name": "infojunkie",
  6764. "homepage": "https://www.drupal.org/user/48424"
  6765. },
  6766. {
  6767. "name": "joelpittet",
  6768. "homepage": "https://www.drupal.org/user/160302"
  6769. }
  6770. ],
  6771. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  6772. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  6773. "support": {
  6774. "source": "http://cgit.drupalcode.org/views_bulk_operations",
  6775. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  6776. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  6777. }
  6778. },
  6779. {
  6780. "name": "drupal/views_ef_fieldset",
  6781. "version": "dev-1.x",
  6782. "source": {
  6783. "type": "git",
  6784. "url": "https://git.drupal.org/project/views_ef_fieldset",
  6785. "reference": "f53f9e3390f1491ace93662634477bc43f844759"
  6786. },
  6787. "require": {
  6788. "drupal/core": "*"
  6789. },
  6790. "type": "drupal-module",
  6791. "extra": {
  6792. "branch-alias": {
  6793. "dev-1.x": "1.x-dev"
  6794. },
  6795. "drupal": {
  6796. "version": "8.x-1.1+4-dev",
  6797. "datestamp": "1538990580",
  6798. "security-coverage": {
  6799. "status": "not-covered",
  6800. "message": "Dev releases are not covered by Drupal security advisories."
  6801. }
  6802. }
  6803. },
  6804. "notification-url": "https://packages.drupal.org/8/downloads",
  6805. "license": [
  6806. "GPL-2.0-or-later"
  6807. ],
  6808. "authors": [
  6809. {
  6810. "name": "Pol",
  6811. "homepage": "https://www.drupal.org/user/47194"
  6812. },
  6813. {
  6814. "name": "ciss",
  6815. "homepage": "https://www.drupal.org/user/1632364"
  6816. }
  6817. ],
  6818. "description": "Provide an option to render the \"exposed form widgets\" in a fieldset.",
  6819. "homepage": "https://www.drupal.org/project/views_ef_fieldset",
  6820. "support": {
  6821. "source": "http://cgit.drupalcode.org/views_ef_fieldset"
  6822. },
  6823. "time": "2018-11-16T09:23:47+00:00"
  6824. },
  6825. {
  6826. "name": "drupal/workflow",
  6827. "version": "dev-1.x",
  6828. "source": {
  6829. "type": "git",
  6830. "url": "https://git.drupal.org/project/workflow",
  6831. "reference": "77445dbb57f3f51e3d3014e9a1a12a0334db2c14"
  6832. },
  6833. "require": {
  6834. "drupal/core": "*"
  6835. },
  6836. "type": "drupal-module",
  6837. "extra": {
  6838. "branch-alias": {
  6839. "dev-1.x": "1.x-dev"
  6840. },
  6841. "drupal": {
  6842. "version": "8.x-1.1+32-dev",
  6843. "datestamp": "1547456880",
  6844. "security-coverage": {
  6845. "status": "not-covered",
  6846. "message": "Dev releases are not covered by Drupal security advisories."
  6847. }
  6848. },
  6849. "patches_applied": []
  6850. },
  6851. "notification-url": "https://packages.drupal.org/8/downloads",
  6852. "license": [
  6853. "GPL-2.0-or-later"
  6854. ],
  6855. "authors": [
  6856. {
  6857. "name": "Bastlynn",
  6858. "homepage": "https://www.drupal.org/user/275249"
  6859. },
  6860. {
  6861. "name": "Heine",
  6862. "homepage": "https://www.drupal.org/user/17943"
  6863. },
  6864. {
  6865. "name": "JacobSingh",
  6866. "homepage": "https://www.drupal.org/user/68912"
  6867. },
  6868. {
  6869. "name": "NancyDru",
  6870. "homepage": "https://www.drupal.org/user/101412"
  6871. },
  6872. {
  6873. "name": "eaton",
  6874. "homepage": "https://www.drupal.org/user/16496"
  6875. },
  6876. {
  6877. "name": "johnv",
  6878. "homepage": "https://www.drupal.org/user/591042"
  6879. },
  6880. {
  6881. "name": "jvandyk",
  6882. "homepage": "https://www.drupal.org/user/2375"
  6883. },
  6884. {
  6885. "name": "mfredrickson",
  6886. "homepage": "https://www.drupal.org/user/31994"
  6887. },
  6888. {
  6889. "name": "q0rban",
  6890. "homepage": "https://www.drupal.org/user/31022"
  6891. }
  6892. ],
  6893. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  6894. "homepage": "https://www.drupal.org/project/workflow",
  6895. "support": {
  6896. "source": "http://cgit.drupalcode.org/workflow"
  6897. },
  6898. "time": "2019-01-24T10:33:55+00:00"
  6899. },
  6900. {
  6901. "name": "drush/drush",
  6902. "version": "9.5.2",
  6903. "source": {
  6904. "type": "git",
  6905. "url": "https://github.com/drush-ops/drush.git",
  6906. "reference": "17f0106706391675a281c6d212850853bdbe90f9"
  6907. },
  6908. "dist": {
  6909. "type": "zip",
  6910. "url": "https://api.github.com/repos/drush-ops/drush/zipball/17f0106706391675a281c6d212850853bdbe90f9",
  6911. "reference": "17f0106706391675a281c6d212850853bdbe90f9",
  6912. "shasum": ""
  6913. },
  6914. "require": {
  6915. "chi-teck/drupal-code-generator": "^1.27.0",
  6916. "composer/semver": "^1.4",
  6917. "consolidation/annotated-command": "^2.9.1",
  6918. "consolidation/config": "^1.1.0",
  6919. "consolidation/output-formatters": "^3.1.12",
  6920. "consolidation/robo": "^1.1.5",
  6921. "consolidation/site-alias": "^1.1.5",
  6922. "ext-dom": "*",
  6923. "grasmash/yaml-expander": "^1.1.1",
  6924. "league/container": "~2",
  6925. "php": ">=5.6.0",
  6926. "psr/log": "~1.0",
  6927. "psy/psysh": "~0.6",
  6928. "symfony/config": "^3.4",
  6929. "symfony/console": "^3.4",
  6930. "symfony/event-dispatcher": "^3.4",
  6931. "symfony/finder": "^3.4",
  6932. "symfony/process": "^3.4",
  6933. "symfony/var-dumper": "^3.4",
  6934. "symfony/yaml": "^3.4",
  6935. "webflo/drupal-finder": "^1.1",
  6936. "webmozart/path-util": "^2.1.0"
  6937. },
  6938. "require-dev": {
  6939. "composer/installers": "^1.2",
  6940. "cweagans/composer-patches": "~1.0",
  6941. "drupal/alinks": "1.0.0",
  6942. "drupal/devel": "^1.0@RC",
  6943. "drupal/empty_theme": "1.0",
  6944. "g1a/composer-test-scenarios": "^2.2.0",
  6945. "lox/xhprof": "dev-master",
  6946. "phpunit/phpunit": "^4.8.36 || ^6.1",
  6947. "squizlabs/php_codesniffer": "^2.7",
  6948. "vlucas/phpdotenv": "^2.4",
  6949. "webflo/drupal-core-strict": "8.6.x-dev"
  6950. },
  6951. "bin": [
  6952. "drush"
  6953. ],
  6954. "type": "library",
  6955. "extra": {
  6956. "installer-paths": {
  6957. "sut/core": [
  6958. "type:drupal-core"
  6959. ],
  6960. "sut/libraries/{$name}": [
  6961. "type:drupal-library"
  6962. ],
  6963. "sut/modules/unish/{$name}": [
  6964. "drupal/devel"
  6965. ],
  6966. "sut/themes/unish/{$name}": [
  6967. "drupal/empty_theme"
  6968. ],
  6969. "sut/modules/contrib/{$name}": [
  6970. "type:drupal-module"
  6971. ],
  6972. "sut/profiles/contrib/{$name}": [
  6973. "type:drupal-profile"
  6974. ],
  6975. "sut/themes/contrib/{$name}": [
  6976. "type:drupal-theme"
  6977. ],
  6978. "sut/drush/contrib/{$name}": [
  6979. "type:drupal-drush"
  6980. ]
  6981. },
  6982. "branch-alias": {
  6983. "dev-master": "9.x-dev"
  6984. }
  6985. },
  6986. "autoload": {
  6987. "psr-4": {
  6988. "Drush\\": "src/",
  6989. "Drush\\Internal\\": "internal-copy/",
  6990. "Unish\\": "tests/"
  6991. }
  6992. },
  6993. "notification-url": "https://packagist.org/downloads/",
  6994. "license": [
  6995. "GPL-2.0-or-later"
  6996. ],
  6997. "authors": [
  6998. {
  6999. "name": "Moshe Weitzman",
  7000. "email": "weitzman@tejasa.com"
  7001. },
  7002. {
  7003. "name": "Owen Barton",
  7004. "email": "drupal@owenbarton.com"
  7005. },
  7006. {
  7007. "name": "Greg Anderson",
  7008. "email": "greg.1.anderson@greenknowe.org"
  7009. },
  7010. {
  7011. "name": "Jonathan Araña Cruz",
  7012. "email": "jonhattan@faita.net"
  7013. },
  7014. {
  7015. "name": "Jonathan Hedstrom",
  7016. "email": "jhedstrom@gmail.com"
  7017. },
  7018. {
  7019. "name": "Christopher Gervais",
  7020. "email": "chris@ergonlogic.com"
  7021. },
  7022. {
  7023. "name": "Dave Reid",
  7024. "email": "dave@davereid.net"
  7025. },
  7026. {
  7027. "name": "Damian Lee",
  7028. "email": "damiankloip@googlemail.com"
  7029. }
  7030. ],
  7031. "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.",
  7032. "homepage": "http://www.drush.org",
  7033. "time": "2018-10-17T18:37:53+00:00"
  7034. },
  7035. {
  7036. "name": "easyrdf/easyrdf",
  7037. "version": "0.9.1",
  7038. "source": {
  7039. "type": "git",
  7040. "url": "https://github.com/njh/easyrdf.git",
  7041. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  7042. },
  7043. "dist": {
  7044. "type": "zip",
  7045. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  7046. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  7047. "shasum": ""
  7048. },
  7049. "require": {
  7050. "ext-mbstring": "*",
  7051. "ext-pcre": "*",
  7052. "php": ">=5.2.8"
  7053. },
  7054. "require-dev": {
  7055. "phpunit/phpunit": "~3.5",
  7056. "sami/sami": "~1.4",
  7057. "squizlabs/php_codesniffer": "~1.4.3"
  7058. },
  7059. "suggest": {
  7060. "ml/json-ld": "~1.0"
  7061. },
  7062. "type": "library",
  7063. "autoload": {
  7064. "psr-0": {
  7065. "EasyRdf_": "lib/"
  7066. }
  7067. },
  7068. "notification-url": "https://packagist.org/downloads/",
  7069. "license": [
  7070. "BSD-3-Clause"
  7071. ],
  7072. "authors": [
  7073. {
  7074. "name": "Nicholas Humfrey",
  7075. "email": "njh@aelius.com",
  7076. "homepage": "http://www.aelius.com/njh/",
  7077. "role": "Developer"
  7078. },
  7079. {
  7080. "name": "Alexey Zakhlestin",
  7081. "email": "indeyets@gmail.com",
  7082. "role": "Developer"
  7083. }
  7084. ],
  7085. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  7086. "homepage": "http://www.easyrdf.org/",
  7087. "keywords": [
  7088. "Linked Data",
  7089. "RDF",
  7090. "Semantic Web",
  7091. "Turtle",
  7092. "rdfa",
  7093. "sparql"
  7094. ],
  7095. "time": "2015-02-27T09:45:49+00:00"
  7096. },
  7097. {
  7098. "name": "egulias/email-validator",
  7099. "version": "1.2.15",
  7100. "source": {
  7101. "type": "git",
  7102. "url": "https://github.com/egulias/EmailValidator.git",
  7103. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  7104. },
  7105. "dist": {
  7106. "type": "zip",
  7107. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7108. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7109. "shasum": ""
  7110. },
  7111. "require": {
  7112. "doctrine/lexer": "^1.0.1",
  7113. "php": ">= 5.3.3"
  7114. },
  7115. "require-dev": {
  7116. "phpunit/phpunit": "^4.8.24"
  7117. },
  7118. "type": "library",
  7119. "extra": {
  7120. "branch-alias": {
  7121. "dev-master": "2.0.x-dev"
  7122. }
  7123. },
  7124. "autoload": {
  7125. "psr-0": {
  7126. "Egulias\\": "src/"
  7127. }
  7128. },
  7129. "notification-url": "https://packagist.org/downloads/",
  7130. "license": [
  7131. "MIT"
  7132. ],
  7133. "authors": [
  7134. {
  7135. "name": "Eduardo Gulias Davis"
  7136. }
  7137. ],
  7138. "description": "A library for validating emails",
  7139. "homepage": "https://github.com/egulias/EmailValidator",
  7140. "keywords": [
  7141. "email",
  7142. "emailvalidation",
  7143. "emailvalidator",
  7144. "validation",
  7145. "validator"
  7146. ],
  7147. "time": "2018-09-25T20:59:41+00:00"
  7148. },
  7149. {
  7150. "name": "giggsey/libphonenumber-for-php",
  7151. "version": "8.10.4",
  7152. "source": {
  7153. "type": "git",
  7154. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  7155. "reference": "3cda94a4a442c24259fb0893618422a56cb8a898"
  7156. },
  7157. "dist": {
  7158. "type": "zip",
  7159. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/3cda94a4a442c24259fb0893618422a56cb8a898",
  7160. "reference": "3cda94a4a442c24259fb0893618422a56cb8a898",
  7161. "shasum": ""
  7162. },
  7163. "require": {
  7164. "ext-mbstring": "*",
  7165. "giggsey/locale": "^1.2",
  7166. "php": ">=5.3.2"
  7167. },
  7168. "require-dev": {
  7169. "pear/pear-core-minimal": "^1.9",
  7170. "pear/pear_exception": "^1.0",
  7171. "pear/versioncontrol_git": "^0.5",
  7172. "phing/phing": "^2.7",
  7173. "php-coveralls/php-coveralls": "^1.0|^2.0",
  7174. "phpunit/phpunit": "^4.8.36|^5.0",
  7175. "symfony/console": "^2.8|^3.0"
  7176. },
  7177. "type": "library",
  7178. "extra": {
  7179. "branch-alias": {
  7180. "dev-master": "8.x-dev"
  7181. }
  7182. },
  7183. "autoload": {
  7184. "psr-4": {
  7185. "libphonenumber\\": "src/"
  7186. },
  7187. "exclude-from-classmap": [
  7188. "/src/data/",
  7189. "/src/carrier/data/",
  7190. "/src/geocoding/data/",
  7191. "/src/timezone/data/"
  7192. ]
  7193. },
  7194. "notification-url": "https://packagist.org/downloads/",
  7195. "license": [
  7196. "Apache-2.0"
  7197. ],
  7198. "authors": [
  7199. {
  7200. "name": "Joshua Gigg",
  7201. "email": "giggsey@gmail.com",
  7202. "homepage": "https://giggsey.com/"
  7203. }
  7204. ],
  7205. "description": "PHP Port of Google's libphonenumber",
  7206. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  7207. "keywords": [
  7208. "geocoding",
  7209. "geolocation",
  7210. "libphonenumber",
  7211. "mobile",
  7212. "phonenumber",
  7213. "validation"
  7214. ],
  7215. "time": "2019-01-24T15:41:24+00:00"
  7216. },
  7217. {
  7218. "name": "giggsey/locale",
  7219. "version": "1.6",
  7220. "source": {
  7221. "type": "git",
  7222. "url": "https://github.com/giggsey/Locale.git",
  7223. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5"
  7224. },
  7225. "dist": {
  7226. "type": "zip",
  7227. "url": "https://api.github.com/repos/giggsey/Locale/zipball/da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7228. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7229. "shasum": ""
  7230. },
  7231. "require": {
  7232. "php": ">=5.3.2"
  7233. },
  7234. "require-dev": {
  7235. "pear/pear-core-minimal": "^1.9",
  7236. "pear/pear_exception": "^1.0",
  7237. "pear/versioncontrol_git": "^0.5",
  7238. "phing/phing": "~2.7",
  7239. "phpunit/phpunit": "^4.8|^5.0",
  7240. "satooshi/php-coveralls": "^1.0",
  7241. "symfony/console": "^2.8|^3.0|^4.0",
  7242. "symfony/filesystem": "^2.8|^3.0|^4.0",
  7243. "symfony/finder": "^2.8|^3.0|^4.0",
  7244. "symfony/process": "^2.8|^3.0|^4.0"
  7245. },
  7246. "type": "library",
  7247. "autoload": {
  7248. "psr-4": {
  7249. "Giggsey\\Locale\\": "src/"
  7250. }
  7251. },
  7252. "notification-url": "https://packagist.org/downloads/",
  7253. "license": [
  7254. "MIT"
  7255. ],
  7256. "authors": [
  7257. {
  7258. "name": "Joshua Gigg",
  7259. "email": "giggsey@gmail.com",
  7260. "homepage": "http://giggsey.com/"
  7261. }
  7262. ],
  7263. "description": "Locale functions required by libphonenumber-for-php",
  7264. "time": "2018-10-18T07:17:52+00:00"
  7265. },
  7266. {
  7267. "name": "grasmash/expander",
  7268. "version": "1.0.0",
  7269. "source": {
  7270. "type": "git",
  7271. "url": "https://github.com/grasmash/expander.git",
  7272. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  7273. },
  7274. "dist": {
  7275. "type": "zip",
  7276. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7277. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7278. "shasum": ""
  7279. },
  7280. "require": {
  7281. "dflydev/dot-access-data": "^1.1.0",
  7282. "php": ">=5.4"
  7283. },
  7284. "require-dev": {
  7285. "greg-1-anderson/composer-test-scenarios": "^1",
  7286. "phpunit/phpunit": "^4|^5.5.4",
  7287. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7288. "squizlabs/php_codesniffer": "^2.7"
  7289. },
  7290. "type": "library",
  7291. "extra": {
  7292. "branch-alias": {
  7293. "dev-master": "1.x-dev"
  7294. }
  7295. },
  7296. "autoload": {
  7297. "psr-4": {
  7298. "Grasmash\\Expander\\": "src/"
  7299. }
  7300. },
  7301. "notification-url": "https://packagist.org/downloads/",
  7302. "license": [
  7303. "MIT"
  7304. ],
  7305. "authors": [
  7306. {
  7307. "name": "Matthew Grasmick"
  7308. }
  7309. ],
  7310. "description": "Expands internal property references in PHP arrays file.",
  7311. "time": "2017-12-21T22:14:55+00:00"
  7312. },
  7313. {
  7314. "name": "grasmash/yaml-expander",
  7315. "version": "1.4.0",
  7316. "source": {
  7317. "type": "git",
  7318. "url": "https://github.com/grasmash/yaml-expander.git",
  7319. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  7320. },
  7321. "dist": {
  7322. "type": "zip",
  7323. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7324. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7325. "shasum": ""
  7326. },
  7327. "require": {
  7328. "dflydev/dot-access-data": "^1.1.0",
  7329. "php": ">=5.4",
  7330. "symfony/yaml": "^2.8.11|^3|^4"
  7331. },
  7332. "require-dev": {
  7333. "greg-1-anderson/composer-test-scenarios": "^1",
  7334. "phpunit/phpunit": "^4.8|^5.5.4",
  7335. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7336. "squizlabs/php_codesniffer": "^2.7"
  7337. },
  7338. "type": "library",
  7339. "extra": {
  7340. "branch-alias": {
  7341. "dev-master": "1.x-dev"
  7342. }
  7343. },
  7344. "autoload": {
  7345. "psr-4": {
  7346. "Grasmash\\YamlExpander\\": "src/"
  7347. }
  7348. },
  7349. "notification-url": "https://packagist.org/downloads/",
  7350. "license": [
  7351. "MIT"
  7352. ],
  7353. "authors": [
  7354. {
  7355. "name": "Matthew Grasmick"
  7356. }
  7357. ],
  7358. "description": "Expands internal property references in a yaml file.",
  7359. "time": "2017-12-16T16:06:03+00:00"
  7360. },
  7361. {
  7362. "name": "guzzlehttp/guzzle",
  7363. "version": "6.3.3",
  7364. "source": {
  7365. "type": "git",
  7366. "url": "https://github.com/guzzle/guzzle.git",
  7367. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  7368. },
  7369. "dist": {
  7370. "type": "zip",
  7371. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7372. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7373. "shasum": ""
  7374. },
  7375. "require": {
  7376. "guzzlehttp/promises": "^1.0",
  7377. "guzzlehttp/psr7": "^1.4",
  7378. "php": ">=5.5"
  7379. },
  7380. "require-dev": {
  7381. "ext-curl": "*",
  7382. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  7383. "psr/log": "^1.0"
  7384. },
  7385. "suggest": {
  7386. "psr/log": "Required for using the Log middleware"
  7387. },
  7388. "type": "library",
  7389. "extra": {
  7390. "branch-alias": {
  7391. "dev-master": "6.3-dev"
  7392. }
  7393. },
  7394. "autoload": {
  7395. "files": [
  7396. "src/functions_include.php"
  7397. ],
  7398. "psr-4": {
  7399. "GuzzleHttp\\": "src/"
  7400. }
  7401. },
  7402. "notification-url": "https://packagist.org/downloads/",
  7403. "license": [
  7404. "MIT"
  7405. ],
  7406. "authors": [
  7407. {
  7408. "name": "Michael Dowling",
  7409. "email": "mtdowling@gmail.com",
  7410. "homepage": "https://github.com/mtdowling"
  7411. }
  7412. ],
  7413. "description": "Guzzle is a PHP HTTP client library",
  7414. "homepage": "http://guzzlephp.org/",
  7415. "keywords": [
  7416. "client",
  7417. "curl",
  7418. "framework",
  7419. "http",
  7420. "http client",
  7421. "rest",
  7422. "web service"
  7423. ],
  7424. "time": "2018-04-22T15:46:56+00:00"
  7425. },
  7426. {
  7427. "name": "guzzlehttp/promises",
  7428. "version": "v1.3.1",
  7429. "source": {
  7430. "type": "git",
  7431. "url": "https://github.com/guzzle/promises.git",
  7432. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  7433. },
  7434. "dist": {
  7435. "type": "zip",
  7436. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7437. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7438. "shasum": ""
  7439. },
  7440. "require": {
  7441. "php": ">=5.5.0"
  7442. },
  7443. "require-dev": {
  7444. "phpunit/phpunit": "^4.0"
  7445. },
  7446. "type": "library",
  7447. "extra": {
  7448. "branch-alias": {
  7449. "dev-master": "1.4-dev"
  7450. }
  7451. },
  7452. "autoload": {
  7453. "psr-4": {
  7454. "GuzzleHttp\\Promise\\": "src/"
  7455. },
  7456. "files": [
  7457. "src/functions_include.php"
  7458. ]
  7459. },
  7460. "notification-url": "https://packagist.org/downloads/",
  7461. "license": [
  7462. "MIT"
  7463. ],
  7464. "authors": [
  7465. {
  7466. "name": "Michael Dowling",
  7467. "email": "mtdowling@gmail.com",
  7468. "homepage": "https://github.com/mtdowling"
  7469. }
  7470. ],
  7471. "description": "Guzzle promises library",
  7472. "keywords": [
  7473. "promise"
  7474. ],
  7475. "time": "2016-12-20T10:07:11+00:00"
  7476. },
  7477. {
  7478. "name": "guzzlehttp/psr7",
  7479. "version": "1.5.2",
  7480. "source": {
  7481. "type": "git",
  7482. "url": "https://github.com/guzzle/psr7.git",
  7483. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  7484. },
  7485. "dist": {
  7486. "type": "zip",
  7487. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  7488. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  7489. "shasum": ""
  7490. },
  7491. "require": {
  7492. "php": ">=5.4.0",
  7493. "psr/http-message": "~1.0",
  7494. "ralouphie/getallheaders": "^2.0.5"
  7495. },
  7496. "provide": {
  7497. "psr/http-message-implementation": "1.0"
  7498. },
  7499. "require-dev": {
  7500. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  7501. },
  7502. "type": "library",
  7503. "extra": {
  7504. "branch-alias": {
  7505. "dev-master": "1.5-dev"
  7506. }
  7507. },
  7508. "autoload": {
  7509. "psr-4": {
  7510. "GuzzleHttp\\Psr7\\": "src/"
  7511. },
  7512. "files": [
  7513. "src/functions_include.php"
  7514. ]
  7515. },
  7516. "notification-url": "https://packagist.org/downloads/",
  7517. "license": [
  7518. "MIT"
  7519. ],
  7520. "authors": [
  7521. {
  7522. "name": "Michael Dowling",
  7523. "email": "mtdowling@gmail.com",
  7524. "homepage": "https://github.com/mtdowling"
  7525. },
  7526. {
  7527. "name": "Tobias Schultze",
  7528. "homepage": "https://github.com/Tobion"
  7529. }
  7530. ],
  7531. "description": "PSR-7 message implementation that also provides common utility methods",
  7532. "keywords": [
  7533. "http",
  7534. "message",
  7535. "psr-7",
  7536. "request",
  7537. "response",
  7538. "stream",
  7539. "uri",
  7540. "url"
  7541. ],
  7542. "time": "2018-12-04T20:46:45+00:00"
  7543. },
  7544. {
  7545. "name": "jakub-onderka/php-console-color",
  7546. "version": "v0.2",
  7547. "source": {
  7548. "type": "git",
  7549. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  7550. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  7551. },
  7552. "dist": {
  7553. "type": "zip",
  7554. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  7555. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  7556. "shasum": ""
  7557. },
  7558. "require": {
  7559. "php": ">=5.4.0"
  7560. },
  7561. "require-dev": {
  7562. "jakub-onderka/php-code-style": "1.0",
  7563. "jakub-onderka/php-parallel-lint": "1.0",
  7564. "jakub-onderka/php-var-dump-check": "0.*",
  7565. "phpunit/phpunit": "~4.3",
  7566. "squizlabs/php_codesniffer": "1.*"
  7567. },
  7568. "type": "library",
  7569. "autoload": {
  7570. "psr-4": {
  7571. "JakubOnderka\\PhpConsoleColor\\": "src/"
  7572. }
  7573. },
  7574. "notification-url": "https://packagist.org/downloads/",
  7575. "license": [
  7576. "BSD-2-Clause"
  7577. ],
  7578. "authors": [
  7579. {
  7580. "name": "Jakub Onderka",
  7581. "email": "jakub.onderka@gmail.com"
  7582. }
  7583. ],
  7584. "time": "2018-09-29T17:23:10+00:00"
  7585. },
  7586. {
  7587. "name": "jakub-onderka/php-console-highlighter",
  7588. "version": "v0.4",
  7589. "source": {
  7590. "type": "git",
  7591. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  7592. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  7593. },
  7594. "dist": {
  7595. "type": "zip",
  7596. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  7597. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  7598. "shasum": ""
  7599. },
  7600. "require": {
  7601. "ext-tokenizer": "*",
  7602. "jakub-onderka/php-console-color": "~0.2",
  7603. "php": ">=5.4.0"
  7604. },
  7605. "require-dev": {
  7606. "jakub-onderka/php-code-style": "~1.0",
  7607. "jakub-onderka/php-parallel-lint": "~1.0",
  7608. "jakub-onderka/php-var-dump-check": "~0.1",
  7609. "phpunit/phpunit": "~4.0",
  7610. "squizlabs/php_codesniffer": "~1.5"
  7611. },
  7612. "type": "library",
  7613. "autoload": {
  7614. "psr-4": {
  7615. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  7616. }
  7617. },
  7618. "notification-url": "https://packagist.org/downloads/",
  7619. "license": [
  7620. "MIT"
  7621. ],
  7622. "authors": [
  7623. {
  7624. "name": "Jakub Onderka",
  7625. "email": "acci@acci.cz",
  7626. "homepage": "http://www.acci.cz/"
  7627. }
  7628. ],
  7629. "description": "Highlight PHP code in terminal",
  7630. "time": "2018-09-29T18:48:56+00:00"
  7631. },
  7632. {
  7633. "name": "league/container",
  7634. "version": "2.4.1",
  7635. "source": {
  7636. "type": "git",
  7637. "url": "https://github.com/thephpleague/container.git",
  7638. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  7639. },
  7640. "dist": {
  7641. "type": "zip",
  7642. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  7643. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  7644. "shasum": ""
  7645. },
  7646. "require": {
  7647. "container-interop/container-interop": "^1.2",
  7648. "php": "^5.4.0 || ^7.0"
  7649. },
  7650. "provide": {
  7651. "container-interop/container-interop-implementation": "^1.2",
  7652. "psr/container-implementation": "^1.0"
  7653. },
  7654. "replace": {
  7655. "orno/di": "~2.0"
  7656. },
  7657. "require-dev": {
  7658. "phpunit/phpunit": "4.*"
  7659. },
  7660. "type": "library",
  7661. "extra": {
  7662. "branch-alias": {
  7663. "dev-2.x": "2.x-dev",
  7664. "dev-1.x": "1.x-dev"
  7665. }
  7666. },
  7667. "autoload": {
  7668. "psr-4": {
  7669. "League\\Container\\": "src"
  7670. }
  7671. },
  7672. "notification-url": "https://packagist.org/downloads/",
  7673. "license": [
  7674. "MIT"
  7675. ],
  7676. "authors": [
  7677. {
  7678. "name": "Phil Bennett",
  7679. "email": "philipobenito@gmail.com",
  7680. "homepage": "http://www.philipobenito.com",
  7681. "role": "Developer"
  7682. }
  7683. ],
  7684. "description": "A fast and intuitive dependency injection container.",
  7685. "homepage": "https://github.com/thephpleague/container",
  7686. "keywords": [
  7687. "container",
  7688. "dependency",
  7689. "di",
  7690. "injection",
  7691. "league",
  7692. "provider",
  7693. "service"
  7694. ],
  7695. "time": "2017-05-10T09:20:27+00:00"
  7696. },
  7697. {
  7698. "name": "lsolesen/pel",
  7699. "version": "0.9.6",
  7700. "source": {
  7701. "type": "git",
  7702. "url": "https://github.com/lsolesen/pel.git",
  7703. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23"
  7704. },
  7705. "dist": {
  7706. "type": "zip",
  7707. "url": "https://api.github.com/repos/lsolesen/pel/zipball/c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7708. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7709. "shasum": ""
  7710. },
  7711. "require": {
  7712. "php": ">=5.0.0"
  7713. },
  7714. "require-dev": {
  7715. "ext-gd": "*",
  7716. "phpunit/phpunit": "5.7.*",
  7717. "satooshi/php-coveralls": "1.0.*",
  7718. "squizlabs/php_codesniffer": "3.0.0RC3"
  7719. },
  7720. "type": "library",
  7721. "autoload": {
  7722. "psr-4": {
  7723. "lsolesen\\pel\\": "src/"
  7724. }
  7725. },
  7726. "notification-url": "https://packagist.org/downloads/",
  7727. "license": [
  7728. "GPL-2.0"
  7729. ],
  7730. "authors": [
  7731. {
  7732. "name": "Lars Olesen",
  7733. "email": "lars@intraface.dk",
  7734. "homepage": "http://intraface.dk",
  7735. "role": "Developer"
  7736. },
  7737. {
  7738. "name": "Martin Geisler",
  7739. "email": "martin@geisler.net",
  7740. "homepage": "http://geisler.net",
  7741. "role": "Developer"
  7742. }
  7743. ],
  7744. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  7745. "homepage": "http://lsolesen.github.com/pel/",
  7746. "keywords": [
  7747. "exif",
  7748. "image"
  7749. ],
  7750. "time": "2017-02-03T11:58:58+00:00"
  7751. },
  7752. {
  7753. "name": "masterminds/html5",
  7754. "version": "2.5.0",
  7755. "source": {
  7756. "type": "git",
  7757. "url": "https://github.com/Masterminds/html5-php.git",
  7758. "reference": "b5d892a4bd058d61f736935d32a9c248f11ccc93"
  7759. },
  7760. "dist": {
  7761. "type": "zip",
  7762. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/b5d892a4bd058d61f736935d32a9c248f11ccc93",
  7763. "reference": "b5d892a4bd058d61f736935d32a9c248f11ccc93",
  7764. "shasum": ""
  7765. },
  7766. "require": {
  7767. "ext-ctype": "*",
  7768. "ext-dom": "*",
  7769. "ext-libxml": "*",
  7770. "php": ">=5.3.0"
  7771. },
  7772. "require-dev": {
  7773. "phpunit/phpunit": "^4.8.35",
  7774. "sami/sami": "~2.0",
  7775. "satooshi/php-coveralls": "1.0.*"
  7776. },
  7777. "type": "library",
  7778. "extra": {
  7779. "branch-alias": {
  7780. "dev-master": "2.4-dev"
  7781. }
  7782. },
  7783. "autoload": {
  7784. "psr-4": {
  7785. "Masterminds\\": "src"
  7786. }
  7787. },
  7788. "notification-url": "https://packagist.org/downloads/",
  7789. "license": [
  7790. "MIT"
  7791. ],
  7792. "authors": [
  7793. {
  7794. "name": "Matt Butcher",
  7795. "email": "technosophos@gmail.com"
  7796. },
  7797. {
  7798. "name": "Asmir Mustafic",
  7799. "email": "goetas@gmail.com"
  7800. },
  7801. {
  7802. "name": "Matt Farina",
  7803. "email": "matt@mattfarina.com"
  7804. }
  7805. ],
  7806. "description": "An HTML5 parser and serializer.",
  7807. "homepage": "http://masterminds.github.io/html5-php",
  7808. "keywords": [
  7809. "HTML5",
  7810. "dom",
  7811. "html",
  7812. "parser",
  7813. "querypath",
  7814. "serializer",
  7815. "xml"
  7816. ],
  7817. "time": "2018-12-27T22:03:43+00:00"
  7818. },
  7819. {
  7820. "name": "nikic/php-parser",
  7821. "version": "v4.2.0",
  7822. "source": {
  7823. "type": "git",
  7824. "url": "https://github.com/nikic/PHP-Parser.git",
  7825. "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a"
  7826. },
  7827. "dist": {
  7828. "type": "zip",
  7829. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/594bcae1fc0bccd3993d2f0d61a018e26ac2865a",
  7830. "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a",
  7831. "shasum": ""
  7832. },
  7833. "require": {
  7834. "ext-tokenizer": "*",
  7835. "php": ">=7.0"
  7836. },
  7837. "require-dev": {
  7838. "phpunit/phpunit": "^6.5 || ^7.0"
  7839. },
  7840. "bin": [
  7841. "bin/php-parse"
  7842. ],
  7843. "type": "library",
  7844. "extra": {
  7845. "branch-alias": {
  7846. "dev-master": "4.2-dev"
  7847. }
  7848. },
  7849. "autoload": {
  7850. "psr-4": {
  7851. "PhpParser\\": "lib/PhpParser"
  7852. }
  7853. },
  7854. "notification-url": "https://packagist.org/downloads/",
  7855. "license": [
  7856. "BSD-3-Clause"
  7857. ],
  7858. "authors": [
  7859. {
  7860. "name": "Nikita Popov"
  7861. }
  7862. ],
  7863. "description": "A PHP parser written in PHP",
  7864. "keywords": [
  7865. "parser",
  7866. "php"
  7867. ],
  7868. "time": "2019-01-12T16:31:37+00:00"
  7869. },
  7870. {
  7871. "name": "paragonie/random_compat",
  7872. "version": "v2.0.18",
  7873. "source": {
  7874. "type": "git",
  7875. "url": "https://github.com/paragonie/random_compat.git",
  7876. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  7877. },
  7878. "dist": {
  7879. "type": "zip",
  7880. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  7881. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  7882. "shasum": ""
  7883. },
  7884. "require": {
  7885. "php": ">=5.2.0"
  7886. },
  7887. "require-dev": {
  7888. "phpunit/phpunit": "4.*|5.*"
  7889. },
  7890. "suggest": {
  7891. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7892. },
  7893. "type": "library",
  7894. "autoload": {
  7895. "files": [
  7896. "lib/random.php"
  7897. ]
  7898. },
  7899. "notification-url": "https://packagist.org/downloads/",
  7900. "license": [
  7901. "MIT"
  7902. ],
  7903. "authors": [
  7904. {
  7905. "name": "Paragon Initiative Enterprises",
  7906. "email": "security@paragonie.com",
  7907. "homepage": "https://paragonie.com"
  7908. }
  7909. ],
  7910. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7911. "keywords": [
  7912. "csprng",
  7913. "polyfill",
  7914. "pseudorandom",
  7915. "random"
  7916. ],
  7917. "time": "2019-01-03T20:59:08+00:00"
  7918. },
  7919. {
  7920. "name": "phenx/php-font-lib",
  7921. "version": "0.5",
  7922. "source": {
  7923. "type": "git",
  7924. "url": "https://github.com/PhenX/php-font-lib.git",
  7925. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962"
  7926. },
  7927. "dist": {
  7928. "type": "zip",
  7929. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7930. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7931. "shasum": ""
  7932. },
  7933. "require-dev": {
  7934. "phpunit/phpunit": "^4.8"
  7935. },
  7936. "type": "library",
  7937. "autoload": {
  7938. "psr-4": {
  7939. "FontLib\\": "src/FontLib"
  7940. }
  7941. },
  7942. "notification-url": "https://packagist.org/downloads/",
  7943. "license": [
  7944. "LGPL-3.0"
  7945. ],
  7946. "authors": [
  7947. {
  7948. "name": "Fabien Ménager",
  7949. "email": "fabien.menager@gmail.com"
  7950. }
  7951. ],
  7952. "description": "A library to read, parse, export and make subsets of different types of font files.",
  7953. "homepage": "https://github.com/PhenX/php-font-lib",
  7954. "time": "2017-02-11T10:58:43+00:00"
  7955. },
  7956. {
  7957. "name": "psr/container",
  7958. "version": "1.0.0",
  7959. "source": {
  7960. "type": "git",
  7961. "url": "https://github.com/php-fig/container.git",
  7962. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7963. },
  7964. "dist": {
  7965. "type": "zip",
  7966. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7967. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7968. "shasum": ""
  7969. },
  7970. "require": {
  7971. "php": ">=5.3.0"
  7972. },
  7973. "type": "library",
  7974. "extra": {
  7975. "branch-alias": {
  7976. "dev-master": "1.0.x-dev"
  7977. }
  7978. },
  7979. "autoload": {
  7980. "psr-4": {
  7981. "Psr\\Container\\": "src/"
  7982. }
  7983. },
  7984. "notification-url": "https://packagist.org/downloads/",
  7985. "license": [
  7986. "MIT"
  7987. ],
  7988. "authors": [
  7989. {
  7990. "name": "PHP-FIG",
  7991. "homepage": "http://www.php-fig.org/"
  7992. }
  7993. ],
  7994. "description": "Common Container Interface (PHP FIG PSR-11)",
  7995. "homepage": "https://github.com/php-fig/container",
  7996. "keywords": [
  7997. "PSR-11",
  7998. "container",
  7999. "container-interface",
  8000. "container-interop",
  8001. "psr"
  8002. ],
  8003. "time": "2017-02-14T16:28:37+00:00"
  8004. },
  8005. {
  8006. "name": "psr/http-message",
  8007. "version": "1.0.1",
  8008. "source": {
  8009. "type": "git",
  8010. "url": "https://github.com/php-fig/http-message.git",
  8011. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  8012. },
  8013. "dist": {
  8014. "type": "zip",
  8015. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  8016. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  8017. "shasum": ""
  8018. },
  8019. "require": {
  8020. "php": ">=5.3.0"
  8021. },
  8022. "type": "library",
  8023. "extra": {
  8024. "branch-alias": {
  8025. "dev-master": "1.0.x-dev"
  8026. }
  8027. },
  8028. "autoload": {
  8029. "psr-4": {
  8030. "Psr\\Http\\Message\\": "src/"
  8031. }
  8032. },
  8033. "notification-url": "https://packagist.org/downloads/",
  8034. "license": [
  8035. "MIT"
  8036. ],
  8037. "authors": [
  8038. {
  8039. "name": "PHP-FIG",
  8040. "homepage": "http://www.php-fig.org/"
  8041. }
  8042. ],
  8043. "description": "Common interface for HTTP messages",
  8044. "homepage": "https://github.com/php-fig/http-message",
  8045. "keywords": [
  8046. "http",
  8047. "http-message",
  8048. "psr",
  8049. "psr-7",
  8050. "request",
  8051. "response"
  8052. ],
  8053. "time": "2016-08-06T14:39:51+00:00"
  8054. },
  8055. {
  8056. "name": "psr/log",
  8057. "version": "1.1.0",
  8058. "source": {
  8059. "type": "git",
  8060. "url": "https://github.com/php-fig/log.git",
  8061. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  8062. },
  8063. "dist": {
  8064. "type": "zip",
  8065. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  8066. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  8067. "shasum": ""
  8068. },
  8069. "require": {
  8070. "php": ">=5.3.0"
  8071. },
  8072. "type": "library",
  8073. "extra": {
  8074. "branch-alias": {
  8075. "dev-master": "1.0.x-dev"
  8076. }
  8077. },
  8078. "autoload": {
  8079. "psr-4": {
  8080. "Psr\\Log\\": "Psr/Log/"
  8081. }
  8082. },
  8083. "notification-url": "https://packagist.org/downloads/",
  8084. "license": [
  8085. "MIT"
  8086. ],
  8087. "authors": [
  8088. {
  8089. "name": "PHP-FIG",
  8090. "homepage": "http://www.php-fig.org/"
  8091. }
  8092. ],
  8093. "description": "Common interface for logging libraries",
  8094. "homepage": "https://github.com/php-fig/log",
  8095. "keywords": [
  8096. "log",
  8097. "psr",
  8098. "psr-3"
  8099. ],
  8100. "time": "2018-11-20T15:27:04+00:00"
  8101. },
  8102. {
  8103. "name": "psy/psysh",
  8104. "version": "v0.9.9",
  8105. "source": {
  8106. "type": "git",
  8107. "url": "https://github.com/bobthecow/psysh.git",
  8108. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  8109. },
  8110. "dist": {
  8111. "type": "zip",
  8112. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8113. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8114. "shasum": ""
  8115. },
  8116. "require": {
  8117. "dnoegel/php-xdg-base-dir": "0.1",
  8118. "ext-json": "*",
  8119. "ext-tokenizer": "*",
  8120. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8121. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8122. "php": ">=5.4.0",
  8123. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8124. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8125. },
  8126. "require-dev": {
  8127. "bamarni/composer-bin-plugin": "^1.2",
  8128. "hoa/console": "~2.15|~3.16",
  8129. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8130. },
  8131. "suggest": {
  8132. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8133. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8134. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8135. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8136. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8137. },
  8138. "bin": [
  8139. "bin/psysh"
  8140. ],
  8141. "type": "library",
  8142. "extra": {
  8143. "branch-alias": {
  8144. "dev-develop": "0.9.x-dev"
  8145. }
  8146. },
  8147. "autoload": {
  8148. "files": [
  8149. "src/functions.php"
  8150. ],
  8151. "psr-4": {
  8152. "Psy\\": "src/"
  8153. }
  8154. },
  8155. "notification-url": "https://packagist.org/downloads/",
  8156. "license": [
  8157. "MIT"
  8158. ],
  8159. "authors": [
  8160. {
  8161. "name": "Justin Hileman",
  8162. "email": "justin@justinhileman.info",
  8163. "homepage": "http://justinhileman.com"
  8164. }
  8165. ],
  8166. "description": "An interactive shell for modern PHP.",
  8167. "homepage": "http://psysh.org",
  8168. "keywords": [
  8169. "REPL",
  8170. "console",
  8171. "interactive",
  8172. "shell"
  8173. ],
  8174. "time": "2018-10-13T15:16:03+00:00"
  8175. },
  8176. {
  8177. "name": "ralouphie/getallheaders",
  8178. "version": "2.0.5",
  8179. "source": {
  8180. "type": "git",
  8181. "url": "https://github.com/ralouphie/getallheaders.git",
  8182. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  8183. },
  8184. "dist": {
  8185. "type": "zip",
  8186. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  8187. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  8188. "shasum": ""
  8189. },
  8190. "require": {
  8191. "php": ">=5.3"
  8192. },
  8193. "require-dev": {
  8194. "phpunit/phpunit": "~3.7.0",
  8195. "satooshi/php-coveralls": ">=1.0"
  8196. },
  8197. "type": "library",
  8198. "autoload": {
  8199. "files": [
  8200. "src/getallheaders.php"
  8201. ]
  8202. },
  8203. "notification-url": "https://packagist.org/downloads/",
  8204. "license": [
  8205. "MIT"
  8206. ],
  8207. "authors": [
  8208. {
  8209. "name": "Ralph Khattar",
  8210. "email": "ralph.khattar@gmail.com"
  8211. }
  8212. ],
  8213. "description": "A polyfill for getallheaders.",
  8214. "time": "2016-02-11T07:05:27+00:00"
  8215. },
  8216. {
  8217. "name": "stack/builder",
  8218. "version": "v1.0.5",
  8219. "source": {
  8220. "type": "git",
  8221. "url": "https://github.com/stackphp/builder.git",
  8222. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  8223. },
  8224. "dist": {
  8225. "type": "zip",
  8226. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8227. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8228. "shasum": ""
  8229. },
  8230. "require": {
  8231. "php": ">=5.3.0",
  8232. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  8233. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  8234. },
  8235. "require-dev": {
  8236. "silex/silex": "~1.0"
  8237. },
  8238. "type": "library",
  8239. "extra": {
  8240. "branch-alias": {
  8241. "dev-master": "1.0-dev"
  8242. }
  8243. },
  8244. "autoload": {
  8245. "psr-0": {
  8246. "Stack": "src"
  8247. }
  8248. },
  8249. "notification-url": "https://packagist.org/downloads/",
  8250. "license": [
  8251. "MIT"
  8252. ],
  8253. "authors": [
  8254. {
  8255. "name": "Igor Wiedler",
  8256. "email": "igor@wiedler.ch"
  8257. }
  8258. ],
  8259. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  8260. "keywords": [
  8261. "stack"
  8262. ],
  8263. "time": "2017-11-18T14:57:29+00:00"
  8264. },
  8265. {
  8266. "name": "stecman/symfony-console-completion",
  8267. "version": "0.9.0",
  8268. "source": {
  8269. "type": "git",
  8270. "url": "https://github.com/stecman/symfony-console-completion.git",
  8271. "reference": "bd07a24190541de2828c1d6469a8ddce599d3c5a"
  8272. },
  8273. "dist": {
  8274. "type": "zip",
  8275. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/bd07a24190541de2828c1d6469a8ddce599d3c5a",
  8276. "reference": "bd07a24190541de2828c1d6469a8ddce599d3c5a",
  8277. "shasum": ""
  8278. },
  8279. "require": {
  8280. "php": ">=5.3.2",
  8281. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  8282. },
  8283. "require-dev": {
  8284. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  8285. },
  8286. "type": "library",
  8287. "extra": {
  8288. "branch-alias": {
  8289. "dev-master": "0.6.x-dev"
  8290. }
  8291. },
  8292. "autoload": {
  8293. "psr-4": {
  8294. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  8295. }
  8296. },
  8297. "notification-url": "https://packagist.org/downloads/",
  8298. "license": [
  8299. "MIT"
  8300. ],
  8301. "authors": [
  8302. {
  8303. "name": "Stephen Holdaway",
  8304. "email": "stephen@stecman.co.nz"
  8305. }
  8306. ],
  8307. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  8308. "time": "2019-01-19T21:25:25+00:00"
  8309. },
  8310. {
  8311. "name": "symfony-cmf/routing",
  8312. "version": "1.4.1",
  8313. "source": {
  8314. "type": "git",
  8315. "url": "https://github.com/symfony-cmf/routing.git",
  8316. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  8317. },
  8318. "dist": {
  8319. "type": "zip",
  8320. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8321. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8322. "shasum": ""
  8323. },
  8324. "require": {
  8325. "php": "^5.3.9|^7.0",
  8326. "psr/log": "1.*",
  8327. "symfony/http-kernel": "^2.2|3.*",
  8328. "symfony/routing": "^2.2|3.*"
  8329. },
  8330. "require-dev": {
  8331. "friendsofsymfony/jsrouting-bundle": "^1.1",
  8332. "symfony-cmf/testing": "^1.3",
  8333. "symfony/config": "^2.2|3.*",
  8334. "symfony/dependency-injection": "^2.0.5|3.*",
  8335. "symfony/event-dispatcher": "^2.1|3.*"
  8336. },
  8337. "suggest": {
  8338. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  8339. },
  8340. "type": "library",
  8341. "extra": {
  8342. "branch-alias": {
  8343. "dev-master": "1.4-dev"
  8344. }
  8345. },
  8346. "autoload": {
  8347. "psr-4": {
  8348. "Symfony\\Cmf\\Component\\Routing\\": ""
  8349. }
  8350. },
  8351. "notification-url": "https://packagist.org/downloads/",
  8352. "license": [
  8353. "MIT"
  8354. ],
  8355. "authors": [
  8356. {
  8357. "name": "Symfony CMF Community",
  8358. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  8359. }
  8360. ],
  8361. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  8362. "homepage": "http://cmf.symfony.com",
  8363. "keywords": [
  8364. "database",
  8365. "routing"
  8366. ],
  8367. "time": "2017-05-09T08:10:41+00:00"
  8368. },
  8369. {
  8370. "name": "symfony/class-loader",
  8371. "version": "v3.4.21",
  8372. "source": {
  8373. "type": "git",
  8374. "url": "https://github.com/symfony/class-loader.git",
  8375. "reference": "4513348012c25148f8cbc3a7761a1d1e60ca3e87"
  8376. },
  8377. "dist": {
  8378. "type": "zip",
  8379. "url": "https://api.github.com/repos/symfony/class-loader/zipball/4513348012c25148f8cbc3a7761a1d1e60ca3e87",
  8380. "reference": "4513348012c25148f8cbc3a7761a1d1e60ca3e87",
  8381. "shasum": ""
  8382. },
  8383. "require": {
  8384. "php": "^5.5.9|>=7.0.8"
  8385. },
  8386. "require-dev": {
  8387. "symfony/finder": "~2.8|~3.0|~4.0",
  8388. "symfony/polyfill-apcu": "~1.1"
  8389. },
  8390. "suggest": {
  8391. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  8392. },
  8393. "type": "library",
  8394. "extra": {
  8395. "branch-alias": {
  8396. "dev-master": "3.4-dev"
  8397. }
  8398. },
  8399. "autoload": {
  8400. "psr-4": {
  8401. "Symfony\\Component\\ClassLoader\\": ""
  8402. },
  8403. "exclude-from-classmap": [
  8404. "/Tests/"
  8405. ]
  8406. },
  8407. "notification-url": "https://packagist.org/downloads/",
  8408. "license": [
  8409. "MIT"
  8410. ],
  8411. "authors": [
  8412. {
  8413. "name": "Fabien Potencier",
  8414. "email": "fabien@symfony.com"
  8415. },
  8416. {
  8417. "name": "Symfony Community",
  8418. "homepage": "https://symfony.com/contributors"
  8419. }
  8420. ],
  8421. "description": "Symfony ClassLoader Component",
  8422. "homepage": "https://symfony.com",
  8423. "time": "2019-01-01T13:45:19+00:00"
  8424. },
  8425. {
  8426. "name": "symfony/config",
  8427. "version": "v3.4.21",
  8428. "source": {
  8429. "type": "git",
  8430. "url": "https://github.com/symfony/config.git",
  8431. "reference": "17c5d8941eb75a03d19bc76a43757738632d87b3"
  8432. },
  8433. "dist": {
  8434. "type": "zip",
  8435. "url": "https://api.github.com/repos/symfony/config/zipball/17c5d8941eb75a03d19bc76a43757738632d87b3",
  8436. "reference": "17c5d8941eb75a03d19bc76a43757738632d87b3",
  8437. "shasum": ""
  8438. },
  8439. "require": {
  8440. "php": "^5.5.9|>=7.0.8",
  8441. "symfony/filesystem": "~2.8|~3.0|~4.0",
  8442. "symfony/polyfill-ctype": "~1.8"
  8443. },
  8444. "conflict": {
  8445. "symfony/dependency-injection": "<3.3",
  8446. "symfony/finder": "<3.3"
  8447. },
  8448. "require-dev": {
  8449. "symfony/dependency-injection": "~3.3|~4.0",
  8450. "symfony/event-dispatcher": "~3.3|~4.0",
  8451. "symfony/finder": "~3.3|~4.0",
  8452. "symfony/yaml": "~3.0|~4.0"
  8453. },
  8454. "suggest": {
  8455. "symfony/yaml": "To use the yaml reference dumper"
  8456. },
  8457. "type": "library",
  8458. "extra": {
  8459. "branch-alias": {
  8460. "dev-master": "3.4-dev"
  8461. }
  8462. },
  8463. "autoload": {
  8464. "psr-4": {
  8465. "Symfony\\Component\\Config\\": ""
  8466. },
  8467. "exclude-from-classmap": [
  8468. "/Tests/"
  8469. ]
  8470. },
  8471. "notification-url": "https://packagist.org/downloads/",
  8472. "license": [
  8473. "MIT"
  8474. ],
  8475. "authors": [
  8476. {
  8477. "name": "Fabien Potencier",
  8478. "email": "fabien@symfony.com"
  8479. },
  8480. {
  8481. "name": "Symfony Community",
  8482. "homepage": "https://symfony.com/contributors"
  8483. }
  8484. ],
  8485. "description": "Symfony Config Component",
  8486. "homepage": "https://symfony.com",
  8487. "time": "2019-01-01T13:45:19+00:00"
  8488. },
  8489. {
  8490. "name": "symfony/console",
  8491. "version": "v3.4.21",
  8492. "source": {
  8493. "type": "git",
  8494. "url": "https://github.com/symfony/console.git",
  8495. "reference": "a700b874d3692bc8342199adfb6d3b99f62cc61a"
  8496. },
  8497. "dist": {
  8498. "type": "zip",
  8499. "url": "https://api.github.com/repos/symfony/console/zipball/a700b874d3692bc8342199adfb6d3b99f62cc61a",
  8500. "reference": "a700b874d3692bc8342199adfb6d3b99f62cc61a",
  8501. "shasum": ""
  8502. },
  8503. "require": {
  8504. "php": "^5.5.9|>=7.0.8",
  8505. "symfony/debug": "~2.8|~3.0|~4.0",
  8506. "symfony/polyfill-mbstring": "~1.0"
  8507. },
  8508. "conflict": {
  8509. "symfony/dependency-injection": "<3.4",
  8510. "symfony/process": "<3.3"
  8511. },
  8512. "require-dev": {
  8513. "psr/log": "~1.0",
  8514. "symfony/config": "~3.3|~4.0",
  8515. "symfony/dependency-injection": "~3.4|~4.0",
  8516. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8517. "symfony/lock": "~3.4|~4.0",
  8518. "symfony/process": "~3.3|~4.0"
  8519. },
  8520. "suggest": {
  8521. "psr/log-implementation": "For using the console logger",
  8522. "symfony/event-dispatcher": "",
  8523. "symfony/lock": "",
  8524. "symfony/process": ""
  8525. },
  8526. "type": "library",
  8527. "extra": {
  8528. "branch-alias": {
  8529. "dev-master": "3.4-dev"
  8530. }
  8531. },
  8532. "autoload": {
  8533. "psr-4": {
  8534. "Symfony\\Component\\Console\\": ""
  8535. },
  8536. "exclude-from-classmap": [
  8537. "/Tests/"
  8538. ]
  8539. },
  8540. "notification-url": "https://packagist.org/downloads/",
  8541. "license": [
  8542. "MIT"
  8543. ],
  8544. "authors": [
  8545. {
  8546. "name": "Fabien Potencier",
  8547. "email": "fabien@symfony.com"
  8548. },
  8549. {
  8550. "name": "Symfony Community",
  8551. "homepage": "https://symfony.com/contributors"
  8552. }
  8553. ],
  8554. "description": "Symfony Console Component",
  8555. "homepage": "https://symfony.com",
  8556. "time": "2019-01-04T04:42:43+00:00"
  8557. },
  8558. {
  8559. "name": "symfony/css-selector",
  8560. "version": "v3.4.21",
  8561. "source": {
  8562. "type": "git",
  8563. "url": "https://github.com/symfony/css-selector.git",
  8564. "reference": "12f86295c46c36af9896cf21db6b6b8a1465315d"
  8565. },
  8566. "dist": {
  8567. "type": "zip",
  8568. "url": "https://api.github.com/repos/symfony/css-selector/zipball/12f86295c46c36af9896cf21db6b6b8a1465315d",
  8569. "reference": "12f86295c46c36af9896cf21db6b6b8a1465315d",
  8570. "shasum": ""
  8571. },
  8572. "require": {
  8573. "php": "^5.5.9|>=7.0.8"
  8574. },
  8575. "type": "library",
  8576. "extra": {
  8577. "branch-alias": {
  8578. "dev-master": "3.4-dev"
  8579. }
  8580. },
  8581. "autoload": {
  8582. "psr-4": {
  8583. "Symfony\\Component\\CssSelector\\": ""
  8584. },
  8585. "exclude-from-classmap": [
  8586. "/Tests/"
  8587. ]
  8588. },
  8589. "notification-url": "https://packagist.org/downloads/",
  8590. "license": [
  8591. "MIT"
  8592. ],
  8593. "authors": [
  8594. {
  8595. "name": "Jean-François Simon",
  8596. "email": "jeanfrancois.simon@sensiolabs.com"
  8597. },
  8598. {
  8599. "name": "Fabien Potencier",
  8600. "email": "fabien@symfony.com"
  8601. },
  8602. {
  8603. "name": "Symfony Community",
  8604. "homepage": "https://symfony.com/contributors"
  8605. }
  8606. ],
  8607. "description": "Symfony CssSelector Component",
  8608. "homepage": "https://symfony.com",
  8609. "time": "2019-01-02T09:30:52+00:00"
  8610. },
  8611. {
  8612. "name": "symfony/debug",
  8613. "version": "v3.4.21",
  8614. "source": {
  8615. "type": "git",
  8616. "url": "https://github.com/symfony/debug.git",
  8617. "reference": "26d7f23b9bd0b93bee5583e4d6ca5cb1ab31b186"
  8618. },
  8619. "dist": {
  8620. "type": "zip",
  8621. "url": "https://api.github.com/repos/symfony/debug/zipball/26d7f23b9bd0b93bee5583e4d6ca5cb1ab31b186",
  8622. "reference": "26d7f23b9bd0b93bee5583e4d6ca5cb1ab31b186",
  8623. "shasum": ""
  8624. },
  8625. "require": {
  8626. "php": "^5.5.9|>=7.0.8",
  8627. "psr/log": "~1.0"
  8628. },
  8629. "conflict": {
  8630. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  8631. },
  8632. "require-dev": {
  8633. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  8634. },
  8635. "type": "library",
  8636. "extra": {
  8637. "branch-alias": {
  8638. "dev-master": "3.4-dev"
  8639. }
  8640. },
  8641. "autoload": {
  8642. "psr-4": {
  8643. "Symfony\\Component\\Debug\\": ""
  8644. },
  8645. "exclude-from-classmap": [
  8646. "/Tests/"
  8647. ]
  8648. },
  8649. "notification-url": "https://packagist.org/downloads/",
  8650. "license": [
  8651. "MIT"
  8652. ],
  8653. "authors": [
  8654. {
  8655. "name": "Fabien Potencier",
  8656. "email": "fabien@symfony.com"
  8657. },
  8658. {
  8659. "name": "Symfony Community",
  8660. "homepage": "https://symfony.com/contributors"
  8661. }
  8662. ],
  8663. "description": "Symfony Debug Component",
  8664. "homepage": "https://symfony.com",
  8665. "time": "2019-01-01T13:45:19+00:00"
  8666. },
  8667. {
  8668. "name": "symfony/dependency-injection",
  8669. "version": "v3.4.21",
  8670. "source": {
  8671. "type": "git",
  8672. "url": "https://github.com/symfony/dependency-injection.git",
  8673. "reference": "928a38b18bd632d67acbca74d0b2eed09915e83e"
  8674. },
  8675. "dist": {
  8676. "type": "zip",
  8677. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/928a38b18bd632d67acbca74d0b2eed09915e83e",
  8678. "reference": "928a38b18bd632d67acbca74d0b2eed09915e83e",
  8679. "shasum": ""
  8680. },
  8681. "require": {
  8682. "php": "^5.5.9|>=7.0.8",
  8683. "psr/container": "^1.0"
  8684. },
  8685. "conflict": {
  8686. "symfony/config": "<3.3.7",
  8687. "symfony/finder": "<3.3",
  8688. "symfony/proxy-manager-bridge": "<3.4",
  8689. "symfony/yaml": "<3.4"
  8690. },
  8691. "provide": {
  8692. "psr/container-implementation": "1.0"
  8693. },
  8694. "require-dev": {
  8695. "symfony/config": "~3.3|~4.0",
  8696. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8697. "symfony/yaml": "~3.4|~4.0"
  8698. },
  8699. "suggest": {
  8700. "symfony/config": "",
  8701. "symfony/expression-language": "For using expressions in service container configuration",
  8702. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8703. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8704. "symfony/yaml": ""
  8705. },
  8706. "type": "library",
  8707. "extra": {
  8708. "branch-alias": {
  8709. "dev-master": "3.4-dev"
  8710. }
  8711. },
  8712. "autoload": {
  8713. "psr-4": {
  8714. "Symfony\\Component\\DependencyInjection\\": ""
  8715. },
  8716. "exclude-from-classmap": [
  8717. "/Tests/"
  8718. ]
  8719. },
  8720. "notification-url": "https://packagist.org/downloads/",
  8721. "license": [
  8722. "MIT"
  8723. ],
  8724. "authors": [
  8725. {
  8726. "name": "Fabien Potencier",
  8727. "email": "fabien@symfony.com"
  8728. },
  8729. {
  8730. "name": "Symfony Community",
  8731. "homepage": "https://symfony.com/contributors"
  8732. }
  8733. ],
  8734. "description": "Symfony DependencyInjection Component",
  8735. "homepage": "https://symfony.com",
  8736. "time": "2019-01-05T12:26:58+00:00"
  8737. },
  8738. {
  8739. "name": "symfony/dom-crawler",
  8740. "version": "v3.4.21",
  8741. "source": {
  8742. "type": "git",
  8743. "url": "https://github.com/symfony/dom-crawler.git",
  8744. "reference": "311f666d85d1075b0a294ba1f3de4ae9307d8180"
  8745. },
  8746. "dist": {
  8747. "type": "zip",
  8748. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/311f666d85d1075b0a294ba1f3de4ae9307d8180",
  8749. "reference": "311f666d85d1075b0a294ba1f3de4ae9307d8180",
  8750. "shasum": ""
  8751. },
  8752. "require": {
  8753. "php": "^5.5.9|>=7.0.8",
  8754. "symfony/polyfill-ctype": "~1.8",
  8755. "symfony/polyfill-mbstring": "~1.0"
  8756. },
  8757. "require-dev": {
  8758. "symfony/css-selector": "~2.8|~3.0|~4.0"
  8759. },
  8760. "suggest": {
  8761. "symfony/css-selector": ""
  8762. },
  8763. "type": "library",
  8764. "extra": {
  8765. "branch-alias": {
  8766. "dev-master": "3.4-dev"
  8767. }
  8768. },
  8769. "autoload": {
  8770. "psr-4": {
  8771. "Symfony\\Component\\DomCrawler\\": ""
  8772. },
  8773. "exclude-from-classmap": [
  8774. "/Tests/"
  8775. ]
  8776. },
  8777. "notification-url": "https://packagist.org/downloads/",
  8778. "license": [
  8779. "MIT"
  8780. ],
  8781. "authors": [
  8782. {
  8783. "name": "Fabien Potencier",
  8784. "email": "fabien@symfony.com"
  8785. },
  8786. {
  8787. "name": "Symfony Community",
  8788. "homepage": "https://symfony.com/contributors"
  8789. }
  8790. ],
  8791. "description": "Symfony DomCrawler Component",
  8792. "homepage": "https://symfony.com",
  8793. "time": "2019-01-01T13:45:19+00:00"
  8794. },
  8795. {
  8796. "name": "symfony/event-dispatcher",
  8797. "version": "v3.4.21",
  8798. "source": {
  8799. "type": "git",
  8800. "url": "https://github.com/symfony/event-dispatcher.git",
  8801. "reference": "d1cdd46c53c264a2bd42505bd0e8ce21423bd0e2"
  8802. },
  8803. "dist": {
  8804. "type": "zip",
  8805. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d1cdd46c53c264a2bd42505bd0e8ce21423bd0e2",
  8806. "reference": "d1cdd46c53c264a2bd42505bd0e8ce21423bd0e2",
  8807. "shasum": ""
  8808. },
  8809. "require": {
  8810. "php": "^5.5.9|>=7.0.8"
  8811. },
  8812. "conflict": {
  8813. "symfony/dependency-injection": "<3.3"
  8814. },
  8815. "require-dev": {
  8816. "psr/log": "~1.0",
  8817. "symfony/config": "~2.8|~3.0|~4.0",
  8818. "symfony/dependency-injection": "~3.3|~4.0",
  8819. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8820. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8821. },
  8822. "suggest": {
  8823. "symfony/dependency-injection": "",
  8824. "symfony/http-kernel": ""
  8825. },
  8826. "type": "library",
  8827. "extra": {
  8828. "branch-alias": {
  8829. "dev-master": "3.4-dev"
  8830. }
  8831. },
  8832. "autoload": {
  8833. "psr-4": {
  8834. "Symfony\\Component\\EventDispatcher\\": ""
  8835. },
  8836. "exclude-from-classmap": [
  8837. "/Tests/"
  8838. ]
  8839. },
  8840. "notification-url": "https://packagist.org/downloads/",
  8841. "license": [
  8842. "MIT"
  8843. ],
  8844. "authors": [
  8845. {
  8846. "name": "Fabien Potencier",
  8847. "email": "fabien@symfony.com"
  8848. },
  8849. {
  8850. "name": "Symfony Community",
  8851. "homepage": "https://symfony.com/contributors"
  8852. }
  8853. ],
  8854. "description": "Symfony EventDispatcher Component",
  8855. "homepage": "https://symfony.com",
  8856. "time": "2019-01-01T18:08:36+00:00"
  8857. },
  8858. {
  8859. "name": "symfony/filesystem",
  8860. "version": "v3.4.21",
  8861. "source": {
  8862. "type": "git",
  8863. "url": "https://github.com/symfony/filesystem.git",
  8864. "reference": "c24ce3d18ccc9bb9d7e1d6ce9330fcc6061cafde"
  8865. },
  8866. "dist": {
  8867. "type": "zip",
  8868. "url": "https://api.github.com/repos/symfony/filesystem/zipball/c24ce3d18ccc9bb9d7e1d6ce9330fcc6061cafde",
  8869. "reference": "c24ce3d18ccc9bb9d7e1d6ce9330fcc6061cafde",
  8870. "shasum": ""
  8871. },
  8872. "require": {
  8873. "php": "^5.5.9|>=7.0.8",
  8874. "symfony/polyfill-ctype": "~1.8"
  8875. },
  8876. "type": "library",
  8877. "extra": {
  8878. "branch-alias": {
  8879. "dev-master": "3.4-dev"
  8880. }
  8881. },
  8882. "autoload": {
  8883. "psr-4": {
  8884. "Symfony\\Component\\Filesystem\\": ""
  8885. },
  8886. "exclude-from-classmap": [
  8887. "/Tests/"
  8888. ]
  8889. },
  8890. "notification-url": "https://packagist.org/downloads/",
  8891. "license": [
  8892. "MIT"
  8893. ],
  8894. "authors": [
  8895. {
  8896. "name": "Fabien Potencier",
  8897. "email": "fabien@symfony.com"
  8898. },
  8899. {
  8900. "name": "Symfony Community",
  8901. "homepage": "https://symfony.com/contributors"
  8902. }
  8903. ],
  8904. "description": "Symfony Filesystem Component",
  8905. "homepage": "https://symfony.com",
  8906. "time": "2019-01-01T13:45:19+00:00"
  8907. },
  8908. {
  8909. "name": "symfony/finder",
  8910. "version": "v3.4.21",
  8911. "source": {
  8912. "type": "git",
  8913. "url": "https://github.com/symfony/finder.git",
  8914. "reference": "3f2a2ab6315dd7682d4c16dcae1e7b95c8b8555e"
  8915. },
  8916. "dist": {
  8917. "type": "zip",
  8918. "url": "https://api.github.com/repos/symfony/finder/zipball/3f2a2ab6315dd7682d4c16dcae1e7b95c8b8555e",
  8919. "reference": "3f2a2ab6315dd7682d4c16dcae1e7b95c8b8555e",
  8920. "shasum": ""
  8921. },
  8922. "require": {
  8923. "php": "^5.5.9|>=7.0.8"
  8924. },
  8925. "type": "library",
  8926. "extra": {
  8927. "branch-alias": {
  8928. "dev-master": "3.4-dev"
  8929. }
  8930. },
  8931. "autoload": {
  8932. "psr-4": {
  8933. "Symfony\\Component\\Finder\\": ""
  8934. },
  8935. "exclude-from-classmap": [
  8936. "/Tests/"
  8937. ]
  8938. },
  8939. "notification-url": "https://packagist.org/downloads/",
  8940. "license": [
  8941. "MIT"
  8942. ],
  8943. "authors": [
  8944. {
  8945. "name": "Fabien Potencier",
  8946. "email": "fabien@symfony.com"
  8947. },
  8948. {
  8949. "name": "Symfony Community",
  8950. "homepage": "https://symfony.com/contributors"
  8951. }
  8952. ],
  8953. "description": "Symfony Finder Component",
  8954. "homepage": "https://symfony.com",
  8955. "time": "2019-01-01T13:45:19+00:00"
  8956. },
  8957. {
  8958. "name": "symfony/http-foundation",
  8959. "version": "v3.4.21",
  8960. "source": {
  8961. "type": "git",
  8962. "url": "https://github.com/symfony/http-foundation.git",
  8963. "reference": "2b97319e68816d2120eee7f13f4b76da12e04d03"
  8964. },
  8965. "dist": {
  8966. "type": "zip",
  8967. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/2b97319e68816d2120eee7f13f4b76da12e04d03",
  8968. "reference": "2b97319e68816d2120eee7f13f4b76da12e04d03",
  8969. "shasum": ""
  8970. },
  8971. "require": {
  8972. "php": "^5.5.9|>=7.0.8",
  8973. "symfony/polyfill-mbstring": "~1.1",
  8974. "symfony/polyfill-php70": "~1.6"
  8975. },
  8976. "require-dev": {
  8977. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8978. },
  8979. "type": "library",
  8980. "extra": {
  8981. "branch-alias": {
  8982. "dev-master": "3.4-dev"
  8983. }
  8984. },
  8985. "autoload": {
  8986. "psr-4": {
  8987. "Symfony\\Component\\HttpFoundation\\": ""
  8988. },
  8989. "exclude-from-classmap": [
  8990. "/Tests/"
  8991. ]
  8992. },
  8993. "notification-url": "https://packagist.org/downloads/",
  8994. "license": [
  8995. "MIT"
  8996. ],
  8997. "authors": [
  8998. {
  8999. "name": "Fabien Potencier",
  9000. "email": "fabien@symfony.com"
  9001. },
  9002. {
  9003. "name": "Symfony Community",
  9004. "homepage": "https://symfony.com/contributors"
  9005. }
  9006. ],
  9007. "description": "Symfony HttpFoundation Component",
  9008. "homepage": "https://symfony.com",
  9009. "time": "2019-01-05T08:05:37+00:00"
  9010. },
  9011. {
  9012. "name": "symfony/http-kernel",
  9013. "version": "v3.4.21",
  9014. "source": {
  9015. "type": "git",
  9016. "url": "https://github.com/symfony/http-kernel.git",
  9017. "reference": "60bd9d7444ca436e131c347d78ec039dd99a34b4"
  9018. },
  9019. "dist": {
  9020. "type": "zip",
  9021. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/60bd9d7444ca436e131c347d78ec039dd99a34b4",
  9022. "reference": "60bd9d7444ca436e131c347d78ec039dd99a34b4",
  9023. "shasum": ""
  9024. },
  9025. "require": {
  9026. "php": "^5.5.9|>=7.0.8",
  9027. "psr/log": "~1.0",
  9028. "symfony/debug": "~2.8|~3.0|~4.0",
  9029. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9030. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  9031. "symfony/polyfill-ctype": "~1.8"
  9032. },
  9033. "conflict": {
  9034. "symfony/config": "<2.8",
  9035. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  9036. "symfony/var-dumper": "<3.3",
  9037. "twig/twig": "<1.34|<2.4,>=2"
  9038. },
  9039. "provide": {
  9040. "psr/log-implementation": "1.0"
  9041. },
  9042. "require-dev": {
  9043. "psr/cache": "~1.0",
  9044. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  9045. "symfony/class-loader": "~2.8|~3.0",
  9046. "symfony/config": "~2.8|~3.0|~4.0",
  9047. "symfony/console": "~2.8|~3.0|~4.0",
  9048. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9049. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  9050. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  9051. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9052. "symfony/finder": "~2.8|~3.0|~4.0",
  9053. "symfony/process": "~2.8|~3.0|~4.0",
  9054. "symfony/routing": "~3.4|~4.0",
  9055. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  9056. "symfony/templating": "~2.8|~3.0|~4.0",
  9057. "symfony/translation": "~2.8|~3.0|~4.0",
  9058. "symfony/var-dumper": "~3.3|~4.0"
  9059. },
  9060. "suggest": {
  9061. "symfony/browser-kit": "",
  9062. "symfony/config": "",
  9063. "symfony/console": "",
  9064. "symfony/dependency-injection": "",
  9065. "symfony/finder": "",
  9066. "symfony/var-dumper": ""
  9067. },
  9068. "type": "library",
  9069. "extra": {
  9070. "branch-alias": {
  9071. "dev-master": "3.4-dev"
  9072. }
  9073. },
  9074. "autoload": {
  9075. "psr-4": {
  9076. "Symfony\\Component\\HttpKernel\\": ""
  9077. },
  9078. "exclude-from-classmap": [
  9079. "/Tests/"
  9080. ]
  9081. },
  9082. "notification-url": "https://packagist.org/downloads/",
  9083. "license": [
  9084. "MIT"
  9085. ],
  9086. "authors": [
  9087. {
  9088. "name": "Fabien Potencier",
  9089. "email": "fabien@symfony.com"
  9090. },
  9091. {
  9092. "name": "Symfony Community",
  9093. "homepage": "https://symfony.com/contributors"
  9094. }
  9095. ],
  9096. "description": "Symfony HttpKernel Component",
  9097. "homepage": "https://symfony.com",
  9098. "time": "2019-01-06T15:53:59+00:00"
  9099. },
  9100. {
  9101. "name": "symfony/polyfill-ctype",
  9102. "version": "v1.10.0",
  9103. "source": {
  9104. "type": "git",
  9105. "url": "https://github.com/symfony/polyfill-ctype.git",
  9106. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  9107. },
  9108. "dist": {
  9109. "type": "zip",
  9110. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  9111. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  9112. "shasum": ""
  9113. },
  9114. "require": {
  9115. "php": ">=5.3.3"
  9116. },
  9117. "suggest": {
  9118. "ext-ctype": "For best performance"
  9119. },
  9120. "type": "library",
  9121. "extra": {
  9122. "branch-alias": {
  9123. "dev-master": "1.9-dev"
  9124. }
  9125. },
  9126. "autoload": {
  9127. "psr-4": {
  9128. "Symfony\\Polyfill\\Ctype\\": ""
  9129. },
  9130. "files": [
  9131. "bootstrap.php"
  9132. ]
  9133. },
  9134. "notification-url": "https://packagist.org/downloads/",
  9135. "license": [
  9136. "MIT"
  9137. ],
  9138. "authors": [
  9139. {
  9140. "name": "Symfony Community",
  9141. "homepage": "https://symfony.com/contributors"
  9142. },
  9143. {
  9144. "name": "Gert de Pagter",
  9145. "email": "BackEndTea@gmail.com"
  9146. }
  9147. ],
  9148. "description": "Symfony polyfill for ctype functions",
  9149. "homepage": "https://symfony.com",
  9150. "keywords": [
  9151. "compatibility",
  9152. "ctype",
  9153. "polyfill",
  9154. "portable"
  9155. ],
  9156. "time": "2018-08-06T14:22:27+00:00"
  9157. },
  9158. {
  9159. "name": "symfony/polyfill-iconv",
  9160. "version": "v1.10.0",
  9161. "source": {
  9162. "type": "git",
  9163. "url": "https://github.com/symfony/polyfill-iconv.git",
  9164. "reference": "97001cfc283484c9691769f51cdf25259037eba2"
  9165. },
  9166. "dist": {
  9167. "type": "zip",
  9168. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/97001cfc283484c9691769f51cdf25259037eba2",
  9169. "reference": "97001cfc283484c9691769f51cdf25259037eba2",
  9170. "shasum": ""
  9171. },
  9172. "require": {
  9173. "php": ">=5.3.3"
  9174. },
  9175. "suggest": {
  9176. "ext-iconv": "For best performance"
  9177. },
  9178. "type": "library",
  9179. "extra": {
  9180. "branch-alias": {
  9181. "dev-master": "1.9-dev"
  9182. }
  9183. },
  9184. "autoload": {
  9185. "psr-4": {
  9186. "Symfony\\Polyfill\\Iconv\\": ""
  9187. },
  9188. "files": [
  9189. "bootstrap.php"
  9190. ]
  9191. },
  9192. "notification-url": "https://packagist.org/downloads/",
  9193. "license": [
  9194. "MIT"
  9195. ],
  9196. "authors": [
  9197. {
  9198. "name": "Nicolas Grekas",
  9199. "email": "p@tchwork.com"
  9200. },
  9201. {
  9202. "name": "Symfony Community",
  9203. "homepage": "https://symfony.com/contributors"
  9204. }
  9205. ],
  9206. "description": "Symfony polyfill for the Iconv extension",
  9207. "homepage": "https://symfony.com",
  9208. "keywords": [
  9209. "compatibility",
  9210. "iconv",
  9211. "polyfill",
  9212. "portable",
  9213. "shim"
  9214. ],
  9215. "time": "2018-09-21T06:26:08+00:00"
  9216. },
  9217. {
  9218. "name": "symfony/polyfill-mbstring",
  9219. "version": "v1.10.0",
  9220. "source": {
  9221. "type": "git",
  9222. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9223. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  9224. },
  9225. "dist": {
  9226. "type": "zip",
  9227. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  9228. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  9229. "shasum": ""
  9230. },
  9231. "require": {
  9232. "php": ">=5.3.3"
  9233. },
  9234. "suggest": {
  9235. "ext-mbstring": "For best performance"
  9236. },
  9237. "type": "library",
  9238. "extra": {
  9239. "branch-alias": {
  9240. "dev-master": "1.9-dev"
  9241. }
  9242. },
  9243. "autoload": {
  9244. "psr-4": {
  9245. "Symfony\\Polyfill\\Mbstring\\": ""
  9246. },
  9247. "files": [
  9248. "bootstrap.php"
  9249. ]
  9250. },
  9251. "notification-url": "https://packagist.org/downloads/",
  9252. "license": [
  9253. "MIT"
  9254. ],
  9255. "authors": [
  9256. {
  9257. "name": "Nicolas Grekas",
  9258. "email": "p@tchwork.com"
  9259. },
  9260. {
  9261. "name": "Symfony Community",
  9262. "homepage": "https://symfony.com/contributors"
  9263. }
  9264. ],
  9265. "description": "Symfony polyfill for the Mbstring extension",
  9266. "homepage": "https://symfony.com",
  9267. "keywords": [
  9268. "compatibility",
  9269. "mbstring",
  9270. "polyfill",
  9271. "portable",
  9272. "shim"
  9273. ],
  9274. "time": "2018-09-21T13:07:52+00:00"
  9275. },
  9276. {
  9277. "name": "symfony/polyfill-php70",
  9278. "version": "v1.10.0",
  9279. "source": {
  9280. "type": "git",
  9281. "url": "https://github.com/symfony/polyfill-php70.git",
  9282. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  9283. },
  9284. "dist": {
  9285. "type": "zip",
  9286. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  9287. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  9288. "shasum": ""
  9289. },
  9290. "require": {
  9291. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  9292. "php": ">=5.3.3"
  9293. },
  9294. "type": "library",
  9295. "extra": {
  9296. "branch-alias": {
  9297. "dev-master": "1.9-dev"
  9298. }
  9299. },
  9300. "autoload": {
  9301. "psr-4": {
  9302. "Symfony\\Polyfill\\Php70\\": ""
  9303. },
  9304. "files": [
  9305. "bootstrap.php"
  9306. ],
  9307. "classmap": [
  9308. "Resources/stubs"
  9309. ]
  9310. },
  9311. "notification-url": "https://packagist.org/downloads/",
  9312. "license": [
  9313. "MIT"
  9314. ],
  9315. "authors": [
  9316. {
  9317. "name": "Nicolas Grekas",
  9318. "email": "p@tchwork.com"
  9319. },
  9320. {
  9321. "name": "Symfony Community",
  9322. "homepage": "https://symfony.com/contributors"
  9323. }
  9324. ],
  9325. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9326. "homepage": "https://symfony.com",
  9327. "keywords": [
  9328. "compatibility",
  9329. "polyfill",
  9330. "portable",
  9331. "shim"
  9332. ],
  9333. "time": "2018-09-21T06:26:08+00:00"
  9334. },
  9335. {
  9336. "name": "symfony/process",
  9337. "version": "v3.4.21",
  9338. "source": {
  9339. "type": "git",
  9340. "url": "https://github.com/symfony/process.git",
  9341. "reference": "0d41dd7d95ed179aed6a13393b0f4f97bfa2d25c"
  9342. },
  9343. "dist": {
  9344. "type": "zip",
  9345. "url": "https://api.github.com/repos/symfony/process/zipball/0d41dd7d95ed179aed6a13393b0f4f97bfa2d25c",
  9346. "reference": "0d41dd7d95ed179aed6a13393b0f4f97bfa2d25c",
  9347. "shasum": ""
  9348. },
  9349. "require": {
  9350. "php": "^5.5.9|>=7.0.8"
  9351. },
  9352. "type": "library",
  9353. "extra": {
  9354. "branch-alias": {
  9355. "dev-master": "3.4-dev"
  9356. }
  9357. },
  9358. "autoload": {
  9359. "psr-4": {
  9360. "Symfony\\Component\\Process\\": ""
  9361. },
  9362. "exclude-from-classmap": [
  9363. "/Tests/"
  9364. ]
  9365. },
  9366. "notification-url": "https://packagist.org/downloads/",
  9367. "license": [
  9368. "MIT"
  9369. ],
  9370. "authors": [
  9371. {
  9372. "name": "Fabien Potencier",
  9373. "email": "fabien@symfony.com"
  9374. },
  9375. {
  9376. "name": "Symfony Community",
  9377. "homepage": "https://symfony.com/contributors"
  9378. }
  9379. ],
  9380. "description": "Symfony Process Component",
  9381. "homepage": "https://symfony.com",
  9382. "time": "2019-01-02T21:24:08+00:00"
  9383. },
  9384. {
  9385. "name": "symfony/psr-http-message-bridge",
  9386. "version": "v1.1.0",
  9387. "source": {
  9388. "type": "git",
  9389. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9390. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  9391. },
  9392. "dist": {
  9393. "type": "zip",
  9394. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9395. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9396. "shasum": ""
  9397. },
  9398. "require": {
  9399. "php": "^5.3.3 || ^7.0",
  9400. "psr/http-message": "^1.0",
  9401. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9402. },
  9403. "require-dev": {
  9404. "symfony/phpunit-bridge": "^3.4 || 4.0"
  9405. },
  9406. "suggest": {
  9407. "psr/http-factory-implementation": "To use the PSR-17 factory",
  9408. "psr/http-message-implementation": "To use the HttpFoundation factory",
  9409. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  9410. },
  9411. "type": "symfony-bridge",
  9412. "extra": {
  9413. "branch-alias": {
  9414. "dev-master": "1.1-dev"
  9415. }
  9416. },
  9417. "autoload": {
  9418. "psr-4": {
  9419. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9420. }
  9421. },
  9422. "notification-url": "https://packagist.org/downloads/",
  9423. "license": [
  9424. "MIT"
  9425. ],
  9426. "authors": [
  9427. {
  9428. "name": "Symfony Community",
  9429. "homepage": "http://symfony.com/contributors"
  9430. },
  9431. {
  9432. "name": "Fabien Potencier",
  9433. "email": "fabien@symfony.com"
  9434. }
  9435. ],
  9436. "description": "PSR HTTP message bridge",
  9437. "homepage": "http://symfony.com",
  9438. "keywords": [
  9439. "http",
  9440. "http-message",
  9441. "psr-7"
  9442. ],
  9443. "time": "2018-08-30T16:28:28+00:00"
  9444. },
  9445. {
  9446. "name": "symfony/routing",
  9447. "version": "v3.4.21",
  9448. "source": {
  9449. "type": "git",
  9450. "url": "https://github.com/symfony/routing.git",
  9451. "reference": "445d3629a26930158347a50d1a5f2456c49e0ae6"
  9452. },
  9453. "dist": {
  9454. "type": "zip",
  9455. "url": "https://api.github.com/repos/symfony/routing/zipball/445d3629a26930158347a50d1a5f2456c49e0ae6",
  9456. "reference": "445d3629a26930158347a50d1a5f2456c49e0ae6",
  9457. "shasum": ""
  9458. },
  9459. "require": {
  9460. "php": "^5.5.9|>=7.0.8"
  9461. },
  9462. "conflict": {
  9463. "symfony/config": "<3.3.1",
  9464. "symfony/dependency-injection": "<3.3",
  9465. "symfony/yaml": "<3.4"
  9466. },
  9467. "require-dev": {
  9468. "doctrine/annotations": "~1.0",
  9469. "psr/log": "~1.0",
  9470. "symfony/config": "^3.3.1|~4.0",
  9471. "symfony/dependency-injection": "~3.3|~4.0",
  9472. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9473. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9474. "symfony/yaml": "~3.4|~4.0"
  9475. },
  9476. "suggest": {
  9477. "doctrine/annotations": "For using the annotation loader",
  9478. "symfony/config": "For using the all-in-one router or any loader",
  9479. "symfony/dependency-injection": "For loading routes from a service",
  9480. "symfony/expression-language": "For using expression matching",
  9481. "symfony/http-foundation": "For using a Symfony Request object",
  9482. "symfony/yaml": "For using the YAML loader"
  9483. },
  9484. "type": "library",
  9485. "extra": {
  9486. "branch-alias": {
  9487. "dev-master": "3.4-dev"
  9488. }
  9489. },
  9490. "autoload": {
  9491. "psr-4": {
  9492. "Symfony\\Component\\Routing\\": ""
  9493. },
  9494. "exclude-from-classmap": [
  9495. "/Tests/"
  9496. ]
  9497. },
  9498. "notification-url": "https://packagist.org/downloads/",
  9499. "license": [
  9500. "MIT"
  9501. ],
  9502. "authors": [
  9503. {
  9504. "name": "Fabien Potencier",
  9505. "email": "fabien@symfony.com"
  9506. },
  9507. {
  9508. "name": "Symfony Community",
  9509. "homepage": "https://symfony.com/contributors"
  9510. }
  9511. ],
  9512. "description": "Symfony Routing Component",
  9513. "homepage": "https://symfony.com",
  9514. "keywords": [
  9515. "router",
  9516. "routing",
  9517. "uri",
  9518. "url"
  9519. ],
  9520. "time": "2019-01-01T13:45:19+00:00"
  9521. },
  9522. {
  9523. "name": "symfony/serializer",
  9524. "version": "v3.4.21",
  9525. "source": {
  9526. "type": "git",
  9527. "url": "https://github.com/symfony/serializer.git",
  9528. "reference": "3bb84f8a785bf30be3d4aef6f3c80f103acc54df"
  9529. },
  9530. "dist": {
  9531. "type": "zip",
  9532. "url": "https://api.github.com/repos/symfony/serializer/zipball/3bb84f8a785bf30be3d4aef6f3c80f103acc54df",
  9533. "reference": "3bb84f8a785bf30be3d4aef6f3c80f103acc54df",
  9534. "shasum": ""
  9535. },
  9536. "require": {
  9537. "php": "^5.5.9|>=7.0.8",
  9538. "symfony/polyfill-ctype": "~1.8"
  9539. },
  9540. "conflict": {
  9541. "phpdocumentor/type-resolver": "<0.2.1",
  9542. "symfony/dependency-injection": "<3.2",
  9543. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9544. "symfony/property-info": "<3.1",
  9545. "symfony/yaml": "<3.4"
  9546. },
  9547. "require-dev": {
  9548. "doctrine/annotations": "~1.0",
  9549. "doctrine/cache": "~1.0",
  9550. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9551. "symfony/cache": "~3.1|~4.0",
  9552. "symfony/config": "~2.8|~3.0|~4.0",
  9553. "symfony/dependency-injection": "~3.2|~4.0",
  9554. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9555. "symfony/property-access": "~2.8|~3.0|~4.0",
  9556. "symfony/property-info": "~3.1|~4.0",
  9557. "symfony/yaml": "~3.4|~4.0"
  9558. },
  9559. "suggest": {
  9560. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9561. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9562. "psr/cache-implementation": "For using the metadata cache.",
  9563. "symfony/config": "For using the XML mapping loader.",
  9564. "symfony/http-foundation": "To use the DataUriNormalizer.",
  9565. "symfony/property-access": "For using the ObjectNormalizer.",
  9566. "symfony/property-info": "To deserialize relations.",
  9567. "symfony/yaml": "For using the default YAML mapping loader."
  9568. },
  9569. "type": "library",
  9570. "extra": {
  9571. "branch-alias": {
  9572. "dev-master": "3.4-dev"
  9573. }
  9574. },
  9575. "autoload": {
  9576. "psr-4": {
  9577. "Symfony\\Component\\Serializer\\": ""
  9578. },
  9579. "exclude-from-classmap": [
  9580. "/Tests/"
  9581. ]
  9582. },
  9583. "notification-url": "https://packagist.org/downloads/",
  9584. "license": [
  9585. "MIT"
  9586. ],
  9587. "authors": [
  9588. {
  9589. "name": "Fabien Potencier",
  9590. "email": "fabien@symfony.com"
  9591. },
  9592. {
  9593. "name": "Symfony Community",
  9594. "homepage": "https://symfony.com/contributors"
  9595. }
  9596. ],
  9597. "description": "Symfony Serializer Component",
  9598. "homepage": "https://symfony.com",
  9599. "time": "2019-01-01T13:45:19+00:00"
  9600. },
  9601. {
  9602. "name": "symfony/translation",
  9603. "version": "v3.4.21",
  9604. "source": {
  9605. "type": "git",
  9606. "url": "https://github.com/symfony/translation.git",
  9607. "reference": "5f357063f4907cef47e5cf82fa3187fbfb700456"
  9608. },
  9609. "dist": {
  9610. "type": "zip",
  9611. "url": "https://api.github.com/repos/symfony/translation/zipball/5f357063f4907cef47e5cf82fa3187fbfb700456",
  9612. "reference": "5f357063f4907cef47e5cf82fa3187fbfb700456",
  9613. "shasum": ""
  9614. },
  9615. "require": {
  9616. "php": "^5.5.9|>=7.0.8",
  9617. "symfony/polyfill-mbstring": "~1.0"
  9618. },
  9619. "conflict": {
  9620. "symfony/config": "<2.8",
  9621. "symfony/dependency-injection": "<3.4",
  9622. "symfony/yaml": "<3.4"
  9623. },
  9624. "require-dev": {
  9625. "psr/log": "~1.0",
  9626. "symfony/config": "~2.8|~3.0|~4.0",
  9627. "symfony/dependency-injection": "~3.4|~4.0",
  9628. "symfony/finder": "~2.8|~3.0|~4.0",
  9629. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9630. "symfony/yaml": "~3.4|~4.0"
  9631. },
  9632. "suggest": {
  9633. "psr/log-implementation": "To use logging capability in translator",
  9634. "symfony/config": "",
  9635. "symfony/yaml": ""
  9636. },
  9637. "type": "library",
  9638. "extra": {
  9639. "branch-alias": {
  9640. "dev-master": "3.4-dev"
  9641. }
  9642. },
  9643. "autoload": {
  9644. "psr-4": {
  9645. "Symfony\\Component\\Translation\\": ""
  9646. },
  9647. "exclude-from-classmap": [
  9648. "/Tests/"
  9649. ]
  9650. },
  9651. "notification-url": "https://packagist.org/downloads/",
  9652. "license": [
  9653. "MIT"
  9654. ],
  9655. "authors": [
  9656. {
  9657. "name": "Fabien Potencier",
  9658. "email": "fabien@symfony.com"
  9659. },
  9660. {
  9661. "name": "Symfony Community",
  9662. "homepage": "https://symfony.com/contributors"
  9663. }
  9664. ],
  9665. "description": "Symfony Translation Component",
  9666. "homepage": "https://symfony.com",
  9667. "time": "2019-01-01T13:45:19+00:00"
  9668. },
  9669. {
  9670. "name": "symfony/validator",
  9671. "version": "v3.4.21",
  9672. "source": {
  9673. "type": "git",
  9674. "url": "https://github.com/symfony/validator.git",
  9675. "reference": "cd3fba16d309347883b74bb0ee8cb4720a60554c"
  9676. },
  9677. "dist": {
  9678. "type": "zip",
  9679. "url": "https://api.github.com/repos/symfony/validator/zipball/cd3fba16d309347883b74bb0ee8cb4720a60554c",
  9680. "reference": "cd3fba16d309347883b74bb0ee8cb4720a60554c",
  9681. "shasum": ""
  9682. },
  9683. "require": {
  9684. "php": "^5.5.9|>=7.0.8",
  9685. "symfony/polyfill-ctype": "~1.8",
  9686. "symfony/polyfill-mbstring": "~1.0",
  9687. "symfony/translation": "~2.8|~3.0|~4.0"
  9688. },
  9689. "conflict": {
  9690. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9691. "symfony/dependency-injection": "<3.3",
  9692. "symfony/http-kernel": "<3.3.5",
  9693. "symfony/yaml": "<3.4"
  9694. },
  9695. "require-dev": {
  9696. "doctrine/annotations": "~1.0",
  9697. "doctrine/cache": "~1.0",
  9698. "egulias/email-validator": "^1.2.8|~2.0",
  9699. "symfony/cache": "~3.1|~4.0",
  9700. "symfony/config": "~2.8|~3.0|~4.0",
  9701. "symfony/dependency-injection": "~3.3|~4.0",
  9702. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9703. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9704. "symfony/http-kernel": "^3.3.5|~4.0",
  9705. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9706. "symfony/property-access": "~2.8|~3.0|~4.0",
  9707. "symfony/var-dumper": "~3.3|~4.0",
  9708. "symfony/yaml": "~3.4|~4.0"
  9709. },
  9710. "suggest": {
  9711. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9712. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9713. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9714. "psr/cache-implementation": "For using the metadata cache.",
  9715. "symfony/config": "",
  9716. "symfony/expression-language": "For using the Expression validator",
  9717. "symfony/http-foundation": "",
  9718. "symfony/intl": "",
  9719. "symfony/property-access": "For accessing properties within comparison constraints",
  9720. "symfony/yaml": ""
  9721. },
  9722. "type": "library",
  9723. "extra": {
  9724. "branch-alias": {
  9725. "dev-master": "3.4-dev"
  9726. }
  9727. },
  9728. "autoload": {
  9729. "psr-4": {
  9730. "Symfony\\Component\\Validator\\": ""
  9731. },
  9732. "exclude-from-classmap": [
  9733. "/Tests/"
  9734. ]
  9735. },
  9736. "notification-url": "https://packagist.org/downloads/",
  9737. "license": [
  9738. "MIT"
  9739. ],
  9740. "authors": [
  9741. {
  9742. "name": "Fabien Potencier",
  9743. "email": "fabien@symfony.com"
  9744. },
  9745. {
  9746. "name": "Symfony Community",
  9747. "homepage": "https://symfony.com/contributors"
  9748. }
  9749. ],
  9750. "description": "Symfony Validator Component",
  9751. "homepage": "https://symfony.com",
  9752. "time": "2019-01-06T14:07:11+00:00"
  9753. },
  9754. {
  9755. "name": "symfony/var-dumper",
  9756. "version": "v3.4.21",
  9757. "source": {
  9758. "type": "git",
  9759. "url": "https://github.com/symfony/var-dumper.git",
  9760. "reference": "a5f39641bb62e8b74e343467b145331273f615a2"
  9761. },
  9762. "dist": {
  9763. "type": "zip",
  9764. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a5f39641bb62e8b74e343467b145331273f615a2",
  9765. "reference": "a5f39641bb62e8b74e343467b145331273f615a2",
  9766. "shasum": ""
  9767. },
  9768. "require": {
  9769. "php": "^5.5.9|>=7.0.8",
  9770. "symfony/polyfill-mbstring": "~1.0"
  9771. },
  9772. "conflict": {
  9773. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9774. },
  9775. "require-dev": {
  9776. "ext-iconv": "*",
  9777. "twig/twig": "~1.34|~2.4"
  9778. },
  9779. "suggest": {
  9780. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9781. "ext-intl": "To show region name in time zone dump",
  9782. "ext-symfony_debug": ""
  9783. },
  9784. "type": "library",
  9785. "extra": {
  9786. "branch-alias": {
  9787. "dev-master": "3.4-dev"
  9788. }
  9789. },
  9790. "autoload": {
  9791. "files": [
  9792. "Resources/functions/dump.php"
  9793. ],
  9794. "psr-4": {
  9795. "Symfony\\Component\\VarDumper\\": ""
  9796. },
  9797. "exclude-from-classmap": [
  9798. "/Tests/"
  9799. ]
  9800. },
  9801. "notification-url": "https://packagist.org/downloads/",
  9802. "license": [
  9803. "MIT"
  9804. ],
  9805. "authors": [
  9806. {
  9807. "name": "Nicolas Grekas",
  9808. "email": "p@tchwork.com"
  9809. },
  9810. {
  9811. "name": "Symfony Community",
  9812. "homepage": "https://symfony.com/contributors"
  9813. }
  9814. ],
  9815. "description": "Symfony mechanism for exploring and dumping PHP variables",
  9816. "homepage": "https://symfony.com",
  9817. "keywords": [
  9818. "debug",
  9819. "dump"
  9820. ],
  9821. "time": "2019-01-01T13:45:19+00:00"
  9822. },
  9823. {
  9824. "name": "symfony/yaml",
  9825. "version": "v3.4.21",
  9826. "source": {
  9827. "type": "git",
  9828. "url": "https://github.com/symfony/yaml.git",
  9829. "reference": "554a59a1ccbaac238a89b19c8e551a556fd0e2ea"
  9830. },
  9831. "dist": {
  9832. "type": "zip",
  9833. "url": "https://api.github.com/repos/symfony/yaml/zipball/554a59a1ccbaac238a89b19c8e551a556fd0e2ea",
  9834. "reference": "554a59a1ccbaac238a89b19c8e551a556fd0e2ea",
  9835. "shasum": ""
  9836. },
  9837. "require": {
  9838. "php": "^5.5.9|>=7.0.8",
  9839. "symfony/polyfill-ctype": "~1.8"
  9840. },
  9841. "conflict": {
  9842. "symfony/console": "<3.4"
  9843. },
  9844. "require-dev": {
  9845. "symfony/console": "~3.4|~4.0"
  9846. },
  9847. "suggest": {
  9848. "symfony/console": "For validating YAML files using the lint command"
  9849. },
  9850. "type": "library",
  9851. "extra": {
  9852. "branch-alias": {
  9853. "dev-master": "3.4-dev"
  9854. }
  9855. },
  9856. "autoload": {
  9857. "psr-4": {
  9858. "Symfony\\Component\\Yaml\\": ""
  9859. },
  9860. "exclude-from-classmap": [
  9861. "/Tests/"
  9862. ]
  9863. },
  9864. "notification-url": "https://packagist.org/downloads/",
  9865. "license": [
  9866. "MIT"
  9867. ],
  9868. "authors": [
  9869. {
  9870. "name": "Fabien Potencier",
  9871. "email": "fabien@symfony.com"
  9872. },
  9873. {
  9874. "name": "Symfony Community",
  9875. "homepage": "https://symfony.com/contributors"
  9876. }
  9877. ],
  9878. "description": "Symfony Yaml Component",
  9879. "homepage": "https://symfony.com",
  9880. "time": "2019-01-01T13:45:19+00:00"
  9881. },
  9882. {
  9883. "name": "twig/twig",
  9884. "version": "v1.37.1",
  9885. "source": {
  9886. "type": "git",
  9887. "url": "https://github.com/twigphp/Twig.git",
  9888. "reference": "66be9366c76cbf23e82e7171d47cbfa54a057a62"
  9889. },
  9890. "dist": {
  9891. "type": "zip",
  9892. "url": "https://api.github.com/repos/twigphp/Twig/zipball/66be9366c76cbf23e82e7171d47cbfa54a057a62",
  9893. "reference": "66be9366c76cbf23e82e7171d47cbfa54a057a62",
  9894. "shasum": ""
  9895. },
  9896. "require": {
  9897. "php": ">=5.4.0",
  9898. "symfony/polyfill-ctype": "^1.8"
  9899. },
  9900. "require-dev": {
  9901. "psr/container": "^1.0",
  9902. "symfony/debug": "^2.7",
  9903. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  9904. },
  9905. "type": "library",
  9906. "extra": {
  9907. "branch-alias": {
  9908. "dev-master": "1.37-dev"
  9909. }
  9910. },
  9911. "autoload": {
  9912. "psr-0": {
  9913. "Twig_": "lib/"
  9914. },
  9915. "psr-4": {
  9916. "Twig\\": "src/"
  9917. }
  9918. },
  9919. "notification-url": "https://packagist.org/downloads/",
  9920. "license": [
  9921. "BSD-3-Clause"
  9922. ],
  9923. "authors": [
  9924. {
  9925. "name": "Fabien Potencier",
  9926. "email": "fabien@symfony.com",
  9927. "homepage": "http://fabien.potencier.org",
  9928. "role": "Lead Developer"
  9929. },
  9930. {
  9931. "name": "Armin Ronacher",
  9932. "email": "armin.ronacher@active-4.com",
  9933. "role": "Project Founder"
  9934. },
  9935. {
  9936. "name": "Twig Team",
  9937. "homepage": "https://twig.symfony.com/contributors",
  9938. "role": "Contributors"
  9939. }
  9940. ],
  9941. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9942. "homepage": "https://twig.symfony.com",
  9943. "keywords": [
  9944. "templating"
  9945. ],
  9946. "time": "2019-01-14T14:59:29+00:00"
  9947. },
  9948. {
  9949. "name": "webflo/drupal-finder",
  9950. "version": "1.1.0",
  9951. "source": {
  9952. "type": "git",
  9953. "url": "https://github.com/webflo/drupal-finder.git",
  9954. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  9955. },
  9956. "dist": {
  9957. "type": "zip",
  9958. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9959. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9960. "shasum": ""
  9961. },
  9962. "require-dev": {
  9963. "mikey179/vfsstream": "^1.6",
  9964. "phpunit/phpunit": "^4.8"
  9965. },
  9966. "type": "library",
  9967. "autoload": {
  9968. "classmap": [
  9969. "src/DrupalFinder.php"
  9970. ]
  9971. },
  9972. "notification-url": "https://packagist.org/downloads/",
  9973. "license": [
  9974. "GPL-2.0+"
  9975. ],
  9976. "authors": [
  9977. {
  9978. "name": "Florian Weber",
  9979. "email": "florian@webflo.org"
  9980. }
  9981. ],
  9982. "description": "Helper class to locate a Drupal installation from a given path.",
  9983. "time": "2017-10-24T08:12:11+00:00"
  9984. },
  9985. {
  9986. "name": "webmozart/assert",
  9987. "version": "1.4.0",
  9988. "source": {
  9989. "type": "git",
  9990. "url": "https://github.com/webmozart/assert.git",
  9991. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  9992. },
  9993. "dist": {
  9994. "type": "zip",
  9995. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  9996. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  9997. "shasum": ""
  9998. },
  9999. "require": {
  10000. "php": "^5.3.3 || ^7.0",
  10001. "symfony/polyfill-ctype": "^1.8"
  10002. },
  10003. "require-dev": {
  10004. "phpunit/phpunit": "^4.6",
  10005. "sebastian/version": "^1.0.1"
  10006. },
  10007. "type": "library",
  10008. "extra": {
  10009. "branch-alias": {
  10010. "dev-master": "1.3-dev"
  10011. }
  10012. },
  10013. "autoload": {
  10014. "psr-4": {
  10015. "Webmozart\\Assert\\": "src/"
  10016. }
  10017. },
  10018. "notification-url": "https://packagist.org/downloads/",
  10019. "license": [
  10020. "MIT"
  10021. ],
  10022. "authors": [
  10023. {
  10024. "name": "Bernhard Schussek",
  10025. "email": "bschussek@gmail.com"
  10026. }
  10027. ],
  10028. "description": "Assertions to validate method input/output with nice error messages.",
  10029. "keywords": [
  10030. "assert",
  10031. "check",
  10032. "validate"
  10033. ],
  10034. "time": "2018-12-25T11:19:39+00:00"
  10035. },
  10036. {
  10037. "name": "webmozart/path-util",
  10038. "version": "2.3.0",
  10039. "source": {
  10040. "type": "git",
  10041. "url": "https://github.com/webmozart/path-util.git",
  10042. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10043. },
  10044. "dist": {
  10045. "type": "zip",
  10046. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10047. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10048. "shasum": ""
  10049. },
  10050. "require": {
  10051. "php": ">=5.3.3",
  10052. "webmozart/assert": "~1.0"
  10053. },
  10054. "require-dev": {
  10055. "phpunit/phpunit": "^4.6",
  10056. "sebastian/version": "^1.0.1"
  10057. },
  10058. "type": "library",
  10059. "extra": {
  10060. "branch-alias": {
  10061. "dev-master": "2.3-dev"
  10062. }
  10063. },
  10064. "autoload": {
  10065. "psr-4": {
  10066. "Webmozart\\PathUtil\\": "src/"
  10067. }
  10068. },
  10069. "notification-url": "https://packagist.org/downloads/",
  10070. "license": [
  10071. "MIT"
  10072. ],
  10073. "authors": [
  10074. {
  10075. "name": "Bernhard Schussek",
  10076. "email": "bschussek@gmail.com"
  10077. }
  10078. ],
  10079. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10080. "time": "2015-12-17T08:42:14+00:00"
  10081. },
  10082. {
  10083. "name": "wikimedia/composer-merge-plugin",
  10084. "version": "v1.4.1",
  10085. "source": {
  10086. "type": "git",
  10087. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  10088. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  10089. },
  10090. "dist": {
  10091. "type": "zip",
  10092. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  10093. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  10094. "shasum": ""
  10095. },
  10096. "require": {
  10097. "composer-plugin-api": "^1.0",
  10098. "php": ">=5.3.2"
  10099. },
  10100. "require-dev": {
  10101. "composer/composer": "~1.0.0",
  10102. "jakub-onderka/php-parallel-lint": "~0.8",
  10103. "phpunit/phpunit": "~4.8|~5.0",
  10104. "squizlabs/php_codesniffer": "~2.1.0"
  10105. },
  10106. "type": "composer-plugin",
  10107. "extra": {
  10108. "branch-alias": {
  10109. "dev-master": "1.3.x-dev"
  10110. },
  10111. "class": "Wikimedia\\Composer\\MergePlugin"
  10112. },
  10113. "autoload": {
  10114. "psr-4": {
  10115. "Wikimedia\\Composer\\": "src/"
  10116. }
  10117. },
  10118. "notification-url": "https://packagist.org/downloads/",
  10119. "license": [
  10120. "MIT"
  10121. ],
  10122. "authors": [
  10123. {
  10124. "name": "Bryan Davis",
  10125. "email": "bd808@wikimedia.org"
  10126. }
  10127. ],
  10128. "description": "Composer plugin to merge multiple composer.json files",
  10129. "time": "2017-04-25T02:31:25+00:00"
  10130. },
  10131. {
  10132. "name": "zendframework/zend-diactoros",
  10133. "version": "1.8.6",
  10134. "source": {
  10135. "type": "git",
  10136. "url": "https://github.com/zendframework/zend-diactoros.git",
  10137. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  10138. },
  10139. "dist": {
  10140. "type": "zip",
  10141. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  10142. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  10143. "shasum": ""
  10144. },
  10145. "require": {
  10146. "php": "^5.6 || ^7.0",
  10147. "psr/http-message": "^1.0"
  10148. },
  10149. "provide": {
  10150. "psr/http-message-implementation": "1.0"
  10151. },
  10152. "require-dev": {
  10153. "ext-dom": "*",
  10154. "ext-libxml": "*",
  10155. "php-http/psr7-integration-tests": "dev-master",
  10156. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  10157. "zendframework/zend-coding-standard": "~1.0"
  10158. },
  10159. "type": "library",
  10160. "extra": {
  10161. "branch-alias": {
  10162. "dev-master": "1.8.x-dev",
  10163. "dev-develop": "1.9.x-dev",
  10164. "dev-release-2.0": "2.0.x-dev"
  10165. }
  10166. },
  10167. "autoload": {
  10168. "files": [
  10169. "src/functions/create_uploaded_file.php",
  10170. "src/functions/marshal_headers_from_sapi.php",
  10171. "src/functions/marshal_method_from_sapi.php",
  10172. "src/functions/marshal_protocol_version_from_sapi.php",
  10173. "src/functions/marshal_uri_from_sapi.php",
  10174. "src/functions/normalize_server.php",
  10175. "src/functions/normalize_uploaded_files.php",
  10176. "src/functions/parse_cookie_header.php"
  10177. ],
  10178. "psr-4": {
  10179. "Zend\\Diactoros\\": "src/"
  10180. }
  10181. },
  10182. "notification-url": "https://packagist.org/downloads/",
  10183. "license": [
  10184. "BSD-2-Clause"
  10185. ],
  10186. "description": "PSR HTTP Message implementations",
  10187. "homepage": "https://github.com/zendframework/zend-diactoros",
  10188. "keywords": [
  10189. "http",
  10190. "psr",
  10191. "psr-7"
  10192. ],
  10193. "time": "2018-09-05T19:29:37+00:00"
  10194. },
  10195. {
  10196. "name": "zendframework/zend-escaper",
  10197. "version": "2.6.0",
  10198. "source": {
  10199. "type": "git",
  10200. "url": "https://github.com/zendframework/zend-escaper.git",
  10201. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  10202. },
  10203. "dist": {
  10204. "type": "zip",
  10205. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  10206. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  10207. "shasum": ""
  10208. },
  10209. "require": {
  10210. "php": "^5.6 || ^7.0"
  10211. },
  10212. "require-dev": {
  10213. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10214. "zendframework/zend-coding-standard": "~1.0.0"
  10215. },
  10216. "type": "library",
  10217. "extra": {
  10218. "branch-alias": {
  10219. "dev-master": "2.6.x-dev",
  10220. "dev-develop": "2.7.x-dev"
  10221. }
  10222. },
  10223. "autoload": {
  10224. "psr-4": {
  10225. "Zend\\Escaper\\": "src/"
  10226. }
  10227. },
  10228. "notification-url": "https://packagist.org/downloads/",
  10229. "license": [
  10230. "BSD-3-Clause"
  10231. ],
  10232. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  10233. "keywords": [
  10234. "ZendFramework",
  10235. "escaper",
  10236. "zf"
  10237. ],
  10238. "time": "2018-04-25T15:48:53+00:00"
  10239. },
  10240. {
  10241. "name": "zendframework/zend-feed",
  10242. "version": "2.10.3",
  10243. "source": {
  10244. "type": "git",
  10245. "url": "https://github.com/zendframework/zend-feed.git",
  10246. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888"
  10247. },
  10248. "dist": {
  10249. "type": "zip",
  10250. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/6641f4cf3f4586c63f83fd70b6d19966025c8888",
  10251. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888",
  10252. "shasum": ""
  10253. },
  10254. "require": {
  10255. "php": "^5.6 || ^7.0",
  10256. "zendframework/zend-escaper": "^2.5.2",
  10257. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  10258. },
  10259. "require-dev": {
  10260. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  10261. "psr/http-message": "^1.0.1",
  10262. "zendframework/zend-cache": "^2.7.2",
  10263. "zendframework/zend-coding-standard": "~1.0.0",
  10264. "zendframework/zend-db": "^2.8.2",
  10265. "zendframework/zend-http": "^2.7",
  10266. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  10267. "zendframework/zend-validator": "^2.10.1"
  10268. },
  10269. "suggest": {
  10270. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  10271. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  10272. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  10273. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  10274. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  10275. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  10276. },
  10277. "type": "library",
  10278. "extra": {
  10279. "branch-alias": {
  10280. "dev-master": "2.10.x-dev",
  10281. "dev-develop": "2.11.x-dev"
  10282. }
  10283. },
  10284. "autoload": {
  10285. "psr-4": {
  10286. "Zend\\Feed\\": "src/"
  10287. }
  10288. },
  10289. "notification-url": "https://packagist.org/downloads/",
  10290. "license": [
  10291. "BSD-3-Clause"
  10292. ],
  10293. "description": "provides functionality for consuming RSS and Atom feeds",
  10294. "keywords": [
  10295. "ZendFramework",
  10296. "feed",
  10297. "zf"
  10298. ],
  10299. "time": "2018-08-01T13:53:20+00:00"
  10300. },
  10301. {
  10302. "name": "zendframework/zend-stdlib",
  10303. "version": "3.2.1",
  10304. "source": {
  10305. "type": "git",
  10306. "url": "https://github.com/zendframework/zend-stdlib.git",
  10307. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  10308. },
  10309. "dist": {
  10310. "type": "zip",
  10311. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  10312. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  10313. "shasum": ""
  10314. },
  10315. "require": {
  10316. "php": "^5.6 || ^7.0"
  10317. },
  10318. "require-dev": {
  10319. "phpbench/phpbench": "^0.13",
  10320. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10321. "zendframework/zend-coding-standard": "~1.0.0"
  10322. },
  10323. "type": "library",
  10324. "extra": {
  10325. "branch-alias": {
  10326. "dev-master": "3.2.x-dev",
  10327. "dev-develop": "3.3.x-dev"
  10328. }
  10329. },
  10330. "autoload": {
  10331. "psr-4": {
  10332. "Zend\\Stdlib\\": "src/"
  10333. }
  10334. },
  10335. "notification-url": "https://packagist.org/downloads/",
  10336. "license": [
  10337. "BSD-3-Clause"
  10338. ],
  10339. "description": "SPL extensions, array utilities, error handlers, and more",
  10340. "keywords": [
  10341. "ZendFramework",
  10342. "stdlib",
  10343. "zf"
  10344. ],
  10345. "time": "2018-08-28T21:34:05+00:00"
  10346. }
  10347. ],
  10348. "packages-dev": [
  10349. {
  10350. "name": "behat/mink",
  10351. "version": "dev-master",
  10352. "source": {
  10353. "type": "git",
  10354. "url": "https://github.com/minkphp/Mink.git",
  10355. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  10356. },
  10357. "dist": {
  10358. "type": "zip",
  10359. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  10360. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  10361. "shasum": ""
  10362. },
  10363. "require": {
  10364. "php": ">=5.3.1",
  10365. "symfony/css-selector": "^2.7|^3.0|^4.0"
  10366. },
  10367. "require-dev": {
  10368. "symfony/phpunit-bridge": "^3.3|^4.0"
  10369. },
  10370. "suggest": {
  10371. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  10372. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  10373. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  10374. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  10375. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  10376. },
  10377. "type": "library",
  10378. "extra": {
  10379. "branch-alias": {
  10380. "dev-master": "1.7.x-dev"
  10381. }
  10382. },
  10383. "autoload": {
  10384. "psr-4": {
  10385. "Behat\\Mink\\": "src/"
  10386. }
  10387. },
  10388. "notification-url": "https://packagist.org/downloads/",
  10389. "license": [
  10390. "MIT"
  10391. ],
  10392. "authors": [
  10393. {
  10394. "name": "Konstantin Kudryashov",
  10395. "email": "ever.zet@gmail.com",
  10396. "homepage": "http://everzet.com"
  10397. }
  10398. ],
  10399. "description": "Browser controller/emulator abstraction for PHP",
  10400. "homepage": "http://mink.behat.org/",
  10401. "keywords": [
  10402. "browser",
  10403. "testing",
  10404. "web"
  10405. ],
  10406. "time": "2018-06-24T20:08:51+00:00"
  10407. },
  10408. {
  10409. "name": "behat/mink-browserkit-driver",
  10410. "version": "1.3.3",
  10411. "source": {
  10412. "type": "git",
  10413. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  10414. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  10415. },
  10416. "dist": {
  10417. "type": "zip",
  10418. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  10419. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  10420. "shasum": ""
  10421. },
  10422. "require": {
  10423. "behat/mink": "^1.7.1@dev",
  10424. "php": ">=5.3.6",
  10425. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  10426. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  10427. },
  10428. "require-dev": {
  10429. "mink/driver-testsuite": "dev-master",
  10430. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  10431. },
  10432. "type": "mink-driver",
  10433. "extra": {
  10434. "branch-alias": {
  10435. "dev-master": "1.3.x-dev"
  10436. }
  10437. },
  10438. "autoload": {
  10439. "psr-4": {
  10440. "Behat\\Mink\\Driver\\": "src/"
  10441. }
  10442. },
  10443. "notification-url": "https://packagist.org/downloads/",
  10444. "license": [
  10445. "MIT"
  10446. ],
  10447. "authors": [
  10448. {
  10449. "name": "Konstantin Kudryashov",
  10450. "email": "ever.zet@gmail.com",
  10451. "homepage": "http://everzet.com"
  10452. }
  10453. ],
  10454. "description": "Symfony2 BrowserKit driver for Mink framework",
  10455. "homepage": "http://mink.behat.org/",
  10456. "keywords": [
  10457. "Mink",
  10458. "Symfony2",
  10459. "browser",
  10460. "testing"
  10461. ],
  10462. "time": "2018-05-02T09:25:31+00:00"
  10463. },
  10464. {
  10465. "name": "behat/mink-goutte-driver",
  10466. "version": "v1.2.1",
  10467. "source": {
  10468. "type": "git",
  10469. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  10470. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  10471. },
  10472. "dist": {
  10473. "type": "zip",
  10474. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  10475. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  10476. "shasum": ""
  10477. },
  10478. "require": {
  10479. "behat/mink": "~1.6@dev",
  10480. "behat/mink-browserkit-driver": "~1.2@dev",
  10481. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  10482. "php": ">=5.3.1"
  10483. },
  10484. "require-dev": {
  10485. "symfony/phpunit-bridge": "~2.7|~3.0"
  10486. },
  10487. "type": "mink-driver",
  10488. "extra": {
  10489. "branch-alias": {
  10490. "dev-master": "1.2.x-dev"
  10491. }
  10492. },
  10493. "autoload": {
  10494. "psr-4": {
  10495. "Behat\\Mink\\Driver\\": "src/"
  10496. }
  10497. },
  10498. "notification-url": "https://packagist.org/downloads/",
  10499. "license": [
  10500. "MIT"
  10501. ],
  10502. "authors": [
  10503. {
  10504. "name": "Konstantin Kudryashov",
  10505. "email": "ever.zet@gmail.com",
  10506. "homepage": "http://everzet.com"
  10507. }
  10508. ],
  10509. "description": "Goutte driver for Mink framework",
  10510. "homepage": "http://mink.behat.org/",
  10511. "keywords": [
  10512. "browser",
  10513. "goutte",
  10514. "headless",
  10515. "testing"
  10516. ],
  10517. "time": "2016-03-05T09:04:22+00:00"
  10518. },
  10519. {
  10520. "name": "behat/mink-selenium2-driver",
  10521. "version": "dev-master",
  10522. "source": {
  10523. "type": "git",
  10524. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  10525. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  10526. },
  10527. "dist": {
  10528. "type": "zip",
  10529. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  10530. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  10531. "shasum": ""
  10532. },
  10533. "require": {
  10534. "behat/mink": "~1.7@dev",
  10535. "instaclick/php-webdriver": "~1.1",
  10536. "php": ">=5.3.1"
  10537. },
  10538. "require-dev": {
  10539. "mink/driver-testsuite": "dev-master"
  10540. },
  10541. "type": "mink-driver",
  10542. "extra": {
  10543. "branch-alias": {
  10544. "dev-master": "1.3.x-dev"
  10545. }
  10546. },
  10547. "autoload": {
  10548. "psr-4": {
  10549. "Behat\\Mink\\Driver\\": "src/"
  10550. }
  10551. },
  10552. "notification-url": "https://packagist.org/downloads/",
  10553. "license": [
  10554. "MIT"
  10555. ],
  10556. "authors": [
  10557. {
  10558. "name": "Konstantin Kudryashov",
  10559. "email": "ever.zet@gmail.com",
  10560. "homepage": "http://everzet.com"
  10561. },
  10562. {
  10563. "name": "Pete Otaqui",
  10564. "email": "pete@otaqui.com",
  10565. "homepage": "https://github.com/pete-otaqui"
  10566. }
  10567. ],
  10568. "description": "Selenium2 (WebDriver) driver for Mink framework",
  10569. "homepage": "http://mink.behat.org/",
  10570. "keywords": [
  10571. "ajax",
  10572. "browser",
  10573. "javascript",
  10574. "selenium",
  10575. "testing",
  10576. "webdriver"
  10577. ],
  10578. "time": "2018-10-10T12:39:06+00:00"
  10579. },
  10580. {
  10581. "name": "doctrine/instantiator",
  10582. "version": "1.0.5",
  10583. "source": {
  10584. "type": "git",
  10585. "url": "https://github.com/doctrine/instantiator.git",
  10586. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  10587. },
  10588. "dist": {
  10589. "type": "zip",
  10590. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  10591. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  10592. "shasum": ""
  10593. },
  10594. "require": {
  10595. "php": ">=5.3,<8.0-DEV"
  10596. },
  10597. "require-dev": {
  10598. "athletic/athletic": "~0.1.8",
  10599. "ext-pdo": "*",
  10600. "ext-phar": "*",
  10601. "phpunit/phpunit": "~4.0",
  10602. "squizlabs/php_codesniffer": "~2.0"
  10603. },
  10604. "type": "library",
  10605. "extra": {
  10606. "branch-alias": {
  10607. "dev-master": "1.0.x-dev"
  10608. }
  10609. },
  10610. "autoload": {
  10611. "psr-4": {
  10612. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  10613. }
  10614. },
  10615. "notification-url": "https://packagist.org/downloads/",
  10616. "license": [
  10617. "MIT"
  10618. ],
  10619. "authors": [
  10620. {
  10621. "name": "Marco Pivetta",
  10622. "email": "ocramius@gmail.com",
  10623. "homepage": "http://ocramius.github.com/"
  10624. }
  10625. ],
  10626. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  10627. "homepage": "https://github.com/doctrine/instantiator",
  10628. "keywords": [
  10629. "constructor",
  10630. "instantiate"
  10631. ],
  10632. "time": "2015-06-14T21:17:01+00:00"
  10633. },
  10634. {
  10635. "name": "drupal/coder",
  10636. "version": "8.3.1",
  10637. "source": {
  10638. "type": "git",
  10639. "url": "https://git.drupal.org/project/coder.git",
  10640. "reference": "29a25627e7148b3119c84f18e087fc3b8c85b959"
  10641. },
  10642. "require": {
  10643. "ext-mbstring": "*",
  10644. "php": ">=5.4.0",
  10645. "squizlabs/php_codesniffer": "^3.0.1",
  10646. "symfony/yaml": ">=2.0.0"
  10647. },
  10648. "require-dev": {
  10649. "phpunit/phpunit": ">=3.7 <6"
  10650. },
  10651. "type": "phpcodesniffer-standard",
  10652. "autoload": {
  10653. "psr-0": {
  10654. "Drupal\\": "coder_sniffer/Drupal/",
  10655. "DrupalPractice\\": "coder_sniffer/Drupal/"
  10656. }
  10657. },
  10658. "notification-url": "https://packagist.org/downloads/",
  10659. "license": [
  10660. "GPL-2.0+"
  10661. ],
  10662. "description": "Coder is a library to review Drupal code.",
  10663. "homepage": "https://www.drupal.org/project/coder",
  10664. "keywords": [
  10665. "code review",
  10666. "phpcs",
  10667. "standards"
  10668. ],
  10669. "time": "2018-09-21T14:22:49+00:00"
  10670. },
  10671. {
  10672. "name": "fabpot/goutte",
  10673. "version": "v3.2.3",
  10674. "source": {
  10675. "type": "git",
  10676. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  10677. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  10678. },
  10679. "dist": {
  10680. "type": "zip",
  10681. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  10682. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  10683. "shasum": ""
  10684. },
  10685. "require": {
  10686. "guzzlehttp/guzzle": "^6.0",
  10687. "php": ">=5.5.0",
  10688. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  10689. "symfony/css-selector": "~2.1|~3.0|~4.0",
  10690. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  10691. },
  10692. "require-dev": {
  10693. "symfony/phpunit-bridge": "^3.3 || ^4"
  10694. },
  10695. "type": "application",
  10696. "extra": {
  10697. "branch-alias": {
  10698. "dev-master": "3.2-dev"
  10699. }
  10700. },
  10701. "autoload": {
  10702. "psr-4": {
  10703. "Goutte\\": "Goutte"
  10704. },
  10705. "exclude-from-classmap": [
  10706. "Goutte/Tests"
  10707. ]
  10708. },
  10709. "notification-url": "https://packagist.org/downloads/",
  10710. "license": [
  10711. "MIT"
  10712. ],
  10713. "authors": [
  10714. {
  10715. "name": "Fabien Potencier",
  10716. "email": "fabien@symfony.com"
  10717. }
  10718. ],
  10719. "description": "A simple PHP Web Scraper",
  10720. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  10721. "keywords": [
  10722. "scraper"
  10723. ],
  10724. "time": "2018-06-29T15:13:57+00:00"
  10725. },
  10726. {
  10727. "name": "instaclick/php-webdriver",
  10728. "version": "1.4.5",
  10729. "source": {
  10730. "type": "git",
  10731. "url": "https://github.com/instaclick/php-webdriver.git",
  10732. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  10733. },
  10734. "dist": {
  10735. "type": "zip",
  10736. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  10737. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  10738. "shasum": ""
  10739. },
  10740. "require": {
  10741. "ext-curl": "*",
  10742. "php": ">=5.3.2"
  10743. },
  10744. "require-dev": {
  10745. "phpunit/phpunit": "^4.8",
  10746. "satooshi/php-coveralls": "^1.0||^2.0"
  10747. },
  10748. "type": "library",
  10749. "extra": {
  10750. "branch-alias": {
  10751. "dev-master": "1.4.x-dev"
  10752. }
  10753. },
  10754. "autoload": {
  10755. "psr-0": {
  10756. "WebDriver": "lib/"
  10757. }
  10758. },
  10759. "notification-url": "https://packagist.org/downloads/",
  10760. "license": [
  10761. "Apache-2.0"
  10762. ],
  10763. "authors": [
  10764. {
  10765. "name": "Justin Bishop",
  10766. "email": "jubishop@gmail.com",
  10767. "role": "Developer"
  10768. },
  10769. {
  10770. "name": "Anthon Pang",
  10771. "email": "apang@softwaredevelopment.ca",
  10772. "role": "Fork Maintainer"
  10773. }
  10774. ],
  10775. "description": "PHP WebDriver for Selenium 2",
  10776. "homepage": "http://instaclick.com/",
  10777. "keywords": [
  10778. "browser",
  10779. "selenium",
  10780. "webdriver",
  10781. "webtest"
  10782. ],
  10783. "time": "2017-06-30T04:02:48+00:00"
  10784. },
  10785. {
  10786. "name": "jcalderonzumba/gastonjs",
  10787. "version": "v1.2.0",
  10788. "source": {
  10789. "type": "git",
  10790. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  10791. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  10792. },
  10793. "dist": {
  10794. "type": "zip",
  10795. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  10796. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  10797. "shasum": ""
  10798. },
  10799. "require": {
  10800. "guzzlehttp/guzzle": "~5.0|~6.0",
  10801. "php": ">=5.4"
  10802. },
  10803. "require-dev": {
  10804. "phpunit/phpunit": "~4.6",
  10805. "silex/silex": "~1.2",
  10806. "symfony/phpunit-bridge": "~2.7",
  10807. "symfony/process": "~2.1"
  10808. },
  10809. "type": "phantomjs-api",
  10810. "extra": {
  10811. "branch-alias": {
  10812. "dev-master": "1.1.x-dev"
  10813. }
  10814. },
  10815. "autoload": {
  10816. "psr-4": {
  10817. "Zumba\\GastonJS\\": "src"
  10818. }
  10819. },
  10820. "notification-url": "https://packagist.org/downloads/",
  10821. "license": [
  10822. "MIT"
  10823. ],
  10824. "authors": [
  10825. {
  10826. "name": "Juan Francisco Calderón Zumba",
  10827. "email": "juanfcz@gmail.com",
  10828. "homepage": "http://github.com/jcalderonzumba"
  10829. }
  10830. ],
  10831. "description": "PhantomJS API based server for webpage automation",
  10832. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  10833. "keywords": [
  10834. "api",
  10835. "automation",
  10836. "browser",
  10837. "headless",
  10838. "phantomjs"
  10839. ],
  10840. "time": "2017-03-31T07:31:47+00:00"
  10841. },
  10842. {
  10843. "name": "jcalderonzumba/mink-phantomjs-driver",
  10844. "version": "v0.3.3",
  10845. "source": {
  10846. "type": "git",
  10847. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  10848. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  10849. },
  10850. "dist": {
  10851. "type": "zip",
  10852. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  10853. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  10854. "shasum": ""
  10855. },
  10856. "require": {
  10857. "behat/mink": "~1.7",
  10858. "jcalderonzumba/gastonjs": "~1.0",
  10859. "php": ">=5.4",
  10860. "twig/twig": "~1.20|~2.0"
  10861. },
  10862. "require-dev": {
  10863. "mink/driver-testsuite": "dev-master",
  10864. "phpunit/phpunit": "~4.6"
  10865. },
  10866. "type": "mink-driver",
  10867. "extra": {
  10868. "branch-alias": {
  10869. "dev-master": "0.4.x-dev"
  10870. }
  10871. },
  10872. "autoload": {
  10873. "psr-4": {
  10874. "Zumba\\Mink\\Driver\\": "src"
  10875. }
  10876. },
  10877. "notification-url": "https://packagist.org/downloads/",
  10878. "license": [
  10879. "MIT"
  10880. ],
  10881. "authors": [
  10882. {
  10883. "name": "Juan Francisco Calderón Zumba",
  10884. "email": "juanfcz@gmail.com",
  10885. "homepage": "http://github.com/jcalderonzumba"
  10886. }
  10887. ],
  10888. "description": "PhantomJS driver for Mink framework",
  10889. "homepage": "http://mink.behat.org/",
  10890. "keywords": [
  10891. "ajax",
  10892. "browser",
  10893. "headless",
  10894. "javascript",
  10895. "phantomjs",
  10896. "testing"
  10897. ],
  10898. "time": "2016-12-01T10:57:30+00:00"
  10899. },
  10900. {
  10901. "name": "mikey179/vfsStream",
  10902. "version": "v1.6.5",
  10903. "source": {
  10904. "type": "git",
  10905. "url": "https://github.com/mikey179/vfsStream.git",
  10906. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  10907. },
  10908. "dist": {
  10909. "type": "zip",
  10910. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  10911. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  10912. "shasum": ""
  10913. },
  10914. "require": {
  10915. "php": ">=5.3.0"
  10916. },
  10917. "require-dev": {
  10918. "phpunit/phpunit": "~4.5"
  10919. },
  10920. "type": "library",
  10921. "extra": {
  10922. "branch-alias": {
  10923. "dev-master": "1.6.x-dev"
  10924. }
  10925. },
  10926. "autoload": {
  10927. "psr-0": {
  10928. "org\\bovigo\\vfs\\": "src/main/php"
  10929. }
  10930. },
  10931. "notification-url": "https://packagist.org/downloads/",
  10932. "license": [
  10933. "BSD-3-Clause"
  10934. ],
  10935. "authors": [
  10936. {
  10937. "name": "Frank Kleine",
  10938. "homepage": "http://frankkleine.de/",
  10939. "role": "Developer"
  10940. }
  10941. ],
  10942. "description": "Virtual file system to mock the real file system in unit tests.",
  10943. "homepage": "http://vfs.bovigo.org/",
  10944. "time": "2017-08-01T08:02:14+00:00"
  10945. },
  10946. {
  10947. "name": "myclabs/deep-copy",
  10948. "version": "1.7.0",
  10949. "source": {
  10950. "type": "git",
  10951. "url": "https://github.com/myclabs/DeepCopy.git",
  10952. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  10953. },
  10954. "dist": {
  10955. "type": "zip",
  10956. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10957. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10958. "shasum": ""
  10959. },
  10960. "require": {
  10961. "php": "^5.6 || ^7.0"
  10962. },
  10963. "require-dev": {
  10964. "doctrine/collections": "^1.0",
  10965. "doctrine/common": "^2.6",
  10966. "phpunit/phpunit": "^4.1"
  10967. },
  10968. "type": "library",
  10969. "autoload": {
  10970. "psr-4": {
  10971. "DeepCopy\\": "src/DeepCopy/"
  10972. },
  10973. "files": [
  10974. "src/DeepCopy/deep_copy.php"
  10975. ]
  10976. },
  10977. "notification-url": "https://packagist.org/downloads/",
  10978. "license": [
  10979. "MIT"
  10980. ],
  10981. "description": "Create deep copies (clones) of your objects",
  10982. "keywords": [
  10983. "clone",
  10984. "copy",
  10985. "duplicate",
  10986. "object",
  10987. "object graph"
  10988. ],
  10989. "time": "2017-10-19T19:58:43+00:00"
  10990. },
  10991. {
  10992. "name": "phar-io/manifest",
  10993. "version": "1.0.1",
  10994. "source": {
  10995. "type": "git",
  10996. "url": "https://github.com/phar-io/manifest.git",
  10997. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  10998. },
  10999. "dist": {
  11000. "type": "zip",
  11001. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  11002. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  11003. "shasum": ""
  11004. },
  11005. "require": {
  11006. "ext-dom": "*",
  11007. "ext-phar": "*",
  11008. "phar-io/version": "^1.0.1",
  11009. "php": "^5.6 || ^7.0"
  11010. },
  11011. "type": "library",
  11012. "extra": {
  11013. "branch-alias": {
  11014. "dev-master": "1.0.x-dev"
  11015. }
  11016. },
  11017. "autoload": {
  11018. "classmap": [
  11019. "src/"
  11020. ]
  11021. },
  11022. "notification-url": "https://packagist.org/downloads/",
  11023. "license": [
  11024. "BSD-3-Clause"
  11025. ],
  11026. "authors": [
  11027. {
  11028. "name": "Arne Blankerts",
  11029. "email": "arne@blankerts.de",
  11030. "role": "Developer"
  11031. },
  11032. {
  11033. "name": "Sebastian Heuer",
  11034. "email": "sebastian@phpeople.de",
  11035. "role": "Developer"
  11036. },
  11037. {
  11038. "name": "Sebastian Bergmann",
  11039. "email": "sebastian@phpunit.de",
  11040. "role": "Developer"
  11041. }
  11042. ],
  11043. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11044. "time": "2017-03-05T18:14:27+00:00"
  11045. },
  11046. {
  11047. "name": "phar-io/version",
  11048. "version": "1.0.1",
  11049. "source": {
  11050. "type": "git",
  11051. "url": "https://github.com/phar-io/version.git",
  11052. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  11053. },
  11054. "dist": {
  11055. "type": "zip",
  11056. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  11057. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  11058. "shasum": ""
  11059. },
  11060. "require": {
  11061. "php": "^5.6 || ^7.0"
  11062. },
  11063. "type": "library",
  11064. "autoload": {
  11065. "classmap": [
  11066. "src/"
  11067. ]
  11068. },
  11069. "notification-url": "https://packagist.org/downloads/",
  11070. "license": [
  11071. "BSD-3-Clause"
  11072. ],
  11073. "authors": [
  11074. {
  11075. "name": "Arne Blankerts",
  11076. "email": "arne@blankerts.de",
  11077. "role": "Developer"
  11078. },
  11079. {
  11080. "name": "Sebastian Heuer",
  11081. "email": "sebastian@phpeople.de",
  11082. "role": "Developer"
  11083. },
  11084. {
  11085. "name": "Sebastian Bergmann",
  11086. "email": "sebastian@phpunit.de",
  11087. "role": "Developer"
  11088. }
  11089. ],
  11090. "description": "Library for handling version information and constraints",
  11091. "time": "2017-03-05T17:38:23+00:00"
  11092. },
  11093. {
  11094. "name": "phpdocumentor/reflection-common",
  11095. "version": "1.0.1",
  11096. "source": {
  11097. "type": "git",
  11098. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  11099. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  11100. },
  11101. "dist": {
  11102. "type": "zip",
  11103. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11104. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11105. "shasum": ""
  11106. },
  11107. "require": {
  11108. "php": ">=5.5"
  11109. },
  11110. "require-dev": {
  11111. "phpunit/phpunit": "^4.6"
  11112. },
  11113. "type": "library",
  11114. "extra": {
  11115. "branch-alias": {
  11116. "dev-master": "1.0.x-dev"
  11117. }
  11118. },
  11119. "autoload": {
  11120. "psr-4": {
  11121. "phpDocumentor\\Reflection\\": [
  11122. "src"
  11123. ]
  11124. }
  11125. },
  11126. "notification-url": "https://packagist.org/downloads/",
  11127. "license": [
  11128. "MIT"
  11129. ],
  11130. "authors": [
  11131. {
  11132. "name": "Jaap van Otterdijk",
  11133. "email": "opensource@ijaap.nl"
  11134. }
  11135. ],
  11136. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  11137. "homepage": "http://www.phpdoc.org",
  11138. "keywords": [
  11139. "FQSEN",
  11140. "phpDocumentor",
  11141. "phpdoc",
  11142. "reflection",
  11143. "static analysis"
  11144. ],
  11145. "time": "2017-09-11T18:02:19+00:00"
  11146. },
  11147. {
  11148. "name": "phpdocumentor/reflection-docblock",
  11149. "version": "4.3.0",
  11150. "source": {
  11151. "type": "git",
  11152. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  11153. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  11154. },
  11155. "dist": {
  11156. "type": "zip",
  11157. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  11158. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  11159. "shasum": ""
  11160. },
  11161. "require": {
  11162. "php": "^7.0",
  11163. "phpdocumentor/reflection-common": "^1.0.0",
  11164. "phpdocumentor/type-resolver": "^0.4.0",
  11165. "webmozart/assert": "^1.0"
  11166. },
  11167. "require-dev": {
  11168. "doctrine/instantiator": "~1.0.5",
  11169. "mockery/mockery": "^1.0",
  11170. "phpunit/phpunit": "^6.4"
  11171. },
  11172. "type": "library",
  11173. "extra": {
  11174. "branch-alias": {
  11175. "dev-master": "4.x-dev"
  11176. }
  11177. },
  11178. "autoload": {
  11179. "psr-4": {
  11180. "phpDocumentor\\Reflection\\": [
  11181. "src/"
  11182. ]
  11183. }
  11184. },
  11185. "notification-url": "https://packagist.org/downloads/",
  11186. "license": [
  11187. "MIT"
  11188. ],
  11189. "authors": [
  11190. {
  11191. "name": "Mike van Riel",
  11192. "email": "me@mikevanriel.com"
  11193. }
  11194. ],
  11195. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  11196. "time": "2017-11-30T07:14:17+00:00"
  11197. },
  11198. {
  11199. "name": "phpdocumentor/type-resolver",
  11200. "version": "0.4.0",
  11201. "source": {
  11202. "type": "git",
  11203. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  11204. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  11205. },
  11206. "dist": {
  11207. "type": "zip",
  11208. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  11209. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  11210. "shasum": ""
  11211. },
  11212. "require": {
  11213. "php": "^5.5 || ^7.0",
  11214. "phpdocumentor/reflection-common": "^1.0"
  11215. },
  11216. "require-dev": {
  11217. "mockery/mockery": "^0.9.4",
  11218. "phpunit/phpunit": "^5.2||^4.8.24"
  11219. },
  11220. "type": "library",
  11221. "extra": {
  11222. "branch-alias": {
  11223. "dev-master": "1.0.x-dev"
  11224. }
  11225. },
  11226. "autoload": {
  11227. "psr-4": {
  11228. "phpDocumentor\\Reflection\\": [
  11229. "src/"
  11230. ]
  11231. }
  11232. },
  11233. "notification-url": "https://packagist.org/downloads/",
  11234. "license": [
  11235. "MIT"
  11236. ],
  11237. "authors": [
  11238. {
  11239. "name": "Mike van Riel",
  11240. "email": "me@mikevanriel.com"
  11241. }
  11242. ],
  11243. "time": "2017-07-14T14:27:02+00:00"
  11244. },
  11245. {
  11246. "name": "phpspec/prophecy",
  11247. "version": "1.8.0",
  11248. "source": {
  11249. "type": "git",
  11250. "url": "https://github.com/phpspec/prophecy.git",
  11251. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  11252. },
  11253. "dist": {
  11254. "type": "zip",
  11255. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11256. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11257. "shasum": ""
  11258. },
  11259. "require": {
  11260. "doctrine/instantiator": "^1.0.2",
  11261. "php": "^5.3|^7.0",
  11262. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  11263. "sebastian/comparator": "^1.1|^2.0|^3.0",
  11264. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  11265. },
  11266. "require-dev": {
  11267. "phpspec/phpspec": "^2.5|^3.2",
  11268. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  11269. },
  11270. "type": "library",
  11271. "extra": {
  11272. "branch-alias": {
  11273. "dev-master": "1.8.x-dev"
  11274. }
  11275. },
  11276. "autoload": {
  11277. "psr-0": {
  11278. "Prophecy\\": "src/"
  11279. }
  11280. },
  11281. "notification-url": "https://packagist.org/downloads/",
  11282. "license": [
  11283. "MIT"
  11284. ],
  11285. "authors": [
  11286. {
  11287. "name": "Konstantin Kudryashov",
  11288. "email": "ever.zet@gmail.com",
  11289. "homepage": "http://everzet.com"
  11290. },
  11291. {
  11292. "name": "Marcello Duarte",
  11293. "email": "marcello.duarte@gmail.com"
  11294. }
  11295. ],
  11296. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11297. "homepage": "https://github.com/phpspec/prophecy",
  11298. "keywords": [
  11299. "Double",
  11300. "Dummy",
  11301. "fake",
  11302. "mock",
  11303. "spy",
  11304. "stub"
  11305. ],
  11306. "time": "2018-08-05T17:53:17+00:00"
  11307. },
  11308. {
  11309. "name": "phpunit/php-code-coverage",
  11310. "version": "5.3.2",
  11311. "source": {
  11312. "type": "git",
  11313. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11314. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  11315. },
  11316. "dist": {
  11317. "type": "zip",
  11318. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  11319. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  11320. "shasum": ""
  11321. },
  11322. "require": {
  11323. "ext-dom": "*",
  11324. "ext-xmlwriter": "*",
  11325. "php": "^7.0",
  11326. "phpunit/php-file-iterator": "^1.4.2",
  11327. "phpunit/php-text-template": "^1.2.1",
  11328. "phpunit/php-token-stream": "^2.0.1",
  11329. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  11330. "sebastian/environment": "^3.0",
  11331. "sebastian/version": "^2.0.1",
  11332. "theseer/tokenizer": "^1.1"
  11333. },
  11334. "require-dev": {
  11335. "phpunit/phpunit": "^6.0"
  11336. },
  11337. "suggest": {
  11338. "ext-xdebug": "^2.5.5"
  11339. },
  11340. "type": "library",
  11341. "extra": {
  11342. "branch-alias": {
  11343. "dev-master": "5.3.x-dev"
  11344. }
  11345. },
  11346. "autoload": {
  11347. "classmap": [
  11348. "src/"
  11349. ]
  11350. },
  11351. "notification-url": "https://packagist.org/downloads/",
  11352. "license": [
  11353. "BSD-3-Clause"
  11354. ],
  11355. "authors": [
  11356. {
  11357. "name": "Sebastian Bergmann",
  11358. "email": "sebastian@phpunit.de",
  11359. "role": "lead"
  11360. }
  11361. ],
  11362. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11363. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11364. "keywords": [
  11365. "coverage",
  11366. "testing",
  11367. "xunit"
  11368. ],
  11369. "time": "2018-04-06T15:36:58+00:00"
  11370. },
  11371. {
  11372. "name": "phpunit/php-file-iterator",
  11373. "version": "1.4.5",
  11374. "source": {
  11375. "type": "git",
  11376. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11377. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  11378. },
  11379. "dist": {
  11380. "type": "zip",
  11381. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  11382. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  11383. "shasum": ""
  11384. },
  11385. "require": {
  11386. "php": ">=5.3.3"
  11387. },
  11388. "type": "library",
  11389. "extra": {
  11390. "branch-alias": {
  11391. "dev-master": "1.4.x-dev"
  11392. }
  11393. },
  11394. "autoload": {
  11395. "classmap": [
  11396. "src/"
  11397. ]
  11398. },
  11399. "notification-url": "https://packagist.org/downloads/",
  11400. "license": [
  11401. "BSD-3-Clause"
  11402. ],
  11403. "authors": [
  11404. {
  11405. "name": "Sebastian Bergmann",
  11406. "email": "sb@sebastian-bergmann.de",
  11407. "role": "lead"
  11408. }
  11409. ],
  11410. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11411. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11412. "keywords": [
  11413. "filesystem",
  11414. "iterator"
  11415. ],
  11416. "time": "2017-11-27T13:52:08+00:00"
  11417. },
  11418. {
  11419. "name": "phpunit/php-text-template",
  11420. "version": "1.2.1",
  11421. "source": {
  11422. "type": "git",
  11423. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11424. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  11425. },
  11426. "dist": {
  11427. "type": "zip",
  11428. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  11429. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  11430. "shasum": ""
  11431. },
  11432. "require": {
  11433. "php": ">=5.3.3"
  11434. },
  11435. "type": "library",
  11436. "autoload": {
  11437. "classmap": [
  11438. "src/"
  11439. ]
  11440. },
  11441. "notification-url": "https://packagist.org/downloads/",
  11442. "license": [
  11443. "BSD-3-Clause"
  11444. ],
  11445. "authors": [
  11446. {
  11447. "name": "Sebastian Bergmann",
  11448. "email": "sebastian@phpunit.de",
  11449. "role": "lead"
  11450. }
  11451. ],
  11452. "description": "Simple template engine.",
  11453. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11454. "keywords": [
  11455. "template"
  11456. ],
  11457. "time": "2015-06-21T13:50:34+00:00"
  11458. },
  11459. {
  11460. "name": "phpunit/php-timer",
  11461. "version": "1.0.9",
  11462. "source": {
  11463. "type": "git",
  11464. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11465. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  11466. },
  11467. "dist": {
  11468. "type": "zip",
  11469. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  11470. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  11471. "shasum": ""
  11472. },
  11473. "require": {
  11474. "php": "^5.3.3 || ^7.0"
  11475. },
  11476. "require-dev": {
  11477. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11478. },
  11479. "type": "library",
  11480. "extra": {
  11481. "branch-alias": {
  11482. "dev-master": "1.0-dev"
  11483. }
  11484. },
  11485. "autoload": {
  11486. "classmap": [
  11487. "src/"
  11488. ]
  11489. },
  11490. "notification-url": "https://packagist.org/downloads/",
  11491. "license": [
  11492. "BSD-3-Clause"
  11493. ],
  11494. "authors": [
  11495. {
  11496. "name": "Sebastian Bergmann",
  11497. "email": "sb@sebastian-bergmann.de",
  11498. "role": "lead"
  11499. }
  11500. ],
  11501. "description": "Utility class for timing",
  11502. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11503. "keywords": [
  11504. "timer"
  11505. ],
  11506. "time": "2017-02-26T11:10:40+00:00"
  11507. },
  11508. {
  11509. "name": "phpunit/php-token-stream",
  11510. "version": "2.0.2",
  11511. "source": {
  11512. "type": "git",
  11513. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  11514. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  11515. },
  11516. "dist": {
  11517. "type": "zip",
  11518. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  11519. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  11520. "shasum": ""
  11521. },
  11522. "require": {
  11523. "ext-tokenizer": "*",
  11524. "php": "^7.0"
  11525. },
  11526. "require-dev": {
  11527. "phpunit/phpunit": "^6.2.4"
  11528. },
  11529. "type": "library",
  11530. "extra": {
  11531. "branch-alias": {
  11532. "dev-master": "2.0-dev"
  11533. }
  11534. },
  11535. "autoload": {
  11536. "classmap": [
  11537. "src/"
  11538. ]
  11539. },
  11540. "notification-url": "https://packagist.org/downloads/",
  11541. "license": [
  11542. "BSD-3-Clause"
  11543. ],
  11544. "authors": [
  11545. {
  11546. "name": "Sebastian Bergmann",
  11547. "email": "sebastian@phpunit.de"
  11548. }
  11549. ],
  11550. "description": "Wrapper around PHP's tokenizer extension.",
  11551. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  11552. "keywords": [
  11553. "tokenizer"
  11554. ],
  11555. "time": "2017-11-27T05:48:46+00:00"
  11556. },
  11557. {
  11558. "name": "phpunit/phpunit",
  11559. "version": "6.5.13",
  11560. "source": {
  11561. "type": "git",
  11562. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11563. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  11564. },
  11565. "dist": {
  11566. "type": "zip",
  11567. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  11568. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  11569. "shasum": ""
  11570. },
  11571. "require": {
  11572. "ext-dom": "*",
  11573. "ext-json": "*",
  11574. "ext-libxml": "*",
  11575. "ext-mbstring": "*",
  11576. "ext-xml": "*",
  11577. "myclabs/deep-copy": "^1.6.1",
  11578. "phar-io/manifest": "^1.0.1",
  11579. "phar-io/version": "^1.0",
  11580. "php": "^7.0",
  11581. "phpspec/prophecy": "^1.7",
  11582. "phpunit/php-code-coverage": "^5.3",
  11583. "phpunit/php-file-iterator": "^1.4.3",
  11584. "phpunit/php-text-template": "^1.2.1",
  11585. "phpunit/php-timer": "^1.0.9",
  11586. "phpunit/phpunit-mock-objects": "^5.0.9",
  11587. "sebastian/comparator": "^2.1",
  11588. "sebastian/diff": "^2.0",
  11589. "sebastian/environment": "^3.1",
  11590. "sebastian/exporter": "^3.1",
  11591. "sebastian/global-state": "^2.0",
  11592. "sebastian/object-enumerator": "^3.0.3",
  11593. "sebastian/resource-operations": "^1.0",
  11594. "sebastian/version": "^2.0.1"
  11595. },
  11596. "conflict": {
  11597. "phpdocumentor/reflection-docblock": "3.0.2",
  11598. "phpunit/dbunit": "<3.0"
  11599. },
  11600. "require-dev": {
  11601. "ext-pdo": "*"
  11602. },
  11603. "suggest": {
  11604. "ext-xdebug": "*",
  11605. "phpunit/php-invoker": "^1.1"
  11606. },
  11607. "bin": [
  11608. "phpunit"
  11609. ],
  11610. "type": "library",
  11611. "extra": {
  11612. "branch-alias": {
  11613. "dev-master": "6.5.x-dev"
  11614. }
  11615. },
  11616. "autoload": {
  11617. "classmap": [
  11618. "src/"
  11619. ]
  11620. },
  11621. "notification-url": "https://packagist.org/downloads/",
  11622. "license": [
  11623. "BSD-3-Clause"
  11624. ],
  11625. "authors": [
  11626. {
  11627. "name": "Sebastian Bergmann",
  11628. "email": "sebastian@phpunit.de",
  11629. "role": "lead"
  11630. }
  11631. ],
  11632. "description": "The PHP Unit Testing framework.",
  11633. "homepage": "https://phpunit.de/",
  11634. "keywords": [
  11635. "phpunit",
  11636. "testing",
  11637. "xunit"
  11638. ],
  11639. "time": "2018-09-08T15:10:43+00:00"
  11640. },
  11641. {
  11642. "name": "phpunit/phpunit-mock-objects",
  11643. "version": "5.0.10",
  11644. "source": {
  11645. "type": "git",
  11646. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  11647. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  11648. },
  11649. "dist": {
  11650. "type": "zip",
  11651. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  11652. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  11653. "shasum": ""
  11654. },
  11655. "require": {
  11656. "doctrine/instantiator": "^1.0.5",
  11657. "php": "^7.0",
  11658. "phpunit/php-text-template": "^1.2.1",
  11659. "sebastian/exporter": "^3.1"
  11660. },
  11661. "conflict": {
  11662. "phpunit/phpunit": "<6.0"
  11663. },
  11664. "require-dev": {
  11665. "phpunit/phpunit": "^6.5.11"
  11666. },
  11667. "suggest": {
  11668. "ext-soap": "*"
  11669. },
  11670. "type": "library",
  11671. "extra": {
  11672. "branch-alias": {
  11673. "dev-master": "5.0.x-dev"
  11674. }
  11675. },
  11676. "autoload": {
  11677. "classmap": [
  11678. "src/"
  11679. ]
  11680. },
  11681. "notification-url": "https://packagist.org/downloads/",
  11682. "license": [
  11683. "BSD-3-Clause"
  11684. ],
  11685. "authors": [
  11686. {
  11687. "name": "Sebastian Bergmann",
  11688. "email": "sebastian@phpunit.de",
  11689. "role": "lead"
  11690. }
  11691. ],
  11692. "description": "Mock Object library for PHPUnit",
  11693. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  11694. "keywords": [
  11695. "mock",
  11696. "xunit"
  11697. ],
  11698. "time": "2018-08-09T05:50:03+00:00"
  11699. },
  11700. {
  11701. "name": "sebastian/code-unit-reverse-lookup",
  11702. "version": "1.0.1",
  11703. "source": {
  11704. "type": "git",
  11705. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11706. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  11707. },
  11708. "dist": {
  11709. "type": "zip",
  11710. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  11711. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  11712. "shasum": ""
  11713. },
  11714. "require": {
  11715. "php": "^5.6 || ^7.0"
  11716. },
  11717. "require-dev": {
  11718. "phpunit/phpunit": "^5.7 || ^6.0"
  11719. },
  11720. "type": "library",
  11721. "extra": {
  11722. "branch-alias": {
  11723. "dev-master": "1.0.x-dev"
  11724. }
  11725. },
  11726. "autoload": {
  11727. "classmap": [
  11728. "src/"
  11729. ]
  11730. },
  11731. "notification-url": "https://packagist.org/downloads/",
  11732. "license": [
  11733. "BSD-3-Clause"
  11734. ],
  11735. "authors": [
  11736. {
  11737. "name": "Sebastian Bergmann",
  11738. "email": "sebastian@phpunit.de"
  11739. }
  11740. ],
  11741. "description": "Looks up which function or method a line of code belongs to",
  11742. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11743. "time": "2017-03-04T06:30:41+00:00"
  11744. },
  11745. {
  11746. "name": "sebastian/comparator",
  11747. "version": "2.1.3",
  11748. "source": {
  11749. "type": "git",
  11750. "url": "https://github.com/sebastianbergmann/comparator.git",
  11751. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  11752. },
  11753. "dist": {
  11754. "type": "zip",
  11755. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  11756. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  11757. "shasum": ""
  11758. },
  11759. "require": {
  11760. "php": "^7.0",
  11761. "sebastian/diff": "^2.0 || ^3.0",
  11762. "sebastian/exporter": "^3.1"
  11763. },
  11764. "require-dev": {
  11765. "phpunit/phpunit": "^6.4"
  11766. },
  11767. "type": "library",
  11768. "extra": {
  11769. "branch-alias": {
  11770. "dev-master": "2.1.x-dev"
  11771. }
  11772. },
  11773. "autoload": {
  11774. "classmap": [
  11775. "src/"
  11776. ]
  11777. },
  11778. "notification-url": "https://packagist.org/downloads/",
  11779. "license": [
  11780. "BSD-3-Clause"
  11781. ],
  11782. "authors": [
  11783. {
  11784. "name": "Jeff Welch",
  11785. "email": "whatthejeff@gmail.com"
  11786. },
  11787. {
  11788. "name": "Volker Dusch",
  11789. "email": "github@wallbash.com"
  11790. },
  11791. {
  11792. "name": "Bernhard Schussek",
  11793. "email": "bschussek@2bepublished.at"
  11794. },
  11795. {
  11796. "name": "Sebastian Bergmann",
  11797. "email": "sebastian@phpunit.de"
  11798. }
  11799. ],
  11800. "description": "Provides the functionality to compare PHP values for equality",
  11801. "homepage": "https://github.com/sebastianbergmann/comparator",
  11802. "keywords": [
  11803. "comparator",
  11804. "compare",
  11805. "equality"
  11806. ],
  11807. "time": "2018-02-01T13:46:46+00:00"
  11808. },
  11809. {
  11810. "name": "sebastian/diff",
  11811. "version": "2.0.1",
  11812. "source": {
  11813. "type": "git",
  11814. "url": "https://github.com/sebastianbergmann/diff.git",
  11815. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  11816. },
  11817. "dist": {
  11818. "type": "zip",
  11819. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  11820. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  11821. "shasum": ""
  11822. },
  11823. "require": {
  11824. "php": "^7.0"
  11825. },
  11826. "require-dev": {
  11827. "phpunit/phpunit": "^6.2"
  11828. },
  11829. "type": "library",
  11830. "extra": {
  11831. "branch-alias": {
  11832. "dev-master": "2.0-dev"
  11833. }
  11834. },
  11835. "autoload": {
  11836. "classmap": [
  11837. "src/"
  11838. ]
  11839. },
  11840. "notification-url": "https://packagist.org/downloads/",
  11841. "license": [
  11842. "BSD-3-Clause"
  11843. ],
  11844. "authors": [
  11845. {
  11846. "name": "Kore Nordmann",
  11847. "email": "mail@kore-nordmann.de"
  11848. },
  11849. {
  11850. "name": "Sebastian Bergmann",
  11851. "email": "sebastian@phpunit.de"
  11852. }
  11853. ],
  11854. "description": "Diff implementation",
  11855. "homepage": "https://github.com/sebastianbergmann/diff",
  11856. "keywords": [
  11857. "diff"
  11858. ],
  11859. "time": "2017-08-03T08:09:46+00:00"
  11860. },
  11861. {
  11862. "name": "sebastian/environment",
  11863. "version": "3.1.0",
  11864. "source": {
  11865. "type": "git",
  11866. "url": "https://github.com/sebastianbergmann/environment.git",
  11867. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  11868. },
  11869. "dist": {
  11870. "type": "zip",
  11871. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  11872. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  11873. "shasum": ""
  11874. },
  11875. "require": {
  11876. "php": "^7.0"
  11877. },
  11878. "require-dev": {
  11879. "phpunit/phpunit": "^6.1"
  11880. },
  11881. "type": "library",
  11882. "extra": {
  11883. "branch-alias": {
  11884. "dev-master": "3.1.x-dev"
  11885. }
  11886. },
  11887. "autoload": {
  11888. "classmap": [
  11889. "src/"
  11890. ]
  11891. },
  11892. "notification-url": "https://packagist.org/downloads/",
  11893. "license": [
  11894. "BSD-3-Clause"
  11895. ],
  11896. "authors": [
  11897. {
  11898. "name": "Sebastian Bergmann",
  11899. "email": "sebastian@phpunit.de"
  11900. }
  11901. ],
  11902. "description": "Provides functionality to handle HHVM/PHP environments",
  11903. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11904. "keywords": [
  11905. "Xdebug",
  11906. "environment",
  11907. "hhvm"
  11908. ],
  11909. "time": "2017-07-01T08:51:00+00:00"
  11910. },
  11911. {
  11912. "name": "sebastian/exporter",
  11913. "version": "3.1.0",
  11914. "source": {
  11915. "type": "git",
  11916. "url": "https://github.com/sebastianbergmann/exporter.git",
  11917. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  11918. },
  11919. "dist": {
  11920. "type": "zip",
  11921. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  11922. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  11923. "shasum": ""
  11924. },
  11925. "require": {
  11926. "php": "^7.0",
  11927. "sebastian/recursion-context": "^3.0"
  11928. },
  11929. "require-dev": {
  11930. "ext-mbstring": "*",
  11931. "phpunit/phpunit": "^6.0"
  11932. },
  11933. "type": "library",
  11934. "extra": {
  11935. "branch-alias": {
  11936. "dev-master": "3.1.x-dev"
  11937. }
  11938. },
  11939. "autoload": {
  11940. "classmap": [
  11941. "src/"
  11942. ]
  11943. },
  11944. "notification-url": "https://packagist.org/downloads/",
  11945. "license": [
  11946. "BSD-3-Clause"
  11947. ],
  11948. "authors": [
  11949. {
  11950. "name": "Jeff Welch",
  11951. "email": "whatthejeff@gmail.com"
  11952. },
  11953. {
  11954. "name": "Volker Dusch",
  11955. "email": "github@wallbash.com"
  11956. },
  11957. {
  11958. "name": "Bernhard Schussek",
  11959. "email": "bschussek@2bepublished.at"
  11960. },
  11961. {
  11962. "name": "Sebastian Bergmann",
  11963. "email": "sebastian@phpunit.de"
  11964. },
  11965. {
  11966. "name": "Adam Harvey",
  11967. "email": "aharvey@php.net"
  11968. }
  11969. ],
  11970. "description": "Provides the functionality to export PHP variables for visualization",
  11971. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  11972. "keywords": [
  11973. "export",
  11974. "exporter"
  11975. ],
  11976. "time": "2017-04-03T13:19:02+00:00"
  11977. },
  11978. {
  11979. "name": "sebastian/global-state",
  11980. "version": "2.0.0",
  11981. "source": {
  11982. "type": "git",
  11983. "url": "https://github.com/sebastianbergmann/global-state.git",
  11984. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  11985. },
  11986. "dist": {
  11987. "type": "zip",
  11988. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11989. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11990. "shasum": ""
  11991. },
  11992. "require": {
  11993. "php": "^7.0"
  11994. },
  11995. "require-dev": {
  11996. "phpunit/phpunit": "^6.0"
  11997. },
  11998. "suggest": {
  11999. "ext-uopz": "*"
  12000. },
  12001. "type": "library",
  12002. "extra": {
  12003. "branch-alias": {
  12004. "dev-master": "2.0-dev"
  12005. }
  12006. },
  12007. "autoload": {
  12008. "classmap": [
  12009. "src/"
  12010. ]
  12011. },
  12012. "notification-url": "https://packagist.org/downloads/",
  12013. "license": [
  12014. "BSD-3-Clause"
  12015. ],
  12016. "authors": [
  12017. {
  12018. "name": "Sebastian Bergmann",
  12019. "email": "sebastian@phpunit.de"
  12020. }
  12021. ],
  12022. "description": "Snapshotting of global state",
  12023. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12024. "keywords": [
  12025. "global state"
  12026. ],
  12027. "time": "2017-04-27T15:39:26+00:00"
  12028. },
  12029. {
  12030. "name": "sebastian/object-enumerator",
  12031. "version": "3.0.3",
  12032. "source": {
  12033. "type": "git",
  12034. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12035. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  12036. },
  12037. "dist": {
  12038. "type": "zip",
  12039. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  12040. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  12041. "shasum": ""
  12042. },
  12043. "require": {
  12044. "php": "^7.0",
  12045. "sebastian/object-reflector": "^1.1.1",
  12046. "sebastian/recursion-context": "^3.0"
  12047. },
  12048. "require-dev": {
  12049. "phpunit/phpunit": "^6.0"
  12050. },
  12051. "type": "library",
  12052. "extra": {
  12053. "branch-alias": {
  12054. "dev-master": "3.0.x-dev"
  12055. }
  12056. },
  12057. "autoload": {
  12058. "classmap": [
  12059. "src/"
  12060. ]
  12061. },
  12062. "notification-url": "https://packagist.org/downloads/",
  12063. "license": [
  12064. "BSD-3-Clause"
  12065. ],
  12066. "authors": [
  12067. {
  12068. "name": "Sebastian Bergmann",
  12069. "email": "sebastian@phpunit.de"
  12070. }
  12071. ],
  12072. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12073. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12074. "time": "2017-08-03T12:35:26+00:00"
  12075. },
  12076. {
  12077. "name": "sebastian/object-reflector",
  12078. "version": "1.1.1",
  12079. "source": {
  12080. "type": "git",
  12081. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12082. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  12083. },
  12084. "dist": {
  12085. "type": "zip",
  12086. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  12087. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  12088. "shasum": ""
  12089. },
  12090. "require": {
  12091. "php": "^7.0"
  12092. },
  12093. "require-dev": {
  12094. "phpunit/phpunit": "^6.0"
  12095. },
  12096. "type": "library",
  12097. "extra": {
  12098. "branch-alias": {
  12099. "dev-master": "1.1-dev"
  12100. }
  12101. },
  12102. "autoload": {
  12103. "classmap": [
  12104. "src/"
  12105. ]
  12106. },
  12107. "notification-url": "https://packagist.org/downloads/",
  12108. "license": [
  12109. "BSD-3-Clause"
  12110. ],
  12111. "authors": [
  12112. {
  12113. "name": "Sebastian Bergmann",
  12114. "email": "sebastian@phpunit.de"
  12115. }
  12116. ],
  12117. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12118. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12119. "time": "2017-03-29T09:07:27+00:00"
  12120. },
  12121. {
  12122. "name": "sebastian/recursion-context",
  12123. "version": "3.0.0",
  12124. "source": {
  12125. "type": "git",
  12126. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12127. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  12128. },
  12129. "dist": {
  12130. "type": "zip",
  12131. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12132. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12133. "shasum": ""
  12134. },
  12135. "require": {
  12136. "php": "^7.0"
  12137. },
  12138. "require-dev": {
  12139. "phpunit/phpunit": "^6.0"
  12140. },
  12141. "type": "library",
  12142. "extra": {
  12143. "branch-alias": {
  12144. "dev-master": "3.0.x-dev"
  12145. }
  12146. },
  12147. "autoload": {
  12148. "classmap": [
  12149. "src/"
  12150. ]
  12151. },
  12152. "notification-url": "https://packagist.org/downloads/",
  12153. "license": [
  12154. "BSD-3-Clause"
  12155. ],
  12156. "authors": [
  12157. {
  12158. "name": "Jeff Welch",
  12159. "email": "whatthejeff@gmail.com"
  12160. },
  12161. {
  12162. "name": "Sebastian Bergmann",
  12163. "email": "sebastian@phpunit.de"
  12164. },
  12165. {
  12166. "name": "Adam Harvey",
  12167. "email": "aharvey@php.net"
  12168. }
  12169. ],
  12170. "description": "Provides functionality to recursively process PHP variables",
  12171. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12172. "time": "2017-03-03T06:23:57+00:00"
  12173. },
  12174. {
  12175. "name": "sebastian/resource-operations",
  12176. "version": "1.0.0",
  12177. "source": {
  12178. "type": "git",
  12179. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12180. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  12181. },
  12182. "dist": {
  12183. "type": "zip",
  12184. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12185. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12186. "shasum": ""
  12187. },
  12188. "require": {
  12189. "php": ">=5.6.0"
  12190. },
  12191. "type": "library",
  12192. "extra": {
  12193. "branch-alias": {
  12194. "dev-master": "1.0.x-dev"
  12195. }
  12196. },
  12197. "autoload": {
  12198. "classmap": [
  12199. "src/"
  12200. ]
  12201. },
  12202. "notification-url": "https://packagist.org/downloads/",
  12203. "license": [
  12204. "BSD-3-Clause"
  12205. ],
  12206. "authors": [
  12207. {
  12208. "name": "Sebastian Bergmann",
  12209. "email": "sebastian@phpunit.de"
  12210. }
  12211. ],
  12212. "description": "Provides a list of PHP built-in functions that operate on resources",
  12213. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12214. "time": "2015-07-28T20:34:47+00:00"
  12215. },
  12216. {
  12217. "name": "sebastian/version",
  12218. "version": "2.0.1",
  12219. "source": {
  12220. "type": "git",
  12221. "url": "https://github.com/sebastianbergmann/version.git",
  12222. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  12223. },
  12224. "dist": {
  12225. "type": "zip",
  12226. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  12227. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  12228. "shasum": ""
  12229. },
  12230. "require": {
  12231. "php": ">=5.6"
  12232. },
  12233. "type": "library",
  12234. "extra": {
  12235. "branch-alias": {
  12236. "dev-master": "2.0.x-dev"
  12237. }
  12238. },
  12239. "autoload": {
  12240. "classmap": [
  12241. "src/"
  12242. ]
  12243. },
  12244. "notification-url": "https://packagist.org/downloads/",
  12245. "license": [
  12246. "BSD-3-Clause"
  12247. ],
  12248. "authors": [
  12249. {
  12250. "name": "Sebastian Bergmann",
  12251. "email": "sebastian@phpunit.de",
  12252. "role": "lead"
  12253. }
  12254. ],
  12255. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12256. "homepage": "https://github.com/sebastianbergmann/version",
  12257. "time": "2016-10-03T07:35:21+00:00"
  12258. },
  12259. {
  12260. "name": "squizlabs/php_codesniffer",
  12261. "version": "3.4.0",
  12262. "source": {
  12263. "type": "git",
  12264. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  12265. "reference": "379deb987e26c7cd103a7b387aea178baec96e48"
  12266. },
  12267. "dist": {
  12268. "type": "zip",
  12269. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/379deb987e26c7cd103a7b387aea178baec96e48",
  12270. "reference": "379deb987e26c7cd103a7b387aea178baec96e48",
  12271. "shasum": ""
  12272. },
  12273. "require": {
  12274. "ext-simplexml": "*",
  12275. "ext-tokenizer": "*",
  12276. "ext-xmlwriter": "*",
  12277. "php": ">=5.4.0"
  12278. },
  12279. "require-dev": {
  12280. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  12281. },
  12282. "bin": [
  12283. "bin/phpcs",
  12284. "bin/phpcbf"
  12285. ],
  12286. "type": "library",
  12287. "extra": {
  12288. "branch-alias": {
  12289. "dev-master": "3.x-dev"
  12290. }
  12291. },
  12292. "notification-url": "https://packagist.org/downloads/",
  12293. "license": [
  12294. "BSD-3-Clause"
  12295. ],
  12296. "authors": [
  12297. {
  12298. "name": "Greg Sherwood",
  12299. "role": "lead"
  12300. }
  12301. ],
  12302. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  12303. "homepage": "http://www.squizlabs.com/php-codesniffer",
  12304. "keywords": [
  12305. "phpcs",
  12306. "standards"
  12307. ],
  12308. "time": "2018-12-19T23:57:18+00:00"
  12309. },
  12310. {
  12311. "name": "symfony/browser-kit",
  12312. "version": "v3.4.21",
  12313. "source": {
  12314. "type": "git",
  12315. "url": "https://github.com/symfony/browser-kit.git",
  12316. "reference": "6d98fb221a263c66b1311203fe4eed154035f508"
  12317. },
  12318. "dist": {
  12319. "type": "zip",
  12320. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/6d98fb221a263c66b1311203fe4eed154035f508",
  12321. "reference": "6d98fb221a263c66b1311203fe4eed154035f508",
  12322. "shasum": ""
  12323. },
  12324. "require": {
  12325. "php": "^5.5.9|>=7.0.8",
  12326. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  12327. },
  12328. "require-dev": {
  12329. "symfony/css-selector": "~2.8|~3.0|~4.0",
  12330. "symfony/process": "~2.8|~3.0|~4.0"
  12331. },
  12332. "suggest": {
  12333. "symfony/process": ""
  12334. },
  12335. "type": "library",
  12336. "extra": {
  12337. "branch-alias": {
  12338. "dev-master": "3.4-dev"
  12339. }
  12340. },
  12341. "autoload": {
  12342. "psr-4": {
  12343. "Symfony\\Component\\BrowserKit\\": ""
  12344. },
  12345. "exclude-from-classmap": [
  12346. "/Tests/"
  12347. ]
  12348. },
  12349. "notification-url": "https://packagist.org/downloads/",
  12350. "license": [
  12351. "MIT"
  12352. ],
  12353. "authors": [
  12354. {
  12355. "name": "Fabien Potencier",
  12356. "email": "fabien@symfony.com"
  12357. },
  12358. {
  12359. "name": "Symfony Community",
  12360. "homepage": "https://symfony.com/contributors"
  12361. }
  12362. ],
  12363. "description": "Symfony BrowserKit Component",
  12364. "homepage": "https://symfony.com",
  12365. "time": "2019-01-01T13:45:19+00:00"
  12366. },
  12367. {
  12368. "name": "symfony/phpunit-bridge",
  12369. "version": "v3.4.21",
  12370. "source": {
  12371. "type": "git",
  12372. "url": "https://github.com/symfony/phpunit-bridge.git",
  12373. "reference": "5dab0d4b2ac99ab22b447b615fdfdc10ec4af3d5"
  12374. },
  12375. "dist": {
  12376. "type": "zip",
  12377. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/5dab0d4b2ac99ab22b447b615fdfdc10ec4af3d5",
  12378. "reference": "5dab0d4b2ac99ab22b447b615fdfdc10ec4af3d5",
  12379. "shasum": ""
  12380. },
  12381. "require": {
  12382. "php": ">=5.3.3"
  12383. },
  12384. "conflict": {
  12385. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  12386. },
  12387. "suggest": {
  12388. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  12389. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  12390. },
  12391. "bin": [
  12392. "bin/simple-phpunit"
  12393. ],
  12394. "type": "symfony-bridge",
  12395. "extra": {
  12396. "branch-alias": {
  12397. "dev-master": "3.4-dev"
  12398. },
  12399. "thanks": {
  12400. "name": "phpunit/phpunit",
  12401. "url": "https://github.com/sebastianbergmann/phpunit"
  12402. }
  12403. },
  12404. "autoload": {
  12405. "files": [
  12406. "bootstrap.php"
  12407. ],
  12408. "psr-4": {
  12409. "Symfony\\Bridge\\PhpUnit\\": ""
  12410. },
  12411. "exclude-from-classmap": [
  12412. "/Tests/"
  12413. ]
  12414. },
  12415. "notification-url": "https://packagist.org/downloads/",
  12416. "license": [
  12417. "MIT"
  12418. ],
  12419. "authors": [
  12420. {
  12421. "name": "Nicolas Grekas",
  12422. "email": "p@tchwork.com"
  12423. },
  12424. {
  12425. "name": "Symfony Community",
  12426. "homepage": "https://symfony.com/contributors"
  12427. }
  12428. ],
  12429. "description": "Symfony PHPUnit Bridge",
  12430. "homepage": "https://symfony.com",
  12431. "time": "2019-01-01T13:45:19+00:00"
  12432. },
  12433. {
  12434. "name": "theseer/tokenizer",
  12435. "version": "1.1.0",
  12436. "source": {
  12437. "type": "git",
  12438. "url": "https://github.com/theseer/tokenizer.git",
  12439. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  12440. },
  12441. "dist": {
  12442. "type": "zip",
  12443. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  12444. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  12445. "shasum": ""
  12446. },
  12447. "require": {
  12448. "ext-dom": "*",
  12449. "ext-tokenizer": "*",
  12450. "ext-xmlwriter": "*",
  12451. "php": "^7.0"
  12452. },
  12453. "type": "library",
  12454. "autoload": {
  12455. "classmap": [
  12456. "src/"
  12457. ]
  12458. },
  12459. "notification-url": "https://packagist.org/downloads/",
  12460. "license": [
  12461. "BSD-3-Clause"
  12462. ],
  12463. "authors": [
  12464. {
  12465. "name": "Arne Blankerts",
  12466. "email": "arne@blankerts.de",
  12467. "role": "Developer"
  12468. }
  12469. ],
  12470. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12471. "time": "2017-04-07T12:08:54+00:00"
  12472. }
  12473. ],
  12474. "aliases": [],
  12475. "minimum-stability": "dev",
  12476. "stability-flags": {
  12477. "drupal/migrate_tools": 20,
  12478. "drupal/examples": 20,
  12479. "drupal/synonyms": 20,
  12480. "drupal/telephone_formatter": 10,
  12481. "drupal/computed_field": 15,
  12482. "drupal/cshs": 20,
  12483. "drupal/views_ef_fieldset": 20,
  12484. "drupal/advanced_text_formatter": 10,
  12485. "drupal/autocomplete_deluxe": 10,
  12486. "drupal/better_exposed_filters": 15,
  12487. "drupal/better_messages": 15,
  12488. "drupal/bulkdelete": 20,
  12489. "drupal/content_lock": 15,
  12490. "drupal/context": 10,
  12491. "drupal/domain": 20,
  12492. "drupal/domain_alias": 20,
  12493. "drupal/domain_config": 20,
  12494. "drupal/email_registration": 5,
  12495. "drupal/entity_browser_enhanced": 5,
  12496. "drupal/entity_clone": 15,
  12497. "drupal/filefield_sources": 20,
  12498. "drupal/filter_perms": 20,
  12499. "drupal/inline_entity_form": 5,
  12500. "drupal/login_destination": 20,
  12501. "drupal/maillog": 20,
  12502. "drupal/maxlength": 10,
  12503. "drupal/menu_position": 20,
  12504. "drupal/path_alias_xt": 20,
  12505. "drupal/pathologic": 15,
  12506. "drupal/profile": 5,
  12507. "drupal/smtp": 10,
  12508. "drupal/translation_views": 15,
  12509. "drupal/toolbar_themes": 15,
  12510. "drupal/ultimate_cron": 15,
  12511. "drupal/workflow": 20,
  12512. "behat/mink": 20,
  12513. "behat/mink-selenium2-driver": 20
  12514. },
  12515. "prefer-stable": true,
  12516. "prefer-lowest": false,
  12517. "platform": {
  12518. "ext-date": "*",
  12519. "ext-dom": "*",
  12520. "ext-filter": "*",
  12521. "ext-gd": "*",
  12522. "ext-hash": "*",
  12523. "ext-json": "*",
  12524. "ext-pcre": "*",
  12525. "ext-pdo": "*",
  12526. "ext-session": "*",
  12527. "ext-simplexml": "*",
  12528. "ext-spl": "*",
  12529. "ext-tokenizer": "*",
  12530. "ext-xml": "*",
  12531. "php": "^5.5.9|>=7.0.8"
  12532. },
  12533. "platform-dev": []
  12534. }