composer.lock 420 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820
  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": "1355404c7cbf159069c516929cc0025c",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/5ffdc93de0af2770d396bf433d8b2667c77277ea",
  20. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "ext-mbstring": "*",
  26. "php": ">=5.5",
  27. "symfony/filesystem": "^2.0.5|^3.0",
  28. "symfony/process": "^2.1|^3.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0|^5.0",
  35. "symfony/finder": "^2.0.5|^3.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2016-11-03T16:10:31+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.2.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  84. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2017-12-20T14:37:45+00:00"
  124. },
  125. {
  126. "name": "chi-teck/drupal-code-generator",
  127. "version": "1.27.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "a839bc89d385087d8a7a96a9c1c4bd470ffb627e"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/a839bc89d385087d8a7a96a9c1c4bd470ffb627e",
  136. "reference": "a839bc89d385087d8a7a96a9c1c4bd470ffb627e",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "ext-json": "*",
  141. "php": ">=5.5.9",
  142. "symfony/console": "~2.7|^3",
  143. "symfony/filesystem": "~2.7|^3",
  144. "twig/twig": "^1.23.1"
  145. },
  146. "bin": [
  147. "bin/dcg"
  148. ],
  149. "type": "library",
  150. "extra": {
  151. "branch-alias": {
  152. "dev-master": "1.x-dev"
  153. }
  154. },
  155. "autoload": {
  156. "files": [
  157. "src/bootstrap.php"
  158. ],
  159. "psr-4": {
  160. "DrupalCodeGenerator\\": "src"
  161. }
  162. },
  163. "notification-url": "https://packagist.org/downloads/",
  164. "license": [
  165. "GPL-2.0-or-later"
  166. ],
  167. "description": "Drupal code generator",
  168. "time": "2018-10-11T08:05:59+00:00"
  169. },
  170. {
  171. "name": "composer/installers",
  172. "version": "v1.6.0",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/composer/installers.git",
  176. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  181. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  182. "shasum": ""
  183. },
  184. "require": {
  185. "composer-plugin-api": "^1.0"
  186. },
  187. "replace": {
  188. "roundcube/plugin-installer": "*",
  189. "shama/baton": "*"
  190. },
  191. "require-dev": {
  192. "composer/composer": "1.0.*@dev",
  193. "phpunit/phpunit": "^4.8.36"
  194. },
  195. "type": "composer-plugin",
  196. "extra": {
  197. "class": "Composer\\Installers\\Plugin",
  198. "branch-alias": {
  199. "dev-master": "1.0-dev"
  200. }
  201. },
  202. "autoload": {
  203. "psr-4": {
  204. "Composer\\Installers\\": "src/Composer/Installers"
  205. }
  206. },
  207. "notification-url": "https://packagist.org/downloads/",
  208. "license": [
  209. "MIT"
  210. ],
  211. "authors": [
  212. {
  213. "name": "Kyle Robinson Young",
  214. "email": "kyle@dontkry.com",
  215. "homepage": "https://github.com/shama"
  216. }
  217. ],
  218. "description": "A multi-framework Composer library installer",
  219. "homepage": "https://composer.github.io/installers/",
  220. "keywords": [
  221. "Craft",
  222. "Dolibarr",
  223. "Eliasis",
  224. "Hurad",
  225. "ImageCMS",
  226. "Kanboard",
  227. "Lan Management System",
  228. "MODX Evo",
  229. "Mautic",
  230. "Maya",
  231. "OXID",
  232. "Plentymarkets",
  233. "Porto",
  234. "RadPHP",
  235. "SMF",
  236. "Thelia",
  237. "WolfCMS",
  238. "agl",
  239. "aimeos",
  240. "annotatecms",
  241. "attogram",
  242. "bitrix",
  243. "cakephp",
  244. "chef",
  245. "cockpit",
  246. "codeigniter",
  247. "concrete5",
  248. "croogo",
  249. "dokuwiki",
  250. "drupal",
  251. "eZ Platform",
  252. "elgg",
  253. "expressionengine",
  254. "fuelphp",
  255. "grav",
  256. "installer",
  257. "itop",
  258. "joomla",
  259. "kohana",
  260. "laravel",
  261. "lavalite",
  262. "lithium",
  263. "magento",
  264. "majima",
  265. "mako",
  266. "mediawiki",
  267. "modulework",
  268. "modx",
  269. "moodle",
  270. "osclass",
  271. "phpbb",
  272. "piwik",
  273. "ppi",
  274. "puppet",
  275. "pxcms",
  276. "reindex",
  277. "roundcube",
  278. "shopware",
  279. "silverstripe",
  280. "sydes",
  281. "symfony",
  282. "typo3",
  283. "wordpress",
  284. "yawik",
  285. "zend",
  286. "zikula"
  287. ],
  288. "time": "2018-08-27T06:10:37+00:00"
  289. },
  290. {
  291. "name": "composer/semver",
  292. "version": "1.4.2",
  293. "source": {
  294. "type": "git",
  295. "url": "https://github.com/composer/semver.git",
  296. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  297. },
  298. "dist": {
  299. "type": "zip",
  300. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  301. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  302. "shasum": ""
  303. },
  304. "require": {
  305. "php": "^5.3.2 || ^7.0"
  306. },
  307. "require-dev": {
  308. "phpunit/phpunit": "^4.5 || ^5.0.5",
  309. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  310. },
  311. "type": "library",
  312. "extra": {
  313. "branch-alias": {
  314. "dev-master": "1.x-dev"
  315. }
  316. },
  317. "autoload": {
  318. "psr-4": {
  319. "Composer\\Semver\\": "src"
  320. }
  321. },
  322. "notification-url": "https://packagist.org/downloads/",
  323. "license": [
  324. "MIT"
  325. ],
  326. "authors": [
  327. {
  328. "name": "Nils Adermann",
  329. "email": "naderman@naderman.de",
  330. "homepage": "http://www.naderman.de"
  331. },
  332. {
  333. "name": "Jordi Boggiano",
  334. "email": "j.boggiano@seld.be",
  335. "homepage": "http://seld.be"
  336. },
  337. {
  338. "name": "Rob Bast",
  339. "email": "rob.bast@gmail.com",
  340. "homepage": "http://robbast.nl"
  341. }
  342. ],
  343. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  344. "keywords": [
  345. "semantic",
  346. "semver",
  347. "validation",
  348. "versioning"
  349. ],
  350. "time": "2016-08-30T16:08:34+00:00"
  351. },
  352. {
  353. "name": "consolidation/annotated-command",
  354. "version": "2.9.1",
  355. "source": {
  356. "type": "git",
  357. "url": "https://github.com/consolidation/annotated-command.git",
  358. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac"
  359. },
  360. "dist": {
  361. "type": "zip",
  362. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  363. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  364. "shasum": ""
  365. },
  366. "require": {
  367. "consolidation/output-formatters": "^3.1.12",
  368. "php": ">=5.4.0",
  369. "psr/log": "^1",
  370. "symfony/console": "^2.8|^3|^4",
  371. "symfony/event-dispatcher": "^2.5|^3|^4",
  372. "symfony/finder": "^2.5|^3|^4"
  373. },
  374. "require-dev": {
  375. "g1a/composer-test-scenarios": "^2",
  376. "phpunit/phpunit": "^6",
  377. "satooshi/php-coveralls": "^2",
  378. "squizlabs/php_codesniffer": "^2.7"
  379. },
  380. "type": "library",
  381. "extra": {
  382. "branch-alias": {
  383. "dev-master": "2.x-dev"
  384. }
  385. },
  386. "autoload": {
  387. "psr-4": {
  388. "Consolidation\\AnnotatedCommand\\": "src"
  389. }
  390. },
  391. "notification-url": "https://packagist.org/downloads/",
  392. "license": [
  393. "MIT"
  394. ],
  395. "authors": [
  396. {
  397. "name": "Greg Anderson",
  398. "email": "greg.1.anderson@greenknowe.org"
  399. }
  400. ],
  401. "description": "Initialize Symfony Console commands from annotated command class methods.",
  402. "time": "2018-09-19T17:47:18+00:00"
  403. },
  404. {
  405. "name": "consolidation/config",
  406. "version": "1.1.1",
  407. "source": {
  408. "type": "git",
  409. "url": "https://github.com/consolidation/config.git",
  410. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c"
  411. },
  412. "dist": {
  413. "type": "zip",
  414. "url": "https://api.github.com/repos/consolidation/config/zipball/925231dfff32f05b787e1fddb265e789b939cf4c",
  415. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c",
  416. "shasum": ""
  417. },
  418. "require": {
  419. "dflydev/dot-access-data": "^1.1.0",
  420. "grasmash/expander": "^1",
  421. "php": ">=5.4.0"
  422. },
  423. "require-dev": {
  424. "g1a/composer-test-scenarios": "^1",
  425. "phpunit/phpunit": "^5",
  426. "satooshi/php-coveralls": "^1.0",
  427. "squizlabs/php_codesniffer": "2.*",
  428. "symfony/console": "^2.5|^3|^4",
  429. "symfony/yaml": "^2.8.11|^3|^4"
  430. },
  431. "suggest": {
  432. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  433. },
  434. "type": "library",
  435. "extra": {
  436. "branch-alias": {
  437. "dev-master": "1.x-dev"
  438. }
  439. },
  440. "autoload": {
  441. "psr-4": {
  442. "Consolidation\\Config\\": "src"
  443. }
  444. },
  445. "notification-url": "https://packagist.org/downloads/",
  446. "license": [
  447. "MIT"
  448. ],
  449. "authors": [
  450. {
  451. "name": "Greg Anderson",
  452. "email": "greg.1.anderson@greenknowe.org"
  453. }
  454. ],
  455. "description": "Provide configuration services for a commandline tool.",
  456. "time": "2018-10-24T17:55:35+00:00"
  457. },
  458. {
  459. "name": "consolidation/log",
  460. "version": "1.0.6",
  461. "source": {
  462. "type": "git",
  463. "url": "https://github.com/consolidation/log.git",
  464. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395"
  465. },
  466. "dist": {
  467. "type": "zip",
  468. "url": "https://api.github.com/repos/consolidation/log/zipball/dfd8189a771fe047bf3cd669111b2de5f1c79395",
  469. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395",
  470. "shasum": ""
  471. },
  472. "require": {
  473. "php": ">=5.5.0",
  474. "psr/log": "~1.0",
  475. "symfony/console": "^2.8|^3|^4"
  476. },
  477. "require-dev": {
  478. "g1a/composer-test-scenarios": "^1",
  479. "phpunit/phpunit": "4.*",
  480. "satooshi/php-coveralls": "^2",
  481. "squizlabs/php_codesniffer": "2.*"
  482. },
  483. "type": "library",
  484. "extra": {
  485. "branch-alias": {
  486. "dev-master": "1.x-dev"
  487. }
  488. },
  489. "autoload": {
  490. "psr-4": {
  491. "Consolidation\\Log\\": "src"
  492. }
  493. },
  494. "notification-url": "https://packagist.org/downloads/",
  495. "license": [
  496. "MIT"
  497. ],
  498. "authors": [
  499. {
  500. "name": "Greg Anderson",
  501. "email": "greg.1.anderson@greenknowe.org"
  502. }
  503. ],
  504. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  505. "time": "2018-05-25T18:14:39+00:00"
  506. },
  507. {
  508. "name": "consolidation/output-formatters",
  509. "version": "3.4.0",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/consolidation/output-formatters.git",
  513. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a942680232094c4a5b21c0b7e54c20cce623ae19",
  518. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19",
  519. "shasum": ""
  520. },
  521. "require": {
  522. "dflydev/dot-access-data": "^1.1.0",
  523. "php": ">=5.4.0",
  524. "symfony/console": "^2.8|^3|^4",
  525. "symfony/finder": "^2.5|^3|^4"
  526. },
  527. "require-dev": {
  528. "g1a/composer-test-scenarios": "^2",
  529. "phpunit/phpunit": "^5.7.27",
  530. "satooshi/php-coveralls": "^2",
  531. "squizlabs/php_codesniffer": "^2.7",
  532. "symfony/console": "3.2.3",
  533. "symfony/var-dumper": "^2.8|^3|^4",
  534. "victorjonsson/markdowndocs": "^1.3"
  535. },
  536. "suggest": {
  537. "symfony/var-dumper": "For using the var_dump formatter"
  538. },
  539. "type": "library",
  540. "extra": {
  541. "branch-alias": {
  542. "dev-master": "3.x-dev"
  543. }
  544. },
  545. "autoload": {
  546. "psr-4": {
  547. "Consolidation\\OutputFormatters\\": "src"
  548. }
  549. },
  550. "notification-url": "https://packagist.org/downloads/",
  551. "license": [
  552. "MIT"
  553. ],
  554. "authors": [
  555. {
  556. "name": "Greg Anderson",
  557. "email": "greg.1.anderson@greenknowe.org"
  558. }
  559. ],
  560. "description": "Format text by applying transformations provided by plug-in formatters.",
  561. "time": "2018-10-19T22:35:38+00:00"
  562. },
  563. {
  564. "name": "consolidation/robo",
  565. "version": "1.3.1",
  566. "source": {
  567. "type": "git",
  568. "url": "https://github.com/consolidation/Robo.git",
  569. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d"
  570. },
  571. "dist": {
  572. "type": "zip",
  573. "url": "https://api.github.com/repos/consolidation/Robo/zipball/31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  574. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  575. "shasum": ""
  576. },
  577. "require": {
  578. "consolidation/annotated-command": "^2.8.2",
  579. "consolidation/config": "^1.0.10",
  580. "consolidation/log": "~1",
  581. "consolidation/output-formatters": "^3.1.13",
  582. "consolidation/self-update": "^1",
  583. "g1a/composer-test-scenarios": "^2",
  584. "grasmash/yaml-expander": "^1.3",
  585. "league/container": "^2.2",
  586. "php": ">=5.5.0",
  587. "symfony/console": "^2.8|^3|^4",
  588. "symfony/event-dispatcher": "^2.5|^3|^4",
  589. "symfony/filesystem": "^2.5|^3|^4",
  590. "symfony/finder": "^2.5|^3|^4",
  591. "symfony/process": "^2.5|^3|^4"
  592. },
  593. "replace": {
  594. "codegyre/robo": "< 1.0"
  595. },
  596. "require-dev": {
  597. "codeception/aspect-mock": "^1|^2.1.1",
  598. "codeception/base": "^2.3.7",
  599. "codeception/verify": "^0.3.2",
  600. "goaop/framework": "~2.1.2",
  601. "goaop/parser-reflection": "^1.1.0",
  602. "natxet/cssmin": "3.0.4",
  603. "nikic/php-parser": "^3.1.5",
  604. "patchwork/jsqueeze": "~2",
  605. "pear/archive_tar": "^1.4.2",
  606. "phpunit/php-code-coverage": "~2|~4",
  607. "satooshi/php-coveralls": "^2",
  608. "squizlabs/php_codesniffer": "^2.8"
  609. },
  610. "suggest": {
  611. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  612. "natxet/CssMin": "For minifying CSS files in taskMinify",
  613. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  614. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  615. },
  616. "bin": [
  617. "robo"
  618. ],
  619. "type": "library",
  620. "extra": {
  621. "branch-alias": {
  622. "dev-master": "1.x-dev",
  623. "dev-state": "1.x-dev"
  624. }
  625. },
  626. "autoload": {
  627. "psr-4": {
  628. "Robo\\": "src"
  629. }
  630. },
  631. "notification-url": "https://packagist.org/downloads/",
  632. "license": [
  633. "MIT"
  634. ],
  635. "authors": [
  636. {
  637. "name": "Davert",
  638. "email": "davert.php@resend.cc"
  639. }
  640. ],
  641. "description": "Modern task runner",
  642. "time": "2018-08-17T18:44:18+00:00"
  643. },
  644. {
  645. "name": "consolidation/self-update",
  646. "version": "1.1.5",
  647. "source": {
  648. "type": "git",
  649. "url": "https://github.com/consolidation/self-update.git",
  650. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  651. },
  652. "dist": {
  653. "type": "zip",
  654. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  655. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  656. "shasum": ""
  657. },
  658. "require": {
  659. "php": ">=5.5.0",
  660. "symfony/console": "^2.8|^3|^4",
  661. "symfony/filesystem": "^2.5|^3|^4"
  662. },
  663. "bin": [
  664. "scripts/release"
  665. ],
  666. "type": "library",
  667. "extra": {
  668. "branch-alias": {
  669. "dev-master": "1.x-dev"
  670. }
  671. },
  672. "autoload": {
  673. "psr-4": {
  674. "SelfUpdate\\": "src"
  675. }
  676. },
  677. "notification-url": "https://packagist.org/downloads/",
  678. "license": [
  679. "MIT"
  680. ],
  681. "authors": [
  682. {
  683. "name": "Greg Anderson",
  684. "email": "greg.1.anderson@greenknowe.org"
  685. },
  686. {
  687. "name": "Alexander Menk",
  688. "email": "menk@mestrona.net"
  689. }
  690. ],
  691. "description": "Provides a self:update command for Symfony Console applications.",
  692. "time": "2018-10-28T01:52:03+00:00"
  693. },
  694. {
  695. "name": "consolidation/site-alias",
  696. "version": "1.1.9",
  697. "source": {
  698. "type": "git",
  699. "url": "https://github.com/consolidation/site-alias.git",
  700. "reference": "0a4c49f91e44b0b7bb288f3547875a136a7ed704"
  701. },
  702. "dist": {
  703. "type": "zip",
  704. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/0a4c49f91e44b0b7bb288f3547875a136a7ed704",
  705. "reference": "0a4c49f91e44b0b7bb288f3547875a136a7ed704",
  706. "shasum": ""
  707. },
  708. "require": {
  709. "php": ">=5.5.0"
  710. },
  711. "require-dev": {
  712. "consolidation/robo": "^1.2.3",
  713. "g1a/composer-test-scenarios": "^2",
  714. "knplabs/github-api": "^2.7",
  715. "php-http/guzzle6-adapter": "^1.1",
  716. "phpunit/phpunit": "^5",
  717. "satooshi/php-coveralls": "^2",
  718. "squizlabs/php_codesniffer": "^2.8",
  719. "symfony/console": "^2.8|^3|^4",
  720. "symfony/yaml": "~2.3|^3"
  721. },
  722. "type": "library",
  723. "extra": {
  724. "branch-alias": {
  725. "dev-master": "1.x-dev"
  726. }
  727. },
  728. "autoload": {
  729. "psr-4": {
  730. "Consolidation\\SiteAlias\\": "src"
  731. }
  732. },
  733. "notification-url": "https://packagist.org/downloads/",
  734. "license": [
  735. "MIT"
  736. ],
  737. "authors": [
  738. {
  739. "name": "Moshe Weitzman",
  740. "email": "weitzman@tejasa.com"
  741. },
  742. {
  743. "name": "Greg Anderson",
  744. "email": "greg.1.anderson@greenknowe.org"
  745. }
  746. ],
  747. "description": "Manage alias records for local and remote sites.",
  748. "time": "2018-10-31T01:29:05+00:00"
  749. },
  750. {
  751. "name": "container-interop/container-interop",
  752. "version": "1.2.0",
  753. "source": {
  754. "type": "git",
  755. "url": "https://github.com/container-interop/container-interop.git",
  756. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  757. },
  758. "dist": {
  759. "type": "zip",
  760. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  761. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  762. "shasum": ""
  763. },
  764. "require": {
  765. "psr/container": "^1.0"
  766. },
  767. "type": "library",
  768. "autoload": {
  769. "psr-4": {
  770. "Interop\\Container\\": "src/Interop/Container/"
  771. }
  772. },
  773. "notification-url": "https://packagist.org/downloads/",
  774. "license": [
  775. "MIT"
  776. ],
  777. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  778. "homepage": "https://github.com/container-interop/container-interop",
  779. "time": "2017-02-14T19:40:03+00:00"
  780. },
  781. {
  782. "name": "cweagans/composer-patches",
  783. "version": "1.6.5",
  784. "source": {
  785. "type": "git",
  786. "url": "https://github.com/cweagans/composer-patches.git",
  787. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  788. },
  789. "dist": {
  790. "type": "zip",
  791. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  792. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  793. "shasum": ""
  794. },
  795. "require": {
  796. "composer-plugin-api": "^1.0",
  797. "php": ">=5.3.0"
  798. },
  799. "require-dev": {
  800. "composer/composer": "~1.0",
  801. "phpunit/phpunit": "~4.6"
  802. },
  803. "type": "composer-plugin",
  804. "extra": {
  805. "class": "cweagans\\Composer\\Patches"
  806. },
  807. "autoload": {
  808. "psr-4": {
  809. "cweagans\\Composer\\": "src"
  810. }
  811. },
  812. "notification-url": "https://packagist.org/downloads/",
  813. "license": [
  814. "BSD-3-Clause"
  815. ],
  816. "authors": [
  817. {
  818. "name": "Cameron Eagans",
  819. "email": "me@cweagans.net"
  820. }
  821. ],
  822. "description": "Provides a way to patch Composer packages.",
  823. "time": "2018-05-11T18:00:16+00:00"
  824. },
  825. {
  826. "name": "dflydev/dot-access-configuration",
  827. "version": "v1.0.3",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  831. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  836. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "dflydev/dot-access-data": "1.*",
  841. "dflydev/placeholder-resolver": "1.*",
  842. "php": ">=5.3.2"
  843. },
  844. "require-dev": {
  845. "symfony/yaml": "~2.1"
  846. },
  847. "suggest": {
  848. "symfony/yaml": "Required for using the YAML Configuration Builders"
  849. },
  850. "type": "library",
  851. "extra": {
  852. "branch-alias": {
  853. "dev-master": "1.0-dev"
  854. }
  855. },
  856. "autoload": {
  857. "psr-0": {
  858. "Dflydev\\DotAccessConfiguration": "src"
  859. }
  860. },
  861. "notification-url": "https://packagist.org/downloads/",
  862. "license": [
  863. "MIT"
  864. ],
  865. "authors": [
  866. {
  867. "name": "Dragonfly Development Inc.",
  868. "email": "info@dflydev.com",
  869. "homepage": "http://dflydev.com"
  870. },
  871. {
  872. "name": "Beau Simensen",
  873. "email": "beau@dflydev.com",
  874. "homepage": "http://beausimensen.com"
  875. }
  876. ],
  877. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  878. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  879. "keywords": [
  880. "config",
  881. "configuration"
  882. ],
  883. "time": "2018-09-08T23:00:17+00:00"
  884. },
  885. {
  886. "name": "dflydev/dot-access-data",
  887. "version": "v1.1.0",
  888. "source": {
  889. "type": "git",
  890. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  891. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  892. },
  893. "dist": {
  894. "type": "zip",
  895. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  896. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  897. "shasum": ""
  898. },
  899. "require": {
  900. "php": ">=5.3.2"
  901. },
  902. "type": "library",
  903. "extra": {
  904. "branch-alias": {
  905. "dev-master": "1.0-dev"
  906. }
  907. },
  908. "autoload": {
  909. "psr-0": {
  910. "Dflydev\\DotAccessData": "src"
  911. }
  912. },
  913. "notification-url": "https://packagist.org/downloads/",
  914. "license": [
  915. "MIT"
  916. ],
  917. "authors": [
  918. {
  919. "name": "Dragonfly Development Inc.",
  920. "email": "info@dflydev.com",
  921. "homepage": "http://dflydev.com"
  922. },
  923. {
  924. "name": "Beau Simensen",
  925. "email": "beau@dflydev.com",
  926. "homepage": "http://beausimensen.com"
  927. },
  928. {
  929. "name": "Carlos Frutos",
  930. "email": "carlos@kiwing.it",
  931. "homepage": "https://github.com/cfrutos"
  932. }
  933. ],
  934. "description": "Given a deep data structure, access data by dot notation.",
  935. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  936. "keywords": [
  937. "access",
  938. "data",
  939. "dot",
  940. "notation"
  941. ],
  942. "time": "2017-01-20T21:14:22+00:00"
  943. },
  944. {
  945. "name": "dflydev/placeholder-resolver",
  946. "version": "v1.0.2",
  947. "source": {
  948. "type": "git",
  949. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  950. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  951. },
  952. "dist": {
  953. "type": "zip",
  954. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  955. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  956. "shasum": ""
  957. },
  958. "require": {
  959. "php": ">=5.3.2"
  960. },
  961. "type": "library",
  962. "extra": {
  963. "branch-alias": {
  964. "dev-master": "1.0-dev"
  965. }
  966. },
  967. "autoload": {
  968. "psr-0": {
  969. "Dflydev\\PlaceholderResolver": "src"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "MIT"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Dragonfly Development Inc.",
  979. "email": "info@dflydev.com",
  980. "homepage": "http://dflydev.com"
  981. },
  982. {
  983. "name": "Beau Simensen",
  984. "email": "beau@dflydev.com",
  985. "homepage": "http://beausimensen.com"
  986. }
  987. ],
  988. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  989. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  990. "keywords": [
  991. "placeholder",
  992. "resolver"
  993. ],
  994. "time": "2012-10-28T21:08:28+00:00"
  995. },
  996. {
  997. "name": "dnoegel/php-xdg-base-dir",
  998. "version": "0.1",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1002. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1007. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "php": ">=5.3.2"
  1012. },
  1013. "require-dev": {
  1014. "phpunit/phpunit": "@stable"
  1015. },
  1016. "type": "project",
  1017. "autoload": {
  1018. "psr-4": {
  1019. "XdgBaseDir\\": "src/"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "MIT"
  1025. ],
  1026. "description": "implementation of xdg base directory specification for php",
  1027. "time": "2014-10-24T07:27:01+00:00"
  1028. },
  1029. {
  1030. "name": "doctrine/annotations",
  1031. "version": "v1.2.7",
  1032. "source": {
  1033. "type": "git",
  1034. "url": "https://github.com/doctrine/annotations.git",
  1035. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  1036. },
  1037. "dist": {
  1038. "type": "zip",
  1039. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1040. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1041. "shasum": ""
  1042. },
  1043. "require": {
  1044. "doctrine/lexer": "1.*",
  1045. "php": ">=5.3.2"
  1046. },
  1047. "require-dev": {
  1048. "doctrine/cache": "1.*",
  1049. "phpunit/phpunit": "4.*"
  1050. },
  1051. "type": "library",
  1052. "extra": {
  1053. "branch-alias": {
  1054. "dev-master": "1.3.x-dev"
  1055. }
  1056. },
  1057. "autoload": {
  1058. "psr-0": {
  1059. "Doctrine\\Common\\Annotations\\": "lib/"
  1060. }
  1061. },
  1062. "notification-url": "https://packagist.org/downloads/",
  1063. "license": [
  1064. "MIT"
  1065. ],
  1066. "authors": [
  1067. {
  1068. "name": "Roman Borschel",
  1069. "email": "roman@code-factory.org"
  1070. },
  1071. {
  1072. "name": "Benjamin Eberlei",
  1073. "email": "kontakt@beberlei.de"
  1074. },
  1075. {
  1076. "name": "Guilherme Blanco",
  1077. "email": "guilhermeblanco@gmail.com"
  1078. },
  1079. {
  1080. "name": "Jonathan Wage",
  1081. "email": "jonwage@gmail.com"
  1082. },
  1083. {
  1084. "name": "Johannes Schmitt",
  1085. "email": "schmittjoh@gmail.com"
  1086. }
  1087. ],
  1088. "description": "Docblock Annotations Parser",
  1089. "homepage": "http://www.doctrine-project.org",
  1090. "keywords": [
  1091. "annotations",
  1092. "docblock",
  1093. "parser"
  1094. ],
  1095. "time": "2015-08-31T12:32:49+00:00"
  1096. },
  1097. {
  1098. "name": "doctrine/cache",
  1099. "version": "v1.6.2",
  1100. "source": {
  1101. "type": "git",
  1102. "url": "https://github.com/doctrine/cache.git",
  1103. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1104. },
  1105. "dist": {
  1106. "type": "zip",
  1107. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1108. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1109. "shasum": ""
  1110. },
  1111. "require": {
  1112. "php": "~5.5|~7.0"
  1113. },
  1114. "conflict": {
  1115. "doctrine/common": ">2.2,<2.4"
  1116. },
  1117. "require-dev": {
  1118. "phpunit/phpunit": "~4.8|~5.0",
  1119. "predis/predis": "~1.0",
  1120. "satooshi/php-coveralls": "~0.6"
  1121. },
  1122. "type": "library",
  1123. "extra": {
  1124. "branch-alias": {
  1125. "dev-master": "1.6.x-dev"
  1126. }
  1127. },
  1128. "autoload": {
  1129. "psr-4": {
  1130. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1131. }
  1132. },
  1133. "notification-url": "https://packagist.org/downloads/",
  1134. "license": [
  1135. "MIT"
  1136. ],
  1137. "authors": [
  1138. {
  1139. "name": "Roman Borschel",
  1140. "email": "roman@code-factory.org"
  1141. },
  1142. {
  1143. "name": "Benjamin Eberlei",
  1144. "email": "kontakt@beberlei.de"
  1145. },
  1146. {
  1147. "name": "Guilherme Blanco",
  1148. "email": "guilhermeblanco@gmail.com"
  1149. },
  1150. {
  1151. "name": "Jonathan Wage",
  1152. "email": "jonwage@gmail.com"
  1153. },
  1154. {
  1155. "name": "Johannes Schmitt",
  1156. "email": "schmittjoh@gmail.com"
  1157. }
  1158. ],
  1159. "description": "Caching library offering an object-oriented API for many cache backends",
  1160. "homepage": "http://www.doctrine-project.org",
  1161. "keywords": [
  1162. "cache",
  1163. "caching"
  1164. ],
  1165. "time": "2017-07-22T12:49:21+00:00"
  1166. },
  1167. {
  1168. "name": "doctrine/collections",
  1169. "version": "v1.4.0",
  1170. "source": {
  1171. "type": "git",
  1172. "url": "https://github.com/doctrine/collections.git",
  1173. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1174. },
  1175. "dist": {
  1176. "type": "zip",
  1177. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1178. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1179. "shasum": ""
  1180. },
  1181. "require": {
  1182. "php": "^5.6 || ^7.0"
  1183. },
  1184. "require-dev": {
  1185. "doctrine/coding-standard": "~0.1@dev",
  1186. "phpunit/phpunit": "^5.7"
  1187. },
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "1.3.x-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "psr-0": {
  1196. "Doctrine\\Common\\Collections\\": "lib/"
  1197. }
  1198. },
  1199. "notification-url": "https://packagist.org/downloads/",
  1200. "license": [
  1201. "MIT"
  1202. ],
  1203. "authors": [
  1204. {
  1205. "name": "Roman Borschel",
  1206. "email": "roman@code-factory.org"
  1207. },
  1208. {
  1209. "name": "Benjamin Eberlei",
  1210. "email": "kontakt@beberlei.de"
  1211. },
  1212. {
  1213. "name": "Guilherme Blanco",
  1214. "email": "guilhermeblanco@gmail.com"
  1215. },
  1216. {
  1217. "name": "Jonathan Wage",
  1218. "email": "jonwage@gmail.com"
  1219. },
  1220. {
  1221. "name": "Johannes Schmitt",
  1222. "email": "schmittjoh@gmail.com"
  1223. }
  1224. ],
  1225. "description": "Collections Abstraction library",
  1226. "homepage": "http://www.doctrine-project.org",
  1227. "keywords": [
  1228. "array",
  1229. "collections",
  1230. "iterator"
  1231. ],
  1232. "time": "2017-01-03T10:49:41+00:00"
  1233. },
  1234. {
  1235. "name": "doctrine/common",
  1236. "version": "v2.7.3",
  1237. "source": {
  1238. "type": "git",
  1239. "url": "https://github.com/doctrine/common.git",
  1240. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1241. },
  1242. "dist": {
  1243. "type": "zip",
  1244. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1245. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1246. "shasum": ""
  1247. },
  1248. "require": {
  1249. "doctrine/annotations": "1.*",
  1250. "doctrine/cache": "1.*",
  1251. "doctrine/collections": "1.*",
  1252. "doctrine/inflector": "1.*",
  1253. "doctrine/lexer": "1.*",
  1254. "php": "~5.6|~7.0"
  1255. },
  1256. "require-dev": {
  1257. "phpunit/phpunit": "^5.4.6"
  1258. },
  1259. "type": "library",
  1260. "extra": {
  1261. "branch-alias": {
  1262. "dev-master": "2.7.x-dev"
  1263. }
  1264. },
  1265. "autoload": {
  1266. "psr-4": {
  1267. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1268. }
  1269. },
  1270. "notification-url": "https://packagist.org/downloads/",
  1271. "license": [
  1272. "MIT"
  1273. ],
  1274. "authors": [
  1275. {
  1276. "name": "Roman Borschel",
  1277. "email": "roman@code-factory.org"
  1278. },
  1279. {
  1280. "name": "Benjamin Eberlei",
  1281. "email": "kontakt@beberlei.de"
  1282. },
  1283. {
  1284. "name": "Guilherme Blanco",
  1285. "email": "guilhermeblanco@gmail.com"
  1286. },
  1287. {
  1288. "name": "Jonathan Wage",
  1289. "email": "jonwage@gmail.com"
  1290. },
  1291. {
  1292. "name": "Johannes Schmitt",
  1293. "email": "schmittjoh@gmail.com"
  1294. }
  1295. ],
  1296. "description": "Common Library for Doctrine projects",
  1297. "homepage": "http://www.doctrine-project.org",
  1298. "keywords": [
  1299. "annotations",
  1300. "collections",
  1301. "eventmanager",
  1302. "persistence",
  1303. "spl"
  1304. ],
  1305. "time": "2017-07-22T08:35:12+00:00"
  1306. },
  1307. {
  1308. "name": "doctrine/inflector",
  1309. "version": "v1.2.0",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/doctrine/inflector.git",
  1313. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1318. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1319. "shasum": ""
  1320. },
  1321. "require": {
  1322. "php": "^7.0"
  1323. },
  1324. "require-dev": {
  1325. "phpunit/phpunit": "^6.2"
  1326. },
  1327. "type": "library",
  1328. "extra": {
  1329. "branch-alias": {
  1330. "dev-master": "1.2.x-dev"
  1331. }
  1332. },
  1333. "autoload": {
  1334. "psr-4": {
  1335. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1336. }
  1337. },
  1338. "notification-url": "https://packagist.org/downloads/",
  1339. "license": [
  1340. "MIT"
  1341. ],
  1342. "authors": [
  1343. {
  1344. "name": "Roman Borschel",
  1345. "email": "roman@code-factory.org"
  1346. },
  1347. {
  1348. "name": "Benjamin Eberlei",
  1349. "email": "kontakt@beberlei.de"
  1350. },
  1351. {
  1352. "name": "Guilherme Blanco",
  1353. "email": "guilhermeblanco@gmail.com"
  1354. },
  1355. {
  1356. "name": "Jonathan Wage",
  1357. "email": "jonwage@gmail.com"
  1358. },
  1359. {
  1360. "name": "Johannes Schmitt",
  1361. "email": "schmittjoh@gmail.com"
  1362. }
  1363. ],
  1364. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1365. "homepage": "http://www.doctrine-project.org",
  1366. "keywords": [
  1367. "inflection",
  1368. "pluralize",
  1369. "singularize",
  1370. "string"
  1371. ],
  1372. "time": "2017-07-22T12:18:28+00:00"
  1373. },
  1374. {
  1375. "name": "doctrine/lexer",
  1376. "version": "v1.0.1",
  1377. "source": {
  1378. "type": "git",
  1379. "url": "https://github.com/doctrine/lexer.git",
  1380. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1381. },
  1382. "dist": {
  1383. "type": "zip",
  1384. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1385. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1386. "shasum": ""
  1387. },
  1388. "require": {
  1389. "php": ">=5.3.2"
  1390. },
  1391. "type": "library",
  1392. "extra": {
  1393. "branch-alias": {
  1394. "dev-master": "1.0.x-dev"
  1395. }
  1396. },
  1397. "autoload": {
  1398. "psr-0": {
  1399. "Doctrine\\Common\\Lexer\\": "lib/"
  1400. }
  1401. },
  1402. "notification-url": "https://packagist.org/downloads/",
  1403. "license": [
  1404. "MIT"
  1405. ],
  1406. "authors": [
  1407. {
  1408. "name": "Roman Borschel",
  1409. "email": "roman@code-factory.org"
  1410. },
  1411. {
  1412. "name": "Guilherme Blanco",
  1413. "email": "guilhermeblanco@gmail.com"
  1414. },
  1415. {
  1416. "name": "Johannes Schmitt",
  1417. "email": "schmittjoh@gmail.com"
  1418. }
  1419. ],
  1420. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1421. "homepage": "http://www.doctrine-project.org",
  1422. "keywords": [
  1423. "lexer",
  1424. "parser"
  1425. ],
  1426. "time": "2014-09-09T13:34:57+00:00"
  1427. },
  1428. {
  1429. "name": "drupal/actions_permissions",
  1430. "version": "2.4.0",
  1431. "require": {
  1432. "drupal/core": "*",
  1433. "drupal/views_bulk_operations": "self.version"
  1434. },
  1435. "type": "metapackage",
  1436. "extra": {
  1437. "branch-alias": {
  1438. "dev-2.x": "2.x-dev"
  1439. },
  1440. "drupal": {
  1441. "version": "8.x-2.4",
  1442. "datestamp": "1530516821",
  1443. "security-coverage": {
  1444. "status": "covered",
  1445. "message": "Covered by Drupal's security advisory policy"
  1446. }
  1447. }
  1448. },
  1449. "notification-url": "https://packages.drupal.org/8/downloads",
  1450. "license": [
  1451. "GPL-2.0-or-later"
  1452. ],
  1453. "authors": [
  1454. {
  1455. "name": "Graber",
  1456. "homepage": "https://www.drupal.org/user/1599440"
  1457. },
  1458. {
  1459. "name": "Jon Pugh",
  1460. "homepage": "https://www.drupal.org/user/17028"
  1461. },
  1462. {
  1463. "name": "bojanz",
  1464. "homepage": "https://www.drupal.org/user/86106"
  1465. },
  1466. {
  1467. "name": "infojunkie",
  1468. "homepage": "https://www.drupal.org/user/48424"
  1469. },
  1470. {
  1471. "name": "joelpittet",
  1472. "homepage": "https://www.drupal.org/user/160302"
  1473. }
  1474. ],
  1475. "description": "Adds access permissions on all actions allowing admins to restrict access on a per-role basis.",
  1476. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  1477. "support": {
  1478. "source": "http://cgit.drupalcode.org/views_bulk_operations"
  1479. }
  1480. },
  1481. {
  1482. "name": "drupal/admin_toolbar",
  1483. "version": "1.24.0",
  1484. "source": {
  1485. "type": "git",
  1486. "url": "https://git.drupal.org/project/admin_toolbar",
  1487. "reference": "8.x-1.24"
  1488. },
  1489. "dist": {
  1490. "type": "zip",
  1491. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.24.zip",
  1492. "reference": "8.x-1.24",
  1493. "shasum": "682ffa443a1e339583022eb6adbb00c1103ea6d4"
  1494. },
  1495. "require": {
  1496. "drupal/core": "*"
  1497. },
  1498. "type": "drupal-module",
  1499. "extra": {
  1500. "branch-alias": {
  1501. "dev-1.x": "1.x-dev"
  1502. },
  1503. "drupal": {
  1504. "version": "8.x-1.24",
  1505. "datestamp": "1527523080",
  1506. "security-coverage": {
  1507. "status": "covered",
  1508. "message": "Covered by Drupal's security advisory policy"
  1509. }
  1510. }
  1511. },
  1512. "notification-url": "https://packages.drupal.org/8/downloads",
  1513. "license": [
  1514. "GPL-2.0+"
  1515. ],
  1516. "authors": [
  1517. {
  1518. "name": "Wilfrid Roze (eme)",
  1519. "homepage": "https://www.drupal.org/u/eme",
  1520. "role": "Maintainer"
  1521. },
  1522. {
  1523. "name": "Romain Jarraud (romainj)",
  1524. "homepage": "https://www.drupal.org/u/romainj",
  1525. "role": "Maintainer"
  1526. },
  1527. {
  1528. "name": "Adrian Cid Almaguer (adriancid)",
  1529. "homepage": "https://www.drupal.org/u/adriancid",
  1530. "email": "adriancid@gmail.com",
  1531. "role": "Maintainer"
  1532. },
  1533. {
  1534. "name": "Mohamed Anis Taktak (matio89)",
  1535. "homepage": "https://www.drupal.org/u/matio89",
  1536. "role": "Maintainer"
  1537. },
  1538. {
  1539. "name": "fethi.krout",
  1540. "homepage": "https://www.drupal.org/user/3206765"
  1541. },
  1542. {
  1543. "name": "matio89",
  1544. "homepage": "https://www.drupal.org/user/2320090"
  1545. },
  1546. {
  1547. "name": "romainj",
  1548. "homepage": "https://www.drupal.org/user/370706"
  1549. }
  1550. ],
  1551. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1552. "homepage": "http://drupal.org/project/admin_toolbar",
  1553. "keywords": [
  1554. "Drupal",
  1555. "Toolbar"
  1556. ],
  1557. "support": {
  1558. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1559. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1560. }
  1561. },
  1562. {
  1563. "name": "drupal/adminimal_theme",
  1564. "version": "1.3.0",
  1565. "source": {
  1566. "type": "git",
  1567. "url": "https://git.drupal.org/project/adminimal_theme",
  1568. "reference": "8.x-1.3"
  1569. },
  1570. "dist": {
  1571. "type": "zip",
  1572. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.3.zip",
  1573. "reference": "8.x-1.3",
  1574. "shasum": "bb9f280bcdbd7e4d384a925c685a2aa1feed8419"
  1575. },
  1576. "require": {
  1577. "drupal/core": "~8.0"
  1578. },
  1579. "type": "drupal-theme",
  1580. "extra": {
  1581. "branch-alias": {
  1582. "dev-1.x": "1.x-dev"
  1583. },
  1584. "drupal": {
  1585. "version": "8.x-1.3",
  1586. "datestamp": "1480507083",
  1587. "security-coverage": {
  1588. "status": "covered",
  1589. "message": "Covered by Drupal's security advisory policy"
  1590. }
  1591. }
  1592. },
  1593. "notification-url": "https://packages.drupal.org/8/downloads",
  1594. "license": [
  1595. "GPL-2.0-or-later"
  1596. ],
  1597. "authors": [
  1598. {
  1599. "name": "ANDiTKO",
  1600. "homepage": "https://www.drupal.org/user/1428124"
  1601. },
  1602. {
  1603. "name": "realityloop",
  1604. "homepage": "https://www.drupal.org/user/139189"
  1605. }
  1606. ],
  1607. "description": "Drupal administration theme with modern minimalist design.",
  1608. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1609. "support": {
  1610. "source": "http://cgit.drupalcode.org/adminimal_theme"
  1611. }
  1612. },
  1613. {
  1614. "name": "drupal/advanced_text_formatter",
  1615. "version": "1.0.0-beta3",
  1616. "source": {
  1617. "type": "git",
  1618. "url": "https://git.drupal.org/project/advanced_text_formatter",
  1619. "reference": "8.x-1.0-beta3"
  1620. },
  1621. "dist": {
  1622. "type": "zip",
  1623. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-8.x-1.0-beta3.zip",
  1624. "reference": "8.x-1.0-beta3",
  1625. "shasum": "35e0154440ba7836dda70b8627f156872da75302"
  1626. },
  1627. "require": {
  1628. "drupal/core": "*"
  1629. },
  1630. "type": "drupal-module",
  1631. "extra": {
  1632. "branch-alias": {
  1633. "dev-1.x": "1.x-dev"
  1634. },
  1635. "drupal": {
  1636. "version": "8.x-1.0-beta3",
  1637. "datestamp": "1445163539",
  1638. "security-coverage": {
  1639. "status": "not-covered",
  1640. "message": "Beta releases are not covered by Drupal security advisories."
  1641. }
  1642. }
  1643. },
  1644. "notification-url": "https://packages.drupal.org/8/downloads",
  1645. "license": [
  1646. "GPL-2.0-or-later"
  1647. ],
  1648. "authors": [
  1649. {
  1650. "name": "thmnhat",
  1651. "homepage": "https://www.drupal.org/user/998946"
  1652. }
  1653. ],
  1654. "description": "Provides an additional formatter for text field, text area and text format.",
  1655. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1656. "support": {
  1657. "source": "http://cgit.drupalcode.org/advanced_text_formatter"
  1658. }
  1659. },
  1660. {
  1661. "name": "drupal/audiofield",
  1662. "version": "1.6.0",
  1663. "source": {
  1664. "type": "git",
  1665. "url": "https://git.drupal.org/project/audiofield",
  1666. "reference": "8.x-1.6"
  1667. },
  1668. "dist": {
  1669. "type": "zip",
  1670. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.6.zip",
  1671. "reference": "8.x-1.6",
  1672. "shasum": "bd63641c2ed9e9774b82423bf03c95540b395126"
  1673. },
  1674. "require": {
  1675. "drupal/core": "~8.0"
  1676. },
  1677. "type": "drupal-module",
  1678. "extra": {
  1679. "branch-alias": {
  1680. "dev-1.x": "1.x-dev"
  1681. },
  1682. "drupal": {
  1683. "version": "8.x-1.6",
  1684. "datestamp": "1514414884",
  1685. "security-coverage": {
  1686. "status": "covered",
  1687. "message": "Covered by Drupal's security advisory policy"
  1688. }
  1689. }
  1690. },
  1691. "notification-url": "https://packages.drupal.org/8/downloads",
  1692. "license": [
  1693. "GPL-2.0+"
  1694. ],
  1695. "authors": [
  1696. {
  1697. "name": "Daniel Moberly",
  1698. "homepage": "https://www.drupal.org/u/danielmoberly",
  1699. "role": "Maintainer"
  1700. },
  1701. {
  1702. "name": "josipsaric",
  1703. "homepage": "https://www.drupal.org/user/3063287"
  1704. },
  1705. {
  1706. "name": "msajko",
  1707. "homepage": "https://www.drupal.org/user/3483723"
  1708. },
  1709. {
  1710. "name": "tamerzg",
  1711. "homepage": "https://www.drupal.org/user/464564"
  1712. }
  1713. ],
  1714. "description": "AudioField Module",
  1715. "homepage": "https://www.drupal.org/project/audiofield",
  1716. "support": {
  1717. "source": "http://cgit.drupalcode.org/audiofield",
  1718. "issues": "https://www.drupal.org/project/issues/audiofield"
  1719. }
  1720. },
  1721. {
  1722. "name": "drupal/autocomplete_deluxe",
  1723. "version": "1.0.0-beta1",
  1724. "source": {
  1725. "type": "git",
  1726. "url": "https://git.drupal.org/project/autocomplete_deluxe",
  1727. "reference": "8.x-1.0-beta1"
  1728. },
  1729. "dist": {
  1730. "type": "zip",
  1731. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-8.x-1.0-beta1.zip",
  1732. "reference": "8.x-1.0-beta1",
  1733. "shasum": "f59d928761a01a055c2240155a84b1d7286fe666"
  1734. },
  1735. "require": {
  1736. "drupal/core": "~8.0"
  1737. },
  1738. "type": "drupal-module",
  1739. "extra": {
  1740. "branch-alias": {
  1741. "dev-1.x": "1.x-dev"
  1742. },
  1743. "drupal": {
  1744. "version": "8.x-1.0-beta1",
  1745. "datestamp": "1502921644",
  1746. "security-coverage": {
  1747. "status": "not-covered",
  1748. "message": "Beta releases are not covered by Drupal security advisories."
  1749. }
  1750. }
  1751. },
  1752. "notification-url": "https://packages.drupal.org/8/downloads",
  1753. "license": [
  1754. "GPL-2.0+"
  1755. ],
  1756. "authors": [
  1757. {
  1758. "name": "Edward Chan",
  1759. "homepage": "https://www.drupal.org/user/1781334"
  1760. },
  1761. {
  1762. "name": "edwardchiapet",
  1763. "homepage": "https://www.drupal.org/user/2354784"
  1764. },
  1765. {
  1766. "name": "mpriscella",
  1767. "homepage": "https://www.drupal.org/user/2354820"
  1768. },
  1769. {
  1770. "name": "sepgil",
  1771. "homepage": "https://www.drupal.org/user/512828"
  1772. }
  1773. ],
  1774. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  1775. "homepage": "https://www.drupal.org/sandbox/edwardchan/2888186",
  1776. "support": {
  1777. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  1778. "issues": "https://www.drupal.org/project/issues/2888186"
  1779. }
  1780. },
  1781. {
  1782. "name": "drupal/autologout",
  1783. "version": "1.0.0",
  1784. "source": {
  1785. "type": "git",
  1786. "url": "https://git.drupal.org/project/autologout",
  1787. "reference": "8.x-1.0"
  1788. },
  1789. "dist": {
  1790. "type": "zip",
  1791. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  1792. "reference": "8.x-1.0",
  1793. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  1794. },
  1795. "require": {
  1796. "drupal/core": "~8.0"
  1797. },
  1798. "type": "drupal-module",
  1799. "extra": {
  1800. "branch-alias": {
  1801. "dev-1.x": "1.x-dev"
  1802. },
  1803. "drupal": {
  1804. "version": "8.x-1.0",
  1805. "datestamp": "1494237185",
  1806. "security-coverage": {
  1807. "status": "covered",
  1808. "message": "Covered by Drupal's security advisory policy"
  1809. }
  1810. }
  1811. },
  1812. "notification-url": "https://packages.drupal.org/8/downloads",
  1813. "license": [
  1814. "GPL-2.0+"
  1815. ],
  1816. "authors": [
  1817. {
  1818. "name": "AjK",
  1819. "homepage": "https://www.drupal.org/user/39030"
  1820. },
  1821. {
  1822. "name": "AjitS",
  1823. "homepage": "https://www.drupal.org/user/981944"
  1824. },
  1825. {
  1826. "name": "dandrews",
  1827. "homepage": "https://www.drupal.org/user/2014490"
  1828. },
  1829. {
  1830. "name": "johnennew",
  1831. "homepage": "https://www.drupal.org/user/1150042"
  1832. },
  1833. {
  1834. "name": "jrglasgow",
  1835. "homepage": "https://www.drupal.org/user/36590"
  1836. },
  1837. {
  1838. "name": "kmasood",
  1839. "homepage": "https://www.drupal.org/user/1262860"
  1840. },
  1841. {
  1842. "name": "levelos",
  1843. "homepage": "https://www.drupal.org/user/54135"
  1844. },
  1845. {
  1846. "name": "prabeen.giri",
  1847. "homepage": "https://www.drupal.org/user/913078"
  1848. },
  1849. {
  1850. "name": "str8",
  1851. "homepage": "https://www.drupal.org/user/2865063"
  1852. }
  1853. ],
  1854. "description": "Adds automated timed logout.",
  1855. "homepage": "http://drupal.org/project/autologout",
  1856. "support": {
  1857. "source": "http://cgit.drupalcode.org/autologout"
  1858. }
  1859. },
  1860. {
  1861. "name": "drupal/better_exposed_filters",
  1862. "version": "3.0.0-alpha5",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://git.drupal.org/project/better_exposed_filters",
  1866. "reference": "8.x-3.0-alpha5"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-3.0-alpha5.zip",
  1871. "reference": "8.x-3.0-alpha5",
  1872. "shasum": "8dbcff4b3bcd24f753d5d1ba6a523442a3690a76"
  1873. },
  1874. "require": {
  1875. "drupal/core": "*"
  1876. },
  1877. "type": "drupal-module",
  1878. "extra": {
  1879. "branch-alias": {
  1880. "dev-3.x": "3.x-dev"
  1881. },
  1882. "drupal": {
  1883. "version": "8.x-3.0-alpha5",
  1884. "datestamp": "1540513084",
  1885. "security-coverage": {
  1886. "status": "not-covered",
  1887. "message": "Alpha releases are not covered by Drupal security advisories."
  1888. }
  1889. }
  1890. },
  1891. "notification-url": "https://packages.drupal.org/8/downloads",
  1892. "license": [
  1893. "GPL-2.0-or-later"
  1894. ],
  1895. "authors": [
  1896. {
  1897. "name": "chr.fritsch",
  1898. "homepage": "https://www.drupal.org/user/2103716"
  1899. },
  1900. {
  1901. "name": "jkopel",
  1902. "homepage": "https://www.drupal.org/user/66207"
  1903. },
  1904. {
  1905. "name": "mikeker",
  1906. "homepage": "https://www.drupal.org/user/192273"
  1907. },
  1908. {
  1909. "name": "mortona2k",
  1910. "homepage": "https://www.drupal.org/user/1029484"
  1911. },
  1912. {
  1913. "name": "rlhawk",
  1914. "homepage": "https://www.drupal.org/user/352283"
  1915. }
  1916. ],
  1917. "description": "Provides advanced options (such as links, checkboxes, or jQueryUI widgets) for exposed Views elements.",
  1918. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  1919. "support": {
  1920. "source": "http://cgit.drupalcode.org/better_exposed_filters"
  1921. }
  1922. },
  1923. {
  1924. "name": "drupal/better_messages",
  1925. "version": "1.0.0-alpha2",
  1926. "source": {
  1927. "type": "git",
  1928. "url": "https://git.drupal.org/project/better_messages",
  1929. "reference": "8.x-1.0-alpha2"
  1930. },
  1931. "dist": {
  1932. "type": "zip",
  1933. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  1934. "reference": "8.x-1.0-alpha2",
  1935. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  1936. },
  1937. "require": {
  1938. "drupal/core": "~8.0"
  1939. },
  1940. "type": "drupal-module",
  1941. "extra": {
  1942. "branch-alias": {
  1943. "dev-1.x": "1.x-dev"
  1944. },
  1945. "drupal": {
  1946. "version": "8.x-1.0-alpha2",
  1947. "datestamp": "1517663880",
  1948. "security-coverage": {
  1949. "status": "not-covered",
  1950. "message": "Alpha releases are not covered by Drupal security advisories."
  1951. }
  1952. }
  1953. },
  1954. "notification-url": "https://packages.drupal.org/8/downloads",
  1955. "license": [
  1956. "GPL-2.0-or-later"
  1957. ],
  1958. "authors": [
  1959. {
  1960. "name": "Mohammed J. Razem",
  1961. "homepage": "https://www.drupal.org/user/255384"
  1962. },
  1963. {
  1964. "name": "bucefal91",
  1965. "homepage": "https://www.drupal.org/user/504128"
  1966. },
  1967. {
  1968. "name": "le72",
  1969. "homepage": "https://www.drupal.org/user/1866896"
  1970. }
  1971. ],
  1972. "description": "Better Messages module for Drupal 8.",
  1973. "homepage": "https://www.drupal.org/project/better_messages",
  1974. "support": {
  1975. "source": "http://cgit.drupalcode.org/better_messages"
  1976. }
  1977. },
  1978. {
  1979. "name": "drupal/betterlogin",
  1980. "version": "1.2.0",
  1981. "source": {
  1982. "type": "git",
  1983. "url": "https://git.drupal.org/project/betterlogin",
  1984. "reference": "8.x-1.2"
  1985. },
  1986. "dist": {
  1987. "type": "zip",
  1988. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.2.zip",
  1989. "reference": "8.x-1.2",
  1990. "shasum": "6b9ab142bf563685346d2b4e2db46ada209ed6ad"
  1991. },
  1992. "require": {
  1993. "drupal/core": "~8.0"
  1994. },
  1995. "type": "drupal-module",
  1996. "extra": {
  1997. "branch-alias": {
  1998. "dev-1.x": "1.x-dev"
  1999. },
  2000. "drupal": {
  2001. "version": "8.x-1.2",
  2002. "datestamp": "1515587585",
  2003. "security-coverage": {
  2004. "status": "covered",
  2005. "message": "Covered by Drupal's security advisory policy"
  2006. }
  2007. }
  2008. },
  2009. "notification-url": "https://packages.drupal.org/8/downloads",
  2010. "license": [
  2011. "GPL-2.0-or-later"
  2012. ],
  2013. "authors": [
  2014. {
  2015. "name": "Yogesh Pawar",
  2016. "homepage": "https://www.drupal.org/user/2922907"
  2017. },
  2018. {
  2019. "name": "theamoeba",
  2020. "homepage": "https://www.drupal.org/user/251700"
  2021. }
  2022. ],
  2023. "description": "Make the login screens better :)",
  2024. "homepage": "https://www.drupal.org/project/betterlogin",
  2025. "support": {
  2026. "source": "http://cgit.drupalcode.org/betterlogin"
  2027. }
  2028. },
  2029. {
  2030. "name": "drupal/block_class",
  2031. "version": "1.0.0",
  2032. "source": {
  2033. "type": "git",
  2034. "url": "https://git.drupal.org/project/block_class",
  2035. "reference": "8.x-1.0"
  2036. },
  2037. "dist": {
  2038. "type": "zip",
  2039. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.0.zip",
  2040. "reference": "8.x-1.0",
  2041. "shasum": "1a691999d051a3c010c2b6f2df73954ee02f424d"
  2042. },
  2043. "require": {
  2044. "drupal/core": "*"
  2045. },
  2046. "type": "drupal-module",
  2047. "extra": {
  2048. "branch-alias": {
  2049. "dev-1.x": "1.x-dev"
  2050. },
  2051. "drupal": {
  2052. "version": "8.x-1.0",
  2053. "datestamp": "1531440821",
  2054. "security-coverage": {
  2055. "status": "covered",
  2056. "message": "Covered by Drupal's security advisory policy"
  2057. }
  2058. }
  2059. },
  2060. "notification-url": "https://packages.drupal.org/8/downloads",
  2061. "license": [
  2062. "GPL-2.0+"
  2063. ],
  2064. "authors": [
  2065. {
  2066. "name": "Todd Nienkerk",
  2067. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2068. "role": "Maintainer"
  2069. },
  2070. {
  2071. "name": "Renato Gonçalves (RenatoG)",
  2072. "homepage": "https://www.drupal.org/u/RenatoG",
  2073. "email": "renatog@ciandt.com",
  2074. "role": "Maintainer"
  2075. },
  2076. {
  2077. "name": "Aaron Stanush",
  2078. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2079. "role": "Maintainer"
  2080. },
  2081. {
  2082. "name": "David Suissa (DYdave)",
  2083. "homepage": "https://www.drupal.org/u/DYdave",
  2084. "role": "Maintainer"
  2085. },
  2086. {
  2087. "name": "Four Kitchens",
  2088. "homepage": "https://www.drupal.org/user/358502",
  2089. "role": "Maintainer"
  2090. },
  2091. {
  2092. "name": "berenddeboer",
  2093. "homepage": "https://www.drupal.org/u/berenddeboer",
  2094. "role": "Maintainer"
  2095. },
  2096. {
  2097. "name": "elliotttf",
  2098. "homepage": "https://www.drupal.org/u/elliotttf",
  2099. "role": "Maintainer"
  2100. },
  2101. {
  2102. "name": "Michal Minecki (mirzu)",
  2103. "homepage": "https://www.drupal.org/u/mirzu",
  2104. "role": "Maintainer"
  2105. },
  2106. {
  2107. "name": "Patrick Coffey (pcoffey)",
  2108. "homepage": "https://www.drupal.org/u/pcoffey",
  2109. "role": "Maintainer"
  2110. },
  2111. {
  2112. "name": "Taylor Smith (tsmith512)",
  2113. "homepage": "https://www.drupal.org/u/tsmith512",
  2114. "role": "Maintainer"
  2115. },
  2116. {
  2117. "name": "tsmith512",
  2118. "homepage": "https://www.drupal.org/user/2031446"
  2119. }
  2120. ],
  2121. "description": "Allows assigning classes to Blocks.",
  2122. "homepage": "https://www.drupal.org/project/block_class",
  2123. "support": {
  2124. "source": "https://cgit.drupalcode.org/block_class",
  2125. "issues": "https://www.drupal.org/project/issues/block_class",
  2126. "irc": "irc://irc.freenode.org/drupal-contribute"
  2127. }
  2128. },
  2129. {
  2130. "name": "drupal/bulkdelete",
  2131. "version": "dev-1.x",
  2132. "source": {
  2133. "type": "git",
  2134. "url": "https://git.drupal.org/project/bulkdelete",
  2135. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2136. },
  2137. "require": {
  2138. "drupal/core": "~8.0"
  2139. },
  2140. "type": "drupal-module",
  2141. "extra": {
  2142. "branch-alias": {
  2143. "dev-1.x": "1.x-dev"
  2144. },
  2145. "drupal": {
  2146. "version": "8.x-1.x-dev",
  2147. "datestamp": "1495565583",
  2148. "security-coverage": {
  2149. "status": "not-covered",
  2150. "message": "Dev releases are not covered by Drupal security advisories."
  2151. }
  2152. }
  2153. },
  2154. "notification-url": "https://packages.drupal.org/8/downloads",
  2155. "license": [
  2156. "GPL-2.0-or-later"
  2157. ],
  2158. "authors": [
  2159. {
  2160. "name": "Kars-T",
  2161. "homepage": "https://www.drupal.org/user/224499"
  2162. },
  2163. {
  2164. "name": "Rahul Seth",
  2165. "homepage": "https://www.drupal.org/user/2694359"
  2166. },
  2167. {
  2168. "name": "adriancid",
  2169. "homepage": "https://www.drupal.org/user/1962106"
  2170. },
  2171. {
  2172. "name": "robertDouglass",
  2173. "homepage": "https://www.drupal.org/user/5449"
  2174. }
  2175. ],
  2176. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2177. "homepage": "https://www.drupal.org/project/bulkdelete",
  2178. "support": {
  2179. "source": "http://cgit.drupalcode.org/bulkdelete"
  2180. },
  2181. "time": "2017-05-23T18:49:48+00:00"
  2182. },
  2183. {
  2184. "name": "drupal/config_devel",
  2185. "version": "1.2.0",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://git.drupal.org/project/config_devel",
  2189. "reference": "8.x-1.2"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2194. "reference": "8.x-1.2",
  2195. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2196. },
  2197. "require": {
  2198. "drupal/core": "~8.0"
  2199. },
  2200. "type": "drupal-module",
  2201. "extra": {
  2202. "branch-alias": {
  2203. "dev-1.x": "1.x-dev"
  2204. },
  2205. "drupal": {
  2206. "version": "8.x-1.2",
  2207. "datestamp": "1510843084",
  2208. "security-coverage": {
  2209. "status": "covered",
  2210. "message": "Covered by Drupal's security advisory policy"
  2211. }
  2212. }
  2213. },
  2214. "notification-url": "https://packages.drupal.org/8/downloads",
  2215. "license": [
  2216. "GPL-2.0+"
  2217. ],
  2218. "authors": [
  2219. {
  2220. "name": "alexpott",
  2221. "homepage": "https://www.drupal.org/user/157725"
  2222. },
  2223. {
  2224. "name": "benjy",
  2225. "homepage": "https://www.drupal.org/user/1852732"
  2226. },
  2227. {
  2228. "name": "chx",
  2229. "homepage": "https://www.drupal.org/user/9446"
  2230. },
  2231. {
  2232. "name": "joachim",
  2233. "homepage": "https://www.drupal.org/user/107701"
  2234. },
  2235. {
  2236. "name": "nedjo",
  2237. "homepage": "https://www.drupal.org/user/4481"
  2238. },
  2239. {
  2240. "name": "tim.plunkett",
  2241. "homepage": "https://www.drupal.org/user/241634"
  2242. },
  2243. {
  2244. "name": "vijaycs85",
  2245. "homepage": "https://www.drupal.org/user/93488"
  2246. }
  2247. ],
  2248. "description": "Helps developers work with configuration.",
  2249. "homepage": "https://www.drupal.org/project/config_devel",
  2250. "support": {
  2251. "source": "http://cgit.drupalcode.org/config_devel"
  2252. }
  2253. },
  2254. {
  2255. "name": "drupal/config_filter",
  2256. "version": "1.3.0",
  2257. "source": {
  2258. "type": "git",
  2259. "url": "https://git.drupal.org/project/config_filter",
  2260. "reference": "8.x-1.3"
  2261. },
  2262. "dist": {
  2263. "type": "zip",
  2264. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.3.zip",
  2265. "reference": "8.x-1.3",
  2266. "shasum": "56255a17c45dcbb0af713215885a8d74214d2ebc"
  2267. },
  2268. "require": {
  2269. "drupal/core": "~8.0"
  2270. },
  2271. "suggest": {
  2272. "drupal/config_split": "Split site configuration for different environments."
  2273. },
  2274. "type": "drupal-module",
  2275. "extra": {
  2276. "branch-alias": {
  2277. "dev-1.x": "1.x-dev"
  2278. },
  2279. "drupal": {
  2280. "version": "8.x-1.3",
  2281. "datestamp": "1537978080",
  2282. "security-coverage": {
  2283. "status": "covered",
  2284. "message": "Covered by Drupal's security advisory policy"
  2285. }
  2286. }
  2287. },
  2288. "notification-url": "https://packages.drupal.org/8/downloads",
  2289. "license": [
  2290. "GPL-2.0+"
  2291. ],
  2292. "authors": [
  2293. {
  2294. "name": "Fabian Bircher",
  2295. "homepage": "https://www.drupal.org/u/bircher",
  2296. "email": "opensource@fabianbircher.com",
  2297. "role": "Maintainer"
  2298. },
  2299. {
  2300. "name": "Nuvole Web",
  2301. "homepage": "http://nuvole.org",
  2302. "email": "info@nuvole.org",
  2303. "role": "Maintainer"
  2304. },
  2305. {
  2306. "name": "pescetti",
  2307. "homepage": "https://www.drupal.org/user/436244"
  2308. }
  2309. ],
  2310. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2311. "homepage": "https://www.drupal.org/project/config_filter",
  2312. "keywords": [
  2313. "Drupal",
  2314. "configuration",
  2315. "configuration management"
  2316. ],
  2317. "support": {
  2318. "source": "http://cgit.drupalcode.org/config_filter",
  2319. "issues": "https://www.drupal.org/project/issues/config_filter",
  2320. "irc": "irc://irc.freenode.org/drupal-contribute"
  2321. }
  2322. },
  2323. {
  2324. "name": "drupal/config_ignore",
  2325. "version": "2.1.0",
  2326. "source": {
  2327. "type": "git",
  2328. "url": "https://git.drupal.org/project/config_ignore",
  2329. "reference": "8.x-2.1"
  2330. },
  2331. "dist": {
  2332. "type": "zip",
  2333. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2334. "reference": "8.x-2.1",
  2335. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2336. },
  2337. "require": {
  2338. "drupal/config_filter": "1.*",
  2339. "drupal/core": "~8.0"
  2340. },
  2341. "type": "drupal-module",
  2342. "extra": {
  2343. "branch-alias": {
  2344. "dev-2.x": "2.x-dev"
  2345. },
  2346. "drupal": {
  2347. "version": "8.x-2.1",
  2348. "datestamp": "1507706044",
  2349. "security-coverage": {
  2350. "status": "covered",
  2351. "message": "Covered by Drupal's security advisory policy"
  2352. }
  2353. }
  2354. },
  2355. "notification-url": "https://packages.drupal.org/8/downloads",
  2356. "license": [
  2357. "GPL-2.0+"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Tommy Lynge Jørgensen",
  2362. "homepage": "https://www.drupal.org/u/tlyngej",
  2363. "email": "tlyngej@gmail.com",
  2364. "role": "Maintainer"
  2365. },
  2366. {
  2367. "name": "Fabian Bircher",
  2368. "homepage": "https://www.drupal.org/u/bircher",
  2369. "role": "Maintainer"
  2370. }
  2371. ],
  2372. "description": "Ignore certain configuration during import.",
  2373. "homepage": "http://drupal.org/project/config_ignore",
  2374. "support": {
  2375. "source": "http://cgit.drupalcode.org/config_ignore",
  2376. "issues": "http://drupal.org/project/config_ignore",
  2377. "irc": "irc://irc.freenode.org/drupal-contribute"
  2378. }
  2379. },
  2380. {
  2381. "name": "drupal/config_update",
  2382. "version": "1.5.0",
  2383. "source": {
  2384. "type": "git",
  2385. "url": "https://git.drupal.org/project/config_update",
  2386. "reference": "8.x-1.5"
  2387. },
  2388. "dist": {
  2389. "type": "zip",
  2390. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.5.zip",
  2391. "reference": "8.x-1.5",
  2392. "shasum": "2f7ae5f90b1c0ab8edf84680d2651e81fab6a126"
  2393. },
  2394. "require": {
  2395. "drupal/core": "*"
  2396. },
  2397. "type": "drupal-module",
  2398. "extra": {
  2399. "branch-alias": {
  2400. "dev-1.x": "1.x-dev"
  2401. },
  2402. "drupal": {
  2403. "version": "8.x-1.5",
  2404. "datestamp": "1512587912",
  2405. "security-coverage": {
  2406. "status": "covered",
  2407. "message": "Covered by Drupal's security advisory policy"
  2408. }
  2409. }
  2410. },
  2411. "notification-url": "https://packages.drupal.org/8/downloads",
  2412. "license": [
  2413. "GPL-2.0-or-later"
  2414. ],
  2415. "authors": [
  2416. {
  2417. "name": "jhodgdon",
  2418. "homepage": "https://www.drupal.org/user/155601"
  2419. },
  2420. {
  2421. "name": "nedjo",
  2422. "homepage": "https://www.drupal.org/user/4481"
  2423. }
  2424. ],
  2425. "description": "Provides basic revert and update functionality for other modules",
  2426. "homepage": "https://www.drupal.org/project/config_update",
  2427. "support": {
  2428. "source": "http://cgit.drupalcode.org/config_update"
  2429. }
  2430. },
  2431. {
  2432. "name": "drupal/console",
  2433. "version": "1.8.0",
  2434. "source": {
  2435. "type": "git",
  2436. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2437. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  2438. },
  2439. "dist": {
  2440. "type": "zip",
  2441. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2442. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2443. "shasum": ""
  2444. },
  2445. "require": {
  2446. "alchemy/zippy": "0.4.3",
  2447. "composer/installers": "~1.0",
  2448. "doctrine/annotations": "^1.2",
  2449. "doctrine/collections": "^1.3",
  2450. "drupal/console-core": "1.8.0",
  2451. "drupal/console-extend-plugin": "~0",
  2452. "guzzlehttp/guzzle": "~6.1",
  2453. "php": "^5.5.9 || ^7.0",
  2454. "psy/psysh": "0.6.* || ~0.8",
  2455. "symfony/css-selector": "~2.8|~3.0",
  2456. "symfony/dom-crawler": "~2.8|~3.0",
  2457. "symfony/http-foundation": "~2.8|~3.0"
  2458. },
  2459. "suggest": {
  2460. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  2461. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  2462. },
  2463. "bin": [
  2464. "bin/drupal"
  2465. ],
  2466. "type": "library",
  2467. "autoload": {
  2468. "psr-4": {
  2469. "Drupal\\Console\\": "src"
  2470. }
  2471. },
  2472. "notification-url": "https://packagist.org/downloads/",
  2473. "license": [
  2474. "GPL-2.0-or-later"
  2475. ],
  2476. "authors": [
  2477. {
  2478. "name": "David Flores",
  2479. "email": "dmousex@gmail.com",
  2480. "homepage": "http://dmouse.net"
  2481. },
  2482. {
  2483. "name": "Jesus Manuel Olivas",
  2484. "email": "jesus.olivas@gmail.com",
  2485. "homepage": "http://jmolivas.com"
  2486. },
  2487. {
  2488. "name": "Eduardo Garcia",
  2489. "email": "enzo@enzolutions.com",
  2490. "homepage": "http://enzolutions.com/"
  2491. },
  2492. {
  2493. "name": "Omar Aguirre",
  2494. "email": "omersguchigu@gmail.com"
  2495. },
  2496. {
  2497. "name": "Drupal Console Contributors",
  2498. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2499. }
  2500. ],
  2501. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2502. "homepage": "http://drupalconsole.com/",
  2503. "keywords": [
  2504. "console",
  2505. "development",
  2506. "drupal",
  2507. "symfony"
  2508. ],
  2509. "time": "2018-03-21T20:50:16+00:00"
  2510. },
  2511. {
  2512. "name": "drupal/console-core",
  2513. "version": "1.8.0",
  2514. "source": {
  2515. "type": "git",
  2516. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2517. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  2518. },
  2519. "dist": {
  2520. "type": "zip",
  2521. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  2522. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  2523. "shasum": ""
  2524. },
  2525. "require": {
  2526. "dflydev/dot-access-configuration": "^1.0",
  2527. "drupal/console-en": "1.8.0",
  2528. "php": "^5.5.9 || ^7.0",
  2529. "stecman/symfony-console-completion": "~0.7",
  2530. "symfony/config": "~2.8|~3.0",
  2531. "symfony/console": "~2.8|~3.0",
  2532. "symfony/debug": "~2.8|~3.0",
  2533. "symfony/dependency-injection": "~2.8|~3.0",
  2534. "symfony/event-dispatcher": "~2.8|~3.0",
  2535. "symfony/filesystem": "~2.8|~3.0",
  2536. "symfony/finder": "~2.8|~3.0",
  2537. "symfony/process": "~2.8|~3.0",
  2538. "symfony/translation": "~2.8|~3.0",
  2539. "symfony/yaml": "~2.8|~3.0",
  2540. "twig/twig": "^1.23.1",
  2541. "webflo/drupal-finder": "^1.0",
  2542. "webmozart/path-util": "^2.3"
  2543. },
  2544. "type": "library",
  2545. "autoload": {
  2546. "files": [
  2547. "src/functions.php"
  2548. ],
  2549. "psr-4": {
  2550. "Drupal\\Console\\Core\\": "src"
  2551. }
  2552. },
  2553. "notification-url": "https://packagist.org/downloads/",
  2554. "license": [
  2555. "GPL-2.0-or-later"
  2556. ],
  2557. "authors": [
  2558. {
  2559. "name": "David Flores",
  2560. "email": "dmousex@gmail.com",
  2561. "homepage": "http://dmouse.net"
  2562. },
  2563. {
  2564. "name": "Jesus Manuel Olivas",
  2565. "email": "jesus.olivas@gmail.com",
  2566. "homepage": "http://jmolivas.com"
  2567. },
  2568. {
  2569. "name": "Drupal Console Contributors",
  2570. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2571. },
  2572. {
  2573. "name": "Eduardo Garcia",
  2574. "email": "enzo@enzolutions.com",
  2575. "homepage": "http://enzolutions.com/"
  2576. },
  2577. {
  2578. "name": "Omar Aguirre",
  2579. "email": "omersguchigu@gmail.com"
  2580. }
  2581. ],
  2582. "description": "Drupal Console Core",
  2583. "homepage": "http://drupalconsole.com/",
  2584. "keywords": [
  2585. "console",
  2586. "development",
  2587. "drupal",
  2588. "symfony"
  2589. ],
  2590. "time": "2018-03-21T19:33:23+00:00"
  2591. },
  2592. {
  2593. "name": "drupal/console-en",
  2594. "version": "1.8.0",
  2595. "source": {
  2596. "type": "git",
  2597. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2598. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  2599. },
  2600. "dist": {
  2601. "type": "zip",
  2602. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  2603. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  2604. "shasum": ""
  2605. },
  2606. "type": "drupal-console-language",
  2607. "notification-url": "https://packagist.org/downloads/",
  2608. "license": [
  2609. "GPL-2.0-or-later"
  2610. ],
  2611. "authors": [
  2612. {
  2613. "name": "David Flores",
  2614. "email": "dmousex@gmail.com",
  2615. "homepage": "http://dmouse.net"
  2616. },
  2617. {
  2618. "name": "Jesus Manuel Olivas",
  2619. "email": "jesus.olivas@gmail.com",
  2620. "homepage": "http://jmolivas.com"
  2621. },
  2622. {
  2623. "name": "Drupal Console Contributors",
  2624. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2625. },
  2626. {
  2627. "name": "Eduardo Garcia",
  2628. "email": "enzo@enzolutions.com",
  2629. "homepage": "http://enzolutions.com/"
  2630. },
  2631. {
  2632. "name": "Omar Aguirre",
  2633. "email": "omersguchigu@gmail.com"
  2634. }
  2635. ],
  2636. "description": "Drupal Console English Language",
  2637. "homepage": "http://drupalconsole.com/",
  2638. "keywords": [
  2639. "console",
  2640. "development",
  2641. "drupal",
  2642. "symfony"
  2643. ],
  2644. "time": "2018-03-21T19:16:27+00:00"
  2645. },
  2646. {
  2647. "name": "drupal/console-extend-plugin",
  2648. "version": "0.9.2",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2652. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  2657. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  2658. "shasum": ""
  2659. },
  2660. "require": {
  2661. "composer-plugin-api": "^1.0",
  2662. "symfony/finder": "~2.7|~3.0",
  2663. "symfony/yaml": "~2.7|~3.0"
  2664. },
  2665. "type": "composer-plugin",
  2666. "extra": {
  2667. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  2668. },
  2669. "autoload": {
  2670. "psr-4": {
  2671. "Drupal\\Console\\Composer\\Plugin\\": "src"
  2672. }
  2673. },
  2674. "notification-url": "https://packagist.org/downloads/",
  2675. "license": [
  2676. "GPL-2.0+"
  2677. ],
  2678. "authors": [
  2679. {
  2680. "name": "Jesus Manuel Olivas",
  2681. "email": "jesus.olivas@gmail.com"
  2682. }
  2683. ],
  2684. "description": "Drupal Console Extend Plugin",
  2685. "time": "2017-07-28T17:11:54+00:00"
  2686. },
  2687. {
  2688. "name": "drupal/content_lock",
  2689. "version": "1.0.0-alpha8",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://git.drupal.org/project/content_lock",
  2693. "reference": "8.x-1.0-alpha8"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-1.0-alpha8.zip",
  2698. "reference": "8.x-1.0-alpha8",
  2699. "shasum": "dbb5986dbfbe325eb869a4ac42b88b266dc089c6"
  2700. },
  2701. "require": {
  2702. "drupal/core": "~8"
  2703. },
  2704. "require-dev": {
  2705. "drupal/conflict": "dev-2.x",
  2706. "drupal/prefetch_cache": "dev-1.x"
  2707. },
  2708. "type": "drupal-module",
  2709. "extra": {
  2710. "branch-alias": {
  2711. "dev-1.x": "1.x-dev"
  2712. },
  2713. "drupal": {
  2714. "version": "8.x-1.0-alpha8",
  2715. "datestamp": "1520356080",
  2716. "security-coverage": {
  2717. "status": "not-covered",
  2718. "message": "Alpha releases are not covered by Drupal security advisories."
  2719. }
  2720. }
  2721. },
  2722. "notification-url": "https://packages.drupal.org/8/downloads",
  2723. "license": [
  2724. "GPL-2.0-or-later"
  2725. ],
  2726. "authors": [
  2727. {
  2728. "name": "Joseph Zhao",
  2729. "homepage": "https://www.drupal.org/user/1987218"
  2730. },
  2731. {
  2732. "name": "chr.fritsch",
  2733. "homepage": "https://www.drupal.org/user/2103716"
  2734. },
  2735. {
  2736. "name": "ergonlogic",
  2737. "homepage": "https://www.drupal.org/user/368613"
  2738. }
  2739. ],
  2740. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  2741. "homepage": "https://www.drupal.org/project/content_lock",
  2742. "support": {
  2743. "source": "http://cgit.drupalcode.org/content_lock"
  2744. }
  2745. },
  2746. {
  2747. "name": "drupal/context",
  2748. "version": "4.0.0-beta2",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://git.drupal.org/project/context",
  2752. "reference": "8.x-4.0-beta2"
  2753. },
  2754. "dist": {
  2755. "type": "zip",
  2756. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  2757. "reference": "8.x-4.0-beta2",
  2758. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  2759. },
  2760. "require": {
  2761. "drupal/core": "~8.0"
  2762. },
  2763. "type": "drupal-module",
  2764. "extra": {
  2765. "branch-alias": {
  2766. "dev-4.x": "4.x-dev"
  2767. },
  2768. "drupal": {
  2769. "version": "8.x-4.0-beta2",
  2770. "datestamp": "1505378944",
  2771. "security-coverage": {
  2772. "status": "not-covered",
  2773. "message": "Beta releases are not covered by Drupal security advisories."
  2774. }
  2775. }
  2776. },
  2777. "notification-url": "https://packages.drupal.org/8/downloads",
  2778. "license": [
  2779. "MIT"
  2780. ],
  2781. "authors": [
  2782. {
  2783. "name": "Christoffer Palm",
  2784. "homepage": "http://www.oddhill.se/",
  2785. "email": "christoffer.palm@oddhill.se",
  2786. "role": "Developer"
  2787. },
  2788. {
  2789. "name": "Steven Jones",
  2790. "homepage": "https://www.drupal.org/user/99644"
  2791. },
  2792. {
  2793. "name": "alex_b",
  2794. "homepage": "https://www.drupal.org/user/53995"
  2795. },
  2796. {
  2797. "name": "boshtian",
  2798. "homepage": "https://www.drupal.org/user/1773456"
  2799. },
  2800. {
  2801. "name": "colan",
  2802. "homepage": "https://www.drupal.org/user/58704"
  2803. },
  2804. {
  2805. "name": "emanaton",
  2806. "homepage": "https://www.drupal.org/user/120853"
  2807. },
  2808. {
  2809. "name": "febbraro",
  2810. "homepage": "https://www.drupal.org/user/43670"
  2811. },
  2812. {
  2813. "name": "fizk",
  2814. "homepage": "https://www.drupal.org/user/473174"
  2815. },
  2816. {
  2817. "name": "hass",
  2818. "homepage": "https://www.drupal.org/user/85918"
  2819. },
  2820. {
  2821. "name": "hefox",
  2822. "homepage": "https://www.drupal.org/user/426416"
  2823. },
  2824. {
  2825. "name": "hyrcan",
  2826. "homepage": "https://www.drupal.org/user/26618"
  2827. },
  2828. {
  2829. "name": "jmiccolis",
  2830. "homepage": "https://www.drupal.org/user/31731"
  2831. },
  2832. {
  2833. "name": "tekante",
  2834. "homepage": "https://www.drupal.org/user/640024"
  2835. },
  2836. {
  2837. "name": "yhahn",
  2838. "homepage": "https://www.drupal.org/user/264833"
  2839. }
  2840. ],
  2841. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2842. "homepage": "https://github.com/oddhill/context",
  2843. "keywords": [
  2844. "Drupal",
  2845. "block",
  2846. "conditions",
  2847. "context",
  2848. "visibility"
  2849. ],
  2850. "support": {
  2851. "source": "https://github.com/oddhill/context",
  2852. "issues": "https://github.com/oddhill/context/issues",
  2853. "docs": "https://github.com/oddhill/context"
  2854. }
  2855. },
  2856. {
  2857. "name": "drupal/ctools",
  2858. "version": "3.0.0",
  2859. "source": {
  2860. "type": "git",
  2861. "url": "https://git.drupal.org/project/ctools",
  2862. "reference": "8.x-3.0"
  2863. },
  2864. "dist": {
  2865. "type": "zip",
  2866. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip",
  2867. "reference": "8.x-3.0",
  2868. "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
  2869. },
  2870. "require": {
  2871. "drupal/core": "~8.0"
  2872. },
  2873. "type": "drupal-module",
  2874. "extra": {
  2875. "branch-alias": {
  2876. "dev-3.x": "3.x-dev"
  2877. },
  2878. "drupal": {
  2879. "version": "8.x-3.0",
  2880. "datestamp": "1493401742",
  2881. "security-coverage": {
  2882. "status": "covered",
  2883. "message": "Covered by Drupal's security advisory policy"
  2884. }
  2885. }
  2886. },
  2887. "notification-url": "https://packages.drupal.org/8/downloads",
  2888. "license": [
  2889. "GPL-2.0+"
  2890. ],
  2891. "authors": [
  2892. {
  2893. "name": "Kris Vanderwater (EclipseGc)",
  2894. "homepage": "https://www.drupal.org/u/eclipsegc",
  2895. "role": "Maintainer"
  2896. },
  2897. {
  2898. "name": "Jakob Perry (japerry)",
  2899. "homepage": "https://www.drupal.org/u/japerry",
  2900. "role": "Maintainer"
  2901. },
  2902. {
  2903. "name": "Tim Plunkett (tim.plunkett)",
  2904. "homepage": "https://www.drupal.org/u/timplunkett",
  2905. "role": "Maintainer"
  2906. },
  2907. {
  2908. "name": "James Gilliland (neclimdul)",
  2909. "homepage": "https://www.drupal.org/u/neclimdul",
  2910. "role": "Maintainer"
  2911. },
  2912. {
  2913. "name": "Daniel Wehner (dawehner)",
  2914. "homepage": "https://www.drupal.org/u/dawehner",
  2915. "role": "Maintainer"
  2916. },
  2917. {
  2918. "name": "joelpittet",
  2919. "homepage": "https://www.drupal.org/user/160302"
  2920. },
  2921. {
  2922. "name": "merlinofchaos",
  2923. "homepage": "https://www.drupal.org/user/26979"
  2924. },
  2925. {
  2926. "name": "neclimdul",
  2927. "homepage": "https://www.drupal.org/user/48673"
  2928. },
  2929. {
  2930. "name": "sdboyer",
  2931. "homepage": "https://www.drupal.org/user/146719"
  2932. },
  2933. {
  2934. "name": "sun",
  2935. "homepage": "https://www.drupal.org/user/54136"
  2936. },
  2937. {
  2938. "name": "tim.plunkett",
  2939. "homepage": "https://www.drupal.org/user/241634"
  2940. }
  2941. ],
  2942. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2943. "homepage": "https://www.drupal.org/project/ctools",
  2944. "support": {
  2945. "source": "http://cgit.drupalcode.org/ctools",
  2946. "issues": "https://www.drupal.org/project/issues/ctools"
  2947. }
  2948. },
  2949. {
  2950. "name": "drupal/date_range_formatter",
  2951. "version": "3.1.0",
  2952. "source": {
  2953. "type": "git",
  2954. "url": "https://git.drupal.org/project/date_range_formatter",
  2955. "reference": "8.x-3.1"
  2956. },
  2957. "dist": {
  2958. "type": "zip",
  2959. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  2960. "reference": "8.x-3.1",
  2961. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  2962. },
  2963. "require": {
  2964. "drupal/core": "*"
  2965. },
  2966. "type": "drupal-module",
  2967. "extra": {
  2968. "branch-alias": {
  2969. "dev-3.x": "3.x-dev"
  2970. },
  2971. "drupal": {
  2972. "version": "8.x-3.1",
  2973. "datestamp": "1502454544",
  2974. "security-coverage": {
  2975. "status": "covered",
  2976. "message": "Covered by Drupal's security advisory policy"
  2977. }
  2978. }
  2979. },
  2980. "notification-url": "https://packages.drupal.org/8/downloads",
  2981. "license": [
  2982. "GPL-2.0-or-later"
  2983. ],
  2984. "authors": [
  2985. {
  2986. "name": "Sudishth",
  2987. "homepage": "https://www.drupal.org/user/1440562"
  2988. },
  2989. {
  2990. "name": "maximpodorov",
  2991. "homepage": "https://www.drupal.org/user/515310"
  2992. }
  2993. ],
  2994. "description": "Formats date ranges.",
  2995. "homepage": "https://www.drupal.org/project/date_range_formatter",
  2996. "support": {
  2997. "source": "http://cgit.drupalcode.org/date_range_formatter"
  2998. }
  2999. },
  3000. {
  3001. "name": "drupal/devel",
  3002. "version": "1.2.0",
  3003. "source": {
  3004. "type": "git",
  3005. "url": "https://git.drupal.org/project/devel",
  3006. "reference": "8.x-1.2"
  3007. },
  3008. "dist": {
  3009. "type": "zip",
  3010. "url": "https://ftp.drupal.org/files/projects/devel-8.x-1.2.zip",
  3011. "reference": "8.x-1.2",
  3012. "shasum": "01f3349ef75f6e21fceef24be9d3d6506ca29647"
  3013. },
  3014. "require": {
  3015. "drupal/core": "~8.0"
  3016. },
  3017. "suggest": {
  3018. "symfony/var-dumper": "Pretty print complex values better with var-dumper available"
  3019. },
  3020. "type": "drupal-module",
  3021. "extra": {
  3022. "branch-alias": {
  3023. "dev-1.x": "1.x-dev"
  3024. },
  3025. "drupal": {
  3026. "version": "8.x-1.2",
  3027. "datestamp": "1507197844",
  3028. "security-coverage": {
  3029. "status": "covered",
  3030. "message": "Covered by Drupal's security advisory policy"
  3031. }
  3032. }
  3033. },
  3034. "notification-url": "https://packages.drupal.org/8/downloads",
  3035. "license": [
  3036. "GPL-2.0+"
  3037. ],
  3038. "authors": [
  3039. {
  3040. "name": "Moshe Weitzman",
  3041. "homepage": "https://github.com/weitzman",
  3042. "email": "weitzman@tejasa.com",
  3043. "role": "Maintainer"
  3044. },
  3045. {
  3046. "name": "Hans Salvisberg",
  3047. "homepage": "https://www.drupal.org/u/salvis",
  3048. "email": "drupal@salvisberg.com",
  3049. "role": "Maintainer"
  3050. },
  3051. {
  3052. "name": "Luca Lusso",
  3053. "homepage": "https://www.drupal.org/u/lussoluca",
  3054. "role": "Maintainer"
  3055. },
  3056. {
  3057. "name": "Marco (willzyx)",
  3058. "homepage": "https://www.drupal.org/u/willzyx",
  3059. "role": "Maintainer"
  3060. },
  3061. {
  3062. "name": "See contributors",
  3063. "homepage": "https://www.drupal.org/node/3236/committers"
  3064. },
  3065. {
  3066. "name": "salvis",
  3067. "homepage": "https://www.drupal.org/user/82964"
  3068. },
  3069. {
  3070. "name": "willzyx",
  3071. "homepage": "https://www.drupal.org/user/1043862"
  3072. }
  3073. ],
  3074. "description": "Various blocks, pages, and functions for developers.",
  3075. "homepage": "http://drupal.org/project/devel",
  3076. "support": {
  3077. "source": "http://cgit.drupalcode.org/devel",
  3078. "issues": "http://drupal.org/project/devel",
  3079. "irc": "irc://irc.freenode.org/drupal-contribute"
  3080. }
  3081. },
  3082. {
  3083. "name": "drupal/devel_generate",
  3084. "version": "1.2.0",
  3085. "require": {
  3086. "drupal/core": "~8.0",
  3087. "drupal/devel": "self.version"
  3088. },
  3089. "type": "metapackage",
  3090. "extra": {
  3091. "branch-alias": {
  3092. "dev-1.x": "1.x-dev"
  3093. },
  3094. "drupal": {
  3095. "version": "8.x-1.2",
  3096. "datestamp": "1507197844",
  3097. "security-coverage": {
  3098. "status": "covered",
  3099. "message": "Covered by Drupal's security advisory policy"
  3100. }
  3101. }
  3102. },
  3103. "notification-url": "https://packages.drupal.org/8/downloads",
  3104. "license": [
  3105. "GPL-2.0-or-later"
  3106. ],
  3107. "authors": [
  3108. {
  3109. "name": "catch",
  3110. "homepage": "https://www.drupal.org/user/35733"
  3111. },
  3112. {
  3113. "name": "juampynr",
  3114. "homepage": "https://www.drupal.org/user/682736"
  3115. },
  3116. {
  3117. "name": "lussoluca",
  3118. "homepage": "https://www.drupal.org/user/138068"
  3119. },
  3120. {
  3121. "name": "moshe weitzman",
  3122. "homepage": "https://www.drupal.org/user/23"
  3123. },
  3124. {
  3125. "name": "pcambra",
  3126. "homepage": "https://www.drupal.org/user/122101"
  3127. },
  3128. {
  3129. "name": "salvis",
  3130. "homepage": "https://www.drupal.org/user/82964"
  3131. },
  3132. {
  3133. "name": "willzyx",
  3134. "homepage": "https://www.drupal.org/user/1043862"
  3135. }
  3136. ],
  3137. "description": "Generate dummy users, nodes, menus, taxonomy terms...",
  3138. "homepage": "https://www.drupal.org/project/devel",
  3139. "support": {
  3140. "source": "http://cgit.drupalcode.org/devel"
  3141. }
  3142. },
  3143. {
  3144. "name": "drupal/domain",
  3145. "version": "1.0.0-alpha14",
  3146. "source": {
  3147. "type": "git",
  3148. "url": "https://git.drupal.org/project/domain",
  3149. "reference": "8.x-1.0-alpha14"
  3150. },
  3151. "dist": {
  3152. "type": "zip",
  3153. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha14.zip",
  3154. "reference": "8.x-1.0-alpha14",
  3155. "shasum": "9889669ee19ae07fc44ab3bbe6fd7049e1317499"
  3156. },
  3157. "require": {
  3158. "drupal/core": "^8.5"
  3159. },
  3160. "require-dev": {
  3161. "drupal/domain_access": "*"
  3162. },
  3163. "type": "drupal-module",
  3164. "extra": {
  3165. "branch-alias": {
  3166. "dev-1.x": "1.x-dev"
  3167. },
  3168. "drupal": {
  3169. "version": "8.x-1.0-alpha14",
  3170. "datestamp": "1539981780",
  3171. "security-coverage": {
  3172. "status": "not-covered",
  3173. "message": "Alpha releases are not covered by Drupal security advisories."
  3174. }
  3175. }
  3176. },
  3177. "notification-url": "https://packages.drupal.org/8/downloads",
  3178. "license": [
  3179. "GPL-2.0-or-later"
  3180. ],
  3181. "authors": [
  3182. {
  3183. "name": "agentrickard",
  3184. "homepage": "https://www.drupal.org/user/20975"
  3185. },
  3186. {
  3187. "name": "nonsie",
  3188. "homepage": "https://www.drupal.org/user/29899"
  3189. }
  3190. ],
  3191. "description": "Creates domain records within a Drupal installation.",
  3192. "homepage": "https://www.drupal.org/project/domain",
  3193. "support": {
  3194. "source": "http://cgit.drupalcode.org/domain"
  3195. }
  3196. },
  3197. {
  3198. "name": "drupal/domain_alias",
  3199. "version": "1.0.0-alpha14",
  3200. "require": {
  3201. "drupal/core": "~8.0",
  3202. "drupal/domain": "self.version"
  3203. },
  3204. "type": "metapackage",
  3205. "extra": {
  3206. "branch-alias": {
  3207. "dev-1.x": "1.x-dev"
  3208. },
  3209. "drupal": {
  3210. "version": "8.x-1.0-alpha14",
  3211. "datestamp": "1539981780",
  3212. "security-coverage": {
  3213. "status": "not-covered",
  3214. "message": "Alpha releases are not covered by Drupal security advisories."
  3215. }
  3216. }
  3217. },
  3218. "notification-url": "https://packages.drupal.org/8/downloads",
  3219. "license": [
  3220. "GPL-2.0-or-later"
  3221. ],
  3222. "authors": [
  3223. {
  3224. "name": "agentrickard",
  3225. "homepage": "https://www.drupal.org/user/20975"
  3226. },
  3227. {
  3228. "name": "nonsie",
  3229. "homepage": "https://www.drupal.org/user/29899"
  3230. }
  3231. ],
  3232. "description": "Maps multiple host requests to a single domain record.",
  3233. "homepage": "https://www.drupal.org/project/domain",
  3234. "support": {
  3235. "source": "http://cgit.drupalcode.org/domain"
  3236. }
  3237. },
  3238. {
  3239. "name": "drupal/domain_config",
  3240. "version": "1.0.0-alpha14",
  3241. "require": {
  3242. "drupal/core": "~8.0",
  3243. "drupal/domain": "self.version"
  3244. },
  3245. "type": "metapackage",
  3246. "extra": {
  3247. "branch-alias": {
  3248. "dev-1.x": "1.x-dev"
  3249. },
  3250. "drupal": {
  3251. "version": "8.x-1.0-alpha14",
  3252. "datestamp": "1539981780",
  3253. "security-coverage": {
  3254. "status": "not-covered",
  3255. "message": "Alpha releases are not covered by Drupal security advisories."
  3256. }
  3257. }
  3258. },
  3259. "notification-url": "https://packages.drupal.org/8/downloads",
  3260. "license": [
  3261. "GPL-2.0-or-later"
  3262. ],
  3263. "authors": [
  3264. {
  3265. "name": "agentrickard",
  3266. "homepage": "https://www.drupal.org/user/20975"
  3267. },
  3268. {
  3269. "name": "nonsie",
  3270. "homepage": "https://www.drupal.org/user/29899"
  3271. }
  3272. ],
  3273. "description": "Allows domain specific configuration.",
  3274. "homepage": "https://www.drupal.org/project/domain",
  3275. "support": {
  3276. "source": "http://cgit.drupalcode.org/domain"
  3277. }
  3278. },
  3279. {
  3280. "name": "drupal/domain_site_settings",
  3281. "version": "1.3.0",
  3282. "source": {
  3283. "type": "git",
  3284. "url": "https://git.drupal.org/project/domain_site_settings",
  3285. "reference": "8.x-1.3"
  3286. },
  3287. "dist": {
  3288. "type": "zip",
  3289. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3290. "reference": "8.x-1.3",
  3291. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3292. },
  3293. "require": {
  3294. "drupal/core": "~8.0",
  3295. "drupal/domain": "*",
  3296. "drupal/domain_config": "*"
  3297. },
  3298. "type": "drupal-module",
  3299. "extra": {
  3300. "branch-alias": {
  3301. "dev-1.x": "1.x-dev"
  3302. },
  3303. "drupal": {
  3304. "version": "8.x-1.3",
  3305. "datestamp": "1537684980",
  3306. "security-coverage": {
  3307. "status": "covered",
  3308. "message": "Covered by Drupal's security advisory policy"
  3309. }
  3310. }
  3311. },
  3312. "notification-url": "https://packages.drupal.org/8/downloads",
  3313. "license": [
  3314. "GPL-2.0+"
  3315. ],
  3316. "authors": [
  3317. {
  3318. "name": "aloknarwaria",
  3319. "homepage": "https://www.drupal.org/user/906640"
  3320. }
  3321. ],
  3322. "description": "Basic Site Setting for Domains.",
  3323. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3324. "keywords": [
  3325. "Drupal"
  3326. ],
  3327. "support": {
  3328. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3329. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3330. }
  3331. },
  3332. {
  3333. "name": "drupal/email_registration",
  3334. "version": "1.0.0-rc5",
  3335. "source": {
  3336. "type": "git",
  3337. "url": "https://git.drupal.org/project/email_registration",
  3338. "reference": "8.x-1.0-rc5"
  3339. },
  3340. "dist": {
  3341. "type": "zip",
  3342. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc5.zip",
  3343. "reference": "8.x-1.0-rc5",
  3344. "shasum": "8e068ad37077bb3937150155ce13617d98b9b6b1"
  3345. },
  3346. "require": {
  3347. "drupal/core": "*"
  3348. },
  3349. "type": "drupal-module",
  3350. "extra": {
  3351. "branch-alias": {
  3352. "dev-1.x": "1.x-dev"
  3353. },
  3354. "drupal": {
  3355. "version": "8.x-1.0-rc5",
  3356. "datestamp": "1491318182",
  3357. "security-coverage": {
  3358. "status": "not-covered",
  3359. "message": "RC releases are not covered by Drupal security advisories."
  3360. }
  3361. }
  3362. },
  3363. "notification-url": "https://packages.drupal.org/8/downloads",
  3364. "license": [
  3365. "GPL-2.0-or-later"
  3366. ],
  3367. "authors": [
  3368. {
  3369. "name": "Chris Herberte",
  3370. "homepage": "https://www.drupal.org/user/1171"
  3371. },
  3372. {
  3373. "name": "andypost",
  3374. "homepage": "https://www.drupal.org/user/118908"
  3375. },
  3376. {
  3377. "name": "greggles",
  3378. "homepage": "https://www.drupal.org/user/36762"
  3379. },
  3380. {
  3381. "name": "moshe weitzman",
  3382. "homepage": "https://www.drupal.org/user/23"
  3383. }
  3384. ],
  3385. "description": "Allows users to register with an e-mail address as their username.",
  3386. "homepage": "https://www.drupal.org/project/email_registration",
  3387. "support": {
  3388. "source": "http://cgit.drupalcode.org/email_registration"
  3389. }
  3390. },
  3391. {
  3392. "name": "drupal/embed",
  3393. "version": "1.0.0",
  3394. "source": {
  3395. "type": "git",
  3396. "url": "https://git.drupal.org/project/embed",
  3397. "reference": "8.x-1.0"
  3398. },
  3399. "dist": {
  3400. "type": "zip",
  3401. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip",
  3402. "reference": "8.x-1.0",
  3403. "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a"
  3404. },
  3405. "require": {
  3406. "drupal/core": "~8.0"
  3407. },
  3408. "type": "drupal-module",
  3409. "extra": {
  3410. "branch-alias": {
  3411. "dev-1.x": "1.x-dev"
  3412. },
  3413. "drupal": {
  3414. "version": "8.x-1.0",
  3415. "datestamp": "1490755685",
  3416. "security-coverage": {
  3417. "status": "covered",
  3418. "message": "Covered by Drupal's security advisory policy"
  3419. }
  3420. }
  3421. },
  3422. "notification-url": "https://packages.drupal.org/8/downloads",
  3423. "license": [
  3424. "GPL-2.0+"
  3425. ],
  3426. "authors": [
  3427. {
  3428. "name": "Dave Reid",
  3429. "homepage": "https://www.drupal.org/user/53892"
  3430. },
  3431. {
  3432. "name": "Devin Carlson",
  3433. "homepage": "https://www.drupal.org/user/290182"
  3434. },
  3435. {
  3436. "name": "Drupal Media Team",
  3437. "homepage": "https://www.drupal.org/user/3260690"
  3438. },
  3439. {
  3440. "name": "cs_shadow",
  3441. "homepage": "https://www.drupal.org/user/2828287"
  3442. },
  3443. {
  3444. "name": "slashrsm",
  3445. "homepage": "https://www.drupal.org/user/744628"
  3446. }
  3447. ],
  3448. "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.",
  3449. "homepage": "https://www.drupal.org/project/embed",
  3450. "support": {
  3451. "source": "http://cgit.drupalcode.org/embed",
  3452. "issues": "https://www.drupal.org/project/issues/embed",
  3453. "irc": "irc://irc.freenode.org/drupal-media"
  3454. }
  3455. },
  3456. {
  3457. "name": "drupal/entity",
  3458. "version": "1.0.0-rc1",
  3459. "source": {
  3460. "type": "git",
  3461. "url": "https://git.drupal.org/project/entity",
  3462. "reference": "8.x-1.0-rc1"
  3463. },
  3464. "dist": {
  3465. "type": "zip",
  3466. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc1.zip",
  3467. "reference": "8.x-1.0-rc1",
  3468. "shasum": "f2dcd7afd0d36b6f261b10a204057a5c801ad20b"
  3469. },
  3470. "require": {
  3471. "drupal/core": "^8.6"
  3472. },
  3473. "type": "drupal-module",
  3474. "extra": {
  3475. "branch-alias": {
  3476. "dev-1.x": "1.x-dev"
  3477. },
  3478. "drupal": {
  3479. "version": "8.x-1.0-rc1",
  3480. "datestamp": "1539272769",
  3481. "security-coverage": {
  3482. "status": "not-covered",
  3483. "message": "RC releases are not covered by Drupal security advisories."
  3484. }
  3485. }
  3486. },
  3487. "notification-url": "https://packages.drupal.org/8/downloads",
  3488. "license": [
  3489. "GPL-2.0+"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Berdir",
  3494. "homepage": "https://www.drupal.org/user/214652"
  3495. },
  3496. {
  3497. "name": "bojanz",
  3498. "homepage": "https://www.drupal.org/user/86106"
  3499. },
  3500. {
  3501. "name": "dawehner",
  3502. "homepage": "https://www.drupal.org/user/99340"
  3503. },
  3504. {
  3505. "name": "dixon_",
  3506. "homepage": "https://www.drupal.org/user/239911"
  3507. },
  3508. {
  3509. "name": "fago",
  3510. "homepage": "https://www.drupal.org/user/16747"
  3511. }
  3512. ],
  3513. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3514. "homepage": "http://drupal.org/project/entity",
  3515. "support": {
  3516. "source": "http://cgit.drupalcode.org/entity"
  3517. }
  3518. },
  3519. {
  3520. "name": "drupal/entity_browser",
  3521. "version": "2.0.0",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://git.drupal.org/project/entity_browser",
  3525. "reference": "8.x-2.0"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0.zip",
  3530. "reference": "8.x-2.0",
  3531. "shasum": "683a7a252c947433c7b78bb838d6d8973c13cf77"
  3532. },
  3533. "require": {
  3534. "drupal/core": "~8.0"
  3535. },
  3536. "require-dev": {
  3537. "drupal/ctools": "*",
  3538. "drupal/inline_entity_form": "*",
  3539. "drupal/paragraphs": "*",
  3540. "drupal/token": "*"
  3541. },
  3542. "type": "drupal-module",
  3543. "extra": {
  3544. "branch-alias": {
  3545. "dev-2.x": "2.x-dev",
  3546. "dev-8.x-1.x": "8.1.x-dev"
  3547. },
  3548. "drupal": {
  3549. "version": "8.x-2.0",
  3550. "datestamp": "1536328684",
  3551. "security-coverage": {
  3552. "status": "covered",
  3553. "message": "Covered by Drupal's security advisory policy"
  3554. }
  3555. }
  3556. },
  3557. "notification-url": "https://packages.drupal.org/8/downloads",
  3558. "license": [
  3559. "GPL-2.0+"
  3560. ],
  3561. "authors": [
  3562. {
  3563. "name": "Janez Urevc",
  3564. "homepage": "https://github.com/slashrsm",
  3565. "role": "Maintainer"
  3566. },
  3567. {
  3568. "name": "Primoz Hmeljak",
  3569. "homepage": "https://github.com/primsi",
  3570. "role": "Maintainer"
  3571. },
  3572. {
  3573. "name": "See other contributors",
  3574. "homepage": "https://www.drupal.org/node/1943336/committers",
  3575. "role": "contributor"
  3576. },
  3577. {
  3578. "name": "Primsi",
  3579. "homepage": "https://www.drupal.org/user/282629"
  3580. },
  3581. {
  3582. "name": "marcingy",
  3583. "homepage": "https://www.drupal.org/user/77320"
  3584. },
  3585. {
  3586. "name": "samuel.mortenson",
  3587. "homepage": "https://www.drupal.org/user/2582268"
  3588. },
  3589. {
  3590. "name": "slashrsm",
  3591. "homepage": "https://www.drupal.org/user/744628"
  3592. }
  3593. ],
  3594. "description": "Entity browsing and selecting component.",
  3595. "homepage": "http://drupal.org/project/entity_browser",
  3596. "support": {
  3597. "source": "http://cgit.drupalcode.org/entity_browser",
  3598. "issues": "http://drupal.org/project/issues/entity_browser",
  3599. "irc": "irc://irc.freenode.org/drupal-contribute"
  3600. }
  3601. },
  3602. {
  3603. "name": "drupal/entity_browser_enhanced",
  3604. "version": "1.0.0-rc3",
  3605. "source": {
  3606. "type": "git",
  3607. "url": "https://git.drupal.org/project/entity_browser_enhanced",
  3608. "reference": "8.x-1.0-rc3"
  3609. },
  3610. "dist": {
  3611. "type": "zip",
  3612. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0-rc3.zip",
  3613. "reference": "8.x-1.0-rc3",
  3614. "shasum": "041a93dac5ec9f74a8834faee60995c4db7d1e65"
  3615. },
  3616. "require": {
  3617. "drupal/core": "~8.0",
  3618. "drupal/entity_browser": "*"
  3619. },
  3620. "type": "drupal-module",
  3621. "extra": {
  3622. "branch-alias": {
  3623. "dev-1.x": "1.x-dev",
  3624. "dev-8.x-1.x": "8.1.x-dev"
  3625. },
  3626. "drupal": {
  3627. "version": "8.x-1.0-rc3",
  3628. "datestamp": "1528884525",
  3629. "security-coverage": {
  3630. "status": "not-covered",
  3631. "message": "RC releases are not covered by Drupal security advisories."
  3632. }
  3633. }
  3634. },
  3635. "notification-url": "https://packages.drupal.org/8/downloads",
  3636. "license": [
  3637. "GPL-2.0-or-later"
  3638. ],
  3639. "authors": [
  3640. {
  3641. "name": "Vardot",
  3642. "homepage": "https://www.drupal.org/vardot",
  3643. "role": "Maintainer"
  3644. },
  3645. {
  3646. "name": "RajabNatshah",
  3647. "homepage": "https://www.drupal.org/user/1414312"
  3648. }
  3649. ],
  3650. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  3651. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  3652. "support": {
  3653. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  3654. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  3655. }
  3656. },
  3657. {
  3658. "name": "drupal/entity_clone",
  3659. "version": "1.0.0-alpha2",
  3660. "source": {
  3661. "type": "git",
  3662. "url": "https://git.drupal.org/project/entity_clone",
  3663. "reference": "8.x-1.0-alpha2"
  3664. },
  3665. "dist": {
  3666. "type": "zip",
  3667. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-alpha2.zip",
  3668. "reference": "8.x-1.0-alpha2",
  3669. "shasum": "55a533e56853b78f949796040ee68881a68917b5"
  3670. },
  3671. "require": {
  3672. "drupal/core": "~8.0"
  3673. },
  3674. "type": "drupal-module",
  3675. "extra": {
  3676. "branch-alias": {
  3677. "dev-1.x": "1.x-dev"
  3678. },
  3679. "drupal": {
  3680. "version": "8.x-1.0-alpha2",
  3681. "datestamp": "1513145285",
  3682. "security-coverage": {
  3683. "status": "not-covered",
  3684. "message": "Alpha releases are not covered by Drupal security advisories."
  3685. }
  3686. }
  3687. },
  3688. "notification-url": "https://packages.drupal.org/8/downloads",
  3689. "license": [
  3690. "GPL-2.0-or-later"
  3691. ],
  3692. "authors": [
  3693. {
  3694. "name": "vpeltot",
  3695. "homepage": "https://www.drupal.org/user/1361586"
  3696. }
  3697. ],
  3698. "description": "Add a clone action for all entities",
  3699. "homepage": "https://www.drupal.org/project/entity_clone",
  3700. "support": {
  3701. "source": "http://cgit.drupalcode.org/entity_clone"
  3702. }
  3703. },
  3704. {
  3705. "name": "drupal/examples",
  3706. "version": "dev-1.x",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://git.drupal.org/project/examples",
  3710. "reference": "0be75808520a7c921ad7c87ac1cc87d716f5dc51"
  3711. },
  3712. "require": {
  3713. "drupal/core": "*"
  3714. },
  3715. "require-dev": {
  3716. "drupal/stream_wrapper_example": "*"
  3717. },
  3718. "suggest": {
  3719. "drupal/devel": "Some modules will be able to pretty-print PHP with this module."
  3720. },
  3721. "type": "drupal-module",
  3722. "extra": {
  3723. "branch-alias": {
  3724. "dev-1.x": "1.x-dev"
  3725. },
  3726. "drupal": {
  3727. "version": "8.x-1.x-dev",
  3728. "datestamp": "1536200285",
  3729. "security-coverage": {
  3730. "status": "not-covered",
  3731. "message": "Project has not opted into security advisory coverage!"
  3732. }
  3733. }
  3734. },
  3735. "notification-url": "https://packages.drupal.org/8/downloads",
  3736. "license": [
  3737. "GPL-2.0+"
  3738. ],
  3739. "authors": [
  3740. {
  3741. "name": "Dave Reid",
  3742. "homepage": "https://www.drupal.org/user/53892"
  3743. },
  3744. {
  3745. "name": "Itangalo",
  3746. "homepage": "https://www.drupal.org/user/153998"
  3747. },
  3748. {
  3749. "name": "Mile23",
  3750. "homepage": "https://www.drupal.org/user/116231"
  3751. },
  3752. {
  3753. "name": "Torenware",
  3754. "homepage": "https://www.drupal.org/user/18784"
  3755. },
  3756. {
  3757. "name": "add1sun",
  3758. "homepage": "https://www.drupal.org/user/65088"
  3759. },
  3760. {
  3761. "name": "cyberswat",
  3762. "homepage": "https://www.drupal.org/user/27802"
  3763. },
  3764. {
  3765. "name": "ilo",
  3766. "homepage": "https://www.drupal.org/user/118449"
  3767. },
  3768. {
  3769. "name": "jhodgdon",
  3770. "homepage": "https://www.drupal.org/user/155601"
  3771. },
  3772. {
  3773. "name": "jn2",
  3774. "homepage": "https://www.drupal.org/user/1001014"
  3775. },
  3776. {
  3777. "name": "katbailey",
  3778. "homepage": "https://www.drupal.org/user/172987"
  3779. },
  3780. {
  3781. "name": "linclark",
  3782. "homepage": "https://www.drupal.org/user/396253"
  3783. },
  3784. {
  3785. "name": "marvil07",
  3786. "homepage": "https://www.drupal.org/user/132175"
  3787. },
  3788. {
  3789. "name": "mikl",
  3790. "homepage": "https://www.drupal.org/user/58679"
  3791. },
  3792. {
  3793. "name": "rfay",
  3794. "homepage": "https://www.drupal.org/user/30906"
  3795. },
  3796. {
  3797. "name": "socketwench",
  3798. "homepage": "https://www.drupal.org/user/65793"
  3799. },
  3800. {
  3801. "name": "yched",
  3802. "homepage": "https://www.drupal.org/user/39567"
  3803. }
  3804. ],
  3805. "description": "The Examples for Developers project aims to provide high-quality, well-documented API examples for a broad range of Drupal core functionality.",
  3806. "homepage": "https://www.drupal.org/project/examples",
  3807. "support": {
  3808. "source": "http://cgit.drupalcode.org/examples",
  3809. "issues": "https://www.drupal.org/project/issues/examples",
  3810. "documentation": "https://api.drupal.org/api/examples"
  3811. },
  3812. "time": "2018-09-10T23:01:03+00:00"
  3813. },
  3814. {
  3815. "name": "drupal/extlink",
  3816. "version": "1.1.0",
  3817. "source": {
  3818. "type": "git",
  3819. "url": "https://git.drupal.org/project/extlink",
  3820. "reference": "8.x-1.1"
  3821. },
  3822. "dist": {
  3823. "type": "zip",
  3824. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.1.zip",
  3825. "reference": "8.x-1.1",
  3826. "shasum": "0894f1cd12e2e1aa6b00ea4a6dd5e7234eb2b2b2"
  3827. },
  3828. "require": {
  3829. "drupal/core": "~8.0"
  3830. },
  3831. "type": "drupal-module",
  3832. "extra": {
  3833. "branch-alias": {
  3834. "dev-1.x": "1.x-dev"
  3835. },
  3836. "drupal": {
  3837. "version": "8.x-1.1",
  3838. "datestamp": "1524232684",
  3839. "security-coverage": {
  3840. "status": "covered",
  3841. "message": "Covered by Drupal's security advisory policy"
  3842. }
  3843. }
  3844. },
  3845. "notification-url": "https://packages.drupal.org/8/downloads",
  3846. "license": [
  3847. "GPL-2.0-or-later"
  3848. ],
  3849. "authors": [
  3850. {
  3851. "name": "elachlan",
  3852. "homepage": "https://www.drupal.org/user/1021502"
  3853. },
  3854. {
  3855. "name": "jjeff",
  3856. "homepage": "https://www.drupal.org/user/17190"
  3857. },
  3858. {
  3859. "name": "quicksketch",
  3860. "homepage": "https://www.drupal.org/user/35821"
  3861. }
  3862. ],
  3863. "description": "Modify behavior and appearance of external links.",
  3864. "homepage": "https://www.drupal.org/project/extlink",
  3865. "support": {
  3866. "source": "http://cgit.drupalcode.org/extlink"
  3867. }
  3868. },
  3869. {
  3870. "name": "drupal/field_group",
  3871. "version": "1.0.0",
  3872. "source": {
  3873. "type": "git",
  3874. "url": "https://git.drupal.org/project/field_group",
  3875. "reference": "8.x-1.0"
  3876. },
  3877. "dist": {
  3878. "type": "zip",
  3879. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-1.0.zip",
  3880. "reference": "8.x-1.0",
  3881. "shasum": "e8aa3fae5c3c5dec84644bb577996938d638a611"
  3882. },
  3883. "require": {
  3884. "drupal/core": "*"
  3885. },
  3886. "type": "drupal-module",
  3887. "extra": {
  3888. "branch-alias": {
  3889. "dev-1.x": "1.x-dev"
  3890. },
  3891. "drupal": {
  3892. "version": "8.x-1.0",
  3893. "datestamp": "1510352885",
  3894. "security-coverage": {
  3895. "status": "covered",
  3896. "message": "Covered by Drupal's security advisory policy"
  3897. }
  3898. }
  3899. },
  3900. "notification-url": "https://packages.drupal.org/8/downloads",
  3901. "license": [
  3902. "GPL-2.0+"
  3903. ],
  3904. "authors": [
  3905. {
  3906. "name": "Hydra",
  3907. "homepage": "https://www.drupal.org/user/647364"
  3908. },
  3909. {
  3910. "name": "Stalski",
  3911. "homepage": "https://www.drupal.org/user/322618"
  3912. },
  3913. {
  3914. "name": "jyve",
  3915. "homepage": "https://www.drupal.org/user/591438"
  3916. },
  3917. {
  3918. "name": "swentel",
  3919. "homepage": "https://www.drupal.org/user/107403"
  3920. },
  3921. {
  3922. "name": "zuuperman",
  3923. "homepage": "https://www.drupal.org/user/361625"
  3924. }
  3925. ],
  3926. "description": "Provides the field_group module.",
  3927. "homepage": "https://www.drupal.org/project/field_group",
  3928. "support": {
  3929. "source": "http://cgit.drupalcode.org/field_group"
  3930. }
  3931. },
  3932. {
  3933. "name": "drupal/file_mdm",
  3934. "version": "1.1.0",
  3935. "source": {
  3936. "type": "git",
  3937. "url": "https://git.drupal.org/project/file_mdm",
  3938. "reference": "8.x-1.1"
  3939. },
  3940. "dist": {
  3941. "type": "zip",
  3942. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-1.1.zip",
  3943. "reference": "8.x-1.1",
  3944. "shasum": "7f354aec6f89e3141c2aa1fb3747ad5d4578c13f"
  3945. },
  3946. "require": {
  3947. "drupal/core": "~8.0",
  3948. "lsolesen/pel": "0.9.6",
  3949. "phenx/php-font-lib": "0.5",
  3950. "php": ">=5.6"
  3951. },
  3952. "require-dev": {
  3953. "drupal/image_effects": "*"
  3954. },
  3955. "type": "drupal-module",
  3956. "extra": {
  3957. "branch-alias": {
  3958. "dev-1.x": "1.x-dev"
  3959. },
  3960. "drupal": {
  3961. "version": "8.x-1.1",
  3962. "datestamp": "1488273785",
  3963. "security-coverage": {
  3964. "status": "covered",
  3965. "message": "Covered by Drupal's security advisory policy"
  3966. }
  3967. }
  3968. },
  3969. "notification-url": "https://packages.drupal.org/8/downloads",
  3970. "license": [
  3971. "GPL-2.0-or-later"
  3972. ],
  3973. "authors": [
  3974. {
  3975. "name": "mondrake",
  3976. "homepage": "https://www.drupal.org/user/1307444"
  3977. }
  3978. ],
  3979. "description": "Provides a service to manage file metadata.",
  3980. "homepage": "https://www.drupal.org/project/file_mdm",
  3981. "support": {
  3982. "source": "http://cgit.drupalcode.org/file_mdm"
  3983. }
  3984. },
  3985. {
  3986. "name": "drupal/file_mdm_exif",
  3987. "version": "1.1.0",
  3988. "require": {
  3989. "drupal/core": "~8.0",
  3990. "drupal/file_mdm": "self.version"
  3991. },
  3992. "require-dev": {
  3993. "drupal/image_effects": "*"
  3994. },
  3995. "type": "metapackage",
  3996. "extra": {
  3997. "branch-alias": {
  3998. "dev-1.x": "1.x-dev"
  3999. },
  4000. "drupal": {
  4001. "version": "8.x-1.1",
  4002. "datestamp": "1488273785",
  4003. "security-coverage": {
  4004. "status": "covered",
  4005. "message": "Covered by Drupal's security advisory policy"
  4006. }
  4007. }
  4008. },
  4009. "notification-url": "https://packages.drupal.org/8/downloads",
  4010. "license": [
  4011. "GPL-2.0-or-later"
  4012. ],
  4013. "authors": [
  4014. {
  4015. "name": "mondrake",
  4016. "homepage": "https://www.drupal.org/user/1307444"
  4017. }
  4018. ],
  4019. "description": "Provides a file metadata plugin for EXIF image information.",
  4020. "homepage": "https://www.drupal.org/project/file_mdm",
  4021. "support": {
  4022. "source": "http://cgit.drupalcode.org/file_mdm"
  4023. }
  4024. },
  4025. {
  4026. "name": "drupal/filefield_sources",
  4027. "version": "dev-1.x",
  4028. "source": {
  4029. "type": "git",
  4030. "url": "https://git.drupal.org/project/filefield_sources",
  4031. "reference": "b19c6a839804f47587828d4a50e29e0720fa4c08"
  4032. },
  4033. "require": {
  4034. "drupal/core": "*"
  4035. },
  4036. "type": "drupal-module",
  4037. "extra": {
  4038. "branch-alias": {
  4039. "dev-1.x": "1.x-dev"
  4040. },
  4041. "drupal": {
  4042. "version": "8.x-1.x-dev",
  4043. "datestamp": "1487711283",
  4044. "security-coverage": {
  4045. "status": "not-covered",
  4046. "message": "Dev releases are not covered by Drupal security advisories."
  4047. }
  4048. }
  4049. },
  4050. "notification-url": "https://packages.drupal.org/8/downloads",
  4051. "license": [
  4052. "GPL-2.0-or-later"
  4053. ],
  4054. "authors": [
  4055. {
  4056. "name": "profak",
  4057. "homepage": "https://www.drupal.org/user/782534"
  4058. },
  4059. {
  4060. "name": "quicksketch",
  4061. "homepage": "https://www.drupal.org/user/35821"
  4062. }
  4063. ],
  4064. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4065. "homepage": "https://www.drupal.org/project/filefield_sources",
  4066. "support": {
  4067. "source": "http://cgit.drupalcode.org/filefield_sources"
  4068. },
  4069. "time": "2017-02-21T21:07:00+00:00"
  4070. },
  4071. {
  4072. "name": "drupal/filter_perms",
  4073. "version": "dev-1.x",
  4074. "source": {
  4075. "type": "git",
  4076. "url": "https://git.drupal.org/project/filter_perms",
  4077. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4078. },
  4079. "require": {
  4080. "drupal/core": "*"
  4081. },
  4082. "type": "drupal-module",
  4083. "extra": {
  4084. "branch-alias": {
  4085. "dev-1.x": "1.x-dev"
  4086. },
  4087. "drupal": {
  4088. "version": "8.x-1.x-dev",
  4089. "datestamp": "1469645939",
  4090. "security-coverage": {
  4091. "status": "not-covered",
  4092. "message": "Dev releases are not covered by Drupal security advisories."
  4093. }
  4094. }
  4095. },
  4096. "notification-url": "https://packages.drupal.org/8/downloads",
  4097. "license": [
  4098. "GPL-2.0-or-later"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "cYu",
  4103. "homepage": "https://www.drupal.org/user/202205"
  4104. },
  4105. {
  4106. "name": "deekayen",
  4107. "homepage": "https://www.drupal.org/user/972"
  4108. },
  4109. {
  4110. "name": "willzyx",
  4111. "homepage": "https://www.drupal.org/user/1043862"
  4112. }
  4113. ],
  4114. "description": "Provides role and module filters to simplify the user permissions page.",
  4115. "homepage": "https://www.drupal.org/project/filter_perms",
  4116. "support": {
  4117. "source": "http://cgit.drupalcode.org/filter_perms"
  4118. },
  4119. "time": "2016-07-27T19:01:11+00:00"
  4120. },
  4121. {
  4122. "name": "drupal/honeypot",
  4123. "version": "1.29.0",
  4124. "source": {
  4125. "type": "git",
  4126. "url": "https://git.drupal.org/project/honeypot",
  4127. "reference": "8.x-1.29"
  4128. },
  4129. "dist": {
  4130. "type": "zip",
  4131. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4132. "reference": "8.x-1.29",
  4133. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4134. },
  4135. "require": {
  4136. "drupal/core": "~8.0"
  4137. },
  4138. "type": "drupal-module",
  4139. "extra": {
  4140. "branch-alias": {
  4141. "dev-1.x": "1.x-dev"
  4142. },
  4143. "drupal": {
  4144. "version": "8.x-1.29",
  4145. "datestamp": "1536179280",
  4146. "security-coverage": {
  4147. "status": "covered",
  4148. "message": "Covered by Drupal's security advisory policy"
  4149. }
  4150. }
  4151. },
  4152. "notification-url": "https://packages.drupal.org/8/downloads",
  4153. "license": [
  4154. "GPL-2.0+"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "Jeff Geerling",
  4159. "homepage": "https://www.drupal.org/user/389011",
  4160. "email": "geerlingguy@mac.com"
  4161. }
  4162. ],
  4163. "description": "Mitigates spam form submissions using the honeypot method.",
  4164. "homepage": "https://www.drupal.org/project/honeypot",
  4165. "keywords": [
  4166. "deterrent",
  4167. "form",
  4168. "honeypot",
  4169. "honeytrap",
  4170. "php",
  4171. "spam"
  4172. ],
  4173. "support": {
  4174. "source": "http://cgit.drupalcode.org/honeypot"
  4175. }
  4176. },
  4177. {
  4178. "name": "drupal/imagemagick",
  4179. "version": "2.3.0",
  4180. "source": {
  4181. "type": "git",
  4182. "url": "https://git.drupal.org/project/imagemagick",
  4183. "reference": "8.x-2.3"
  4184. },
  4185. "dist": {
  4186. "type": "zip",
  4187. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-2.3.zip",
  4188. "reference": "8.x-2.3",
  4189. "shasum": "8359921d4700e954364c2633332c20579bb75a34"
  4190. },
  4191. "require": {
  4192. "drupal/core": "^8.3",
  4193. "drupal/file_mdm": "^1.1",
  4194. "drupal/file_mdm_exif": "^1.1"
  4195. },
  4196. "type": "drupal-module",
  4197. "extra": {
  4198. "branch-alias": {
  4199. "dev-2.x": "2.x-dev"
  4200. },
  4201. "drupal": {
  4202. "version": "8.x-2.3",
  4203. "datestamp": "1520958305",
  4204. "security-coverage": {
  4205. "status": "covered",
  4206. "message": "Covered by Drupal's security advisory policy"
  4207. }
  4208. }
  4209. },
  4210. "notification-url": "https://packages.drupal.org/8/downloads",
  4211. "license": [
  4212. "GPL-2.0-or-later"
  4213. ],
  4214. "authors": [
  4215. {
  4216. "name": "Chris Charlton",
  4217. "homepage": "https://www.drupal.org/user/17089"
  4218. },
  4219. {
  4220. "name": "chx",
  4221. "homepage": "https://www.drupal.org/user/9446"
  4222. },
  4223. {
  4224. "name": "claudiu.cristea",
  4225. "homepage": "https://www.drupal.org/user/56348"
  4226. },
  4227. {
  4228. "name": "dman",
  4229. "homepage": "https://www.drupal.org/user/33240"
  4230. },
  4231. {
  4232. "name": "dopry",
  4233. "homepage": "https://www.drupal.org/user/22202"
  4234. },
  4235. {
  4236. "name": "drewish",
  4237. "homepage": "https://www.drupal.org/user/34869"
  4238. },
  4239. {
  4240. "name": "gdl",
  4241. "homepage": "https://www.drupal.org/user/507326"
  4242. },
  4243. {
  4244. "name": "mondrake",
  4245. "homepage": "https://www.drupal.org/user/1307444"
  4246. },
  4247. {
  4248. "name": "quicksketch",
  4249. "homepage": "https://www.drupal.org/user/35821"
  4250. },
  4251. {
  4252. "name": "sun",
  4253. "homepage": "https://www.drupal.org/user/54136"
  4254. },
  4255. {
  4256. "name": "walkah",
  4257. "homepage": "https://www.drupal.org/user/1531"
  4258. }
  4259. ],
  4260. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4261. "homepage": "https://www.drupal.org/project/imagemagick",
  4262. "support": {
  4263. "source": "http://cgit.drupalcode.org/imagemagick"
  4264. }
  4265. },
  4266. {
  4267. "name": "drupal/inline_entity_form",
  4268. "version": "1.0.0-rc1",
  4269. "source": {
  4270. "type": "git",
  4271. "url": "https://git.drupal.org/project/inline_entity_form",
  4272. "reference": "8.x-1.0-rc1"
  4273. },
  4274. "dist": {
  4275. "type": "zip",
  4276. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc1.zip",
  4277. "reference": "8.x-1.0-rc1",
  4278. "shasum": "898789fb6a0662fc2572b87f8d0654a0241473f9"
  4279. },
  4280. "require": {
  4281. "drupal/core": "~8.0"
  4282. },
  4283. "require-dev": {
  4284. "drupal/entity_reference_revisions": "*"
  4285. },
  4286. "type": "drupal-module",
  4287. "extra": {
  4288. "branch-alias": {
  4289. "dev-1.x": "1.x-dev"
  4290. },
  4291. "drupal": {
  4292. "version": "8.x-1.0-rc1",
  4293. "datestamp": "1527030784",
  4294. "security-coverage": {
  4295. "status": "not-covered",
  4296. "message": "RC releases are not covered by Drupal security advisories."
  4297. }
  4298. }
  4299. },
  4300. "notification-url": "https://packages.drupal.org/8/downloads",
  4301. "license": [
  4302. "GPL-2.0+"
  4303. ],
  4304. "authors": [
  4305. {
  4306. "name": "bojanz",
  4307. "homepage": "https://www.drupal.org/user/86106"
  4308. },
  4309. {
  4310. "name": "dawehner",
  4311. "homepage": "https://www.drupal.org/user/99340"
  4312. },
  4313. {
  4314. "name": "rszrama",
  4315. "homepage": "https://www.drupal.org/user/49344"
  4316. },
  4317. {
  4318. "name": "slashrsm",
  4319. "homepage": "https://www.drupal.org/user/744628"
  4320. },
  4321. {
  4322. "name": "webflo",
  4323. "homepage": "https://www.drupal.org/user/254778"
  4324. }
  4325. ],
  4326. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4327. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4328. "support": {
  4329. "source": "http://cgit.drupalcode.org/inline_entity_form"
  4330. }
  4331. },
  4332. {
  4333. "name": "drupal/kint",
  4334. "version": "1.2.0",
  4335. "require": {
  4336. "drupal/core": "~8.0",
  4337. "drupal/devel": "self.version"
  4338. },
  4339. "type": "metapackage",
  4340. "extra": {
  4341. "branch-alias": {
  4342. "dev-1.x": "1.x-dev"
  4343. },
  4344. "drupal": {
  4345. "version": "8.x-1.2",
  4346. "datestamp": "1507197844",
  4347. "security-coverage": {
  4348. "status": "covered",
  4349. "message": "Covered by Drupal's security advisory policy"
  4350. }
  4351. }
  4352. },
  4353. "notification-url": "https://packages.drupal.org/8/downloads",
  4354. "license": [
  4355. "GPL-2.0-or-later"
  4356. ],
  4357. "authors": [
  4358. {
  4359. "name": "catch",
  4360. "homepage": "https://www.drupal.org/user/35733"
  4361. },
  4362. {
  4363. "name": "juampynr",
  4364. "homepage": "https://www.drupal.org/user/682736"
  4365. },
  4366. {
  4367. "name": "lussoluca",
  4368. "homepage": "https://www.drupal.org/user/138068"
  4369. },
  4370. {
  4371. "name": "moshe weitzman",
  4372. "homepage": "https://www.drupal.org/user/23"
  4373. },
  4374. {
  4375. "name": "pcambra",
  4376. "homepage": "https://www.drupal.org/user/122101"
  4377. },
  4378. {
  4379. "name": "salvis",
  4380. "homepage": "https://www.drupal.org/user/82964"
  4381. },
  4382. {
  4383. "name": "willzyx",
  4384. "homepage": "https://www.drupal.org/user/1043862"
  4385. }
  4386. ],
  4387. "description": "Wrapper for Kint debugging tool",
  4388. "homepage": "https://www.drupal.org/project/devel",
  4389. "support": {
  4390. "source": "http://cgit.drupalcode.org/devel"
  4391. }
  4392. },
  4393. {
  4394. "name": "drupal/link_attributes",
  4395. "version": "1.5.0",
  4396. "source": {
  4397. "type": "git",
  4398. "url": "https://git.drupal.org/project/link_attributes",
  4399. "reference": "8.x-1.5"
  4400. },
  4401. "dist": {
  4402. "type": "zip",
  4403. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.5.zip",
  4404. "reference": "8.x-1.5",
  4405. "shasum": "48c0e6ac2c3f4843372abb394c1aabe380dfa604"
  4406. },
  4407. "require": {
  4408. "drupal/core": "*"
  4409. },
  4410. "type": "drupal-module",
  4411. "extra": {
  4412. "branch-alias": {
  4413. "dev-1.x": "1.x-dev"
  4414. },
  4415. "drupal": {
  4416. "version": "8.x-1.5",
  4417. "datestamp": "1537173781",
  4418. "security-coverage": {
  4419. "status": "covered",
  4420. "message": "Covered by Drupal's security advisory policy"
  4421. }
  4422. }
  4423. },
  4424. "notification-url": "https://packages.drupal.org/8/downloads",
  4425. "license": [
  4426. "GPL-2.0-or-later"
  4427. ],
  4428. "authors": [
  4429. {
  4430. "name": "larowlan",
  4431. "homepage": "https://www.drupal.org/user/395439"
  4432. }
  4433. ],
  4434. "description": "Provides a widget to allow settings of link attributes for menu links.",
  4435. "homepage": "https://www.drupal.org/project/link_attributes",
  4436. "support": {
  4437. "source": "http://cgit.drupalcode.org/link_attributes"
  4438. }
  4439. },
  4440. {
  4441. "name": "drupal/linkit",
  4442. "version": "4.3.0",
  4443. "source": {
  4444. "type": "git",
  4445. "url": "https://git.drupal.org/project/linkit",
  4446. "reference": "8.x-4.3"
  4447. },
  4448. "dist": {
  4449. "type": "zip",
  4450. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  4451. "reference": "8.x-4.3",
  4452. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  4453. },
  4454. "require": {
  4455. "drupal/core": "~8.0"
  4456. },
  4457. "type": "drupal-module",
  4458. "extra": {
  4459. "branch-alias": {
  4460. "dev-4.x": "4.x-dev"
  4461. },
  4462. "drupal": {
  4463. "version": "8.x-4.3",
  4464. "datestamp": "1490205830",
  4465. "security-coverage": {
  4466. "status": "covered",
  4467. "message": "Covered by Drupal's security advisory policy"
  4468. }
  4469. }
  4470. },
  4471. "notification-url": "https://packages.drupal.org/8/downloads",
  4472. "license": [
  4473. "GPL-2.0+"
  4474. ],
  4475. "authors": [
  4476. {
  4477. "name": "Emil Stjerneman",
  4478. "homepage": "https://stjerneman.com",
  4479. "email": "emil@stjerneman.com",
  4480. "role": "Maintainer"
  4481. }
  4482. ],
  4483. "description": "Linkit - Enriched linking experience",
  4484. "homepage": "http://drupal.org/project/linkit",
  4485. "support": {
  4486. "source": "http://cgit.drupalcode.org/linkit",
  4487. "issues": "http://drupal.org/project/linkit"
  4488. }
  4489. },
  4490. {
  4491. "name": "drupal/login_destination",
  4492. "version": "dev-1.x",
  4493. "source": {
  4494. "type": "git",
  4495. "url": "https://git.drupal.org/project/login_destination",
  4496. "reference": "54be8b89fdc073ca40af6b9b2eeb050e0aeb7908"
  4497. },
  4498. "require": {
  4499. "drupal/core": "~8.0"
  4500. },
  4501. "type": "drupal-module",
  4502. "extra": {
  4503. "branch-alias": {
  4504. "dev-1.x": "1.x-dev"
  4505. },
  4506. "drupal": {
  4507. "version": "8.x-1.x-dev",
  4508. "datestamp": "1514805485",
  4509. "security-coverage": {
  4510. "status": "not-covered",
  4511. "message": "Dev releases are not covered by Drupal security advisories."
  4512. }
  4513. }
  4514. },
  4515. "notification-url": "https://packages.drupal.org/8/downloads",
  4516. "license": [
  4517. "GPL-2.0-or-later"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "Oliver Huynh",
  4522. "homepage": "https://www.drupal.org/user/243730"
  4523. },
  4524. {
  4525. "name": "akashjain132",
  4526. "homepage": "https://www.drupal.org/user/2622667"
  4527. },
  4528. {
  4529. "name": "beautifulmind",
  4530. "homepage": "https://www.drupal.org/user/219482"
  4531. },
  4532. {
  4533. "name": "ddrozdik",
  4534. "homepage": "https://www.drupal.org/user/574124"
  4535. },
  4536. {
  4537. "name": "jng12",
  4538. "homepage": "https://www.drupal.org/user/204316"
  4539. },
  4540. {
  4541. "name": "marcp",
  4542. "homepage": "https://www.drupal.org/user/20885"
  4543. },
  4544. {
  4545. "name": "mithy",
  4546. "homepage": "https://www.drupal.org/user/258911"
  4547. },
  4548. {
  4549. "name": "moshe weitzman",
  4550. "homepage": "https://www.drupal.org/user/23"
  4551. },
  4552. {
  4553. "name": "quantumized",
  4554. "homepage": "https://www.drupal.org/user/61221"
  4555. },
  4556. {
  4557. "name": "rsvelko",
  4558. "homepage": "https://www.drupal.org/user/337401"
  4559. }
  4560. ],
  4561. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  4562. "homepage": "https://www.drupal.org/project/login_destination",
  4563. "support": {
  4564. "source": "http://cgit.drupalcode.org/login_destination"
  4565. },
  4566. "time": "2018-01-01T11:13:09+00:00"
  4567. },
  4568. {
  4569. "name": "drupal/maillog",
  4570. "version": "dev-1.x",
  4571. "source": {
  4572. "type": "git",
  4573. "url": "https://git.drupal.org/project/maillog",
  4574. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4575. },
  4576. "require": {
  4577. "drupal/core": "*"
  4578. },
  4579. "type": "drupal-module",
  4580. "extra": {
  4581. "branch-alias": {
  4582. "dev-1.x": "1.x-dev"
  4583. },
  4584. "drupal": {
  4585. "version": "8.x-1.x-dev",
  4586. "datestamp": "1470431939",
  4587. "security-coverage": {
  4588. "status": "not-covered",
  4589. "message": "Project has not opted into security advisory coverage!"
  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": "Berdir",
  4600. "homepage": "https://www.drupal.org/user/214652"
  4601. },
  4602. {
  4603. "name": "DamienMcKenna",
  4604. "homepage": "https://www.drupal.org/user/108450"
  4605. },
  4606. {
  4607. "name": "miro_dietiker",
  4608. "homepage": "https://www.drupal.org/user/227761"
  4609. },
  4610. {
  4611. "name": "pluess",
  4612. "homepage": "https://www.drupal.org/user/84659"
  4613. }
  4614. ],
  4615. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4616. "homepage": "https://www.drupal.org/project/maillog",
  4617. "support": {
  4618. "source": "http://cgit.drupalcode.org/maillog"
  4619. },
  4620. "time": "2016-08-05T21:18:07+00:00"
  4621. },
  4622. {
  4623. "name": "drupal/mailsystem",
  4624. "version": "4.1.0",
  4625. "source": {
  4626. "type": "git",
  4627. "url": "https://git.drupal.org/project/mailsystem",
  4628. "reference": "8.x-4.1"
  4629. },
  4630. "dist": {
  4631. "type": "zip",
  4632. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.1.zip",
  4633. "reference": "8.x-4.1",
  4634. "shasum": "318b87f1fdf96e6db30b04a98108af02a0fc3dcc"
  4635. },
  4636. "require": {
  4637. "drupal/core": "^8.0.5"
  4638. },
  4639. "type": "drupal-module",
  4640. "extra": {
  4641. "branch-alias": {
  4642. "dev-4.x": "4.x-dev"
  4643. },
  4644. "drupal": {
  4645. "version": "8.x-4.1",
  4646. "datestamp": "1467993646",
  4647. "security-coverage": {
  4648. "status": "covered",
  4649. "message": "Covered by Drupal's security advisory policy"
  4650. }
  4651. }
  4652. },
  4653. "notification-url": "https://packages.drupal.org/8/downloads",
  4654. "license": [
  4655. "GPL-2.0+"
  4656. ],
  4657. "authors": [
  4658. {
  4659. "name": "Berdir",
  4660. "homepage": "https://www.drupal.org/user/214652"
  4661. },
  4662. {
  4663. "name": "Les Lim",
  4664. "homepage": "https://www.drupal.org/user/84263"
  4665. },
  4666. {
  4667. "name": "Nafes",
  4668. "homepage": "https://www.drupal.org/user/2489926"
  4669. },
  4670. {
  4671. "name": "miro_dietiker",
  4672. "homepage": "https://www.drupal.org/user/227761"
  4673. },
  4674. {
  4675. "name": "pillarsdotnet",
  4676. "homepage": "https://www.drupal.org/user/36148"
  4677. }
  4678. ],
  4679. "description": "Mail System",
  4680. "homepage": "https://www.drupal.org/project/mailsystem",
  4681. "support": {
  4682. "source": "http://cgit.drupalcode.org/mailsystem"
  4683. }
  4684. },
  4685. {
  4686. "name": "drupal/matomo",
  4687. "version": "1.7.0",
  4688. "source": {
  4689. "type": "git",
  4690. "url": "https://git.drupal.org/project/matomo",
  4691. "reference": "8.x-1.7"
  4692. },
  4693. "dist": {
  4694. "type": "zip",
  4695. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.7.zip",
  4696. "reference": "8.x-1.7",
  4697. "shasum": "6b7dbc8c76800a6dadb7568cf2a3f3efdde88e13"
  4698. },
  4699. "require": {
  4700. "drupal/core": "~8.0"
  4701. },
  4702. "require-dev": {
  4703. "drupal/php": "*",
  4704. "drupal/token": "*"
  4705. },
  4706. "type": "drupal-module",
  4707. "extra": {
  4708. "branch-alias": {
  4709. "dev-1.x": "1.x-dev"
  4710. },
  4711. "drupal": {
  4712. "version": "8.x-1.7",
  4713. "datestamp": "1531470197",
  4714. "security-coverage": {
  4715. "status": "covered",
  4716. "message": "Covered by Drupal's security advisory policy"
  4717. }
  4718. }
  4719. },
  4720. "notification-url": "https://packages.drupal.org/8/downloads",
  4721. "license": [
  4722. "GPL-2.0+"
  4723. ],
  4724. "authors": [
  4725. {
  4726. "name": "hass",
  4727. "homepage": "https://www.drupal.org/u/hass"
  4728. },
  4729. {
  4730. "name": "See other contributors",
  4731. "homepage": "https://www.drupal.org/node/247808/committers"
  4732. }
  4733. ],
  4734. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4735. "homepage": "https://www.drupal.org/project/matomo",
  4736. "support": {
  4737. "source": "http://git.drupal.org/project/matomo.git",
  4738. "issues": "https://www.drupal.org/project/issues/matomo"
  4739. }
  4740. },
  4741. {
  4742. "name": "drupal/maxlength",
  4743. "version": "1.0.0-beta2",
  4744. "source": {
  4745. "type": "git",
  4746. "url": "https://git.drupal.org/project/maxlength",
  4747. "reference": "8.x-1.0-beta2"
  4748. },
  4749. "dist": {
  4750. "type": "zip",
  4751. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-beta2.zip",
  4752. "reference": "8.x-1.0-beta2",
  4753. "shasum": "27f7374e55ebdcc696d22d98be8cf4cf9bf58204"
  4754. },
  4755. "require": {
  4756. "drupal/core": "~8.0"
  4757. },
  4758. "type": "drupal-module",
  4759. "extra": {
  4760. "branch-alias": {
  4761. "dev-1.x": "1.x-dev"
  4762. },
  4763. "drupal": {
  4764. "version": "8.x-1.0-beta2",
  4765. "datestamp": "1527856384",
  4766. "security-coverage": {
  4767. "status": "not-covered",
  4768. "message": "Beta releases are not covered by Drupal security advisories."
  4769. }
  4770. }
  4771. },
  4772. "notification-url": "https://packages.drupal.org/8/downloads",
  4773. "license": [
  4774. "GPL-2.0-or-later"
  4775. ],
  4776. "authors": [
  4777. {
  4778. "name": "Aron Novak",
  4779. "homepage": "https://www.drupal.org/user/61864"
  4780. },
  4781. {
  4782. "name": "Schnitzel",
  4783. "homepage": "https://www.drupal.org/user/643820"
  4784. },
  4785. {
  4786. "name": "a_c_m",
  4787. "homepage": "https://www.drupal.org/user/195063"
  4788. },
  4789. {
  4790. "name": "artur.thiessen",
  4791. "homepage": "https://www.drupal.org/user/2390554"
  4792. },
  4793. {
  4794. "name": "barneytech",
  4795. "homepage": "https://www.drupal.org/user/669922"
  4796. },
  4797. {
  4798. "name": "claudiu_cristea",
  4799. "homepage": "https://www.drupal.org/user/2623935"
  4800. },
  4801. {
  4802. "name": "dawehner",
  4803. "homepage": "https://www.drupal.org/user/99340"
  4804. },
  4805. {
  4806. "name": "derhasi",
  4807. "homepage": "https://www.drupal.org/user/83474"
  4808. },
  4809. {
  4810. "name": "frjo",
  4811. "homepage": "https://www.drupal.org/user/5546"
  4812. },
  4813. {
  4814. "name": "hefox",
  4815. "homepage": "https://www.drupal.org/user/426416"
  4816. },
  4817. {
  4818. "name": "jm.federico",
  4819. "homepage": "https://www.drupal.org/user/509892"
  4820. },
  4821. {
  4822. "name": "k4v",
  4823. "homepage": "https://www.drupal.org/user/744246"
  4824. },
  4825. {
  4826. "name": "mariano73",
  4827. "homepage": "https://www.drupal.org/user/1324866"
  4828. },
  4829. {
  4830. "name": "mariuss",
  4831. "homepage": "https://www.drupal.org/user/28539"
  4832. },
  4833. {
  4834. "name": "sanduhrs",
  4835. "homepage": "https://www.drupal.org/user/28074"
  4836. },
  4837. {
  4838. "name": "vasi1186",
  4839. "homepage": "https://www.drupal.org/user/342104"
  4840. }
  4841. ],
  4842. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  4843. "homepage": "https://www.drupal.org/project/maxlength",
  4844. "support": {
  4845. "source": "http://cgit.drupalcode.org/maxlength"
  4846. }
  4847. },
  4848. {
  4849. "name": "drupal/menu_admin_per_menu",
  4850. "version": "1.0.0",
  4851. "source": {
  4852. "type": "git",
  4853. "url": "https://git.drupal.org/project/menu_admin_per_menu",
  4854. "reference": "8.x-1.0"
  4855. },
  4856. "dist": {
  4857. "type": "zip",
  4858. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4859. "reference": "8.x-1.0",
  4860. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4861. },
  4862. "require": {
  4863. "drupal/core": "*"
  4864. },
  4865. "type": "drupal-module",
  4866. "extra": {
  4867. "branch-alias": {
  4868. "dev-1.x": "1.x-dev"
  4869. },
  4870. "drupal": {
  4871. "version": "8.x-1.0",
  4872. "datestamp": "1507184944",
  4873. "security-coverage": {
  4874. "status": "covered",
  4875. "message": "Covered by Drupal's security advisory policy"
  4876. }
  4877. }
  4878. },
  4879. "notification-url": "https://packages.drupal.org/8/downloads",
  4880. "license": [
  4881. "GPL-2.0-or-later"
  4882. ],
  4883. "authors": [
  4884. {
  4885. "name": "anrikun",
  4886. "homepage": "https://www.drupal.org/user/410199"
  4887. },
  4888. {
  4889. "name": "mkdok",
  4890. "homepage": "https://www.drupal.org/user/3308753"
  4891. }
  4892. ],
  4893. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4894. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4895. "support": {
  4896. "source": "http://cgit.drupalcode.org/menu_admin_per_menu"
  4897. }
  4898. },
  4899. {
  4900. "name": "drupal/menu_block",
  4901. "version": "1.5.0",
  4902. "source": {
  4903. "type": "git",
  4904. "url": "https://git.drupal.org/project/menu_block",
  4905. "reference": "8.x-1.5"
  4906. },
  4907. "dist": {
  4908. "type": "zip",
  4909. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip",
  4910. "reference": "8.x-1.5",
  4911. "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b"
  4912. },
  4913. "require": {
  4914. "drupal/core": "*"
  4915. },
  4916. "type": "drupal-module",
  4917. "extra": {
  4918. "branch-alias": {
  4919. "dev-1.x": "1.x-dev"
  4920. },
  4921. "drupal": {
  4922. "version": "8.x-1.5",
  4923. "datestamp": "1525200184",
  4924. "security-coverage": {
  4925. "status": "covered",
  4926. "message": "Covered by Drupal's security advisory policy"
  4927. }
  4928. }
  4929. },
  4930. "notification-url": "https://packages.drupal.org/8/downloads",
  4931. "license": [
  4932. "GPL-2.0-or-later"
  4933. ],
  4934. "authors": [
  4935. {
  4936. "name": "Dave Reid",
  4937. "homepage": "https://www.drupal.org/user/53892"
  4938. },
  4939. {
  4940. "name": "JohnAlbin",
  4941. "homepage": "https://www.drupal.org/user/32095"
  4942. },
  4943. {
  4944. "name": "joelpittet",
  4945. "homepage": "https://www.drupal.org/user/160302"
  4946. },
  4947. {
  4948. "name": "kim.pepper",
  4949. "homepage": "https://www.drupal.org/user/370574"
  4950. },
  4951. {
  4952. "name": "rrrob",
  4953. "homepage": "https://www.drupal.org/user/273533"
  4954. }
  4955. ],
  4956. "description": "Provides configurable blocks of menu links.",
  4957. "homepage": "https://www.drupal.org/project/menu_block",
  4958. "support": {
  4959. "source": "http://cgit.drupalcode.org/menu_block"
  4960. }
  4961. },
  4962. {
  4963. "name": "drupal/menu_position",
  4964. "version": "dev-1.x",
  4965. "source": {
  4966. "type": "git",
  4967. "url": "https://git.drupal.org/project/menu_position",
  4968. "reference": "11191df8dc7bdb1ef215c3f623c098555f571552"
  4969. },
  4970. "require": {
  4971. "drupal/core": "~8.0"
  4972. },
  4973. "type": "drupal-module",
  4974. "extra": {
  4975. "branch-alias": {
  4976. "dev-1.x": "1.x-dev"
  4977. },
  4978. "drupal": {
  4979. "version": "8.x-1.x-dev",
  4980. "datestamp": "1520418485",
  4981. "security-coverage": {
  4982. "status": "not-covered",
  4983. "message": "Dev releases are not covered by Drupal security advisories."
  4984. }
  4985. }
  4986. },
  4987. "notification-url": "https://packages.drupal.org/8/downloads",
  4988. "license": [
  4989. "GPL-2.0+"
  4990. ],
  4991. "authors": [
  4992. {
  4993. "name": "BarisW",
  4994. "homepage": "https://www.drupal.org/user/107229"
  4995. },
  4996. {
  4997. "name": "JohnAlbin",
  4998. "homepage": "https://www.drupal.org/user/32095"
  4999. },
  5000. {
  5001. "name": "lbainbridge",
  5002. "homepage": "https://www.drupal.org/user/2406996"
  5003. }
  5004. ],
  5005. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5006. "homepage": "https://www.drupal.org/project/menu_position",
  5007. "support": {
  5008. "source": "http://cgit.drupalcode.org/menu_position",
  5009. "issues": "https://www.drupal.org/project/issues/menu_position"
  5010. },
  5011. "time": "2018-08-02T13:52:40+00:00"
  5012. },
  5013. {
  5014. "name": "drupal/migrate_plus",
  5015. "version": "4.0.0",
  5016. "source": {
  5017. "type": "git",
  5018. "url": "https://git.drupal.org/project/migrate_plus",
  5019. "reference": "8.x-4.0"
  5020. },
  5021. "dist": {
  5022. "type": "zip",
  5023. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.0.zip",
  5024. "reference": "8.x-4.0",
  5025. "shasum": "63dad289defe8298aa5ca5e30062fe9761d19eca"
  5026. },
  5027. "require": {
  5028. "drupal/core": "^8.3"
  5029. },
  5030. "require-dev": {
  5031. "drupal/migrate_example_advanced_setup": "*",
  5032. "drupal/migrate_example_setup": "*"
  5033. },
  5034. "suggest": {
  5035. "ext-soap": "*",
  5036. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  5037. },
  5038. "type": "drupal-module",
  5039. "extra": {
  5040. "branch-alias": {
  5041. "dev-4.x": "4.x-dev"
  5042. },
  5043. "drupal": {
  5044. "version": "8.x-4.0",
  5045. "datestamp": "1536264180",
  5046. "security-coverage": {
  5047. "status": "covered",
  5048. "message": "Covered by Drupal's security advisory policy"
  5049. }
  5050. }
  5051. },
  5052. "notification-url": "https://packages.drupal.org/8/downloads",
  5053. "license": [
  5054. "GPL-2.0+"
  5055. ],
  5056. "authors": [
  5057. {
  5058. "name": "Mike Ryan",
  5059. "homepage": "https://www.drupal.org/u/mikeryan",
  5060. "role": "Maintainer"
  5061. },
  5062. {
  5063. "name": "mikeryan",
  5064. "homepage": "https://www.drupal.org/user/4420"
  5065. }
  5066. ],
  5067. "description": "Enhancements to core migration support.",
  5068. "homepage": "https://www.drupal.org/project/migrate_plus",
  5069. "support": {
  5070. "source": "https://cgit.drupalcode.org/migrate_plus",
  5071. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  5072. "irc": "irc://irc.freenode.org/drupal-migrate"
  5073. }
  5074. },
  5075. {
  5076. "name": "drupal/migrate_tools",
  5077. "version": "4.0.0",
  5078. "source": {
  5079. "type": "git",
  5080. "url": "https://git.drupal.org/project/migrate_tools",
  5081. "reference": "8.x-4.0"
  5082. },
  5083. "dist": {
  5084. "type": "zip",
  5085. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.0.zip",
  5086. "reference": "8.x-4.0",
  5087. "shasum": "016dfb010df76723c5a6a447921fdccd3c885237"
  5088. },
  5089. "require": {
  5090. "drupal/core": "^8.3",
  5091. "drupal/migrate_plus": "^4"
  5092. },
  5093. "require-dev": {
  5094. "drupal/coder": "^8",
  5095. "drupal/migrate_source_csv": "^2.2"
  5096. },
  5097. "type": "drupal-module",
  5098. "extra": {
  5099. "branch-alias": {
  5100. "dev-4.x": "4.x-dev"
  5101. },
  5102. "drupal": {
  5103. "version": "8.x-4.0",
  5104. "datestamp": "1535380084",
  5105. "security-coverage": {
  5106. "status": "covered",
  5107. "message": "Covered by Drupal's security advisory policy"
  5108. }
  5109. },
  5110. "drush": {
  5111. "services": {
  5112. "drush.services.yml": "^9"
  5113. }
  5114. }
  5115. },
  5116. "notification-url": "https://packages.drupal.org/8/downloads",
  5117. "license": [
  5118. "GPL-2.0+"
  5119. ],
  5120. "authors": [
  5121. {
  5122. "name": "heddn",
  5123. "homepage": "https://www.drupal.org/user/1463982"
  5124. },
  5125. {
  5126. "name": "mikeryan",
  5127. "homepage": "https://www.drupal.org/user/4420"
  5128. },
  5129. {
  5130. "name": "moshe weitzman",
  5131. "homepage": "https://www.drupal.org/user/23"
  5132. }
  5133. ],
  5134. "description": "Tools to assist in developing and running migrations.",
  5135. "homepage": "http://drupal.org/project/migrate_tools",
  5136. "support": {
  5137. "source": "http://cgit.drupalcode.org/migrate_tools",
  5138. "issues": "http://drupal.org/project/migrate_tools",
  5139. "irc": "irc://irc.freenode.org/drupal-migrate"
  5140. }
  5141. },
  5142. {
  5143. "name": "drupal/path_alias_xt",
  5144. "version": "dev-1.x",
  5145. "source": {
  5146. "type": "git",
  5147. "url": "https://git.drupal.org/project/path_alias_xt",
  5148. "reference": "5d88c9297e4629f390b03ce3ec8c1c8c890b296b"
  5149. },
  5150. "require": {
  5151. "drupal/core": "*"
  5152. },
  5153. "type": "drupal-module",
  5154. "extra": {
  5155. "branch-alias": {
  5156. "dev-1.x": "1.x-dev"
  5157. },
  5158. "drupal": {
  5159. "version": "8.x-1.x-dev",
  5160. "datestamp": "1500044942",
  5161. "security-coverage": {
  5162. "status": "not-covered",
  5163. "message": "Dev releases are not covered by Drupal security advisories."
  5164. }
  5165. }
  5166. },
  5167. "notification-url": "https://packages.drupal.org/8/downloads",
  5168. "license": [
  5169. "GPL-2.0-or-later"
  5170. ],
  5171. "authors": [
  5172. {
  5173. "name": "RdeBoer",
  5174. "homepage": "https://www.drupal.org/user/404007"
  5175. },
  5176. {
  5177. "name": "adriancid",
  5178. "homepage": "https://www.drupal.org/user/1962106"
  5179. },
  5180. {
  5181. "name": "sdstyles",
  5182. "homepage": "https://www.drupal.org/user/1420228"
  5183. }
  5184. ],
  5185. "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.",
  5186. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5187. "support": {
  5188. "source": "http://cgit.drupalcode.org/path_alias_xt"
  5189. },
  5190. "time": "2017-07-14T15:06:28+00:00"
  5191. },
  5192. {
  5193. "name": "drupal/pathauto",
  5194. "version": "1.3.0",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://git.drupal.org/project/pathauto",
  5198. "reference": "8.x-1.3"
  5199. },
  5200. "dist": {
  5201. "type": "zip",
  5202. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip",
  5203. "reference": "8.x-1.3",
  5204. "shasum": "115d5998d7636a03e26c7ce34261b65809d53965"
  5205. },
  5206. "require": {
  5207. "drupal/core": "^8.5",
  5208. "drupal/ctools": "*",
  5209. "drupal/token": "*"
  5210. },
  5211. "type": "drupal-module",
  5212. "extra": {
  5213. "branch-alias": {
  5214. "dev-1.x": "1.x-dev"
  5215. },
  5216. "drupal": {
  5217. "version": "8.x-1.3",
  5218. "datestamp": "1536407884",
  5219. "security-coverage": {
  5220. "status": "covered",
  5221. "message": "Covered by Drupal's security advisory policy"
  5222. }
  5223. }
  5224. },
  5225. "notification-url": "https://packages.drupal.org/8/downloads",
  5226. "license": [
  5227. "GPL-2.0-or-later"
  5228. ],
  5229. "authors": [
  5230. {
  5231. "name": "Berdir",
  5232. "homepage": "https://www.drupal.org/user/214652"
  5233. },
  5234. {
  5235. "name": "Dave Reid",
  5236. "homepage": "https://www.drupal.org/user/53892"
  5237. },
  5238. {
  5239. "name": "Freso",
  5240. "homepage": "https://www.drupal.org/user/27504"
  5241. },
  5242. {
  5243. "name": "greggles",
  5244. "homepage": "https://www.drupal.org/user/36762"
  5245. }
  5246. ],
  5247. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5248. "homepage": "https://www.drupal.org/project/pathauto",
  5249. "support": {
  5250. "source": "http://cgit.drupalcode.org/pathauto"
  5251. }
  5252. },
  5253. {
  5254. "name": "drupal/pathologic",
  5255. "version": "1.0.0-alpha1",
  5256. "source": {
  5257. "type": "git",
  5258. "url": "https://git.drupal.org/project/pathologic",
  5259. "reference": "8.x-1.0-alpha1"
  5260. },
  5261. "dist": {
  5262. "type": "zip",
  5263. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha1.zip",
  5264. "reference": "8.x-1.0-alpha1",
  5265. "shasum": "51c699cc001969baa00cca60cf2302a32e578090"
  5266. },
  5267. "require": {
  5268. "drupal/core": "*"
  5269. },
  5270. "type": "drupal-module",
  5271. "extra": {
  5272. "branch-alias": {
  5273. "dev-1.x": "1.x-dev"
  5274. },
  5275. "drupal": {
  5276. "version": "8.x-1.0-alpha1",
  5277. "datestamp": "1525211884",
  5278. "security-coverage": {
  5279. "status": "not-covered",
  5280. "message": "Alpha releases are not covered by Drupal security advisories."
  5281. }
  5282. }
  5283. },
  5284. "notification-url": "https://packages.drupal.org/8/downloads",
  5285. "license": [
  5286. "GPL-2.0-or-later"
  5287. ],
  5288. "authors": [
  5289. {
  5290. "name": "Berdir",
  5291. "homepage": "https://www.drupal.org/user/214652"
  5292. },
  5293. {
  5294. "name": "Garrett Albright",
  5295. "homepage": "https://www.drupal.org/user/191212"
  5296. },
  5297. {
  5298. "name": "dww",
  5299. "homepage": "https://www.drupal.org/user/46549"
  5300. }
  5301. ],
  5302. "description": "Helps avoid broken links and incorrect paths in content.",
  5303. "homepage": "https://www.drupal.org/project/pathologic",
  5304. "support": {
  5305. "source": "http://cgit.drupalcode.org/pathologic"
  5306. }
  5307. },
  5308. {
  5309. "name": "drupal/persistent_login",
  5310. "version": "1.1.0",
  5311. "source": {
  5312. "type": "git",
  5313. "url": "https://git.drupal.org/project/persistent_login",
  5314. "reference": "8.x-1.1"
  5315. },
  5316. "dist": {
  5317. "type": "zip",
  5318. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.1.zip",
  5319. "reference": "8.x-1.1",
  5320. "shasum": "b1e8f725662ab915767f339e00d7b185ac9097b2"
  5321. },
  5322. "require": {
  5323. "drupal/core": "^8.3"
  5324. },
  5325. "type": "drupal-module",
  5326. "extra": {
  5327. "branch-alias": {
  5328. "dev-1.x": "1.x-dev"
  5329. },
  5330. "drupal": {
  5331. "version": "8.x-1.1",
  5332. "datestamp": "1539379980",
  5333. "security-coverage": {
  5334. "status": "covered",
  5335. "message": "Covered by Drupal's security advisory policy"
  5336. }
  5337. }
  5338. },
  5339. "notification-url": "https://packages.drupal.org/8/downloads",
  5340. "license": [
  5341. "GPL-2.0+"
  5342. ],
  5343. "authors": [
  5344. {
  5345. "name": "gapple",
  5346. "homepage": "https://www.drupal.org/user/490940"
  5347. }
  5348. ],
  5349. "description": "Provides a \"Remember Me\" feature on the login form.",
  5350. "homepage": "https://www.drupal.org/project/persistent_login",
  5351. "keywords": [
  5352. "Drupal"
  5353. ],
  5354. "support": {
  5355. "source": "http://cgit.drupalcode.org/persistent_login",
  5356. "issues": "http://drupal.org/project/issues/persistent_login"
  5357. }
  5358. },
  5359. {
  5360. "name": "drupal/profile",
  5361. "version": "1.0.0-rc1",
  5362. "source": {
  5363. "type": "git",
  5364. "url": "https://git.drupal.org/project/profile",
  5365. "reference": "8.x-1.0-rc1"
  5366. },
  5367. "dist": {
  5368. "type": "zip",
  5369. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc1.zip",
  5370. "reference": "8.x-1.0-rc1",
  5371. "shasum": "cc537ca25412adc4fa601ff42cf2fb5cbc6e7b6b"
  5372. },
  5373. "require": {
  5374. "drupal/core": "~8.1",
  5375. "drupal/entity": "*"
  5376. },
  5377. "type": "drupal-module",
  5378. "extra": {
  5379. "branch-alias": {
  5380. "dev-1.x": "1.x-dev"
  5381. },
  5382. "drupal": {
  5383. "version": "8.x-1.0-rc1",
  5384. "datestamp": "1505830324",
  5385. "security-coverage": {
  5386. "status": "not-covered",
  5387. "message": "RC releases are not covered by Drupal security advisories."
  5388. }
  5389. }
  5390. },
  5391. "notification-url": "https://packages.drupal.org/8/downloads",
  5392. "license": [
  5393. "GPL-2.0+"
  5394. ],
  5395. "authors": [
  5396. {
  5397. "name": "bojanz",
  5398. "homepage": "https://www.drupal.org/user/86106"
  5399. },
  5400. {
  5401. "name": "daggerhart",
  5402. "homepage": "https://www.drupal.org/user/167806"
  5403. },
  5404. {
  5405. "name": "dakala",
  5406. "homepage": "https://www.drupal.org/user/53175"
  5407. },
  5408. {
  5409. "name": "fago",
  5410. "homepage": "https://www.drupal.org/user/16747"
  5411. },
  5412. {
  5413. "name": "mglaman",
  5414. "homepage": "https://www.drupal.org/user/2416470"
  5415. },
  5416. {
  5417. "name": "pcambra",
  5418. "homepage": "https://www.drupal.org/user/122101"
  5419. }
  5420. ],
  5421. "description": "Provides configurable user profiles.",
  5422. "homepage": "http://drupal.org/project/profile",
  5423. "support": {
  5424. "source": "http://cgit.drupalcode.org/profile"
  5425. }
  5426. },
  5427. {
  5428. "name": "drupal/redirect",
  5429. "version": "1.3.0",
  5430. "source": {
  5431. "type": "git",
  5432. "url": "https://git.drupal.org/project/redirect",
  5433. "reference": "8.x-1.3"
  5434. },
  5435. "dist": {
  5436. "type": "zip",
  5437. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  5438. "reference": "8.x-1.3",
  5439. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  5440. },
  5441. "require": {
  5442. "drupal/core": "~8"
  5443. },
  5444. "type": "drupal-module",
  5445. "extra": {
  5446. "branch-alias": {
  5447. "dev-1.x": "1.x-dev"
  5448. },
  5449. "drupal": {
  5450. "version": "8.x-1.3",
  5451. "datestamp": "1539682684",
  5452. "security-coverage": {
  5453. "status": "covered",
  5454. "message": "Covered by Drupal's security advisory policy"
  5455. }
  5456. }
  5457. },
  5458. "notification-url": "https://packages.drupal.org/8/downloads",
  5459. "license": [
  5460. "GPL-2.0+"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "Berdir",
  5465. "homepage": "https://www.drupal.org/user/214652"
  5466. },
  5467. {
  5468. "name": "Dave Reid",
  5469. "homepage": "https://www.drupal.org/user/53892"
  5470. },
  5471. {
  5472. "name": "pifagor",
  5473. "homepage": "https://www.drupal.org/user/2375692"
  5474. }
  5475. ],
  5476. "description": "Allows users to redirect from old URLs to new URLs.",
  5477. "homepage": "https://www.drupal.org/project/redirect",
  5478. "support": {
  5479. "source": "http://cgit.drupalcode.org/redirect"
  5480. }
  5481. },
  5482. {
  5483. "name": "drupal/redis",
  5484. "version": "1.0.0",
  5485. "source": {
  5486. "type": "git",
  5487. "url": "https://git.drupal.org/project/redis",
  5488. "reference": "8.x-1.0"
  5489. },
  5490. "dist": {
  5491. "type": "zip",
  5492. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.0.zip",
  5493. "reference": "8.x-1.0",
  5494. "shasum": "98cf460db5c9aaacf3d5c02ac51e0c9e8e85edbb"
  5495. },
  5496. "require": {
  5497. "drupal/core": "~8.0"
  5498. },
  5499. "suggest": {
  5500. "predis/predis": "^1.1.1"
  5501. },
  5502. "type": "drupal-module",
  5503. "extra": {
  5504. "branch-alias": {
  5505. "dev-1.x": "1.x-dev"
  5506. },
  5507. "drupal": {
  5508. "version": "8.x-1.0",
  5509. "datestamp": "1527699484",
  5510. "security-coverage": {
  5511. "status": "covered",
  5512. "message": "Covered by Drupal's security advisory policy"
  5513. }
  5514. }
  5515. },
  5516. "autoload": {
  5517. "psr-4": {
  5518. "Drupal\\redis\\": "src"
  5519. }
  5520. },
  5521. "notification-url": "https://packages.drupal.org/8/downloads",
  5522. "license": [
  5523. "GPL-2.0"
  5524. ],
  5525. "authors": [
  5526. {
  5527. "name": "Berdir",
  5528. "homepage": "https://www.drupal.org/user/214652"
  5529. },
  5530. {
  5531. "name": "pounard",
  5532. "homepage": "https://www.drupal.org/user/240164"
  5533. }
  5534. ],
  5535. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5536. "homepage": "https://www.drupal.org/project/redis",
  5537. "support": {
  5538. "source": "http://cgit.drupalcode.org/redis"
  5539. }
  5540. },
  5541. {
  5542. "name": "drupal/search_api",
  5543. "version": "1.10.0",
  5544. "source": {
  5545. "type": "git",
  5546. "url": "https://git.drupal.org/project/search_api",
  5547. "reference": "8.x-1.10"
  5548. },
  5549. "dist": {
  5550. "type": "zip",
  5551. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.10.zip",
  5552. "reference": "8.x-1.10",
  5553. "shasum": "1c1d038310a079f8e8154545f743ff7a506c4b8e"
  5554. },
  5555. "require": {
  5556. "drupal/core": "^8.5"
  5557. },
  5558. "require-dev": {
  5559. "drupal/search_api_autocomplete": "@dev",
  5560. "drupal/search_api_db": "*"
  5561. },
  5562. "suggest": {
  5563. "drupal/facets": "Adds the ability to create faceted searches.",
  5564. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5565. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5566. },
  5567. "type": "drupal-module",
  5568. "extra": {
  5569. "branch-alias": {
  5570. "dev-1.x": "1.x-dev"
  5571. },
  5572. "drupal": {
  5573. "version": "8.x-1.10",
  5574. "datestamp": "1537175280",
  5575. "security-coverage": {
  5576. "status": "covered",
  5577. "message": "Covered by Drupal's security advisory policy"
  5578. }
  5579. },
  5580. "drush": {
  5581. "services": {
  5582. "drush.services.yml": "^9"
  5583. }
  5584. }
  5585. },
  5586. "notification-url": "https://packages.drupal.org/8/downloads",
  5587. "license": [
  5588. "GPL-2.0+"
  5589. ],
  5590. "authors": [
  5591. {
  5592. "name": "Thomas Seidl",
  5593. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5594. },
  5595. {
  5596. "name": "Nick Veenhof",
  5597. "homepage": "https://www.drupal.org/u/nick_vh"
  5598. },
  5599. {
  5600. "name": "See other contributors",
  5601. "homepage": "https://www.drupal.org/node/790418/committers"
  5602. }
  5603. ],
  5604. "description": "Provides a generic framework for modules offering search capabilities.",
  5605. "homepage": "https://www.drupal.org/project/search_api",
  5606. "support": {
  5607. "source": "http://git.drupal.org/project/search_api.git",
  5608. "issues": "https://www.drupal.org/project/issues/search_api",
  5609. "irc": "irc://irc.freenode.org/drupal-search-api"
  5610. }
  5611. },
  5612. {
  5613. "name": "drupal/search_api_db",
  5614. "version": "1.10.0",
  5615. "require": {
  5616. "drupal/core": "~8.0",
  5617. "drupal/search_api": "self.version"
  5618. },
  5619. "type": "metapackage",
  5620. "extra": {
  5621. "branch-alias": {
  5622. "dev-1.x": "1.x-dev"
  5623. },
  5624. "drupal": {
  5625. "version": "8.x-1.10",
  5626. "datestamp": "1537175280",
  5627. "security-coverage": {
  5628. "status": "covered",
  5629. "message": "Covered by Drupal's security advisory policy"
  5630. }
  5631. }
  5632. },
  5633. "notification-url": "https://packages.drupal.org/8/downloads",
  5634. "license": [
  5635. "GPL-2.0-or-later"
  5636. ],
  5637. "authors": [
  5638. {
  5639. "name": "Nick_vh",
  5640. "homepage": "https://www.drupal.org/user/122682"
  5641. },
  5642. {
  5643. "name": "drunken monkey",
  5644. "homepage": "https://www.drupal.org/user/205582"
  5645. }
  5646. ],
  5647. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  5648. "homepage": "https://www.drupal.org/project/search_api",
  5649. "support": {
  5650. "source": "http://cgit.drupalcode.org/search_api"
  5651. }
  5652. },
  5653. {
  5654. "name": "drupal/smart_trim",
  5655. "version": "1.1.0",
  5656. "source": {
  5657. "type": "git",
  5658. "url": "https://git.drupal.org/project/smart_trim",
  5659. "reference": "8.x-1.1"
  5660. },
  5661. "dist": {
  5662. "type": "zip",
  5663. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.1.zip",
  5664. "reference": "8.x-1.1",
  5665. "shasum": "5f1c0f15914208e0ad2ec5cce1d6419040596fc0"
  5666. },
  5667. "require": {
  5668. "drupal/core": "*"
  5669. },
  5670. "type": "drupal-module",
  5671. "extra": {
  5672. "branch-alias": {
  5673. "dev-1.x": "1.x-dev"
  5674. },
  5675. "drupal": {
  5676. "version": "8.x-1.1",
  5677. "datestamp": "1516301286",
  5678. "security-coverage": {
  5679. "status": "covered",
  5680. "message": "Covered by Drupal's security advisory policy"
  5681. }
  5682. }
  5683. },
  5684. "notification-url": "https://packages.drupal.org/8/downloads",
  5685. "license": [
  5686. "GPL-2.0+"
  5687. ],
  5688. "authors": [
  5689. {
  5690. "name": "Mark Casias (markie)",
  5691. "homepage": "https://www.drupal.org/u/markie",
  5692. "role": "Maintainer"
  5693. },
  5694. {
  5695. "name": "chrisjlee",
  5696. "homepage": "https://www.drupal.org/user/760600"
  5697. },
  5698. {
  5699. "name": "drywall",
  5700. "homepage": "https://www.drupal.org/user/192591"
  5701. },
  5702. {
  5703. "name": "jsenich",
  5704. "homepage": "https://www.drupal.org/user/58871"
  5705. },
  5706. {
  5707. "name": "markie",
  5708. "homepage": "https://www.drupal.org/user/206687"
  5709. },
  5710. {
  5711. "name": "newsignature",
  5712. "homepage": "https://www.drupal.org/user/765518"
  5713. }
  5714. ],
  5715. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  5716. "homepage": "https://drupal.org/project/smart_trim",
  5717. "support": {
  5718. "source": "https://cgit.drupalcode.org/smart_trim",
  5719. "issues": "https://drupal.org/project/issues/smart_trim"
  5720. }
  5721. },
  5722. {
  5723. "name": "drupal/smtp",
  5724. "version": "1.0.0-beta4",
  5725. "source": {
  5726. "type": "git",
  5727. "url": "https://git.drupal.org/project/smtp",
  5728. "reference": "8.x-1.0-beta4"
  5729. },
  5730. "dist": {
  5731. "type": "zip",
  5732. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0-beta4.zip",
  5733. "reference": "8.x-1.0-beta4",
  5734. "shasum": "80a4df4b2fd2d1b2dc653552d232ce98cb54bb9d"
  5735. },
  5736. "require": {
  5737. "drupal/core": "~8.0"
  5738. },
  5739. "type": "drupal-module",
  5740. "extra": {
  5741. "branch-alias": {
  5742. "dev-1.x": "1.x-dev"
  5743. },
  5744. "drupal": {
  5745. "version": "8.x-1.0-beta4",
  5746. "datestamp": "1527598380",
  5747. "security-coverage": {
  5748. "status": "not-covered",
  5749. "message": "Beta releases are not covered by Drupal security advisories."
  5750. }
  5751. }
  5752. },
  5753. "notification-url": "https://packages.drupal.org/8/downloads",
  5754. "license": [
  5755. "GPL-2.0"
  5756. ],
  5757. "authors": [
  5758. {
  5759. "name": "LukeLast",
  5760. "homepage": "https://www.drupal.org/user/30151"
  5761. },
  5762. {
  5763. "name": "japerry",
  5764. "homepage": "https://www.drupal.org/user/45640"
  5765. },
  5766. {
  5767. "name": "josesanmartin",
  5768. "homepage": "https://www.drupal.org/user/72012"
  5769. },
  5770. {
  5771. "name": "oadaeh",
  5772. "homepage": "https://www.drupal.org/user/4649"
  5773. },
  5774. {
  5775. "name": "wundo",
  5776. "homepage": "https://www.drupal.org/user/25523"
  5777. },
  5778. {
  5779. "name": "yettyn",
  5780. "homepage": "https://www.drupal.org/user/93281"
  5781. }
  5782. ],
  5783. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  5784. "homepage": "https://www.drupal.org/project/smtp",
  5785. "support": {
  5786. "source": "http://cgit.drupalcode.org/smtp",
  5787. "issues": "https://www.drupal.org/project/issues/smtp"
  5788. }
  5789. },
  5790. {
  5791. "name": "drupal/synonyms",
  5792. "version": "1.0.0-alpha1",
  5793. "source": {
  5794. "type": "git",
  5795. "url": "https://git.drupal.org/project/synonyms",
  5796. "reference": "8.x-1.0-alpha1"
  5797. },
  5798. "dist": {
  5799. "type": "zip",
  5800. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha1.zip",
  5801. "reference": "8.x-1.0-alpha1",
  5802. "shasum": "98d39b5b0a26c7b5f9e6dfc4f72285ad014d14f4"
  5803. },
  5804. "require": {
  5805. "drupal/core": "~8.0"
  5806. },
  5807. "type": "drupal-module",
  5808. "extra": {
  5809. "branch-alias": {
  5810. "dev-1.x": "1.x-dev"
  5811. },
  5812. "drupal": {
  5813. "version": "8.x-1.0-alpha1",
  5814. "datestamp": "1477604941",
  5815. "security-coverage": {
  5816. "status": "not-covered",
  5817. "message": "Alpha releases are not covered by Drupal security advisories."
  5818. }
  5819. }
  5820. },
  5821. "notification-url": "https://packages.drupal.org/8/downloads",
  5822. "license": [
  5823. "GPL-2.0-or-later"
  5824. ],
  5825. "authors": [
  5826. {
  5827. "name": "Zen",
  5828. "homepage": "https://www.drupal.org/user/21209"
  5829. },
  5830. {
  5831. "name": "bojanz",
  5832. "homepage": "https://www.drupal.org/user/86106"
  5833. },
  5834. {
  5835. "name": "bucefal91",
  5836. "homepage": "https://www.drupal.org/user/504128"
  5837. }
  5838. ],
  5839. "description": "Provides synonyms feature for content entities.",
  5840. "homepage": "https://www.drupal.org/project/synonyms",
  5841. "support": {
  5842. "source": "http://cgit.drupalcode.org/synonyms"
  5843. }
  5844. },
  5845. {
  5846. "name": "drupal/token",
  5847. "version": "1.5.0",
  5848. "source": {
  5849. "type": "git",
  5850. "url": "https://git.drupal.org/project/token",
  5851. "reference": "8.x-1.5"
  5852. },
  5853. "dist": {
  5854. "type": "zip",
  5855. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  5856. "reference": "8.x-1.5",
  5857. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  5858. },
  5859. "require": {
  5860. "drupal/core": "^8.5"
  5861. },
  5862. "type": "drupal-module",
  5863. "extra": {
  5864. "branch-alias": {
  5865. "dev-1.x": "1.x-dev"
  5866. },
  5867. "drupal": {
  5868. "version": "8.x-1.5",
  5869. "datestamp": "1537557481",
  5870. "security-coverage": {
  5871. "status": "covered",
  5872. "message": "Covered by Drupal's security advisory policy"
  5873. }
  5874. }
  5875. },
  5876. "notification-url": "https://packages.drupal.org/8/downloads",
  5877. "license": [
  5878. "GPL-2.0-or-later"
  5879. ],
  5880. "authors": [
  5881. {
  5882. "name": "Berdir",
  5883. "homepage": "https://www.drupal.org/user/214652"
  5884. },
  5885. {
  5886. "name": "Dave Reid",
  5887. "homepage": "https://www.drupal.org/user/53892"
  5888. },
  5889. {
  5890. "name": "eaton",
  5891. "homepage": "https://www.drupal.org/user/16496"
  5892. },
  5893. {
  5894. "name": "fago",
  5895. "homepage": "https://www.drupal.org/user/16747"
  5896. },
  5897. {
  5898. "name": "greggles",
  5899. "homepage": "https://www.drupal.org/user/36762"
  5900. },
  5901. {
  5902. "name": "mikeryan",
  5903. "homepage": "https://www.drupal.org/user/4420"
  5904. }
  5905. ],
  5906. "description": "Provides a user interface for the Token API and some missing core tokens.",
  5907. "homepage": "https://www.drupal.org/project/token",
  5908. "support": {
  5909. "source": "http://cgit.drupalcode.org/token"
  5910. }
  5911. },
  5912. {
  5913. "name": "drupal/toolbar_themes",
  5914. "version": "1.0.0-alpha4",
  5915. "source": {
  5916. "type": "git",
  5917. "url": "https://git.drupal.org/project/toolbar_themes",
  5918. "reference": "8.x-1.0-alpha4"
  5919. },
  5920. "dist": {
  5921. "type": "zip",
  5922. "url": "https://ftp.drupal.org/files/projects/toolbar_themes-8.x-1.0-alpha4.zip",
  5923. "reference": "8.x-1.0-alpha4",
  5924. "shasum": "15c38da8bfd5a44e47e436d8f432a0aaf6b2cd70"
  5925. },
  5926. "require": {
  5927. "drupal/core": "*"
  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.0-alpha4",
  5936. "datestamp": "1474198439",
  5937. "security-coverage": {
  5938. "status": "not-covered",
  5939. "message": "Project has not opted into security advisory coverage!"
  5940. }
  5941. }
  5942. },
  5943. "notification-url": "https://packages.drupal.org/8/downloads",
  5944. "license": [
  5945. "GPL-2.0-or-later"
  5946. ],
  5947. "authors": [
  5948. {
  5949. "name": "Jeff Burnz",
  5950. "homepage": "https://www.drupal.org/user/61393"
  5951. }
  5952. ],
  5953. "description": "Apply themes to the toolbar.",
  5954. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5955. "support": {
  5956. "source": "http://cgit.drupalcode.org/toolbar_themes"
  5957. }
  5958. },
  5959. {
  5960. "name": "drupal/translation_views",
  5961. "version": "1.0.0-alpha4",
  5962. "source": {
  5963. "type": "git",
  5964. "url": "https://git.drupal.org/project/translation_views",
  5965. "reference": "8.x-1.0-alpha4"
  5966. },
  5967. "dist": {
  5968. "type": "zip",
  5969. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha4.zip",
  5970. "reference": "8.x-1.0-alpha4",
  5971. "shasum": "96f7828005a8d559f31f0dfcb471a68698311cda"
  5972. },
  5973. "require": {
  5974. "drupal/core": "*"
  5975. },
  5976. "type": "drupal-module",
  5977. "extra": {
  5978. "branch-alias": {
  5979. "dev-1.x": "1.x-dev"
  5980. },
  5981. "drupal": {
  5982. "version": "8.x-1.0-alpha4",
  5983. "datestamp": "1538124180",
  5984. "security-coverage": {
  5985. "status": "not-covered",
  5986. "message": "Project has not opted into security advisory coverage!"
  5987. }
  5988. }
  5989. },
  5990. "notification-url": "https://packages.drupal.org/8/downloads",
  5991. "license": [
  5992. "GPL-2.0-or-later"
  5993. ],
  5994. "authors": [
  5995. {
  5996. "name": "matsbla",
  5997. "homepage": "https://www.drupal.org/user/2325394"
  5998. },
  5999. {
  6000. "name": "vlad.dancer",
  6001. "homepage": "https://www.drupal.org/user/903844"
  6002. }
  6003. ],
  6004. "description": "Create customized lists and queries of translations from your database.",
  6005. "homepage": "https://www.drupal.org/project/translation_views",
  6006. "support": {
  6007. "source": "http://cgit.drupalcode.org/translation_views"
  6008. }
  6009. },
  6010. {
  6011. "name": "drupal/ultimate_cron",
  6012. "version": "2.0.0-alpha4",
  6013. "source": {
  6014. "type": "git",
  6015. "url": "https://git.drupal.org/project/ultimate_cron",
  6016. "reference": "8.x-2.0-alpha4"
  6017. },
  6018. "dist": {
  6019. "type": "zip",
  6020. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha4.zip",
  6021. "reference": "8.x-2.0-alpha4",
  6022. "shasum": "50cdadd061f1f6fadb961b04ed04348bcc4719d3"
  6023. },
  6024. "require": {
  6025. "drupal/core": "~8.0"
  6026. },
  6027. "type": "drupal-module",
  6028. "extra": {
  6029. "branch-alias": {
  6030. "dev-2.x": "2.x-dev"
  6031. },
  6032. "drupal": {
  6033. "version": "8.x-2.0-alpha4",
  6034. "datestamp": "1527925385",
  6035. "security-coverage": {
  6036. "status": "not-covered",
  6037. "message": "Alpha releases are not covered by Drupal security advisories."
  6038. }
  6039. }
  6040. },
  6041. "notification-url": "https://packages.drupal.org/8/downloads",
  6042. "license": [
  6043. "GPL-2.0-or-later"
  6044. ],
  6045. "authors": [
  6046. {
  6047. "name": "Berdir",
  6048. "homepage": "https://www.drupal.org/user/214652"
  6049. },
  6050. {
  6051. "name": "Dane Powell",
  6052. "homepage": "https://www.drupal.org/user/339326"
  6053. },
  6054. {
  6055. "name": "arnested",
  6056. "homepage": "https://www.drupal.org/user/245635"
  6057. },
  6058. {
  6059. "name": "gielfeldt",
  6060. "homepage": "https://www.drupal.org/user/366993"
  6061. },
  6062. {
  6063. "name": "miro_dietiker",
  6064. "homepage": "https://www.drupal.org/user/227761"
  6065. }
  6066. ],
  6067. "description": "Cron",
  6068. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6069. "support": {
  6070. "source": "http://cgit.drupalcode.org/ultimate_cron"
  6071. }
  6072. },
  6073. {
  6074. "name": "drupal/url_to_video_filter",
  6075. "version": "1.3.0",
  6076. "source": {
  6077. "type": "git",
  6078. "url": "https://git.drupal.org/project/url_to_video_filter",
  6079. "reference": "8.x-1.3"
  6080. },
  6081. "dist": {
  6082. "type": "zip",
  6083. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  6084. "reference": "8.x-1.3",
  6085. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  6086. },
  6087. "require": {
  6088. "drupal/core": "~8.0"
  6089. },
  6090. "type": "drupal-module",
  6091. "extra": {
  6092. "branch-alias": {
  6093. "dev-1.x": "1.x-dev"
  6094. },
  6095. "drupal": {
  6096. "version": "8.x-1.3",
  6097. "datestamp": "1532695981",
  6098. "security-coverage": {
  6099. "status": "covered",
  6100. "message": "Covered by Drupal's security advisory policy"
  6101. }
  6102. }
  6103. },
  6104. "notification-url": "https://packages.drupal.org/8/downloads",
  6105. "license": [
  6106. "GPL-2.0-or-later"
  6107. ],
  6108. "authors": [
  6109. {
  6110. "name": "Jaypan",
  6111. "homepage": "https://www.drupal.org/user/324696"
  6112. }
  6113. ],
  6114. "description": "Text filter to convert URLs to embedded videos",
  6115. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  6116. "support": {
  6117. "source": "http://cgit.drupalcode.org/url_to_video_filter"
  6118. }
  6119. },
  6120. {
  6121. "name": "drupal/views_bulk_edit",
  6122. "version": "2.2.0",
  6123. "source": {
  6124. "type": "git",
  6125. "url": "https://git.drupal.org/project/views_bulk_edit",
  6126. "reference": "8.x-2.2"
  6127. },
  6128. "dist": {
  6129. "type": "zip",
  6130. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  6131. "reference": "8.x-2.2",
  6132. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  6133. },
  6134. "require": {
  6135. "drupal/core": "*",
  6136. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  6137. },
  6138. "type": "drupal-module",
  6139. "extra": {
  6140. "branch-alias": {
  6141. "dev-2.x": "2.x-dev"
  6142. },
  6143. "drupal": {
  6144. "version": "8.x-2.2",
  6145. "datestamp": "1532689085",
  6146. "security-coverage": {
  6147. "status": "covered",
  6148. "message": "Covered by Drupal's security advisory policy"
  6149. }
  6150. }
  6151. },
  6152. "notification-url": "https://packages.drupal.org/8/downloads",
  6153. "license": [
  6154. "GPL-2.0+"
  6155. ],
  6156. "authors": [
  6157. {
  6158. "name": "Marcin Grabias",
  6159. "homepage": "https://www.drupal.org/u/graber"
  6160. },
  6161. {
  6162. "name": "benjy",
  6163. "homepage": "https://www.drupal.org/user/1852732"
  6164. }
  6165. ],
  6166. "description": "Allows bulk edition of entity field values.",
  6167. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  6168. "support": {
  6169. "source": "http://cgit.drupalcode.org/views_bulk_edit",
  6170. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  6171. }
  6172. },
  6173. {
  6174. "name": "drupal/views_bulk_operations",
  6175. "version": "2.4.0",
  6176. "source": {
  6177. "type": "git",
  6178. "url": "https://git.drupal.org/project/views_bulk_operations",
  6179. "reference": "8.x-2.4"
  6180. },
  6181. "dist": {
  6182. "type": "zip",
  6183. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.4.zip",
  6184. "reference": "8.x-2.4",
  6185. "shasum": "50c5778770f3a92e38ecf664301b77146e3cc931"
  6186. },
  6187. "require": {
  6188. "drupal/core": "^8.4"
  6189. },
  6190. "type": "drupal-module",
  6191. "extra": {
  6192. "branch-alias": {
  6193. "dev-2.x": "2.x-dev"
  6194. },
  6195. "drupal": {
  6196. "version": "8.x-2.4",
  6197. "datestamp": "1530516821",
  6198. "security-coverage": {
  6199. "status": "covered",
  6200. "message": "Covered by Drupal's security advisory policy"
  6201. }
  6202. },
  6203. "drush": {
  6204. "services": {
  6205. "drush.services.yml": "^9"
  6206. }
  6207. }
  6208. },
  6209. "notification-url": "https://packages.drupal.org/8/downloads",
  6210. "license": [
  6211. "GPL-2.0+"
  6212. ],
  6213. "authors": [
  6214. {
  6215. "name": "Marcin Grabias",
  6216. "homepage": "https://www.drupal.org/u/graber"
  6217. },
  6218. {
  6219. "name": "Jon Pugh",
  6220. "homepage": "https://www.drupal.org/user/17028"
  6221. },
  6222. {
  6223. "name": "bojanz",
  6224. "homepage": "https://www.drupal.org/user/86106"
  6225. },
  6226. {
  6227. "name": "infojunkie",
  6228. "homepage": "https://www.drupal.org/user/48424"
  6229. },
  6230. {
  6231. "name": "joelpittet",
  6232. "homepage": "https://www.drupal.org/user/160302"
  6233. }
  6234. ],
  6235. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  6236. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  6237. "support": {
  6238. "source": "http://cgit.drupalcode.org/views_bulk_operations",
  6239. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  6240. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  6241. }
  6242. },
  6243. {
  6244. "name": "drupal/workflow",
  6245. "version": "dev-1.x",
  6246. "source": {
  6247. "type": "git",
  6248. "url": "https://git.drupal.org/project/workflow",
  6249. "reference": "942b2a293696fd4c40fbb906f742a2d9293e5fcb"
  6250. },
  6251. "require": {
  6252. "drupal/core": "*"
  6253. },
  6254. "type": "drupal-module",
  6255. "extra": {
  6256. "branch-alias": {
  6257. "dev-1.x": "1.x-dev"
  6258. },
  6259. "drupal": {
  6260. "version": "8.x-1.1+19-dev",
  6261. "datestamp": "1537125481",
  6262. "security-coverage": {
  6263. "status": "not-covered",
  6264. "message": "Dev releases are not covered by Drupal security advisories."
  6265. }
  6266. },
  6267. "patches_applied": {
  6268. "fix bad way of including files": "https://www.drupal.org/files/issues/2018-11-01/workflow-include.patch"
  6269. }
  6270. },
  6271. "notification-url": "https://packages.drupal.org/8/downloads",
  6272. "license": [
  6273. "GPL-2.0-or-later"
  6274. ],
  6275. "authors": [
  6276. {
  6277. "name": "Bastlynn",
  6278. "homepage": "https://www.drupal.org/user/275249"
  6279. },
  6280. {
  6281. "name": "Heine",
  6282. "homepage": "https://www.drupal.org/user/17943"
  6283. },
  6284. {
  6285. "name": "JacobSingh",
  6286. "homepage": "https://www.drupal.org/user/68912"
  6287. },
  6288. {
  6289. "name": "NancyDru",
  6290. "homepage": "https://www.drupal.org/user/101412"
  6291. },
  6292. {
  6293. "name": "eaton",
  6294. "homepage": "https://www.drupal.org/user/16496"
  6295. },
  6296. {
  6297. "name": "johnv",
  6298. "homepage": "https://www.drupal.org/user/591042"
  6299. },
  6300. {
  6301. "name": "jvandyk",
  6302. "homepage": "https://www.drupal.org/user/2375"
  6303. },
  6304. {
  6305. "name": "mfredrickson",
  6306. "homepage": "https://www.drupal.org/user/31994"
  6307. },
  6308. {
  6309. "name": "q0rban",
  6310. "homepage": "https://www.drupal.org/user/31022"
  6311. }
  6312. ],
  6313. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  6314. "homepage": "https://www.drupal.org/project/workflow",
  6315. "support": {
  6316. "source": "http://cgit.drupalcode.org/workflow"
  6317. },
  6318. "time": "2018-09-16T19:25:10+00:00"
  6319. },
  6320. {
  6321. "name": "drush/drush",
  6322. "version": "9.5.2",
  6323. "source": {
  6324. "type": "git",
  6325. "url": "https://github.com/drush-ops/drush.git",
  6326. "reference": "17f0106706391675a281c6d212850853bdbe90f9"
  6327. },
  6328. "dist": {
  6329. "type": "zip",
  6330. "url": "https://api.github.com/repos/drush-ops/drush/zipball/17f0106706391675a281c6d212850853bdbe90f9",
  6331. "reference": "17f0106706391675a281c6d212850853bdbe90f9",
  6332. "shasum": ""
  6333. },
  6334. "require": {
  6335. "chi-teck/drupal-code-generator": "^1.27.0",
  6336. "composer/semver": "^1.4",
  6337. "consolidation/annotated-command": "^2.9.1",
  6338. "consolidation/config": "^1.1.0",
  6339. "consolidation/output-formatters": "^3.1.12",
  6340. "consolidation/robo": "^1.1.5",
  6341. "consolidation/site-alias": "^1.1.5",
  6342. "ext-dom": "*",
  6343. "grasmash/yaml-expander": "^1.1.1",
  6344. "league/container": "~2",
  6345. "php": ">=5.6.0",
  6346. "psr/log": "~1.0",
  6347. "psy/psysh": "~0.6",
  6348. "symfony/config": "^3.4",
  6349. "symfony/console": "^3.4",
  6350. "symfony/event-dispatcher": "^3.4",
  6351. "symfony/finder": "^3.4",
  6352. "symfony/process": "^3.4",
  6353. "symfony/var-dumper": "^3.4",
  6354. "symfony/yaml": "^3.4",
  6355. "webflo/drupal-finder": "^1.1",
  6356. "webmozart/path-util": "^2.1.0"
  6357. },
  6358. "require-dev": {
  6359. "composer/installers": "^1.2",
  6360. "cweagans/composer-patches": "~1.0",
  6361. "drupal/alinks": "1.0.0",
  6362. "drupal/devel": "^1.0@RC",
  6363. "drupal/empty_theme": "1.0",
  6364. "g1a/composer-test-scenarios": "^2.2.0",
  6365. "lox/xhprof": "dev-master",
  6366. "phpunit/phpunit": "^4.8.36 || ^6.1",
  6367. "squizlabs/php_codesniffer": "^2.7",
  6368. "vlucas/phpdotenv": "^2.4",
  6369. "webflo/drupal-core-strict": "8.6.x-dev"
  6370. },
  6371. "bin": [
  6372. "drush"
  6373. ],
  6374. "type": "library",
  6375. "extra": {
  6376. "installer-paths": {
  6377. "sut/core": [
  6378. "type:drupal-core"
  6379. ],
  6380. "sut/libraries/{$name}": [
  6381. "type:drupal-library"
  6382. ],
  6383. "sut/modules/unish/{$name}": [
  6384. "drupal/devel"
  6385. ],
  6386. "sut/themes/unish/{$name}": [
  6387. "drupal/empty_theme"
  6388. ],
  6389. "sut/modules/contrib/{$name}": [
  6390. "type:drupal-module"
  6391. ],
  6392. "sut/profiles/contrib/{$name}": [
  6393. "type:drupal-profile"
  6394. ],
  6395. "sut/themes/contrib/{$name}": [
  6396. "type:drupal-theme"
  6397. ],
  6398. "sut/drush/contrib/{$name}": [
  6399. "type:drupal-drush"
  6400. ]
  6401. },
  6402. "branch-alias": {
  6403. "dev-master": "9.x-dev"
  6404. }
  6405. },
  6406. "autoload": {
  6407. "psr-4": {
  6408. "Drush\\": "src/",
  6409. "Drush\\Internal\\": "internal-copy/",
  6410. "Unish\\": "tests/"
  6411. }
  6412. },
  6413. "notification-url": "https://packagist.org/downloads/",
  6414. "license": [
  6415. "GPL-2.0-or-later"
  6416. ],
  6417. "authors": [
  6418. {
  6419. "name": "Moshe Weitzman",
  6420. "email": "weitzman@tejasa.com"
  6421. },
  6422. {
  6423. "name": "Owen Barton",
  6424. "email": "drupal@owenbarton.com"
  6425. },
  6426. {
  6427. "name": "Greg Anderson",
  6428. "email": "greg.1.anderson@greenknowe.org"
  6429. },
  6430. {
  6431. "name": "Jonathan Araña Cruz",
  6432. "email": "jonhattan@faita.net"
  6433. },
  6434. {
  6435. "name": "Jonathan Hedstrom",
  6436. "email": "jhedstrom@gmail.com"
  6437. },
  6438. {
  6439. "name": "Christopher Gervais",
  6440. "email": "chris@ergonlogic.com"
  6441. },
  6442. {
  6443. "name": "Dave Reid",
  6444. "email": "dave@davereid.net"
  6445. },
  6446. {
  6447. "name": "Damian Lee",
  6448. "email": "damiankloip@googlemail.com"
  6449. }
  6450. ],
  6451. "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.",
  6452. "homepage": "http://www.drush.org",
  6453. "time": "2018-10-17T18:37:53+00:00"
  6454. },
  6455. {
  6456. "name": "easyrdf/easyrdf",
  6457. "version": "0.9.1",
  6458. "source": {
  6459. "type": "git",
  6460. "url": "https://github.com/njh/easyrdf.git",
  6461. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6462. },
  6463. "dist": {
  6464. "type": "zip",
  6465. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6466. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6467. "shasum": ""
  6468. },
  6469. "require": {
  6470. "ext-mbstring": "*",
  6471. "ext-pcre": "*",
  6472. "php": ">=5.2.8"
  6473. },
  6474. "require-dev": {
  6475. "phpunit/phpunit": "~3.5",
  6476. "sami/sami": "~1.4",
  6477. "squizlabs/php_codesniffer": "~1.4.3"
  6478. },
  6479. "suggest": {
  6480. "ml/json-ld": "~1.0"
  6481. },
  6482. "type": "library",
  6483. "autoload": {
  6484. "psr-0": {
  6485. "EasyRdf_": "lib/"
  6486. }
  6487. },
  6488. "notification-url": "https://packagist.org/downloads/",
  6489. "license": [
  6490. "BSD-3-Clause"
  6491. ],
  6492. "authors": [
  6493. {
  6494. "name": "Nicholas Humfrey",
  6495. "email": "njh@aelius.com",
  6496. "homepage": "http://www.aelius.com/njh/",
  6497. "role": "Developer"
  6498. },
  6499. {
  6500. "name": "Alexey Zakhlestin",
  6501. "email": "indeyets@gmail.com",
  6502. "role": "Developer"
  6503. }
  6504. ],
  6505. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  6506. "homepage": "http://www.easyrdf.org/",
  6507. "keywords": [
  6508. "Linked Data",
  6509. "RDF",
  6510. "Semantic Web",
  6511. "Turtle",
  6512. "rdfa",
  6513. "sparql"
  6514. ],
  6515. "time": "2015-02-27T09:45:49+00:00"
  6516. },
  6517. {
  6518. "name": "egulias/email-validator",
  6519. "version": "1.2.15",
  6520. "source": {
  6521. "type": "git",
  6522. "url": "https://github.com/egulias/EmailValidator.git",
  6523. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  6524. },
  6525. "dist": {
  6526. "type": "zip",
  6527. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  6528. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  6529. "shasum": ""
  6530. },
  6531. "require": {
  6532. "doctrine/lexer": "^1.0.1",
  6533. "php": ">= 5.3.3"
  6534. },
  6535. "require-dev": {
  6536. "phpunit/phpunit": "^4.8.24"
  6537. },
  6538. "type": "library",
  6539. "extra": {
  6540. "branch-alias": {
  6541. "dev-master": "2.0.x-dev"
  6542. }
  6543. },
  6544. "autoload": {
  6545. "psr-0": {
  6546. "Egulias\\": "src/"
  6547. }
  6548. },
  6549. "notification-url": "https://packagist.org/downloads/",
  6550. "license": [
  6551. "MIT"
  6552. ],
  6553. "authors": [
  6554. {
  6555. "name": "Eduardo Gulias Davis"
  6556. }
  6557. ],
  6558. "description": "A library for validating emails",
  6559. "homepage": "https://github.com/egulias/EmailValidator",
  6560. "keywords": [
  6561. "email",
  6562. "emailvalidation",
  6563. "emailvalidator",
  6564. "validation",
  6565. "validator"
  6566. ],
  6567. "time": "2018-09-25T20:59:41+00:00"
  6568. },
  6569. {
  6570. "name": "g1a/composer-test-scenarios",
  6571. "version": "2.2.0",
  6572. "source": {
  6573. "type": "git",
  6574. "url": "https://github.com/g1a/composer-test-scenarios.git",
  6575. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880"
  6576. },
  6577. "dist": {
  6578. "type": "zip",
  6579. "url": "https://api.github.com/repos/g1a/composer-test-scenarios/zipball/a166fd15191aceab89f30c097e694b7cf3db4880",
  6580. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880",
  6581. "shasum": ""
  6582. },
  6583. "bin": [
  6584. "scripts/create-scenario",
  6585. "scripts/dependency-licenses",
  6586. "scripts/install-scenario"
  6587. ],
  6588. "type": "library",
  6589. "notification-url": "https://packagist.org/downloads/",
  6590. "license": [
  6591. "MIT"
  6592. ],
  6593. "authors": [
  6594. {
  6595. "name": "Greg Anderson",
  6596. "email": "greg.1.anderson@greenknowe.org"
  6597. }
  6598. ],
  6599. "description": "Useful scripts for testing multiple sets of Composer dependencies.",
  6600. "time": "2018-08-08T23:37:23+00:00"
  6601. },
  6602. {
  6603. "name": "grasmash/expander",
  6604. "version": "1.0.0",
  6605. "source": {
  6606. "type": "git",
  6607. "url": "https://github.com/grasmash/expander.git",
  6608. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  6609. },
  6610. "dist": {
  6611. "type": "zip",
  6612. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6613. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6614. "shasum": ""
  6615. },
  6616. "require": {
  6617. "dflydev/dot-access-data": "^1.1.0",
  6618. "php": ">=5.4"
  6619. },
  6620. "require-dev": {
  6621. "greg-1-anderson/composer-test-scenarios": "^1",
  6622. "phpunit/phpunit": "^4|^5.5.4",
  6623. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6624. "squizlabs/php_codesniffer": "^2.7"
  6625. },
  6626. "type": "library",
  6627. "extra": {
  6628. "branch-alias": {
  6629. "dev-master": "1.x-dev"
  6630. }
  6631. },
  6632. "autoload": {
  6633. "psr-4": {
  6634. "Grasmash\\Expander\\": "src/"
  6635. }
  6636. },
  6637. "notification-url": "https://packagist.org/downloads/",
  6638. "license": [
  6639. "MIT"
  6640. ],
  6641. "authors": [
  6642. {
  6643. "name": "Matthew Grasmick"
  6644. }
  6645. ],
  6646. "description": "Expands internal property references in PHP arrays file.",
  6647. "time": "2017-12-21T22:14:55+00:00"
  6648. },
  6649. {
  6650. "name": "grasmash/yaml-expander",
  6651. "version": "1.4.0",
  6652. "source": {
  6653. "type": "git",
  6654. "url": "https://github.com/grasmash/yaml-expander.git",
  6655. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6656. },
  6657. "dist": {
  6658. "type": "zip",
  6659. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6660. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6661. "shasum": ""
  6662. },
  6663. "require": {
  6664. "dflydev/dot-access-data": "^1.1.0",
  6665. "php": ">=5.4",
  6666. "symfony/yaml": "^2.8.11|^3|^4"
  6667. },
  6668. "require-dev": {
  6669. "greg-1-anderson/composer-test-scenarios": "^1",
  6670. "phpunit/phpunit": "^4.8|^5.5.4",
  6671. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6672. "squizlabs/php_codesniffer": "^2.7"
  6673. },
  6674. "type": "library",
  6675. "extra": {
  6676. "branch-alias": {
  6677. "dev-master": "1.x-dev"
  6678. }
  6679. },
  6680. "autoload": {
  6681. "psr-4": {
  6682. "Grasmash\\YamlExpander\\": "src/"
  6683. }
  6684. },
  6685. "notification-url": "https://packagist.org/downloads/",
  6686. "license": [
  6687. "MIT"
  6688. ],
  6689. "authors": [
  6690. {
  6691. "name": "Matthew Grasmick"
  6692. }
  6693. ],
  6694. "description": "Expands internal property references in a yaml file.",
  6695. "time": "2017-12-16T16:06:03+00:00"
  6696. },
  6697. {
  6698. "name": "guzzlehttp/guzzle",
  6699. "version": "6.3.3",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://github.com/guzzle/guzzle.git",
  6703. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  6708. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  6709. "shasum": ""
  6710. },
  6711. "require": {
  6712. "guzzlehttp/promises": "^1.0",
  6713. "guzzlehttp/psr7": "^1.4",
  6714. "php": ">=5.5"
  6715. },
  6716. "require-dev": {
  6717. "ext-curl": "*",
  6718. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6719. "psr/log": "^1.0"
  6720. },
  6721. "suggest": {
  6722. "psr/log": "Required for using the Log middleware"
  6723. },
  6724. "type": "library",
  6725. "extra": {
  6726. "branch-alias": {
  6727. "dev-master": "6.3-dev"
  6728. }
  6729. },
  6730. "autoload": {
  6731. "files": [
  6732. "src/functions_include.php"
  6733. ],
  6734. "psr-4": {
  6735. "GuzzleHttp\\": "src/"
  6736. }
  6737. },
  6738. "notification-url": "https://packagist.org/downloads/",
  6739. "license": [
  6740. "MIT"
  6741. ],
  6742. "authors": [
  6743. {
  6744. "name": "Michael Dowling",
  6745. "email": "mtdowling@gmail.com",
  6746. "homepage": "https://github.com/mtdowling"
  6747. }
  6748. ],
  6749. "description": "Guzzle is a PHP HTTP client library",
  6750. "homepage": "http://guzzlephp.org/",
  6751. "keywords": [
  6752. "client",
  6753. "curl",
  6754. "framework",
  6755. "http",
  6756. "http client",
  6757. "rest",
  6758. "web service"
  6759. ],
  6760. "time": "2018-04-22T15:46:56+00:00"
  6761. },
  6762. {
  6763. "name": "guzzlehttp/promises",
  6764. "version": "v1.3.1",
  6765. "source": {
  6766. "type": "git",
  6767. "url": "https://github.com/guzzle/promises.git",
  6768. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6769. },
  6770. "dist": {
  6771. "type": "zip",
  6772. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6773. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6774. "shasum": ""
  6775. },
  6776. "require": {
  6777. "php": ">=5.5.0"
  6778. },
  6779. "require-dev": {
  6780. "phpunit/phpunit": "^4.0"
  6781. },
  6782. "type": "library",
  6783. "extra": {
  6784. "branch-alias": {
  6785. "dev-master": "1.4-dev"
  6786. }
  6787. },
  6788. "autoload": {
  6789. "psr-4": {
  6790. "GuzzleHttp\\Promise\\": "src/"
  6791. },
  6792. "files": [
  6793. "src/functions_include.php"
  6794. ]
  6795. },
  6796. "notification-url": "https://packagist.org/downloads/",
  6797. "license": [
  6798. "MIT"
  6799. ],
  6800. "authors": [
  6801. {
  6802. "name": "Michael Dowling",
  6803. "email": "mtdowling@gmail.com",
  6804. "homepage": "https://github.com/mtdowling"
  6805. }
  6806. ],
  6807. "description": "Guzzle promises library",
  6808. "keywords": [
  6809. "promise"
  6810. ],
  6811. "time": "2016-12-20T10:07:11+00:00"
  6812. },
  6813. {
  6814. "name": "guzzlehttp/psr7",
  6815. "version": "1.4.2",
  6816. "source": {
  6817. "type": "git",
  6818. "url": "https://github.com/guzzle/psr7.git",
  6819. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  6820. },
  6821. "dist": {
  6822. "type": "zip",
  6823. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  6824. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  6825. "shasum": ""
  6826. },
  6827. "require": {
  6828. "php": ">=5.4.0",
  6829. "psr/http-message": "~1.0"
  6830. },
  6831. "provide": {
  6832. "psr/http-message-implementation": "1.0"
  6833. },
  6834. "require-dev": {
  6835. "phpunit/phpunit": "~4.0"
  6836. },
  6837. "type": "library",
  6838. "extra": {
  6839. "branch-alias": {
  6840. "dev-master": "1.4-dev"
  6841. }
  6842. },
  6843. "autoload": {
  6844. "psr-4": {
  6845. "GuzzleHttp\\Psr7\\": "src/"
  6846. },
  6847. "files": [
  6848. "src/functions_include.php"
  6849. ]
  6850. },
  6851. "notification-url": "https://packagist.org/downloads/",
  6852. "license": [
  6853. "MIT"
  6854. ],
  6855. "authors": [
  6856. {
  6857. "name": "Michael Dowling",
  6858. "email": "mtdowling@gmail.com",
  6859. "homepage": "https://github.com/mtdowling"
  6860. },
  6861. {
  6862. "name": "Tobias Schultze",
  6863. "homepage": "https://github.com/Tobion"
  6864. }
  6865. ],
  6866. "description": "PSR-7 message implementation that also provides common utility methods",
  6867. "keywords": [
  6868. "http",
  6869. "message",
  6870. "request",
  6871. "response",
  6872. "stream",
  6873. "uri",
  6874. "url"
  6875. ],
  6876. "time": "2017-03-20T17:10:46+00:00"
  6877. },
  6878. {
  6879. "name": "jakub-onderka/php-console-color",
  6880. "version": "v0.2",
  6881. "source": {
  6882. "type": "git",
  6883. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6884. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6885. },
  6886. "dist": {
  6887. "type": "zip",
  6888. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6889. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6890. "shasum": ""
  6891. },
  6892. "require": {
  6893. "php": ">=5.4.0"
  6894. },
  6895. "require-dev": {
  6896. "jakub-onderka/php-code-style": "1.0",
  6897. "jakub-onderka/php-parallel-lint": "1.0",
  6898. "jakub-onderka/php-var-dump-check": "0.*",
  6899. "phpunit/phpunit": "~4.3",
  6900. "squizlabs/php_codesniffer": "1.*"
  6901. },
  6902. "type": "library",
  6903. "autoload": {
  6904. "psr-4": {
  6905. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6906. }
  6907. },
  6908. "notification-url": "https://packagist.org/downloads/",
  6909. "license": [
  6910. "BSD-2-Clause"
  6911. ],
  6912. "authors": [
  6913. {
  6914. "name": "Jakub Onderka",
  6915. "email": "jakub.onderka@gmail.com"
  6916. }
  6917. ],
  6918. "time": "2018-09-29T17:23:10+00:00"
  6919. },
  6920. {
  6921. "name": "jakub-onderka/php-console-highlighter",
  6922. "version": "v0.4",
  6923. "source": {
  6924. "type": "git",
  6925. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6926. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6927. },
  6928. "dist": {
  6929. "type": "zip",
  6930. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6931. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6932. "shasum": ""
  6933. },
  6934. "require": {
  6935. "ext-tokenizer": "*",
  6936. "jakub-onderka/php-console-color": "~0.2",
  6937. "php": ">=5.4.0"
  6938. },
  6939. "require-dev": {
  6940. "jakub-onderka/php-code-style": "~1.0",
  6941. "jakub-onderka/php-parallel-lint": "~1.0",
  6942. "jakub-onderka/php-var-dump-check": "~0.1",
  6943. "phpunit/phpunit": "~4.0",
  6944. "squizlabs/php_codesniffer": "~1.5"
  6945. },
  6946. "type": "library",
  6947. "autoload": {
  6948. "psr-4": {
  6949. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6950. }
  6951. },
  6952. "notification-url": "https://packagist.org/downloads/",
  6953. "license": [
  6954. "MIT"
  6955. ],
  6956. "authors": [
  6957. {
  6958. "name": "Jakub Onderka",
  6959. "email": "acci@acci.cz",
  6960. "homepage": "http://www.acci.cz/"
  6961. }
  6962. ],
  6963. "description": "Highlight PHP code in terminal",
  6964. "time": "2018-09-29T18:48:56+00:00"
  6965. },
  6966. {
  6967. "name": "league/container",
  6968. "version": "2.4.1",
  6969. "source": {
  6970. "type": "git",
  6971. "url": "https://github.com/thephpleague/container.git",
  6972. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6973. },
  6974. "dist": {
  6975. "type": "zip",
  6976. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6977. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6978. "shasum": ""
  6979. },
  6980. "require": {
  6981. "container-interop/container-interop": "^1.2",
  6982. "php": "^5.4.0 || ^7.0"
  6983. },
  6984. "provide": {
  6985. "container-interop/container-interop-implementation": "^1.2",
  6986. "psr/container-implementation": "^1.0"
  6987. },
  6988. "replace": {
  6989. "orno/di": "~2.0"
  6990. },
  6991. "require-dev": {
  6992. "phpunit/phpunit": "4.*"
  6993. },
  6994. "type": "library",
  6995. "extra": {
  6996. "branch-alias": {
  6997. "dev-2.x": "2.x-dev",
  6998. "dev-1.x": "1.x-dev"
  6999. }
  7000. },
  7001. "autoload": {
  7002. "psr-4": {
  7003. "League\\Container\\": "src"
  7004. }
  7005. },
  7006. "notification-url": "https://packagist.org/downloads/",
  7007. "license": [
  7008. "MIT"
  7009. ],
  7010. "authors": [
  7011. {
  7012. "name": "Phil Bennett",
  7013. "email": "philipobenito@gmail.com",
  7014. "homepage": "http://www.philipobenito.com",
  7015. "role": "Developer"
  7016. }
  7017. ],
  7018. "description": "A fast and intuitive dependency injection container.",
  7019. "homepage": "https://github.com/thephpleague/container",
  7020. "keywords": [
  7021. "container",
  7022. "dependency",
  7023. "di",
  7024. "injection",
  7025. "league",
  7026. "provider",
  7027. "service"
  7028. ],
  7029. "time": "2017-05-10T09:20:27+00:00"
  7030. },
  7031. {
  7032. "name": "lsolesen/pel",
  7033. "version": "0.9.6",
  7034. "source": {
  7035. "type": "git",
  7036. "url": "https://github.com/lsolesen/pel.git",
  7037. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23"
  7038. },
  7039. "dist": {
  7040. "type": "zip",
  7041. "url": "https://api.github.com/repos/lsolesen/pel/zipball/c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7042. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7043. "shasum": ""
  7044. },
  7045. "require": {
  7046. "php": ">=5.0.0"
  7047. },
  7048. "require-dev": {
  7049. "ext-gd": "*",
  7050. "phpunit/phpunit": "5.7.*",
  7051. "satooshi/php-coveralls": "1.0.*",
  7052. "squizlabs/php_codesniffer": "3.0.0RC3"
  7053. },
  7054. "type": "library",
  7055. "autoload": {
  7056. "psr-4": {
  7057. "lsolesen\\pel\\": "src/"
  7058. }
  7059. },
  7060. "notification-url": "https://packagist.org/downloads/",
  7061. "license": [
  7062. "GPL-2.0"
  7063. ],
  7064. "authors": [
  7065. {
  7066. "name": "Lars Olesen",
  7067. "email": "lars@intraface.dk",
  7068. "homepage": "http://intraface.dk",
  7069. "role": "Developer"
  7070. },
  7071. {
  7072. "name": "Martin Geisler",
  7073. "email": "martin@geisler.net",
  7074. "homepage": "http://geisler.net",
  7075. "role": "Developer"
  7076. }
  7077. ],
  7078. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  7079. "homepage": "http://lsolesen.github.com/pel/",
  7080. "keywords": [
  7081. "exif",
  7082. "image"
  7083. ],
  7084. "time": "2017-02-03T11:58:58+00:00"
  7085. },
  7086. {
  7087. "name": "masterminds/html5",
  7088. "version": "2.3.1",
  7089. "source": {
  7090. "type": "git",
  7091. "url": "https://github.com/Masterminds/html5-php.git",
  7092. "reference": "33f8d475d28741398be26cdff7a10a63003324a3"
  7093. },
  7094. "dist": {
  7095. "type": "zip",
  7096. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/33f8d475d28741398be26cdff7a10a63003324a3",
  7097. "reference": "33f8d475d28741398be26cdff7a10a63003324a3",
  7098. "shasum": ""
  7099. },
  7100. "require": {
  7101. "ext-libxml": "*",
  7102. "php": ">=5.3.0"
  7103. },
  7104. "require-dev": {
  7105. "phpunit/phpunit": "4.*",
  7106. "sami/sami": "~2.0",
  7107. "satooshi/php-coveralls": "1.0.*"
  7108. },
  7109. "type": "library",
  7110. "extra": {
  7111. "branch-alias": {
  7112. "dev-master": "2.2-dev"
  7113. }
  7114. },
  7115. "autoload": {
  7116. "psr-4": {
  7117. "Masterminds\\": "src"
  7118. }
  7119. },
  7120. "notification-url": "https://packagist.org/downloads/",
  7121. "license": [
  7122. "MIT"
  7123. ],
  7124. "authors": [
  7125. {
  7126. "name": "Matt Butcher",
  7127. "email": "technosophos@gmail.com"
  7128. },
  7129. {
  7130. "name": "Asmir Mustafic",
  7131. "email": "goetas@gmail.com"
  7132. },
  7133. {
  7134. "name": "Matt Farina",
  7135. "email": "matt@mattfarina.com"
  7136. }
  7137. ],
  7138. "description": "An HTML5 parser and serializer.",
  7139. "homepage": "http://masterminds.github.io/html5-php",
  7140. "keywords": [
  7141. "HTML5",
  7142. "dom",
  7143. "html",
  7144. "parser",
  7145. "querypath",
  7146. "serializer",
  7147. "xml"
  7148. ],
  7149. "time": "2018-10-22T16:58:34+00:00"
  7150. },
  7151. {
  7152. "name": "nikic/php-parser",
  7153. "version": "v4.1.0",
  7154. "source": {
  7155. "type": "git",
  7156. "url": "https://github.com/nikic/PHP-Parser.git",
  7157. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0"
  7158. },
  7159. "dist": {
  7160. "type": "zip",
  7161. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/d0230c5c77a7e3cfa69446febf340978540958c0",
  7162. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0",
  7163. "shasum": ""
  7164. },
  7165. "require": {
  7166. "ext-tokenizer": "*",
  7167. "php": ">=7.0"
  7168. },
  7169. "require-dev": {
  7170. "phpunit/phpunit": "^6.5 || ^7.0"
  7171. },
  7172. "bin": [
  7173. "bin/php-parse"
  7174. ],
  7175. "type": "library",
  7176. "extra": {
  7177. "branch-alias": {
  7178. "dev-master": "4.1-dev"
  7179. }
  7180. },
  7181. "autoload": {
  7182. "psr-4": {
  7183. "PhpParser\\": "lib/PhpParser"
  7184. }
  7185. },
  7186. "notification-url": "https://packagist.org/downloads/",
  7187. "license": [
  7188. "BSD-3-Clause"
  7189. ],
  7190. "authors": [
  7191. {
  7192. "name": "Nikita Popov"
  7193. }
  7194. ],
  7195. "description": "A PHP parser written in PHP",
  7196. "keywords": [
  7197. "parser",
  7198. "php"
  7199. ],
  7200. "time": "2018-10-10T09:24:14+00:00"
  7201. },
  7202. {
  7203. "name": "paragonie/random_compat",
  7204. "version": "v2.0.17",
  7205. "source": {
  7206. "type": "git",
  7207. "url": "https://github.com/paragonie/random_compat.git",
  7208. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d"
  7209. },
  7210. "dist": {
  7211. "type": "zip",
  7212. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/29af24f25bab834fcbb38ad2a69fa93b867e070d",
  7213. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d",
  7214. "shasum": ""
  7215. },
  7216. "require": {
  7217. "php": ">=5.2.0"
  7218. },
  7219. "require-dev": {
  7220. "phpunit/phpunit": "4.*|5.*"
  7221. },
  7222. "suggest": {
  7223. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7224. },
  7225. "type": "library",
  7226. "autoload": {
  7227. "files": [
  7228. "lib/random.php"
  7229. ]
  7230. },
  7231. "notification-url": "https://packagist.org/downloads/",
  7232. "license": [
  7233. "MIT"
  7234. ],
  7235. "authors": [
  7236. {
  7237. "name": "Paragon Initiative Enterprises",
  7238. "email": "security@paragonie.com",
  7239. "homepage": "https://paragonie.com"
  7240. }
  7241. ],
  7242. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7243. "keywords": [
  7244. "csprng",
  7245. "polyfill",
  7246. "pseudorandom",
  7247. "random"
  7248. ],
  7249. "time": "2018-07-04T16:31:37+00:00"
  7250. },
  7251. {
  7252. "name": "phenx/php-font-lib",
  7253. "version": "0.5",
  7254. "source": {
  7255. "type": "git",
  7256. "url": "https://github.com/PhenX/php-font-lib.git",
  7257. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962"
  7258. },
  7259. "dist": {
  7260. "type": "zip",
  7261. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7262. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7263. "shasum": ""
  7264. },
  7265. "require-dev": {
  7266. "phpunit/phpunit": "^4.8"
  7267. },
  7268. "type": "library",
  7269. "autoload": {
  7270. "psr-4": {
  7271. "FontLib\\": "src/FontLib"
  7272. }
  7273. },
  7274. "notification-url": "https://packagist.org/downloads/",
  7275. "license": [
  7276. "LGPL-3.0"
  7277. ],
  7278. "authors": [
  7279. {
  7280. "name": "Fabien Ménager",
  7281. "email": "fabien.menager@gmail.com"
  7282. }
  7283. ],
  7284. "description": "A library to read, parse, export and make subsets of different types of font files.",
  7285. "homepage": "https://github.com/PhenX/php-font-lib",
  7286. "time": "2017-02-11T10:58:43+00:00"
  7287. },
  7288. {
  7289. "name": "psr/container",
  7290. "version": "1.0.0",
  7291. "source": {
  7292. "type": "git",
  7293. "url": "https://github.com/php-fig/container.git",
  7294. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7295. },
  7296. "dist": {
  7297. "type": "zip",
  7298. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7299. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7300. "shasum": ""
  7301. },
  7302. "require": {
  7303. "php": ">=5.3.0"
  7304. },
  7305. "type": "library",
  7306. "extra": {
  7307. "branch-alias": {
  7308. "dev-master": "1.0.x-dev"
  7309. }
  7310. },
  7311. "autoload": {
  7312. "psr-4": {
  7313. "Psr\\Container\\": "src/"
  7314. }
  7315. },
  7316. "notification-url": "https://packagist.org/downloads/",
  7317. "license": [
  7318. "MIT"
  7319. ],
  7320. "authors": [
  7321. {
  7322. "name": "PHP-FIG",
  7323. "homepage": "http://www.php-fig.org/"
  7324. }
  7325. ],
  7326. "description": "Common Container Interface (PHP FIG PSR-11)",
  7327. "homepage": "https://github.com/php-fig/container",
  7328. "keywords": [
  7329. "PSR-11",
  7330. "container",
  7331. "container-interface",
  7332. "container-interop",
  7333. "psr"
  7334. ],
  7335. "time": "2017-02-14T16:28:37+00:00"
  7336. },
  7337. {
  7338. "name": "psr/http-message",
  7339. "version": "1.0.1",
  7340. "source": {
  7341. "type": "git",
  7342. "url": "https://github.com/php-fig/http-message.git",
  7343. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7344. },
  7345. "dist": {
  7346. "type": "zip",
  7347. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7348. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7349. "shasum": ""
  7350. },
  7351. "require": {
  7352. "php": ">=5.3.0"
  7353. },
  7354. "type": "library",
  7355. "extra": {
  7356. "branch-alias": {
  7357. "dev-master": "1.0.x-dev"
  7358. }
  7359. },
  7360. "autoload": {
  7361. "psr-4": {
  7362. "Psr\\Http\\Message\\": "src/"
  7363. }
  7364. },
  7365. "notification-url": "https://packagist.org/downloads/",
  7366. "license": [
  7367. "MIT"
  7368. ],
  7369. "authors": [
  7370. {
  7371. "name": "PHP-FIG",
  7372. "homepage": "http://www.php-fig.org/"
  7373. }
  7374. ],
  7375. "description": "Common interface for HTTP messages",
  7376. "homepage": "https://github.com/php-fig/http-message",
  7377. "keywords": [
  7378. "http",
  7379. "http-message",
  7380. "psr",
  7381. "psr-7",
  7382. "request",
  7383. "response"
  7384. ],
  7385. "time": "2016-08-06T14:39:51+00:00"
  7386. },
  7387. {
  7388. "name": "psr/log",
  7389. "version": "1.0.2",
  7390. "source": {
  7391. "type": "git",
  7392. "url": "https://github.com/php-fig/log.git",
  7393. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  7394. },
  7395. "dist": {
  7396. "type": "zip",
  7397. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  7398. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  7399. "shasum": ""
  7400. },
  7401. "require": {
  7402. "php": ">=5.3.0"
  7403. },
  7404. "type": "library",
  7405. "extra": {
  7406. "branch-alias": {
  7407. "dev-master": "1.0.x-dev"
  7408. }
  7409. },
  7410. "autoload": {
  7411. "psr-4": {
  7412. "Psr\\Log\\": "Psr/Log/"
  7413. }
  7414. },
  7415. "notification-url": "https://packagist.org/downloads/",
  7416. "license": [
  7417. "MIT"
  7418. ],
  7419. "authors": [
  7420. {
  7421. "name": "PHP-FIG",
  7422. "homepage": "http://www.php-fig.org/"
  7423. }
  7424. ],
  7425. "description": "Common interface for logging libraries",
  7426. "homepage": "https://github.com/php-fig/log",
  7427. "keywords": [
  7428. "log",
  7429. "psr",
  7430. "psr-3"
  7431. ],
  7432. "time": "2016-10-10T12:19:37+00:00"
  7433. },
  7434. {
  7435. "name": "psy/psysh",
  7436. "version": "v0.9.9",
  7437. "source": {
  7438. "type": "git",
  7439. "url": "https://github.com/bobthecow/psysh.git",
  7440. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  7441. },
  7442. "dist": {
  7443. "type": "zip",
  7444. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  7445. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  7446. "shasum": ""
  7447. },
  7448. "require": {
  7449. "dnoegel/php-xdg-base-dir": "0.1",
  7450. "ext-json": "*",
  7451. "ext-tokenizer": "*",
  7452. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  7453. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  7454. "php": ">=5.4.0",
  7455. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  7456. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  7457. },
  7458. "require-dev": {
  7459. "bamarni/composer-bin-plugin": "^1.2",
  7460. "hoa/console": "~2.15|~3.16",
  7461. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  7462. },
  7463. "suggest": {
  7464. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7465. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7466. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7467. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7468. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7469. },
  7470. "bin": [
  7471. "bin/psysh"
  7472. ],
  7473. "type": "library",
  7474. "extra": {
  7475. "branch-alias": {
  7476. "dev-develop": "0.9.x-dev"
  7477. }
  7478. },
  7479. "autoload": {
  7480. "files": [
  7481. "src/functions.php"
  7482. ],
  7483. "psr-4": {
  7484. "Psy\\": "src/"
  7485. }
  7486. },
  7487. "notification-url": "https://packagist.org/downloads/",
  7488. "license": [
  7489. "MIT"
  7490. ],
  7491. "authors": [
  7492. {
  7493. "name": "Justin Hileman",
  7494. "email": "justin@justinhileman.info",
  7495. "homepage": "http://justinhileman.com"
  7496. }
  7497. ],
  7498. "description": "An interactive shell for modern PHP.",
  7499. "homepage": "http://psysh.org",
  7500. "keywords": [
  7501. "REPL",
  7502. "console",
  7503. "interactive",
  7504. "shell"
  7505. ],
  7506. "time": "2018-10-13T15:16:03+00:00"
  7507. },
  7508. {
  7509. "name": "stack/builder",
  7510. "version": "v1.0.5",
  7511. "source": {
  7512. "type": "git",
  7513. "url": "https://github.com/stackphp/builder.git",
  7514. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7515. },
  7516. "dist": {
  7517. "type": "zip",
  7518. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7519. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7520. "shasum": ""
  7521. },
  7522. "require": {
  7523. "php": ">=5.3.0",
  7524. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7525. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7526. },
  7527. "require-dev": {
  7528. "silex/silex": "~1.0"
  7529. },
  7530. "type": "library",
  7531. "extra": {
  7532. "branch-alias": {
  7533. "dev-master": "1.0-dev"
  7534. }
  7535. },
  7536. "autoload": {
  7537. "psr-0": {
  7538. "Stack": "src"
  7539. }
  7540. },
  7541. "notification-url": "https://packagist.org/downloads/",
  7542. "license": [
  7543. "MIT"
  7544. ],
  7545. "authors": [
  7546. {
  7547. "name": "Igor Wiedler",
  7548. "email": "igor@wiedler.ch"
  7549. }
  7550. ],
  7551. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7552. "keywords": [
  7553. "stack"
  7554. ],
  7555. "time": "2017-11-18T14:57:29+00:00"
  7556. },
  7557. {
  7558. "name": "stecman/symfony-console-completion",
  7559. "version": "0.8.0",
  7560. "source": {
  7561. "type": "git",
  7562. "url": "https://github.com/stecman/symfony-console-completion.git",
  7563. "reference": "cd738867503477e91dbe84173dfabd431c883431"
  7564. },
  7565. "dist": {
  7566. "type": "zip",
  7567. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/cd738867503477e91dbe84173dfabd431c883431",
  7568. "reference": "cd738867503477e91dbe84173dfabd431c883431",
  7569. "shasum": ""
  7570. },
  7571. "require": {
  7572. "php": ">=5.3.2",
  7573. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  7574. },
  7575. "require-dev": {
  7576. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  7577. },
  7578. "type": "library",
  7579. "extra": {
  7580. "branch-alias": {
  7581. "dev-master": "0.6.x-dev"
  7582. }
  7583. },
  7584. "autoload": {
  7585. "psr-4": {
  7586. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  7587. }
  7588. },
  7589. "notification-url": "https://packagist.org/downloads/",
  7590. "license": [
  7591. "MIT"
  7592. ],
  7593. "authors": [
  7594. {
  7595. "name": "Stephen Holdaway",
  7596. "email": "stephen@stecman.co.nz"
  7597. }
  7598. ],
  7599. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  7600. "time": "2018-02-10T04:28:01+00:00"
  7601. },
  7602. {
  7603. "name": "symfony-cmf/routing",
  7604. "version": "1.4.1",
  7605. "source": {
  7606. "type": "git",
  7607. "url": "https://github.com/symfony-cmf/routing.git",
  7608. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7609. },
  7610. "dist": {
  7611. "type": "zip",
  7612. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7613. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7614. "shasum": ""
  7615. },
  7616. "require": {
  7617. "php": "^5.3.9|^7.0",
  7618. "psr/log": "1.*",
  7619. "symfony/http-kernel": "^2.2|3.*",
  7620. "symfony/routing": "^2.2|3.*"
  7621. },
  7622. "require-dev": {
  7623. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7624. "symfony-cmf/testing": "^1.3",
  7625. "symfony/config": "^2.2|3.*",
  7626. "symfony/dependency-injection": "^2.0.5|3.*",
  7627. "symfony/event-dispatcher": "^2.1|3.*"
  7628. },
  7629. "suggest": {
  7630. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7631. },
  7632. "type": "library",
  7633. "extra": {
  7634. "branch-alias": {
  7635. "dev-master": "1.4-dev"
  7636. }
  7637. },
  7638. "autoload": {
  7639. "psr-4": {
  7640. "Symfony\\Cmf\\Component\\Routing\\": ""
  7641. }
  7642. },
  7643. "notification-url": "https://packagist.org/downloads/",
  7644. "license": [
  7645. "MIT"
  7646. ],
  7647. "authors": [
  7648. {
  7649. "name": "Symfony CMF Community",
  7650. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7651. }
  7652. ],
  7653. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7654. "homepage": "http://cmf.symfony.com",
  7655. "keywords": [
  7656. "database",
  7657. "routing"
  7658. ],
  7659. "time": "2017-05-09T08:10:41+00:00"
  7660. },
  7661. {
  7662. "name": "symfony/class-loader",
  7663. "version": "v3.4.17",
  7664. "source": {
  7665. "type": "git",
  7666. "url": "https://github.com/symfony/class-loader.git",
  7667. "reference": "f31333bdff54c7595f834d510a6d2325573ddb36"
  7668. },
  7669. "dist": {
  7670. "type": "zip",
  7671. "url": "https://api.github.com/repos/symfony/class-loader/zipball/f31333bdff54c7595f834d510a6d2325573ddb36",
  7672. "reference": "f31333bdff54c7595f834d510a6d2325573ddb36",
  7673. "shasum": ""
  7674. },
  7675. "require": {
  7676. "php": "^5.5.9|>=7.0.8"
  7677. },
  7678. "require-dev": {
  7679. "symfony/finder": "~2.8|~3.0|~4.0",
  7680. "symfony/polyfill-apcu": "~1.1"
  7681. },
  7682. "suggest": {
  7683. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7684. },
  7685. "type": "library",
  7686. "extra": {
  7687. "branch-alias": {
  7688. "dev-master": "3.4-dev"
  7689. }
  7690. },
  7691. "autoload": {
  7692. "psr-4": {
  7693. "Symfony\\Component\\ClassLoader\\": ""
  7694. },
  7695. "exclude-from-classmap": [
  7696. "/Tests/"
  7697. ]
  7698. },
  7699. "notification-url": "https://packagist.org/downloads/",
  7700. "license": [
  7701. "MIT"
  7702. ],
  7703. "authors": [
  7704. {
  7705. "name": "Fabien Potencier",
  7706. "email": "fabien@symfony.com"
  7707. },
  7708. {
  7709. "name": "Symfony Community",
  7710. "homepage": "https://symfony.com/contributors"
  7711. }
  7712. ],
  7713. "description": "Symfony ClassLoader Component",
  7714. "homepage": "https://symfony.com",
  7715. "time": "2018-10-02T12:28:39+00:00"
  7716. },
  7717. {
  7718. "name": "symfony/config",
  7719. "version": "v3.4.17",
  7720. "source": {
  7721. "type": "git",
  7722. "url": "https://github.com/symfony/config.git",
  7723. "reference": "e5389132dc6320682de3643091121c048ff796b3"
  7724. },
  7725. "dist": {
  7726. "type": "zip",
  7727. "url": "https://api.github.com/repos/symfony/config/zipball/e5389132dc6320682de3643091121c048ff796b3",
  7728. "reference": "e5389132dc6320682de3643091121c048ff796b3",
  7729. "shasum": ""
  7730. },
  7731. "require": {
  7732. "php": "^5.5.9|>=7.0.8",
  7733. "symfony/filesystem": "~2.8|~3.0|~4.0",
  7734. "symfony/polyfill-ctype": "~1.8"
  7735. },
  7736. "conflict": {
  7737. "symfony/dependency-injection": "<3.3",
  7738. "symfony/finder": "<3.3"
  7739. },
  7740. "require-dev": {
  7741. "symfony/dependency-injection": "~3.3|~4.0",
  7742. "symfony/event-dispatcher": "~3.3|~4.0",
  7743. "symfony/finder": "~3.3|~4.0",
  7744. "symfony/yaml": "~3.0|~4.0"
  7745. },
  7746. "suggest": {
  7747. "symfony/yaml": "To use the yaml reference dumper"
  7748. },
  7749. "type": "library",
  7750. "extra": {
  7751. "branch-alias": {
  7752. "dev-master": "3.4-dev"
  7753. }
  7754. },
  7755. "autoload": {
  7756. "psr-4": {
  7757. "Symfony\\Component\\Config\\": ""
  7758. },
  7759. "exclude-from-classmap": [
  7760. "/Tests/"
  7761. ]
  7762. },
  7763. "notification-url": "https://packagist.org/downloads/",
  7764. "license": [
  7765. "MIT"
  7766. ],
  7767. "authors": [
  7768. {
  7769. "name": "Fabien Potencier",
  7770. "email": "fabien@symfony.com"
  7771. },
  7772. {
  7773. "name": "Symfony Community",
  7774. "homepage": "https://symfony.com/contributors"
  7775. }
  7776. ],
  7777. "description": "Symfony Config Component",
  7778. "homepage": "https://symfony.com",
  7779. "time": "2018-09-08T13:15:14+00:00"
  7780. },
  7781. {
  7782. "name": "symfony/console",
  7783. "version": "v3.4.17",
  7784. "source": {
  7785. "type": "git",
  7786. "url": "https://github.com/symfony/console.git",
  7787. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b"
  7788. },
  7789. "dist": {
  7790. "type": "zip",
  7791. "url": "https://api.github.com/repos/symfony/console/zipball/3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  7792. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  7793. "shasum": ""
  7794. },
  7795. "require": {
  7796. "php": "^5.5.9|>=7.0.8",
  7797. "symfony/debug": "~2.8|~3.0|~4.0",
  7798. "symfony/polyfill-mbstring": "~1.0"
  7799. },
  7800. "conflict": {
  7801. "symfony/dependency-injection": "<3.4",
  7802. "symfony/process": "<3.3"
  7803. },
  7804. "require-dev": {
  7805. "psr/log": "~1.0",
  7806. "symfony/config": "~3.3|~4.0",
  7807. "symfony/dependency-injection": "~3.4|~4.0",
  7808. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7809. "symfony/lock": "~3.4|~4.0",
  7810. "symfony/process": "~3.3|~4.0"
  7811. },
  7812. "suggest": {
  7813. "psr/log-implementation": "For using the console logger",
  7814. "symfony/event-dispatcher": "",
  7815. "symfony/lock": "",
  7816. "symfony/process": ""
  7817. },
  7818. "type": "library",
  7819. "extra": {
  7820. "branch-alias": {
  7821. "dev-master": "3.4-dev"
  7822. }
  7823. },
  7824. "autoload": {
  7825. "psr-4": {
  7826. "Symfony\\Component\\Console\\": ""
  7827. },
  7828. "exclude-from-classmap": [
  7829. "/Tests/"
  7830. ]
  7831. },
  7832. "notification-url": "https://packagist.org/downloads/",
  7833. "license": [
  7834. "MIT"
  7835. ],
  7836. "authors": [
  7837. {
  7838. "name": "Fabien Potencier",
  7839. "email": "fabien@symfony.com"
  7840. },
  7841. {
  7842. "name": "Symfony Community",
  7843. "homepage": "https://symfony.com/contributors"
  7844. }
  7845. ],
  7846. "description": "Symfony Console Component",
  7847. "homepage": "https://symfony.com",
  7848. "time": "2018-10-02T16:33:53+00:00"
  7849. },
  7850. {
  7851. "name": "symfony/css-selector",
  7852. "version": "v3.4.17",
  7853. "source": {
  7854. "type": "git",
  7855. "url": "https://github.com/symfony/css-selector.git",
  7856. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb"
  7857. },
  7858. "dist": {
  7859. "type": "zip",
  7860. "url": "https://api.github.com/repos/symfony/css-selector/zipball/3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  7861. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  7862. "shasum": ""
  7863. },
  7864. "require": {
  7865. "php": "^5.5.9|>=7.0.8"
  7866. },
  7867. "type": "library",
  7868. "extra": {
  7869. "branch-alias": {
  7870. "dev-master": "3.4-dev"
  7871. }
  7872. },
  7873. "autoload": {
  7874. "psr-4": {
  7875. "Symfony\\Component\\CssSelector\\": ""
  7876. },
  7877. "exclude-from-classmap": [
  7878. "/Tests/"
  7879. ]
  7880. },
  7881. "notification-url": "https://packagist.org/downloads/",
  7882. "license": [
  7883. "MIT"
  7884. ],
  7885. "authors": [
  7886. {
  7887. "name": "Jean-François Simon",
  7888. "email": "jeanfrancois.simon@sensiolabs.com"
  7889. },
  7890. {
  7891. "name": "Fabien Potencier",
  7892. "email": "fabien@symfony.com"
  7893. },
  7894. {
  7895. "name": "Symfony Community",
  7896. "homepage": "https://symfony.com/contributors"
  7897. }
  7898. ],
  7899. "description": "Symfony CssSelector Component",
  7900. "homepage": "https://symfony.com",
  7901. "time": "2018-10-02T16:33:53+00:00"
  7902. },
  7903. {
  7904. "name": "symfony/debug",
  7905. "version": "v3.4.17",
  7906. "source": {
  7907. "type": "git",
  7908. "url": "https://github.com/symfony/debug.git",
  7909. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6"
  7910. },
  7911. "dist": {
  7912. "type": "zip",
  7913. "url": "https://api.github.com/repos/symfony/debug/zipball/0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  7914. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  7915. "shasum": ""
  7916. },
  7917. "require": {
  7918. "php": "^5.5.9|>=7.0.8",
  7919. "psr/log": "~1.0"
  7920. },
  7921. "conflict": {
  7922. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7923. },
  7924. "require-dev": {
  7925. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7926. },
  7927. "type": "library",
  7928. "extra": {
  7929. "branch-alias": {
  7930. "dev-master": "3.4-dev"
  7931. }
  7932. },
  7933. "autoload": {
  7934. "psr-4": {
  7935. "Symfony\\Component\\Debug\\": ""
  7936. },
  7937. "exclude-from-classmap": [
  7938. "/Tests/"
  7939. ]
  7940. },
  7941. "notification-url": "https://packagist.org/downloads/",
  7942. "license": [
  7943. "MIT"
  7944. ],
  7945. "authors": [
  7946. {
  7947. "name": "Fabien Potencier",
  7948. "email": "fabien@symfony.com"
  7949. },
  7950. {
  7951. "name": "Symfony Community",
  7952. "homepage": "https://symfony.com/contributors"
  7953. }
  7954. ],
  7955. "description": "Symfony Debug Component",
  7956. "homepage": "https://symfony.com",
  7957. "time": "2018-10-02T16:33:53+00:00"
  7958. },
  7959. {
  7960. "name": "symfony/dependency-injection",
  7961. "version": "v3.4.17",
  7962. "source": {
  7963. "type": "git",
  7964. "url": "https://github.com/symfony/dependency-injection.git",
  7965. "reference": "aea20fef4e92396928b5db175788b90234c0270d"
  7966. },
  7967. "dist": {
  7968. "type": "zip",
  7969. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/aea20fef4e92396928b5db175788b90234c0270d",
  7970. "reference": "aea20fef4e92396928b5db175788b90234c0270d",
  7971. "shasum": ""
  7972. },
  7973. "require": {
  7974. "php": "^5.5.9|>=7.0.8",
  7975. "psr/container": "^1.0"
  7976. },
  7977. "conflict": {
  7978. "symfony/config": "<3.3.7",
  7979. "symfony/finder": "<3.3",
  7980. "symfony/proxy-manager-bridge": "<3.4",
  7981. "symfony/yaml": "<3.4"
  7982. },
  7983. "provide": {
  7984. "psr/container-implementation": "1.0"
  7985. },
  7986. "require-dev": {
  7987. "symfony/config": "~3.3|~4.0",
  7988. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7989. "symfony/yaml": "~3.4|~4.0"
  7990. },
  7991. "suggest": {
  7992. "symfony/config": "",
  7993. "symfony/expression-language": "For using expressions in service container configuration",
  7994. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7995. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7996. "symfony/yaml": ""
  7997. },
  7998. "type": "library",
  7999. "extra": {
  8000. "branch-alias": {
  8001. "dev-master": "3.4-dev"
  8002. }
  8003. },
  8004. "autoload": {
  8005. "psr-4": {
  8006. "Symfony\\Component\\DependencyInjection\\": ""
  8007. },
  8008. "exclude-from-classmap": [
  8009. "/Tests/"
  8010. ]
  8011. },
  8012. "notification-url": "https://packagist.org/downloads/",
  8013. "license": [
  8014. "MIT"
  8015. ],
  8016. "authors": [
  8017. {
  8018. "name": "Fabien Potencier",
  8019. "email": "fabien@symfony.com"
  8020. },
  8021. {
  8022. "name": "Symfony Community",
  8023. "homepage": "https://symfony.com/contributors"
  8024. }
  8025. ],
  8026. "description": "Symfony DependencyInjection Component",
  8027. "homepage": "https://symfony.com",
  8028. "time": "2018-10-02T12:28:39+00:00"
  8029. },
  8030. {
  8031. "name": "symfony/dom-crawler",
  8032. "version": "v3.4.17",
  8033. "source": {
  8034. "type": "git",
  8035. "url": "https://github.com/symfony/dom-crawler.git",
  8036. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722"
  8037. },
  8038. "dist": {
  8039. "type": "zip",
  8040. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/c705bee03ade5b47c087807dd9ffaaec8dda2722",
  8041. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722",
  8042. "shasum": ""
  8043. },
  8044. "require": {
  8045. "php": "^5.5.9|>=7.0.8",
  8046. "symfony/polyfill-ctype": "~1.8",
  8047. "symfony/polyfill-mbstring": "~1.0"
  8048. },
  8049. "require-dev": {
  8050. "symfony/css-selector": "~2.8|~3.0|~4.0"
  8051. },
  8052. "suggest": {
  8053. "symfony/css-selector": ""
  8054. },
  8055. "type": "library",
  8056. "extra": {
  8057. "branch-alias": {
  8058. "dev-master": "3.4-dev"
  8059. }
  8060. },
  8061. "autoload": {
  8062. "psr-4": {
  8063. "Symfony\\Component\\DomCrawler\\": ""
  8064. },
  8065. "exclude-from-classmap": [
  8066. "/Tests/"
  8067. ]
  8068. },
  8069. "notification-url": "https://packagist.org/downloads/",
  8070. "license": [
  8071. "MIT"
  8072. ],
  8073. "authors": [
  8074. {
  8075. "name": "Fabien Potencier",
  8076. "email": "fabien@symfony.com"
  8077. },
  8078. {
  8079. "name": "Symfony Community",
  8080. "homepage": "https://symfony.com/contributors"
  8081. }
  8082. ],
  8083. "description": "Symfony DomCrawler Component",
  8084. "homepage": "https://symfony.com",
  8085. "time": "2018-10-02T12:28:39+00:00"
  8086. },
  8087. {
  8088. "name": "symfony/event-dispatcher",
  8089. "version": "v3.4.17",
  8090. "source": {
  8091. "type": "git",
  8092. "url": "https://github.com/symfony/event-dispatcher.git",
  8093. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb"
  8094. },
  8095. "dist": {
  8096. "type": "zip",
  8097. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  8098. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  8099. "shasum": ""
  8100. },
  8101. "require": {
  8102. "php": "^5.5.9|>=7.0.8"
  8103. },
  8104. "conflict": {
  8105. "symfony/dependency-injection": "<3.3"
  8106. },
  8107. "require-dev": {
  8108. "psr/log": "~1.0",
  8109. "symfony/config": "~2.8|~3.0|~4.0",
  8110. "symfony/dependency-injection": "~3.3|~4.0",
  8111. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8112. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8113. },
  8114. "suggest": {
  8115. "symfony/dependency-injection": "",
  8116. "symfony/http-kernel": ""
  8117. },
  8118. "type": "library",
  8119. "extra": {
  8120. "branch-alias": {
  8121. "dev-master": "3.4-dev"
  8122. }
  8123. },
  8124. "autoload": {
  8125. "psr-4": {
  8126. "Symfony\\Component\\EventDispatcher\\": ""
  8127. },
  8128. "exclude-from-classmap": [
  8129. "/Tests/"
  8130. ]
  8131. },
  8132. "notification-url": "https://packagist.org/downloads/",
  8133. "license": [
  8134. "MIT"
  8135. ],
  8136. "authors": [
  8137. {
  8138. "name": "Fabien Potencier",
  8139. "email": "fabien@symfony.com"
  8140. },
  8141. {
  8142. "name": "Symfony Community",
  8143. "homepage": "https://symfony.com/contributors"
  8144. }
  8145. ],
  8146. "description": "Symfony EventDispatcher Component",
  8147. "homepage": "https://symfony.com",
  8148. "time": "2018-07-26T09:06:28+00:00"
  8149. },
  8150. {
  8151. "name": "symfony/filesystem",
  8152. "version": "v3.4.17",
  8153. "source": {
  8154. "type": "git",
  8155. "url": "https://github.com/symfony/filesystem.git",
  8156. "reference": "d69930fc337d767607267d57c20a7403d0a822a4"
  8157. },
  8158. "dist": {
  8159. "type": "zip",
  8160. "url": "https://api.github.com/repos/symfony/filesystem/zipball/d69930fc337d767607267d57c20a7403d0a822a4",
  8161. "reference": "d69930fc337d767607267d57c20a7403d0a822a4",
  8162. "shasum": ""
  8163. },
  8164. "require": {
  8165. "php": "^5.5.9|>=7.0.8",
  8166. "symfony/polyfill-ctype": "~1.8"
  8167. },
  8168. "type": "library",
  8169. "extra": {
  8170. "branch-alias": {
  8171. "dev-master": "3.4-dev"
  8172. }
  8173. },
  8174. "autoload": {
  8175. "psr-4": {
  8176. "Symfony\\Component\\Filesystem\\": ""
  8177. },
  8178. "exclude-from-classmap": [
  8179. "/Tests/"
  8180. ]
  8181. },
  8182. "notification-url": "https://packagist.org/downloads/",
  8183. "license": [
  8184. "MIT"
  8185. ],
  8186. "authors": [
  8187. {
  8188. "name": "Fabien Potencier",
  8189. "email": "fabien@symfony.com"
  8190. },
  8191. {
  8192. "name": "Symfony Community",
  8193. "homepage": "https://symfony.com/contributors"
  8194. }
  8195. ],
  8196. "description": "Symfony Filesystem Component",
  8197. "homepage": "https://symfony.com",
  8198. "time": "2018-10-02T12:28:39+00:00"
  8199. },
  8200. {
  8201. "name": "symfony/finder",
  8202. "version": "v3.4.17",
  8203. "source": {
  8204. "type": "git",
  8205. "url": "https://github.com/symfony/finder.git",
  8206. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d"
  8207. },
  8208. "dist": {
  8209. "type": "zip",
  8210. "url": "https://api.github.com/repos/symfony/finder/zipball/54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  8211. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  8212. "shasum": ""
  8213. },
  8214. "require": {
  8215. "php": "^5.5.9|>=7.0.8"
  8216. },
  8217. "type": "library",
  8218. "extra": {
  8219. "branch-alias": {
  8220. "dev-master": "3.4-dev"
  8221. }
  8222. },
  8223. "autoload": {
  8224. "psr-4": {
  8225. "Symfony\\Component\\Finder\\": ""
  8226. },
  8227. "exclude-from-classmap": [
  8228. "/Tests/"
  8229. ]
  8230. },
  8231. "notification-url": "https://packagist.org/downloads/",
  8232. "license": [
  8233. "MIT"
  8234. ],
  8235. "authors": [
  8236. {
  8237. "name": "Fabien Potencier",
  8238. "email": "fabien@symfony.com"
  8239. },
  8240. {
  8241. "name": "Symfony Community",
  8242. "homepage": "https://symfony.com/contributors"
  8243. }
  8244. ],
  8245. "description": "Symfony Finder Component",
  8246. "homepage": "https://symfony.com",
  8247. "time": "2018-10-03T08:46:40+00:00"
  8248. },
  8249. {
  8250. "name": "symfony/http-foundation",
  8251. "version": "v3.4.17",
  8252. "source": {
  8253. "type": "git",
  8254. "url": "https://github.com/symfony/http-foundation.git",
  8255. "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1"
  8256. },
  8257. "dist": {
  8258. "type": "zip",
  8259. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3a4498236ade473c52b92d509303e5fd1b211ab1",
  8260. "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1",
  8261. "shasum": ""
  8262. },
  8263. "require": {
  8264. "php": "^5.5.9|>=7.0.8",
  8265. "symfony/polyfill-mbstring": "~1.1",
  8266. "symfony/polyfill-php70": "~1.6"
  8267. },
  8268. "require-dev": {
  8269. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8270. },
  8271. "type": "library",
  8272. "extra": {
  8273. "branch-alias": {
  8274. "dev-master": "3.4-dev"
  8275. }
  8276. },
  8277. "autoload": {
  8278. "psr-4": {
  8279. "Symfony\\Component\\HttpFoundation\\": ""
  8280. },
  8281. "exclude-from-classmap": [
  8282. "/Tests/"
  8283. ]
  8284. },
  8285. "notification-url": "https://packagist.org/downloads/",
  8286. "license": [
  8287. "MIT"
  8288. ],
  8289. "authors": [
  8290. {
  8291. "name": "Fabien Potencier",
  8292. "email": "fabien@symfony.com"
  8293. },
  8294. {
  8295. "name": "Symfony Community",
  8296. "homepage": "https://symfony.com/contributors"
  8297. }
  8298. ],
  8299. "description": "Symfony HttpFoundation Component",
  8300. "homepage": "https://symfony.com",
  8301. "time": "2018-10-03T08:48:18+00:00"
  8302. },
  8303. {
  8304. "name": "symfony/http-kernel",
  8305. "version": "v3.4.17",
  8306. "source": {
  8307. "type": "git",
  8308. "url": "https://github.com/symfony/http-kernel.git",
  8309. "reference": "a0944a9a1d8845da724236cde9a310964acadb1c"
  8310. },
  8311. "dist": {
  8312. "type": "zip",
  8313. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a0944a9a1d8845da724236cde9a310964acadb1c",
  8314. "reference": "a0944a9a1d8845da724236cde9a310964acadb1c",
  8315. "shasum": ""
  8316. },
  8317. "require": {
  8318. "php": "^5.5.9|>=7.0.8",
  8319. "psr/log": "~1.0",
  8320. "symfony/debug": "~2.8|~3.0|~4.0",
  8321. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8322. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8323. "symfony/polyfill-ctype": "~1.8"
  8324. },
  8325. "conflict": {
  8326. "symfony/config": "<2.8",
  8327. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8328. "symfony/var-dumper": "<3.3",
  8329. "twig/twig": "<1.34|<2.4,>=2"
  8330. },
  8331. "provide": {
  8332. "psr/log-implementation": "1.0"
  8333. },
  8334. "require-dev": {
  8335. "psr/cache": "~1.0",
  8336. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8337. "symfony/class-loader": "~2.8|~3.0",
  8338. "symfony/config": "~2.8|~3.0|~4.0",
  8339. "symfony/console": "~2.8|~3.0|~4.0",
  8340. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8341. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8342. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8343. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8344. "symfony/finder": "~2.8|~3.0|~4.0",
  8345. "symfony/process": "~2.8|~3.0|~4.0",
  8346. "symfony/routing": "~3.4|~4.0",
  8347. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8348. "symfony/templating": "~2.8|~3.0|~4.0",
  8349. "symfony/translation": "~2.8|~3.0|~4.0",
  8350. "symfony/var-dumper": "~3.3|~4.0"
  8351. },
  8352. "suggest": {
  8353. "symfony/browser-kit": "",
  8354. "symfony/config": "",
  8355. "symfony/console": "",
  8356. "symfony/dependency-injection": "",
  8357. "symfony/finder": "",
  8358. "symfony/var-dumper": ""
  8359. },
  8360. "type": "library",
  8361. "extra": {
  8362. "branch-alias": {
  8363. "dev-master": "3.4-dev"
  8364. }
  8365. },
  8366. "autoload": {
  8367. "psr-4": {
  8368. "Symfony\\Component\\HttpKernel\\": ""
  8369. },
  8370. "exclude-from-classmap": [
  8371. "/Tests/"
  8372. ]
  8373. },
  8374. "notification-url": "https://packagist.org/downloads/",
  8375. "license": [
  8376. "MIT"
  8377. ],
  8378. "authors": [
  8379. {
  8380. "name": "Fabien Potencier",
  8381. "email": "fabien@symfony.com"
  8382. },
  8383. {
  8384. "name": "Symfony Community",
  8385. "homepage": "https://symfony.com/contributors"
  8386. }
  8387. ],
  8388. "description": "Symfony HttpKernel Component",
  8389. "homepage": "https://symfony.com",
  8390. "time": "2018-10-03T12:03:34+00:00"
  8391. },
  8392. {
  8393. "name": "symfony/polyfill-ctype",
  8394. "version": "v1.10.0",
  8395. "source": {
  8396. "type": "git",
  8397. "url": "https://github.com/symfony/polyfill-ctype.git",
  8398. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  8399. },
  8400. "dist": {
  8401. "type": "zip",
  8402. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  8403. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  8404. "shasum": ""
  8405. },
  8406. "require": {
  8407. "php": ">=5.3.3"
  8408. },
  8409. "suggest": {
  8410. "ext-ctype": "For best performance"
  8411. },
  8412. "type": "library",
  8413. "extra": {
  8414. "branch-alias": {
  8415. "dev-master": "1.9-dev"
  8416. }
  8417. },
  8418. "autoload": {
  8419. "psr-4": {
  8420. "Symfony\\Polyfill\\Ctype\\": ""
  8421. },
  8422. "files": [
  8423. "bootstrap.php"
  8424. ]
  8425. },
  8426. "notification-url": "https://packagist.org/downloads/",
  8427. "license": [
  8428. "MIT"
  8429. ],
  8430. "authors": [
  8431. {
  8432. "name": "Symfony Community",
  8433. "homepage": "https://symfony.com/contributors"
  8434. },
  8435. {
  8436. "name": "Gert de Pagter",
  8437. "email": "BackEndTea@gmail.com"
  8438. }
  8439. ],
  8440. "description": "Symfony polyfill for ctype functions",
  8441. "homepage": "https://symfony.com",
  8442. "keywords": [
  8443. "compatibility",
  8444. "ctype",
  8445. "polyfill",
  8446. "portable"
  8447. ],
  8448. "time": "2018-08-06T14:22:27+00:00"
  8449. },
  8450. {
  8451. "name": "symfony/polyfill-iconv",
  8452. "version": "v1.10.0",
  8453. "source": {
  8454. "type": "git",
  8455. "url": "https://github.com/symfony/polyfill-iconv.git",
  8456. "reference": "97001cfc283484c9691769f51cdf25259037eba2"
  8457. },
  8458. "dist": {
  8459. "type": "zip",
  8460. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/97001cfc283484c9691769f51cdf25259037eba2",
  8461. "reference": "97001cfc283484c9691769f51cdf25259037eba2",
  8462. "shasum": ""
  8463. },
  8464. "require": {
  8465. "php": ">=5.3.3"
  8466. },
  8467. "suggest": {
  8468. "ext-iconv": "For best performance"
  8469. },
  8470. "type": "library",
  8471. "extra": {
  8472. "branch-alias": {
  8473. "dev-master": "1.9-dev"
  8474. }
  8475. },
  8476. "autoload": {
  8477. "psr-4": {
  8478. "Symfony\\Polyfill\\Iconv\\": ""
  8479. },
  8480. "files": [
  8481. "bootstrap.php"
  8482. ]
  8483. },
  8484. "notification-url": "https://packagist.org/downloads/",
  8485. "license": [
  8486. "MIT"
  8487. ],
  8488. "authors": [
  8489. {
  8490. "name": "Nicolas Grekas",
  8491. "email": "p@tchwork.com"
  8492. },
  8493. {
  8494. "name": "Symfony Community",
  8495. "homepage": "https://symfony.com/contributors"
  8496. }
  8497. ],
  8498. "description": "Symfony polyfill for the Iconv extension",
  8499. "homepage": "https://symfony.com",
  8500. "keywords": [
  8501. "compatibility",
  8502. "iconv",
  8503. "polyfill",
  8504. "portable",
  8505. "shim"
  8506. ],
  8507. "time": "2018-09-21T06:26:08+00:00"
  8508. },
  8509. {
  8510. "name": "symfony/polyfill-mbstring",
  8511. "version": "v1.10.0",
  8512. "source": {
  8513. "type": "git",
  8514. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8515. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  8516. },
  8517. "dist": {
  8518. "type": "zip",
  8519. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  8520. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  8521. "shasum": ""
  8522. },
  8523. "require": {
  8524. "php": ">=5.3.3"
  8525. },
  8526. "suggest": {
  8527. "ext-mbstring": "For best performance"
  8528. },
  8529. "type": "library",
  8530. "extra": {
  8531. "branch-alias": {
  8532. "dev-master": "1.9-dev"
  8533. }
  8534. },
  8535. "autoload": {
  8536. "psr-4": {
  8537. "Symfony\\Polyfill\\Mbstring\\": ""
  8538. },
  8539. "files": [
  8540. "bootstrap.php"
  8541. ]
  8542. },
  8543. "notification-url": "https://packagist.org/downloads/",
  8544. "license": [
  8545. "MIT"
  8546. ],
  8547. "authors": [
  8548. {
  8549. "name": "Nicolas Grekas",
  8550. "email": "p@tchwork.com"
  8551. },
  8552. {
  8553. "name": "Symfony Community",
  8554. "homepage": "https://symfony.com/contributors"
  8555. }
  8556. ],
  8557. "description": "Symfony polyfill for the Mbstring extension",
  8558. "homepage": "https://symfony.com",
  8559. "keywords": [
  8560. "compatibility",
  8561. "mbstring",
  8562. "polyfill",
  8563. "portable",
  8564. "shim"
  8565. ],
  8566. "time": "2018-09-21T13:07:52+00:00"
  8567. },
  8568. {
  8569. "name": "symfony/polyfill-php70",
  8570. "version": "v1.10.0",
  8571. "source": {
  8572. "type": "git",
  8573. "url": "https://github.com/symfony/polyfill-php70.git",
  8574. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  8575. },
  8576. "dist": {
  8577. "type": "zip",
  8578. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  8579. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  8580. "shasum": ""
  8581. },
  8582. "require": {
  8583. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  8584. "php": ">=5.3.3"
  8585. },
  8586. "type": "library",
  8587. "extra": {
  8588. "branch-alias": {
  8589. "dev-master": "1.9-dev"
  8590. }
  8591. },
  8592. "autoload": {
  8593. "psr-4": {
  8594. "Symfony\\Polyfill\\Php70\\": ""
  8595. },
  8596. "files": [
  8597. "bootstrap.php"
  8598. ],
  8599. "classmap": [
  8600. "Resources/stubs"
  8601. ]
  8602. },
  8603. "notification-url": "https://packagist.org/downloads/",
  8604. "license": [
  8605. "MIT"
  8606. ],
  8607. "authors": [
  8608. {
  8609. "name": "Nicolas Grekas",
  8610. "email": "p@tchwork.com"
  8611. },
  8612. {
  8613. "name": "Symfony Community",
  8614. "homepage": "https://symfony.com/contributors"
  8615. }
  8616. ],
  8617. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  8618. "homepage": "https://symfony.com",
  8619. "keywords": [
  8620. "compatibility",
  8621. "polyfill",
  8622. "portable",
  8623. "shim"
  8624. ],
  8625. "time": "2018-09-21T06:26:08+00:00"
  8626. },
  8627. {
  8628. "name": "symfony/process",
  8629. "version": "v3.4.17",
  8630. "source": {
  8631. "type": "git",
  8632. "url": "https://github.com/symfony/process.git",
  8633. "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e"
  8634. },
  8635. "dist": {
  8636. "type": "zip",
  8637. "url": "https://api.github.com/repos/symfony/process/zipball/1dc2977afa7d70f90f3fefbcd84152813558910e",
  8638. "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e",
  8639. "shasum": ""
  8640. },
  8641. "require": {
  8642. "php": "^5.5.9|>=7.0.8"
  8643. },
  8644. "type": "library",
  8645. "extra": {
  8646. "branch-alias": {
  8647. "dev-master": "3.4-dev"
  8648. }
  8649. },
  8650. "autoload": {
  8651. "psr-4": {
  8652. "Symfony\\Component\\Process\\": ""
  8653. },
  8654. "exclude-from-classmap": [
  8655. "/Tests/"
  8656. ]
  8657. },
  8658. "notification-url": "https://packagist.org/downloads/",
  8659. "license": [
  8660. "MIT"
  8661. ],
  8662. "authors": [
  8663. {
  8664. "name": "Fabien Potencier",
  8665. "email": "fabien@symfony.com"
  8666. },
  8667. {
  8668. "name": "Symfony Community",
  8669. "homepage": "https://symfony.com/contributors"
  8670. }
  8671. ],
  8672. "description": "Symfony Process Component",
  8673. "homepage": "https://symfony.com",
  8674. "time": "2018-10-02T12:28:39+00:00"
  8675. },
  8676. {
  8677. "name": "symfony/psr-http-message-bridge",
  8678. "version": "v1.1.0",
  8679. "source": {
  8680. "type": "git",
  8681. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8682. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  8683. },
  8684. "dist": {
  8685. "type": "zip",
  8686. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  8687. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  8688. "shasum": ""
  8689. },
  8690. "require": {
  8691. "php": "^5.3.3 || ^7.0",
  8692. "psr/http-message": "^1.0",
  8693. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  8694. },
  8695. "require-dev": {
  8696. "symfony/phpunit-bridge": "^3.4 || 4.0"
  8697. },
  8698. "suggest": {
  8699. "psr/http-factory-implementation": "To use the PSR-17 factory",
  8700. "psr/http-message-implementation": "To use the HttpFoundation factory",
  8701. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  8702. },
  8703. "type": "symfony-bridge",
  8704. "extra": {
  8705. "branch-alias": {
  8706. "dev-master": "1.1-dev"
  8707. }
  8708. },
  8709. "autoload": {
  8710. "psr-4": {
  8711. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8712. }
  8713. },
  8714. "notification-url": "https://packagist.org/downloads/",
  8715. "license": [
  8716. "MIT"
  8717. ],
  8718. "authors": [
  8719. {
  8720. "name": "Symfony Community",
  8721. "homepage": "http://symfony.com/contributors"
  8722. },
  8723. {
  8724. "name": "Fabien Potencier",
  8725. "email": "fabien@symfony.com"
  8726. }
  8727. ],
  8728. "description": "PSR HTTP message bridge",
  8729. "homepage": "http://symfony.com",
  8730. "keywords": [
  8731. "http",
  8732. "http-message",
  8733. "psr-7"
  8734. ],
  8735. "time": "2018-08-30T16:28:28+00:00"
  8736. },
  8737. {
  8738. "name": "symfony/routing",
  8739. "version": "v3.4.17",
  8740. "source": {
  8741. "type": "git",
  8742. "url": "https://github.com/symfony/routing.git",
  8743. "reference": "585f6e2d740393d546978769dd56e496a6233e0b"
  8744. },
  8745. "dist": {
  8746. "type": "zip",
  8747. "url": "https://api.github.com/repos/symfony/routing/zipball/585f6e2d740393d546978769dd56e496a6233e0b",
  8748. "reference": "585f6e2d740393d546978769dd56e496a6233e0b",
  8749. "shasum": ""
  8750. },
  8751. "require": {
  8752. "php": "^5.5.9|>=7.0.8"
  8753. },
  8754. "conflict": {
  8755. "symfony/config": "<3.3.1",
  8756. "symfony/dependency-injection": "<3.3",
  8757. "symfony/yaml": "<3.4"
  8758. },
  8759. "require-dev": {
  8760. "doctrine/annotations": "~1.0",
  8761. "psr/log": "~1.0",
  8762. "symfony/config": "^3.3.1|~4.0",
  8763. "symfony/dependency-injection": "~3.3|~4.0",
  8764. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8765. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8766. "symfony/yaml": "~3.4|~4.0"
  8767. },
  8768. "suggest": {
  8769. "doctrine/annotations": "For using the annotation loader",
  8770. "symfony/config": "For using the all-in-one router or any loader",
  8771. "symfony/dependency-injection": "For loading routes from a service",
  8772. "symfony/expression-language": "For using expression matching",
  8773. "symfony/http-foundation": "For using a Symfony Request object",
  8774. "symfony/yaml": "For using the YAML loader"
  8775. },
  8776. "type": "library",
  8777. "extra": {
  8778. "branch-alias": {
  8779. "dev-master": "3.4-dev"
  8780. }
  8781. },
  8782. "autoload": {
  8783. "psr-4": {
  8784. "Symfony\\Component\\Routing\\": ""
  8785. },
  8786. "exclude-from-classmap": [
  8787. "/Tests/"
  8788. ]
  8789. },
  8790. "notification-url": "https://packagist.org/downloads/",
  8791. "license": [
  8792. "MIT"
  8793. ],
  8794. "authors": [
  8795. {
  8796. "name": "Fabien Potencier",
  8797. "email": "fabien@symfony.com"
  8798. },
  8799. {
  8800. "name": "Symfony Community",
  8801. "homepage": "https://symfony.com/contributors"
  8802. }
  8803. ],
  8804. "description": "Symfony Routing Component",
  8805. "homepage": "https://symfony.com",
  8806. "keywords": [
  8807. "router",
  8808. "routing",
  8809. "uri",
  8810. "url"
  8811. ],
  8812. "time": "2018-10-02T12:28:39+00:00"
  8813. },
  8814. {
  8815. "name": "symfony/serializer",
  8816. "version": "v3.4.17",
  8817. "source": {
  8818. "type": "git",
  8819. "url": "https://github.com/symfony/serializer.git",
  8820. "reference": "8bc00ef47a428bfebc4641f29d158e7c56137fcb"
  8821. },
  8822. "dist": {
  8823. "type": "zip",
  8824. "url": "https://api.github.com/repos/symfony/serializer/zipball/8bc00ef47a428bfebc4641f29d158e7c56137fcb",
  8825. "reference": "8bc00ef47a428bfebc4641f29d158e7c56137fcb",
  8826. "shasum": ""
  8827. },
  8828. "require": {
  8829. "php": "^5.5.9|>=7.0.8",
  8830. "symfony/polyfill-ctype": "~1.8"
  8831. },
  8832. "conflict": {
  8833. "phpdocumentor/type-resolver": "<0.2.1",
  8834. "symfony/dependency-injection": "<3.2",
  8835. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  8836. "symfony/property-info": "<3.1",
  8837. "symfony/yaml": "<3.4"
  8838. },
  8839. "require-dev": {
  8840. "doctrine/annotations": "~1.0",
  8841. "doctrine/cache": "~1.0",
  8842. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  8843. "symfony/cache": "~3.1|~4.0",
  8844. "symfony/config": "~2.8|~3.0|~4.0",
  8845. "symfony/dependency-injection": "~3.2|~4.0",
  8846. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8847. "symfony/property-access": "~2.8|~3.0|~4.0",
  8848. "symfony/property-info": "~3.1|~4.0",
  8849. "symfony/yaml": "~3.4|~4.0"
  8850. },
  8851. "suggest": {
  8852. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8853. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8854. "psr/cache-implementation": "For using the metadata cache.",
  8855. "symfony/config": "For using the XML mapping loader.",
  8856. "symfony/http-foundation": "To use the DataUriNormalizer.",
  8857. "symfony/property-access": "For using the ObjectNormalizer.",
  8858. "symfony/property-info": "To deserialize relations.",
  8859. "symfony/yaml": "For using the default YAML mapping loader."
  8860. },
  8861. "type": "library",
  8862. "extra": {
  8863. "branch-alias": {
  8864. "dev-master": "3.4-dev"
  8865. }
  8866. },
  8867. "autoload": {
  8868. "psr-4": {
  8869. "Symfony\\Component\\Serializer\\": ""
  8870. },
  8871. "exclude-from-classmap": [
  8872. "/Tests/"
  8873. ]
  8874. },
  8875. "notification-url": "https://packagist.org/downloads/",
  8876. "license": [
  8877. "MIT"
  8878. ],
  8879. "authors": [
  8880. {
  8881. "name": "Fabien Potencier",
  8882. "email": "fabien@symfony.com"
  8883. },
  8884. {
  8885. "name": "Symfony Community",
  8886. "homepage": "https://symfony.com/contributors"
  8887. }
  8888. ],
  8889. "description": "Symfony Serializer Component",
  8890. "homepage": "https://symfony.com",
  8891. "time": "2018-10-02T12:28:39+00:00"
  8892. },
  8893. {
  8894. "name": "symfony/translation",
  8895. "version": "v3.4.17",
  8896. "source": {
  8897. "type": "git",
  8898. "url": "https://github.com/symfony/translation.git",
  8899. "reference": "94bc3a79008e6640defedf5e14eb3b4f20048352"
  8900. },
  8901. "dist": {
  8902. "type": "zip",
  8903. "url": "https://api.github.com/repos/symfony/translation/zipball/94bc3a79008e6640defedf5e14eb3b4f20048352",
  8904. "reference": "94bc3a79008e6640defedf5e14eb3b4f20048352",
  8905. "shasum": ""
  8906. },
  8907. "require": {
  8908. "php": "^5.5.9|>=7.0.8",
  8909. "symfony/polyfill-mbstring": "~1.0"
  8910. },
  8911. "conflict": {
  8912. "symfony/config": "<2.8",
  8913. "symfony/dependency-injection": "<3.4",
  8914. "symfony/yaml": "<3.4"
  8915. },
  8916. "require-dev": {
  8917. "psr/log": "~1.0",
  8918. "symfony/config": "~2.8|~3.0|~4.0",
  8919. "symfony/dependency-injection": "~3.4|~4.0",
  8920. "symfony/finder": "~2.8|~3.0|~4.0",
  8921. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8922. "symfony/yaml": "~3.4|~4.0"
  8923. },
  8924. "suggest": {
  8925. "psr/log-implementation": "To use logging capability in translator",
  8926. "symfony/config": "",
  8927. "symfony/yaml": ""
  8928. },
  8929. "type": "library",
  8930. "extra": {
  8931. "branch-alias": {
  8932. "dev-master": "3.4-dev"
  8933. }
  8934. },
  8935. "autoload": {
  8936. "psr-4": {
  8937. "Symfony\\Component\\Translation\\": ""
  8938. },
  8939. "exclude-from-classmap": [
  8940. "/Tests/"
  8941. ]
  8942. },
  8943. "notification-url": "https://packagist.org/downloads/",
  8944. "license": [
  8945. "MIT"
  8946. ],
  8947. "authors": [
  8948. {
  8949. "name": "Fabien Potencier",
  8950. "email": "fabien@symfony.com"
  8951. },
  8952. {
  8953. "name": "Symfony Community",
  8954. "homepage": "https://symfony.com/contributors"
  8955. }
  8956. ],
  8957. "description": "Symfony Translation Component",
  8958. "homepage": "https://symfony.com",
  8959. "time": "2018-10-02T16:33:53+00:00"
  8960. },
  8961. {
  8962. "name": "symfony/validator",
  8963. "version": "v3.4.17",
  8964. "source": {
  8965. "type": "git",
  8966. "url": "https://github.com/symfony/validator.git",
  8967. "reference": "9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5"
  8968. },
  8969. "dist": {
  8970. "type": "zip",
  8971. "url": "https://api.github.com/repos/symfony/validator/zipball/9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5",
  8972. "reference": "9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5",
  8973. "shasum": ""
  8974. },
  8975. "require": {
  8976. "php": "^5.5.9|>=7.0.8",
  8977. "symfony/polyfill-ctype": "~1.8",
  8978. "symfony/polyfill-mbstring": "~1.0",
  8979. "symfony/translation": "~2.8|~3.0|~4.0"
  8980. },
  8981. "conflict": {
  8982. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8983. "symfony/dependency-injection": "<3.3",
  8984. "symfony/http-kernel": "<3.3.5",
  8985. "symfony/yaml": "<3.4"
  8986. },
  8987. "require-dev": {
  8988. "doctrine/annotations": "~1.0",
  8989. "doctrine/cache": "~1.0",
  8990. "egulias/email-validator": "^1.2.8|~2.0",
  8991. "symfony/cache": "~3.1|~4.0",
  8992. "symfony/config": "~2.8|~3.0|~4.0",
  8993. "symfony/dependency-injection": "~3.3|~4.0",
  8994. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8995. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8996. "symfony/http-kernel": "^3.3.5|~4.0",
  8997. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8998. "symfony/property-access": "~2.8|~3.0|~4.0",
  8999. "symfony/var-dumper": "~3.3|~4.0",
  9000. "symfony/yaml": "~3.4|~4.0"
  9001. },
  9002. "suggest": {
  9003. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9004. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9005. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9006. "psr/cache-implementation": "For using the metadata cache.",
  9007. "symfony/config": "",
  9008. "symfony/expression-language": "For using the Expression validator",
  9009. "symfony/http-foundation": "",
  9010. "symfony/intl": "",
  9011. "symfony/property-access": "For accessing properties within comparison constraints",
  9012. "symfony/yaml": ""
  9013. },
  9014. "type": "library",
  9015. "extra": {
  9016. "branch-alias": {
  9017. "dev-master": "3.4-dev"
  9018. }
  9019. },
  9020. "autoload": {
  9021. "psr-4": {
  9022. "Symfony\\Component\\Validator\\": ""
  9023. },
  9024. "exclude-from-classmap": [
  9025. "/Tests/"
  9026. ]
  9027. },
  9028. "notification-url": "https://packagist.org/downloads/",
  9029. "license": [
  9030. "MIT"
  9031. ],
  9032. "authors": [
  9033. {
  9034. "name": "Fabien Potencier",
  9035. "email": "fabien@symfony.com"
  9036. },
  9037. {
  9038. "name": "Symfony Community",
  9039. "homepage": "https://symfony.com/contributors"
  9040. }
  9041. ],
  9042. "description": "Symfony Validator Component",
  9043. "homepage": "https://symfony.com",
  9044. "time": "2018-10-02T16:33:53+00:00"
  9045. },
  9046. {
  9047. "name": "symfony/var-dumper",
  9048. "version": "v3.4.17",
  9049. "source": {
  9050. "type": "git",
  9051. "url": "https://github.com/symfony/var-dumper.git",
  9052. "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181"
  9053. },
  9054. "dist": {
  9055. "type": "zip",
  9056. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ff8ac19e97e5c7c3979236b584719a1190f84181",
  9057. "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181",
  9058. "shasum": ""
  9059. },
  9060. "require": {
  9061. "php": "^5.5.9|>=7.0.8",
  9062. "symfony/polyfill-mbstring": "~1.0"
  9063. },
  9064. "conflict": {
  9065. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9066. },
  9067. "require-dev": {
  9068. "ext-iconv": "*",
  9069. "twig/twig": "~1.34|~2.4"
  9070. },
  9071. "suggest": {
  9072. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9073. "ext-intl": "To show region name in time zone dump",
  9074. "ext-symfony_debug": ""
  9075. },
  9076. "type": "library",
  9077. "extra": {
  9078. "branch-alias": {
  9079. "dev-master": "3.4-dev"
  9080. }
  9081. },
  9082. "autoload": {
  9083. "files": [
  9084. "Resources/functions/dump.php"
  9085. ],
  9086. "psr-4": {
  9087. "Symfony\\Component\\VarDumper\\": ""
  9088. },
  9089. "exclude-from-classmap": [
  9090. "/Tests/"
  9091. ]
  9092. },
  9093. "notification-url": "https://packagist.org/downloads/",
  9094. "license": [
  9095. "MIT"
  9096. ],
  9097. "authors": [
  9098. {
  9099. "name": "Nicolas Grekas",
  9100. "email": "p@tchwork.com"
  9101. },
  9102. {
  9103. "name": "Symfony Community",
  9104. "homepage": "https://symfony.com/contributors"
  9105. }
  9106. ],
  9107. "description": "Symfony mechanism for exploring and dumping PHP variables",
  9108. "homepage": "https://symfony.com",
  9109. "keywords": [
  9110. "debug",
  9111. "dump"
  9112. ],
  9113. "time": "2018-10-02T16:33:53+00:00"
  9114. },
  9115. {
  9116. "name": "symfony/yaml",
  9117. "version": "v3.4.17",
  9118. "source": {
  9119. "type": "git",
  9120. "url": "https://github.com/symfony/yaml.git",
  9121. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f"
  9122. },
  9123. "dist": {
  9124. "type": "zip",
  9125. "url": "https://api.github.com/repos/symfony/yaml/zipball/640b6c27fed4066d64b64d5903a86043f4a4de7f",
  9126. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f",
  9127. "shasum": ""
  9128. },
  9129. "require": {
  9130. "php": "^5.5.9|>=7.0.8",
  9131. "symfony/polyfill-ctype": "~1.8"
  9132. },
  9133. "conflict": {
  9134. "symfony/console": "<3.4"
  9135. },
  9136. "require-dev": {
  9137. "symfony/console": "~3.4|~4.0"
  9138. },
  9139. "suggest": {
  9140. "symfony/console": "For validating YAML files using the lint command"
  9141. },
  9142. "type": "library",
  9143. "extra": {
  9144. "branch-alias": {
  9145. "dev-master": "3.4-dev"
  9146. }
  9147. },
  9148. "autoload": {
  9149. "psr-4": {
  9150. "Symfony\\Component\\Yaml\\": ""
  9151. },
  9152. "exclude-from-classmap": [
  9153. "/Tests/"
  9154. ]
  9155. },
  9156. "notification-url": "https://packagist.org/downloads/",
  9157. "license": [
  9158. "MIT"
  9159. ],
  9160. "authors": [
  9161. {
  9162. "name": "Fabien Potencier",
  9163. "email": "fabien@symfony.com"
  9164. },
  9165. {
  9166. "name": "Symfony Community",
  9167. "homepage": "https://symfony.com/contributors"
  9168. }
  9169. ],
  9170. "description": "Symfony Yaml Component",
  9171. "homepage": "https://symfony.com",
  9172. "time": "2018-10-02T16:33:53+00:00"
  9173. },
  9174. {
  9175. "name": "twig/twig",
  9176. "version": "v1.35.4",
  9177. "source": {
  9178. "type": "git",
  9179. "url": "https://github.com/twigphp/Twig.git",
  9180. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a"
  9181. },
  9182. "dist": {
  9183. "type": "zip",
  9184. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  9185. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  9186. "shasum": ""
  9187. },
  9188. "require": {
  9189. "php": ">=5.3.3",
  9190. "symfony/polyfill-ctype": "^1.8"
  9191. },
  9192. "require-dev": {
  9193. "psr/container": "^1.0",
  9194. "symfony/debug": "^2.7",
  9195. "symfony/phpunit-bridge": "^3.3"
  9196. },
  9197. "type": "library",
  9198. "extra": {
  9199. "branch-alias": {
  9200. "dev-master": "1.35-dev"
  9201. }
  9202. },
  9203. "autoload": {
  9204. "psr-0": {
  9205. "Twig_": "lib/"
  9206. },
  9207. "psr-4": {
  9208. "Twig\\": "src/"
  9209. }
  9210. },
  9211. "notification-url": "https://packagist.org/downloads/",
  9212. "license": [
  9213. "BSD-3-Clause"
  9214. ],
  9215. "authors": [
  9216. {
  9217. "name": "Fabien Potencier",
  9218. "email": "fabien@symfony.com",
  9219. "homepage": "http://fabien.potencier.org",
  9220. "role": "Lead Developer"
  9221. },
  9222. {
  9223. "name": "Armin Ronacher",
  9224. "email": "armin.ronacher@active-4.com",
  9225. "role": "Project Founder"
  9226. },
  9227. {
  9228. "name": "Twig Team",
  9229. "homepage": "https://twig.symfony.com/contributors",
  9230. "role": "Contributors"
  9231. }
  9232. ],
  9233. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9234. "homepage": "https://twig.symfony.com",
  9235. "keywords": [
  9236. "templating"
  9237. ],
  9238. "time": "2018-07-13T07:12:17+00:00"
  9239. },
  9240. {
  9241. "name": "webflo/drupal-finder",
  9242. "version": "1.1.0",
  9243. "source": {
  9244. "type": "git",
  9245. "url": "https://github.com/webflo/drupal-finder.git",
  9246. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  9247. },
  9248. "dist": {
  9249. "type": "zip",
  9250. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9251. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9252. "shasum": ""
  9253. },
  9254. "require-dev": {
  9255. "mikey179/vfsstream": "^1.6",
  9256. "phpunit/phpunit": "^4.8"
  9257. },
  9258. "type": "library",
  9259. "autoload": {
  9260. "classmap": [
  9261. "src/DrupalFinder.php"
  9262. ]
  9263. },
  9264. "notification-url": "https://packagist.org/downloads/",
  9265. "license": [
  9266. "GPL-2.0+"
  9267. ],
  9268. "authors": [
  9269. {
  9270. "name": "Florian Weber",
  9271. "email": "florian@webflo.org"
  9272. }
  9273. ],
  9274. "description": "Helper class to locate a Drupal installation from a given path.",
  9275. "time": "2017-10-24T08:12:11+00:00"
  9276. },
  9277. {
  9278. "name": "webmozart/assert",
  9279. "version": "1.3.0",
  9280. "source": {
  9281. "type": "git",
  9282. "url": "https://github.com/webmozart/assert.git",
  9283. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  9284. },
  9285. "dist": {
  9286. "type": "zip",
  9287. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  9288. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  9289. "shasum": ""
  9290. },
  9291. "require": {
  9292. "php": "^5.3.3 || ^7.0"
  9293. },
  9294. "require-dev": {
  9295. "phpunit/phpunit": "^4.6",
  9296. "sebastian/version": "^1.0.1"
  9297. },
  9298. "type": "library",
  9299. "extra": {
  9300. "branch-alias": {
  9301. "dev-master": "1.3-dev"
  9302. }
  9303. },
  9304. "autoload": {
  9305. "psr-4": {
  9306. "Webmozart\\Assert\\": "src/"
  9307. }
  9308. },
  9309. "notification-url": "https://packagist.org/downloads/",
  9310. "license": [
  9311. "MIT"
  9312. ],
  9313. "authors": [
  9314. {
  9315. "name": "Bernhard Schussek",
  9316. "email": "bschussek@gmail.com"
  9317. }
  9318. ],
  9319. "description": "Assertions to validate method input/output with nice error messages.",
  9320. "keywords": [
  9321. "assert",
  9322. "check",
  9323. "validate"
  9324. ],
  9325. "time": "2018-01-29T19:49:41+00:00"
  9326. },
  9327. {
  9328. "name": "webmozart/path-util",
  9329. "version": "2.3.0",
  9330. "source": {
  9331. "type": "git",
  9332. "url": "https://github.com/webmozart/path-util.git",
  9333. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9334. },
  9335. "dist": {
  9336. "type": "zip",
  9337. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9338. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9339. "shasum": ""
  9340. },
  9341. "require": {
  9342. "php": ">=5.3.3",
  9343. "webmozart/assert": "~1.0"
  9344. },
  9345. "require-dev": {
  9346. "phpunit/phpunit": "^4.6",
  9347. "sebastian/version": "^1.0.1"
  9348. },
  9349. "type": "library",
  9350. "extra": {
  9351. "branch-alias": {
  9352. "dev-master": "2.3-dev"
  9353. }
  9354. },
  9355. "autoload": {
  9356. "psr-4": {
  9357. "Webmozart\\PathUtil\\": "src/"
  9358. }
  9359. },
  9360. "notification-url": "https://packagist.org/downloads/",
  9361. "license": [
  9362. "MIT"
  9363. ],
  9364. "authors": [
  9365. {
  9366. "name": "Bernhard Schussek",
  9367. "email": "bschussek@gmail.com"
  9368. }
  9369. ],
  9370. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9371. "time": "2015-12-17T08:42:14+00:00"
  9372. },
  9373. {
  9374. "name": "wikimedia/composer-merge-plugin",
  9375. "version": "v1.4.1",
  9376. "source": {
  9377. "type": "git",
  9378. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  9379. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  9380. },
  9381. "dist": {
  9382. "type": "zip",
  9383. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  9384. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  9385. "shasum": ""
  9386. },
  9387. "require": {
  9388. "composer-plugin-api": "^1.0",
  9389. "php": ">=5.3.2"
  9390. },
  9391. "require-dev": {
  9392. "composer/composer": "~1.0.0",
  9393. "jakub-onderka/php-parallel-lint": "~0.8",
  9394. "phpunit/phpunit": "~4.8|~5.0",
  9395. "squizlabs/php_codesniffer": "~2.1.0"
  9396. },
  9397. "type": "composer-plugin",
  9398. "extra": {
  9399. "branch-alias": {
  9400. "dev-master": "1.3.x-dev"
  9401. },
  9402. "class": "Wikimedia\\Composer\\MergePlugin"
  9403. },
  9404. "autoload": {
  9405. "psr-4": {
  9406. "Wikimedia\\Composer\\": "src/"
  9407. }
  9408. },
  9409. "notification-url": "https://packagist.org/downloads/",
  9410. "license": [
  9411. "MIT"
  9412. ],
  9413. "authors": [
  9414. {
  9415. "name": "Bryan Davis",
  9416. "email": "bd808@wikimedia.org"
  9417. }
  9418. ],
  9419. "description": "Composer plugin to merge multiple composer.json files",
  9420. "time": "2017-04-25T02:31:25+00:00"
  9421. },
  9422. {
  9423. "name": "zendframework/zend-diactoros",
  9424. "version": "1.8.6",
  9425. "source": {
  9426. "type": "git",
  9427. "url": "https://github.com/zendframework/zend-diactoros.git",
  9428. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  9429. },
  9430. "dist": {
  9431. "type": "zip",
  9432. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  9433. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  9434. "shasum": ""
  9435. },
  9436. "require": {
  9437. "php": "^5.6 || ^7.0",
  9438. "psr/http-message": "^1.0"
  9439. },
  9440. "provide": {
  9441. "psr/http-message-implementation": "1.0"
  9442. },
  9443. "require-dev": {
  9444. "ext-dom": "*",
  9445. "ext-libxml": "*",
  9446. "php-http/psr7-integration-tests": "dev-master",
  9447. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  9448. "zendframework/zend-coding-standard": "~1.0"
  9449. },
  9450. "type": "library",
  9451. "extra": {
  9452. "branch-alias": {
  9453. "dev-master": "1.8.x-dev",
  9454. "dev-develop": "1.9.x-dev",
  9455. "dev-release-2.0": "2.0.x-dev"
  9456. }
  9457. },
  9458. "autoload": {
  9459. "files": [
  9460. "src/functions/create_uploaded_file.php",
  9461. "src/functions/marshal_headers_from_sapi.php",
  9462. "src/functions/marshal_method_from_sapi.php",
  9463. "src/functions/marshal_protocol_version_from_sapi.php",
  9464. "src/functions/marshal_uri_from_sapi.php",
  9465. "src/functions/normalize_server.php",
  9466. "src/functions/normalize_uploaded_files.php",
  9467. "src/functions/parse_cookie_header.php"
  9468. ],
  9469. "psr-4": {
  9470. "Zend\\Diactoros\\": "src/"
  9471. }
  9472. },
  9473. "notification-url": "https://packagist.org/downloads/",
  9474. "license": [
  9475. "BSD-2-Clause"
  9476. ],
  9477. "description": "PSR HTTP Message implementations",
  9478. "homepage": "https://github.com/zendframework/zend-diactoros",
  9479. "keywords": [
  9480. "http",
  9481. "psr",
  9482. "psr-7"
  9483. ],
  9484. "time": "2018-09-05T19:29:37+00:00"
  9485. },
  9486. {
  9487. "name": "zendframework/zend-escaper",
  9488. "version": "2.6.0",
  9489. "source": {
  9490. "type": "git",
  9491. "url": "https://github.com/zendframework/zend-escaper.git",
  9492. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  9493. },
  9494. "dist": {
  9495. "type": "zip",
  9496. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  9497. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  9498. "shasum": ""
  9499. },
  9500. "require": {
  9501. "php": "^5.6 || ^7.0"
  9502. },
  9503. "require-dev": {
  9504. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  9505. "zendframework/zend-coding-standard": "~1.0.0"
  9506. },
  9507. "type": "library",
  9508. "extra": {
  9509. "branch-alias": {
  9510. "dev-master": "2.6.x-dev",
  9511. "dev-develop": "2.7.x-dev"
  9512. }
  9513. },
  9514. "autoload": {
  9515. "psr-4": {
  9516. "Zend\\Escaper\\": "src/"
  9517. }
  9518. },
  9519. "notification-url": "https://packagist.org/downloads/",
  9520. "license": [
  9521. "BSD-3-Clause"
  9522. ],
  9523. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  9524. "keywords": [
  9525. "ZendFramework",
  9526. "escaper",
  9527. "zf"
  9528. ],
  9529. "time": "2018-04-25T15:48:53+00:00"
  9530. },
  9531. {
  9532. "name": "zendframework/zend-feed",
  9533. "version": "2.10.3",
  9534. "source": {
  9535. "type": "git",
  9536. "url": "https://github.com/zendframework/zend-feed.git",
  9537. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888"
  9538. },
  9539. "dist": {
  9540. "type": "zip",
  9541. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/6641f4cf3f4586c63f83fd70b6d19966025c8888",
  9542. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888",
  9543. "shasum": ""
  9544. },
  9545. "require": {
  9546. "php": "^5.6 || ^7.0",
  9547. "zendframework/zend-escaper": "^2.5.2",
  9548. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  9549. },
  9550. "require-dev": {
  9551. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  9552. "psr/http-message": "^1.0.1",
  9553. "zendframework/zend-cache": "^2.7.2",
  9554. "zendframework/zend-coding-standard": "~1.0.0",
  9555. "zendframework/zend-db": "^2.8.2",
  9556. "zendframework/zend-http": "^2.7",
  9557. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  9558. "zendframework/zend-validator": "^2.10.1"
  9559. },
  9560. "suggest": {
  9561. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  9562. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  9563. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  9564. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  9565. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  9566. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  9567. },
  9568. "type": "library",
  9569. "extra": {
  9570. "branch-alias": {
  9571. "dev-master": "2.10.x-dev",
  9572. "dev-develop": "2.11.x-dev"
  9573. }
  9574. },
  9575. "autoload": {
  9576. "psr-4": {
  9577. "Zend\\Feed\\": "src/"
  9578. }
  9579. },
  9580. "notification-url": "https://packagist.org/downloads/",
  9581. "license": [
  9582. "BSD-3-Clause"
  9583. ],
  9584. "description": "provides functionality for consuming RSS and Atom feeds",
  9585. "keywords": [
  9586. "ZendFramework",
  9587. "feed",
  9588. "zf"
  9589. ],
  9590. "time": "2018-08-01T13:53:20+00:00"
  9591. },
  9592. {
  9593. "name": "zendframework/zend-stdlib",
  9594. "version": "3.2.1",
  9595. "source": {
  9596. "type": "git",
  9597. "url": "https://github.com/zendframework/zend-stdlib.git",
  9598. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  9599. },
  9600. "dist": {
  9601. "type": "zip",
  9602. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  9603. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  9604. "shasum": ""
  9605. },
  9606. "require": {
  9607. "php": "^5.6 || ^7.0"
  9608. },
  9609. "require-dev": {
  9610. "phpbench/phpbench": "^0.13",
  9611. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  9612. "zendframework/zend-coding-standard": "~1.0.0"
  9613. },
  9614. "type": "library",
  9615. "extra": {
  9616. "branch-alias": {
  9617. "dev-master": "3.2.x-dev",
  9618. "dev-develop": "3.3.x-dev"
  9619. }
  9620. },
  9621. "autoload": {
  9622. "psr-4": {
  9623. "Zend\\Stdlib\\": "src/"
  9624. }
  9625. },
  9626. "notification-url": "https://packagist.org/downloads/",
  9627. "license": [
  9628. "BSD-3-Clause"
  9629. ],
  9630. "description": "SPL extensions, array utilities, error handlers, and more",
  9631. "keywords": [
  9632. "ZendFramework",
  9633. "stdlib",
  9634. "zf"
  9635. ],
  9636. "time": "2018-08-28T21:34:05+00:00"
  9637. }
  9638. ],
  9639. "packages-dev": [
  9640. {
  9641. "name": "behat/mink",
  9642. "version": "dev-master",
  9643. "source": {
  9644. "type": "git",
  9645. "url": "https://github.com/minkphp/Mink.git",
  9646. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  9647. },
  9648. "dist": {
  9649. "type": "zip",
  9650. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  9651. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  9652. "shasum": ""
  9653. },
  9654. "require": {
  9655. "php": ">=5.3.1",
  9656. "symfony/css-selector": "^2.7|^3.0|^4.0"
  9657. },
  9658. "require-dev": {
  9659. "symfony/phpunit-bridge": "^3.3|^4.0"
  9660. },
  9661. "suggest": {
  9662. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  9663. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  9664. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  9665. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  9666. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  9667. },
  9668. "type": "library",
  9669. "extra": {
  9670. "branch-alias": {
  9671. "dev-master": "1.7.x-dev"
  9672. }
  9673. },
  9674. "autoload": {
  9675. "psr-4": {
  9676. "Behat\\Mink\\": "src/"
  9677. }
  9678. },
  9679. "notification-url": "https://packagist.org/downloads/",
  9680. "license": [
  9681. "MIT"
  9682. ],
  9683. "authors": [
  9684. {
  9685. "name": "Konstantin Kudryashov",
  9686. "email": "ever.zet@gmail.com",
  9687. "homepage": "http://everzet.com"
  9688. }
  9689. ],
  9690. "description": "Browser controller/emulator abstraction for PHP",
  9691. "homepage": "http://mink.behat.org/",
  9692. "keywords": [
  9693. "browser",
  9694. "testing",
  9695. "web"
  9696. ],
  9697. "time": "2018-06-24T20:08:51+00:00"
  9698. },
  9699. {
  9700. "name": "behat/mink-browserkit-driver",
  9701. "version": "1.3.3",
  9702. "source": {
  9703. "type": "git",
  9704. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  9705. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  9706. },
  9707. "dist": {
  9708. "type": "zip",
  9709. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  9710. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  9711. "shasum": ""
  9712. },
  9713. "require": {
  9714. "behat/mink": "^1.7.1@dev",
  9715. "php": ">=5.3.6",
  9716. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  9717. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  9718. },
  9719. "require-dev": {
  9720. "mink/driver-testsuite": "dev-master",
  9721. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  9722. },
  9723. "type": "mink-driver",
  9724. "extra": {
  9725. "branch-alias": {
  9726. "dev-master": "1.3.x-dev"
  9727. }
  9728. },
  9729. "autoload": {
  9730. "psr-4": {
  9731. "Behat\\Mink\\Driver\\": "src/"
  9732. }
  9733. },
  9734. "notification-url": "https://packagist.org/downloads/",
  9735. "license": [
  9736. "MIT"
  9737. ],
  9738. "authors": [
  9739. {
  9740. "name": "Konstantin Kudryashov",
  9741. "email": "ever.zet@gmail.com",
  9742. "homepage": "http://everzet.com"
  9743. }
  9744. ],
  9745. "description": "Symfony2 BrowserKit driver for Mink framework",
  9746. "homepage": "http://mink.behat.org/",
  9747. "keywords": [
  9748. "Mink",
  9749. "Symfony2",
  9750. "browser",
  9751. "testing"
  9752. ],
  9753. "time": "2018-05-02T09:25:31+00:00"
  9754. },
  9755. {
  9756. "name": "behat/mink-goutte-driver",
  9757. "version": "v1.2.1",
  9758. "source": {
  9759. "type": "git",
  9760. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  9761. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  9762. },
  9763. "dist": {
  9764. "type": "zip",
  9765. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  9766. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  9767. "shasum": ""
  9768. },
  9769. "require": {
  9770. "behat/mink": "~1.6@dev",
  9771. "behat/mink-browserkit-driver": "~1.2@dev",
  9772. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  9773. "php": ">=5.3.1"
  9774. },
  9775. "require-dev": {
  9776. "symfony/phpunit-bridge": "~2.7|~3.0"
  9777. },
  9778. "type": "mink-driver",
  9779. "extra": {
  9780. "branch-alias": {
  9781. "dev-master": "1.2.x-dev"
  9782. }
  9783. },
  9784. "autoload": {
  9785. "psr-4": {
  9786. "Behat\\Mink\\Driver\\": "src/"
  9787. }
  9788. },
  9789. "notification-url": "https://packagist.org/downloads/",
  9790. "license": [
  9791. "MIT"
  9792. ],
  9793. "authors": [
  9794. {
  9795. "name": "Konstantin Kudryashov",
  9796. "email": "ever.zet@gmail.com",
  9797. "homepage": "http://everzet.com"
  9798. }
  9799. ],
  9800. "description": "Goutte driver for Mink framework",
  9801. "homepage": "http://mink.behat.org/",
  9802. "keywords": [
  9803. "browser",
  9804. "goutte",
  9805. "headless",
  9806. "testing"
  9807. ],
  9808. "time": "2016-03-05T09:04:22+00:00"
  9809. },
  9810. {
  9811. "name": "behat/mink-selenium2-driver",
  9812. "version": "dev-master",
  9813. "source": {
  9814. "type": "git",
  9815. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  9816. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  9817. },
  9818. "dist": {
  9819. "type": "zip",
  9820. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  9821. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  9822. "shasum": ""
  9823. },
  9824. "require": {
  9825. "behat/mink": "~1.7@dev",
  9826. "instaclick/php-webdriver": "~1.1",
  9827. "php": ">=5.3.1"
  9828. },
  9829. "require-dev": {
  9830. "mink/driver-testsuite": "dev-master"
  9831. },
  9832. "type": "mink-driver",
  9833. "extra": {
  9834. "branch-alias": {
  9835. "dev-master": "1.3.x-dev"
  9836. }
  9837. },
  9838. "autoload": {
  9839. "psr-4": {
  9840. "Behat\\Mink\\Driver\\": "src/"
  9841. }
  9842. },
  9843. "notification-url": "https://packagist.org/downloads/",
  9844. "license": [
  9845. "MIT"
  9846. ],
  9847. "authors": [
  9848. {
  9849. "name": "Konstantin Kudryashov",
  9850. "email": "ever.zet@gmail.com",
  9851. "homepage": "http://everzet.com"
  9852. },
  9853. {
  9854. "name": "Pete Otaqui",
  9855. "email": "pete@otaqui.com",
  9856. "homepage": "https://github.com/pete-otaqui"
  9857. }
  9858. ],
  9859. "description": "Selenium2 (WebDriver) driver for Mink framework",
  9860. "homepage": "http://mink.behat.org/",
  9861. "keywords": [
  9862. "ajax",
  9863. "browser",
  9864. "javascript",
  9865. "selenium",
  9866. "testing",
  9867. "webdriver"
  9868. ],
  9869. "time": "2018-10-10T12:39:06+00:00"
  9870. },
  9871. {
  9872. "name": "doctrine/instantiator",
  9873. "version": "1.0.5",
  9874. "source": {
  9875. "type": "git",
  9876. "url": "https://github.com/doctrine/instantiator.git",
  9877. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  9878. },
  9879. "dist": {
  9880. "type": "zip",
  9881. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  9882. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  9883. "shasum": ""
  9884. },
  9885. "require": {
  9886. "php": ">=5.3,<8.0-DEV"
  9887. },
  9888. "require-dev": {
  9889. "athletic/athletic": "~0.1.8",
  9890. "ext-pdo": "*",
  9891. "ext-phar": "*",
  9892. "phpunit/phpunit": "~4.0",
  9893. "squizlabs/php_codesniffer": "~2.0"
  9894. },
  9895. "type": "library",
  9896. "extra": {
  9897. "branch-alias": {
  9898. "dev-master": "1.0.x-dev"
  9899. }
  9900. },
  9901. "autoload": {
  9902. "psr-4": {
  9903. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9904. }
  9905. },
  9906. "notification-url": "https://packagist.org/downloads/",
  9907. "license": [
  9908. "MIT"
  9909. ],
  9910. "authors": [
  9911. {
  9912. "name": "Marco Pivetta",
  9913. "email": "ocramius@gmail.com",
  9914. "homepage": "http://ocramius.github.com/"
  9915. }
  9916. ],
  9917. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9918. "homepage": "https://github.com/doctrine/instantiator",
  9919. "keywords": [
  9920. "constructor",
  9921. "instantiate"
  9922. ],
  9923. "time": "2015-06-14T21:17:01+00:00"
  9924. },
  9925. {
  9926. "name": "drupal/coder",
  9927. "version": "8.3.1",
  9928. "source": {
  9929. "type": "git",
  9930. "url": "https://git.drupal.org/project/coder.git",
  9931. "reference": "29a25627e7148b3119c84f18e087fc3b8c85b959"
  9932. },
  9933. "require": {
  9934. "ext-mbstring": "*",
  9935. "php": ">=5.4.0",
  9936. "squizlabs/php_codesniffer": "^3.0.1",
  9937. "symfony/yaml": ">=2.0.0"
  9938. },
  9939. "require-dev": {
  9940. "phpunit/phpunit": ">=3.7 <6"
  9941. },
  9942. "type": "phpcodesniffer-standard",
  9943. "autoload": {
  9944. "psr-0": {
  9945. "Drupal\\": "coder_sniffer/Drupal/",
  9946. "DrupalPractice\\": "coder_sniffer/Drupal/"
  9947. }
  9948. },
  9949. "notification-url": "https://packagist.org/downloads/",
  9950. "license": [
  9951. "GPL-2.0+"
  9952. ],
  9953. "description": "Coder is a library to review Drupal code.",
  9954. "homepage": "https://www.drupal.org/project/coder",
  9955. "keywords": [
  9956. "code review",
  9957. "phpcs",
  9958. "standards"
  9959. ],
  9960. "time": "2018-09-21T14:22:49+00:00"
  9961. },
  9962. {
  9963. "name": "fabpot/goutte",
  9964. "version": "v3.2.3",
  9965. "source": {
  9966. "type": "git",
  9967. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  9968. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  9969. },
  9970. "dist": {
  9971. "type": "zip",
  9972. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  9973. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  9974. "shasum": ""
  9975. },
  9976. "require": {
  9977. "guzzlehttp/guzzle": "^6.0",
  9978. "php": ">=5.5.0",
  9979. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  9980. "symfony/css-selector": "~2.1|~3.0|~4.0",
  9981. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  9982. },
  9983. "require-dev": {
  9984. "symfony/phpunit-bridge": "^3.3 || ^4"
  9985. },
  9986. "type": "application",
  9987. "extra": {
  9988. "branch-alias": {
  9989. "dev-master": "3.2-dev"
  9990. }
  9991. },
  9992. "autoload": {
  9993. "psr-4": {
  9994. "Goutte\\": "Goutte"
  9995. },
  9996. "exclude-from-classmap": [
  9997. "Goutte/Tests"
  9998. ]
  9999. },
  10000. "notification-url": "https://packagist.org/downloads/",
  10001. "license": [
  10002. "MIT"
  10003. ],
  10004. "authors": [
  10005. {
  10006. "name": "Fabien Potencier",
  10007. "email": "fabien@symfony.com"
  10008. }
  10009. ],
  10010. "description": "A simple PHP Web Scraper",
  10011. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  10012. "keywords": [
  10013. "scraper"
  10014. ],
  10015. "time": "2018-06-29T15:13:57+00:00"
  10016. },
  10017. {
  10018. "name": "instaclick/php-webdriver",
  10019. "version": "1.4.5",
  10020. "source": {
  10021. "type": "git",
  10022. "url": "https://github.com/instaclick/php-webdriver.git",
  10023. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  10024. },
  10025. "dist": {
  10026. "type": "zip",
  10027. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  10028. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  10029. "shasum": ""
  10030. },
  10031. "require": {
  10032. "ext-curl": "*",
  10033. "php": ">=5.3.2"
  10034. },
  10035. "require-dev": {
  10036. "phpunit/phpunit": "^4.8",
  10037. "satooshi/php-coveralls": "^1.0||^2.0"
  10038. },
  10039. "type": "library",
  10040. "extra": {
  10041. "branch-alias": {
  10042. "dev-master": "1.4.x-dev"
  10043. }
  10044. },
  10045. "autoload": {
  10046. "psr-0": {
  10047. "WebDriver": "lib/"
  10048. }
  10049. },
  10050. "notification-url": "https://packagist.org/downloads/",
  10051. "license": [
  10052. "Apache-2.0"
  10053. ],
  10054. "authors": [
  10055. {
  10056. "name": "Justin Bishop",
  10057. "email": "jubishop@gmail.com",
  10058. "role": "Developer"
  10059. },
  10060. {
  10061. "name": "Anthon Pang",
  10062. "email": "apang@softwaredevelopment.ca",
  10063. "role": "Fork Maintainer"
  10064. }
  10065. ],
  10066. "description": "PHP WebDriver for Selenium 2",
  10067. "homepage": "http://instaclick.com/",
  10068. "keywords": [
  10069. "browser",
  10070. "selenium",
  10071. "webdriver",
  10072. "webtest"
  10073. ],
  10074. "time": "2017-06-30T04:02:48+00:00"
  10075. },
  10076. {
  10077. "name": "jcalderonzumba/gastonjs",
  10078. "version": "v1.2.0",
  10079. "source": {
  10080. "type": "git",
  10081. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  10082. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  10083. },
  10084. "dist": {
  10085. "type": "zip",
  10086. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  10087. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  10088. "shasum": ""
  10089. },
  10090. "require": {
  10091. "guzzlehttp/guzzle": "~5.0|~6.0",
  10092. "php": ">=5.4"
  10093. },
  10094. "require-dev": {
  10095. "phpunit/phpunit": "~4.6",
  10096. "silex/silex": "~1.2",
  10097. "symfony/phpunit-bridge": "~2.7",
  10098. "symfony/process": "~2.1"
  10099. },
  10100. "type": "phantomjs-api",
  10101. "extra": {
  10102. "branch-alias": {
  10103. "dev-master": "1.1.x-dev"
  10104. }
  10105. },
  10106. "autoload": {
  10107. "psr-4": {
  10108. "Zumba\\GastonJS\\": "src"
  10109. }
  10110. },
  10111. "notification-url": "https://packagist.org/downloads/",
  10112. "license": [
  10113. "MIT"
  10114. ],
  10115. "authors": [
  10116. {
  10117. "name": "Juan Francisco Calderón Zumba",
  10118. "email": "juanfcz@gmail.com",
  10119. "homepage": "http://github.com/jcalderonzumba"
  10120. }
  10121. ],
  10122. "description": "PhantomJS API based server for webpage automation",
  10123. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  10124. "keywords": [
  10125. "api",
  10126. "automation",
  10127. "browser",
  10128. "headless",
  10129. "phantomjs"
  10130. ],
  10131. "time": "2017-03-31T07:31:47+00:00"
  10132. },
  10133. {
  10134. "name": "jcalderonzumba/mink-phantomjs-driver",
  10135. "version": "v0.3.3",
  10136. "source": {
  10137. "type": "git",
  10138. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  10139. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  10140. },
  10141. "dist": {
  10142. "type": "zip",
  10143. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  10144. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  10145. "shasum": ""
  10146. },
  10147. "require": {
  10148. "behat/mink": "~1.7",
  10149. "jcalderonzumba/gastonjs": "~1.0",
  10150. "php": ">=5.4",
  10151. "twig/twig": "~1.20|~2.0"
  10152. },
  10153. "require-dev": {
  10154. "mink/driver-testsuite": "dev-master",
  10155. "phpunit/phpunit": "~4.6"
  10156. },
  10157. "type": "mink-driver",
  10158. "extra": {
  10159. "branch-alias": {
  10160. "dev-master": "0.4.x-dev"
  10161. }
  10162. },
  10163. "autoload": {
  10164. "psr-4": {
  10165. "Zumba\\Mink\\Driver\\": "src"
  10166. }
  10167. },
  10168. "notification-url": "https://packagist.org/downloads/",
  10169. "license": [
  10170. "MIT"
  10171. ],
  10172. "authors": [
  10173. {
  10174. "name": "Juan Francisco Calderón Zumba",
  10175. "email": "juanfcz@gmail.com",
  10176. "homepage": "http://github.com/jcalderonzumba"
  10177. }
  10178. ],
  10179. "description": "PhantomJS driver for Mink framework",
  10180. "homepage": "http://mink.behat.org/",
  10181. "keywords": [
  10182. "ajax",
  10183. "browser",
  10184. "headless",
  10185. "javascript",
  10186. "phantomjs",
  10187. "testing"
  10188. ],
  10189. "time": "2016-12-01T10:57:30+00:00"
  10190. },
  10191. {
  10192. "name": "mikey179/vfsStream",
  10193. "version": "v1.6.5",
  10194. "source": {
  10195. "type": "git",
  10196. "url": "https://github.com/mikey179/vfsStream.git",
  10197. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  10198. },
  10199. "dist": {
  10200. "type": "zip",
  10201. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  10202. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  10203. "shasum": ""
  10204. },
  10205. "require": {
  10206. "php": ">=5.3.0"
  10207. },
  10208. "require-dev": {
  10209. "phpunit/phpunit": "~4.5"
  10210. },
  10211. "type": "library",
  10212. "extra": {
  10213. "branch-alias": {
  10214. "dev-master": "1.6.x-dev"
  10215. }
  10216. },
  10217. "autoload": {
  10218. "psr-0": {
  10219. "org\\bovigo\\vfs\\": "src/main/php"
  10220. }
  10221. },
  10222. "notification-url": "https://packagist.org/downloads/",
  10223. "license": [
  10224. "BSD-3-Clause"
  10225. ],
  10226. "authors": [
  10227. {
  10228. "name": "Frank Kleine",
  10229. "homepage": "http://frankkleine.de/",
  10230. "role": "Developer"
  10231. }
  10232. ],
  10233. "description": "Virtual file system to mock the real file system in unit tests.",
  10234. "homepage": "http://vfs.bovigo.org/",
  10235. "time": "2017-08-01T08:02:14+00:00"
  10236. },
  10237. {
  10238. "name": "myclabs/deep-copy",
  10239. "version": "1.7.0",
  10240. "source": {
  10241. "type": "git",
  10242. "url": "https://github.com/myclabs/DeepCopy.git",
  10243. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  10244. },
  10245. "dist": {
  10246. "type": "zip",
  10247. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10248. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10249. "shasum": ""
  10250. },
  10251. "require": {
  10252. "php": "^5.6 || ^7.0"
  10253. },
  10254. "require-dev": {
  10255. "doctrine/collections": "^1.0",
  10256. "doctrine/common": "^2.6",
  10257. "phpunit/phpunit": "^4.1"
  10258. },
  10259. "type": "library",
  10260. "autoload": {
  10261. "psr-4": {
  10262. "DeepCopy\\": "src/DeepCopy/"
  10263. },
  10264. "files": [
  10265. "src/DeepCopy/deep_copy.php"
  10266. ]
  10267. },
  10268. "notification-url": "https://packagist.org/downloads/",
  10269. "license": [
  10270. "MIT"
  10271. ],
  10272. "description": "Create deep copies (clones) of your objects",
  10273. "keywords": [
  10274. "clone",
  10275. "copy",
  10276. "duplicate",
  10277. "object",
  10278. "object graph"
  10279. ],
  10280. "time": "2017-10-19T19:58:43+00:00"
  10281. },
  10282. {
  10283. "name": "phar-io/manifest",
  10284. "version": "1.0.1",
  10285. "source": {
  10286. "type": "git",
  10287. "url": "https://github.com/phar-io/manifest.git",
  10288. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  10289. },
  10290. "dist": {
  10291. "type": "zip",
  10292. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  10293. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  10294. "shasum": ""
  10295. },
  10296. "require": {
  10297. "ext-dom": "*",
  10298. "ext-phar": "*",
  10299. "phar-io/version": "^1.0.1",
  10300. "php": "^5.6 || ^7.0"
  10301. },
  10302. "type": "library",
  10303. "extra": {
  10304. "branch-alias": {
  10305. "dev-master": "1.0.x-dev"
  10306. }
  10307. },
  10308. "autoload": {
  10309. "classmap": [
  10310. "src/"
  10311. ]
  10312. },
  10313. "notification-url": "https://packagist.org/downloads/",
  10314. "license": [
  10315. "BSD-3-Clause"
  10316. ],
  10317. "authors": [
  10318. {
  10319. "name": "Arne Blankerts",
  10320. "email": "arne@blankerts.de",
  10321. "role": "Developer"
  10322. },
  10323. {
  10324. "name": "Sebastian Heuer",
  10325. "email": "sebastian@phpeople.de",
  10326. "role": "Developer"
  10327. },
  10328. {
  10329. "name": "Sebastian Bergmann",
  10330. "email": "sebastian@phpunit.de",
  10331. "role": "Developer"
  10332. }
  10333. ],
  10334. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10335. "time": "2017-03-05T18:14:27+00:00"
  10336. },
  10337. {
  10338. "name": "phar-io/version",
  10339. "version": "1.0.1",
  10340. "source": {
  10341. "type": "git",
  10342. "url": "https://github.com/phar-io/version.git",
  10343. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  10344. },
  10345. "dist": {
  10346. "type": "zip",
  10347. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  10348. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  10349. "shasum": ""
  10350. },
  10351. "require": {
  10352. "php": "^5.6 || ^7.0"
  10353. },
  10354. "type": "library",
  10355. "autoload": {
  10356. "classmap": [
  10357. "src/"
  10358. ]
  10359. },
  10360. "notification-url": "https://packagist.org/downloads/",
  10361. "license": [
  10362. "BSD-3-Clause"
  10363. ],
  10364. "authors": [
  10365. {
  10366. "name": "Arne Blankerts",
  10367. "email": "arne@blankerts.de",
  10368. "role": "Developer"
  10369. },
  10370. {
  10371. "name": "Sebastian Heuer",
  10372. "email": "sebastian@phpeople.de",
  10373. "role": "Developer"
  10374. },
  10375. {
  10376. "name": "Sebastian Bergmann",
  10377. "email": "sebastian@phpunit.de",
  10378. "role": "Developer"
  10379. }
  10380. ],
  10381. "description": "Library for handling version information and constraints",
  10382. "time": "2017-03-05T17:38:23+00:00"
  10383. },
  10384. {
  10385. "name": "phpdocumentor/reflection-common",
  10386. "version": "1.0.1",
  10387. "source": {
  10388. "type": "git",
  10389. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10390. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  10391. },
  10392. "dist": {
  10393. "type": "zip",
  10394. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  10395. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  10396. "shasum": ""
  10397. },
  10398. "require": {
  10399. "php": ">=5.5"
  10400. },
  10401. "require-dev": {
  10402. "phpunit/phpunit": "^4.6"
  10403. },
  10404. "type": "library",
  10405. "extra": {
  10406. "branch-alias": {
  10407. "dev-master": "1.0.x-dev"
  10408. }
  10409. },
  10410. "autoload": {
  10411. "psr-4": {
  10412. "phpDocumentor\\Reflection\\": [
  10413. "src"
  10414. ]
  10415. }
  10416. },
  10417. "notification-url": "https://packagist.org/downloads/",
  10418. "license": [
  10419. "MIT"
  10420. ],
  10421. "authors": [
  10422. {
  10423. "name": "Jaap van Otterdijk",
  10424. "email": "opensource@ijaap.nl"
  10425. }
  10426. ],
  10427. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10428. "homepage": "http://www.phpdoc.org",
  10429. "keywords": [
  10430. "FQSEN",
  10431. "phpDocumentor",
  10432. "phpdoc",
  10433. "reflection",
  10434. "static analysis"
  10435. ],
  10436. "time": "2017-09-11T18:02:19+00:00"
  10437. },
  10438. {
  10439. "name": "phpdocumentor/reflection-docblock",
  10440. "version": "4.3.0",
  10441. "source": {
  10442. "type": "git",
  10443. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  10444. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  10445. },
  10446. "dist": {
  10447. "type": "zip",
  10448. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  10449. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  10450. "shasum": ""
  10451. },
  10452. "require": {
  10453. "php": "^7.0",
  10454. "phpdocumentor/reflection-common": "^1.0.0",
  10455. "phpdocumentor/type-resolver": "^0.4.0",
  10456. "webmozart/assert": "^1.0"
  10457. },
  10458. "require-dev": {
  10459. "doctrine/instantiator": "~1.0.5",
  10460. "mockery/mockery": "^1.0",
  10461. "phpunit/phpunit": "^6.4"
  10462. },
  10463. "type": "library",
  10464. "extra": {
  10465. "branch-alias": {
  10466. "dev-master": "4.x-dev"
  10467. }
  10468. },
  10469. "autoload": {
  10470. "psr-4": {
  10471. "phpDocumentor\\Reflection\\": [
  10472. "src/"
  10473. ]
  10474. }
  10475. },
  10476. "notification-url": "https://packagist.org/downloads/",
  10477. "license": [
  10478. "MIT"
  10479. ],
  10480. "authors": [
  10481. {
  10482. "name": "Mike van Riel",
  10483. "email": "me@mikevanriel.com"
  10484. }
  10485. ],
  10486. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  10487. "time": "2017-11-30T07:14:17+00:00"
  10488. },
  10489. {
  10490. "name": "phpdocumentor/type-resolver",
  10491. "version": "0.4.0",
  10492. "source": {
  10493. "type": "git",
  10494. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10495. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  10496. },
  10497. "dist": {
  10498. "type": "zip",
  10499. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  10500. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  10501. "shasum": ""
  10502. },
  10503. "require": {
  10504. "php": "^5.5 || ^7.0",
  10505. "phpdocumentor/reflection-common": "^1.0"
  10506. },
  10507. "require-dev": {
  10508. "mockery/mockery": "^0.9.4",
  10509. "phpunit/phpunit": "^5.2||^4.8.24"
  10510. },
  10511. "type": "library",
  10512. "extra": {
  10513. "branch-alias": {
  10514. "dev-master": "1.0.x-dev"
  10515. }
  10516. },
  10517. "autoload": {
  10518. "psr-4": {
  10519. "phpDocumentor\\Reflection\\": [
  10520. "src/"
  10521. ]
  10522. }
  10523. },
  10524. "notification-url": "https://packagist.org/downloads/",
  10525. "license": [
  10526. "MIT"
  10527. ],
  10528. "authors": [
  10529. {
  10530. "name": "Mike van Riel",
  10531. "email": "me@mikevanriel.com"
  10532. }
  10533. ],
  10534. "time": "2017-07-14T14:27:02+00:00"
  10535. },
  10536. {
  10537. "name": "phpspec/prophecy",
  10538. "version": "1.8.0",
  10539. "source": {
  10540. "type": "git",
  10541. "url": "https://github.com/phpspec/prophecy.git",
  10542. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  10543. },
  10544. "dist": {
  10545. "type": "zip",
  10546. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  10547. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  10548. "shasum": ""
  10549. },
  10550. "require": {
  10551. "doctrine/instantiator": "^1.0.2",
  10552. "php": "^5.3|^7.0",
  10553. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  10554. "sebastian/comparator": "^1.1|^2.0|^3.0",
  10555. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  10556. },
  10557. "require-dev": {
  10558. "phpspec/phpspec": "^2.5|^3.2",
  10559. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  10560. },
  10561. "type": "library",
  10562. "extra": {
  10563. "branch-alias": {
  10564. "dev-master": "1.8.x-dev"
  10565. }
  10566. },
  10567. "autoload": {
  10568. "psr-0": {
  10569. "Prophecy\\": "src/"
  10570. }
  10571. },
  10572. "notification-url": "https://packagist.org/downloads/",
  10573. "license": [
  10574. "MIT"
  10575. ],
  10576. "authors": [
  10577. {
  10578. "name": "Konstantin Kudryashov",
  10579. "email": "ever.zet@gmail.com",
  10580. "homepage": "http://everzet.com"
  10581. },
  10582. {
  10583. "name": "Marcello Duarte",
  10584. "email": "marcello.duarte@gmail.com"
  10585. }
  10586. ],
  10587. "description": "Highly opinionated mocking framework for PHP 5.3+",
  10588. "homepage": "https://github.com/phpspec/prophecy",
  10589. "keywords": [
  10590. "Double",
  10591. "Dummy",
  10592. "fake",
  10593. "mock",
  10594. "spy",
  10595. "stub"
  10596. ],
  10597. "time": "2018-08-05T17:53:17+00:00"
  10598. },
  10599. {
  10600. "name": "phpunit/php-code-coverage",
  10601. "version": "5.3.2",
  10602. "source": {
  10603. "type": "git",
  10604. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10605. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  10606. },
  10607. "dist": {
  10608. "type": "zip",
  10609. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  10610. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  10611. "shasum": ""
  10612. },
  10613. "require": {
  10614. "ext-dom": "*",
  10615. "ext-xmlwriter": "*",
  10616. "php": "^7.0",
  10617. "phpunit/php-file-iterator": "^1.4.2",
  10618. "phpunit/php-text-template": "^1.2.1",
  10619. "phpunit/php-token-stream": "^2.0.1",
  10620. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  10621. "sebastian/environment": "^3.0",
  10622. "sebastian/version": "^2.0.1",
  10623. "theseer/tokenizer": "^1.1"
  10624. },
  10625. "require-dev": {
  10626. "phpunit/phpunit": "^6.0"
  10627. },
  10628. "suggest": {
  10629. "ext-xdebug": "^2.5.5"
  10630. },
  10631. "type": "library",
  10632. "extra": {
  10633. "branch-alias": {
  10634. "dev-master": "5.3.x-dev"
  10635. }
  10636. },
  10637. "autoload": {
  10638. "classmap": [
  10639. "src/"
  10640. ]
  10641. },
  10642. "notification-url": "https://packagist.org/downloads/",
  10643. "license": [
  10644. "BSD-3-Clause"
  10645. ],
  10646. "authors": [
  10647. {
  10648. "name": "Sebastian Bergmann",
  10649. "email": "sebastian@phpunit.de",
  10650. "role": "lead"
  10651. }
  10652. ],
  10653. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10654. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10655. "keywords": [
  10656. "coverage",
  10657. "testing",
  10658. "xunit"
  10659. ],
  10660. "time": "2018-04-06T15:36:58+00:00"
  10661. },
  10662. {
  10663. "name": "phpunit/php-file-iterator",
  10664. "version": "1.4.5",
  10665. "source": {
  10666. "type": "git",
  10667. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10668. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  10669. },
  10670. "dist": {
  10671. "type": "zip",
  10672. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  10673. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  10674. "shasum": ""
  10675. },
  10676. "require": {
  10677. "php": ">=5.3.3"
  10678. },
  10679. "type": "library",
  10680. "extra": {
  10681. "branch-alias": {
  10682. "dev-master": "1.4.x-dev"
  10683. }
  10684. },
  10685. "autoload": {
  10686. "classmap": [
  10687. "src/"
  10688. ]
  10689. },
  10690. "notification-url": "https://packagist.org/downloads/",
  10691. "license": [
  10692. "BSD-3-Clause"
  10693. ],
  10694. "authors": [
  10695. {
  10696. "name": "Sebastian Bergmann",
  10697. "email": "sb@sebastian-bergmann.de",
  10698. "role": "lead"
  10699. }
  10700. ],
  10701. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10702. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10703. "keywords": [
  10704. "filesystem",
  10705. "iterator"
  10706. ],
  10707. "time": "2017-11-27T13:52:08+00:00"
  10708. },
  10709. {
  10710. "name": "phpunit/php-text-template",
  10711. "version": "1.2.1",
  10712. "source": {
  10713. "type": "git",
  10714. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10715. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  10716. },
  10717. "dist": {
  10718. "type": "zip",
  10719. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10720. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10721. "shasum": ""
  10722. },
  10723. "require": {
  10724. "php": ">=5.3.3"
  10725. },
  10726. "type": "library",
  10727. "autoload": {
  10728. "classmap": [
  10729. "src/"
  10730. ]
  10731. },
  10732. "notification-url": "https://packagist.org/downloads/",
  10733. "license": [
  10734. "BSD-3-Clause"
  10735. ],
  10736. "authors": [
  10737. {
  10738. "name": "Sebastian Bergmann",
  10739. "email": "sebastian@phpunit.de",
  10740. "role": "lead"
  10741. }
  10742. ],
  10743. "description": "Simple template engine.",
  10744. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10745. "keywords": [
  10746. "template"
  10747. ],
  10748. "time": "2015-06-21T13:50:34+00:00"
  10749. },
  10750. {
  10751. "name": "phpunit/php-timer",
  10752. "version": "1.0.9",
  10753. "source": {
  10754. "type": "git",
  10755. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10756. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  10757. },
  10758. "dist": {
  10759. "type": "zip",
  10760. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  10761. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  10762. "shasum": ""
  10763. },
  10764. "require": {
  10765. "php": "^5.3.3 || ^7.0"
  10766. },
  10767. "require-dev": {
  10768. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10769. },
  10770. "type": "library",
  10771. "extra": {
  10772. "branch-alias": {
  10773. "dev-master": "1.0-dev"
  10774. }
  10775. },
  10776. "autoload": {
  10777. "classmap": [
  10778. "src/"
  10779. ]
  10780. },
  10781. "notification-url": "https://packagist.org/downloads/",
  10782. "license": [
  10783. "BSD-3-Clause"
  10784. ],
  10785. "authors": [
  10786. {
  10787. "name": "Sebastian Bergmann",
  10788. "email": "sb@sebastian-bergmann.de",
  10789. "role": "lead"
  10790. }
  10791. ],
  10792. "description": "Utility class for timing",
  10793. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10794. "keywords": [
  10795. "timer"
  10796. ],
  10797. "time": "2017-02-26T11:10:40+00:00"
  10798. },
  10799. {
  10800. "name": "phpunit/php-token-stream",
  10801. "version": "2.0.2",
  10802. "source": {
  10803. "type": "git",
  10804. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  10805. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  10806. },
  10807. "dist": {
  10808. "type": "zip",
  10809. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  10810. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  10811. "shasum": ""
  10812. },
  10813. "require": {
  10814. "ext-tokenizer": "*",
  10815. "php": "^7.0"
  10816. },
  10817. "require-dev": {
  10818. "phpunit/phpunit": "^6.2.4"
  10819. },
  10820. "type": "library",
  10821. "extra": {
  10822. "branch-alias": {
  10823. "dev-master": "2.0-dev"
  10824. }
  10825. },
  10826. "autoload": {
  10827. "classmap": [
  10828. "src/"
  10829. ]
  10830. },
  10831. "notification-url": "https://packagist.org/downloads/",
  10832. "license": [
  10833. "BSD-3-Clause"
  10834. ],
  10835. "authors": [
  10836. {
  10837. "name": "Sebastian Bergmann",
  10838. "email": "sebastian@phpunit.de"
  10839. }
  10840. ],
  10841. "description": "Wrapper around PHP's tokenizer extension.",
  10842. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  10843. "keywords": [
  10844. "tokenizer"
  10845. ],
  10846. "time": "2017-11-27T05:48:46+00:00"
  10847. },
  10848. {
  10849. "name": "phpunit/phpunit",
  10850. "version": "6.5.13",
  10851. "source": {
  10852. "type": "git",
  10853. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10854. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  10855. },
  10856. "dist": {
  10857. "type": "zip",
  10858. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  10859. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  10860. "shasum": ""
  10861. },
  10862. "require": {
  10863. "ext-dom": "*",
  10864. "ext-json": "*",
  10865. "ext-libxml": "*",
  10866. "ext-mbstring": "*",
  10867. "ext-xml": "*",
  10868. "myclabs/deep-copy": "^1.6.1",
  10869. "phar-io/manifest": "^1.0.1",
  10870. "phar-io/version": "^1.0",
  10871. "php": "^7.0",
  10872. "phpspec/prophecy": "^1.7",
  10873. "phpunit/php-code-coverage": "^5.3",
  10874. "phpunit/php-file-iterator": "^1.4.3",
  10875. "phpunit/php-text-template": "^1.2.1",
  10876. "phpunit/php-timer": "^1.0.9",
  10877. "phpunit/phpunit-mock-objects": "^5.0.9",
  10878. "sebastian/comparator": "^2.1",
  10879. "sebastian/diff": "^2.0",
  10880. "sebastian/environment": "^3.1",
  10881. "sebastian/exporter": "^3.1",
  10882. "sebastian/global-state": "^2.0",
  10883. "sebastian/object-enumerator": "^3.0.3",
  10884. "sebastian/resource-operations": "^1.0",
  10885. "sebastian/version": "^2.0.1"
  10886. },
  10887. "conflict": {
  10888. "phpdocumentor/reflection-docblock": "3.0.2",
  10889. "phpunit/dbunit": "<3.0"
  10890. },
  10891. "require-dev": {
  10892. "ext-pdo": "*"
  10893. },
  10894. "suggest": {
  10895. "ext-xdebug": "*",
  10896. "phpunit/php-invoker": "^1.1"
  10897. },
  10898. "bin": [
  10899. "phpunit"
  10900. ],
  10901. "type": "library",
  10902. "extra": {
  10903. "branch-alias": {
  10904. "dev-master": "6.5.x-dev"
  10905. }
  10906. },
  10907. "autoload": {
  10908. "classmap": [
  10909. "src/"
  10910. ]
  10911. },
  10912. "notification-url": "https://packagist.org/downloads/",
  10913. "license": [
  10914. "BSD-3-Clause"
  10915. ],
  10916. "authors": [
  10917. {
  10918. "name": "Sebastian Bergmann",
  10919. "email": "sebastian@phpunit.de",
  10920. "role": "lead"
  10921. }
  10922. ],
  10923. "description": "The PHP Unit Testing framework.",
  10924. "homepage": "https://phpunit.de/",
  10925. "keywords": [
  10926. "phpunit",
  10927. "testing",
  10928. "xunit"
  10929. ],
  10930. "time": "2018-09-08T15:10:43+00:00"
  10931. },
  10932. {
  10933. "name": "phpunit/phpunit-mock-objects",
  10934. "version": "5.0.10",
  10935. "source": {
  10936. "type": "git",
  10937. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  10938. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  10939. },
  10940. "dist": {
  10941. "type": "zip",
  10942. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  10943. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  10944. "shasum": ""
  10945. },
  10946. "require": {
  10947. "doctrine/instantiator": "^1.0.5",
  10948. "php": "^7.0",
  10949. "phpunit/php-text-template": "^1.2.1",
  10950. "sebastian/exporter": "^3.1"
  10951. },
  10952. "conflict": {
  10953. "phpunit/phpunit": "<6.0"
  10954. },
  10955. "require-dev": {
  10956. "phpunit/phpunit": "^6.5.11"
  10957. },
  10958. "suggest": {
  10959. "ext-soap": "*"
  10960. },
  10961. "type": "library",
  10962. "extra": {
  10963. "branch-alias": {
  10964. "dev-master": "5.0.x-dev"
  10965. }
  10966. },
  10967. "autoload": {
  10968. "classmap": [
  10969. "src/"
  10970. ]
  10971. },
  10972. "notification-url": "https://packagist.org/downloads/",
  10973. "license": [
  10974. "BSD-3-Clause"
  10975. ],
  10976. "authors": [
  10977. {
  10978. "name": "Sebastian Bergmann",
  10979. "email": "sebastian@phpunit.de",
  10980. "role": "lead"
  10981. }
  10982. ],
  10983. "description": "Mock Object library for PHPUnit",
  10984. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  10985. "keywords": [
  10986. "mock",
  10987. "xunit"
  10988. ],
  10989. "time": "2018-08-09T05:50:03+00:00"
  10990. },
  10991. {
  10992. "name": "sebastian/code-unit-reverse-lookup",
  10993. "version": "1.0.1",
  10994. "source": {
  10995. "type": "git",
  10996. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10997. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  10998. },
  10999. "dist": {
  11000. "type": "zip",
  11001. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  11002. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  11003. "shasum": ""
  11004. },
  11005. "require": {
  11006. "php": "^5.6 || ^7.0"
  11007. },
  11008. "require-dev": {
  11009. "phpunit/phpunit": "^5.7 || ^6.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": "Sebastian Bergmann",
  11029. "email": "sebastian@phpunit.de"
  11030. }
  11031. ],
  11032. "description": "Looks up which function or method a line of code belongs to",
  11033. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11034. "time": "2017-03-04T06:30:41+00:00"
  11035. },
  11036. {
  11037. "name": "sebastian/comparator",
  11038. "version": "2.1.3",
  11039. "source": {
  11040. "type": "git",
  11041. "url": "https://github.com/sebastianbergmann/comparator.git",
  11042. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  11043. },
  11044. "dist": {
  11045. "type": "zip",
  11046. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  11047. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  11048. "shasum": ""
  11049. },
  11050. "require": {
  11051. "php": "^7.0",
  11052. "sebastian/diff": "^2.0 || ^3.0",
  11053. "sebastian/exporter": "^3.1"
  11054. },
  11055. "require-dev": {
  11056. "phpunit/phpunit": "^6.4"
  11057. },
  11058. "type": "library",
  11059. "extra": {
  11060. "branch-alias": {
  11061. "dev-master": "2.1.x-dev"
  11062. }
  11063. },
  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": "Jeff Welch",
  11076. "email": "whatthejeff@gmail.com"
  11077. },
  11078. {
  11079. "name": "Volker Dusch",
  11080. "email": "github@wallbash.com"
  11081. },
  11082. {
  11083. "name": "Bernhard Schussek",
  11084. "email": "bschussek@2bepublished.at"
  11085. },
  11086. {
  11087. "name": "Sebastian Bergmann",
  11088. "email": "sebastian@phpunit.de"
  11089. }
  11090. ],
  11091. "description": "Provides the functionality to compare PHP values for equality",
  11092. "homepage": "https://github.com/sebastianbergmann/comparator",
  11093. "keywords": [
  11094. "comparator",
  11095. "compare",
  11096. "equality"
  11097. ],
  11098. "time": "2018-02-01T13:46:46+00:00"
  11099. },
  11100. {
  11101. "name": "sebastian/diff",
  11102. "version": "2.0.1",
  11103. "source": {
  11104. "type": "git",
  11105. "url": "https://github.com/sebastianbergmann/diff.git",
  11106. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  11107. },
  11108. "dist": {
  11109. "type": "zip",
  11110. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  11111. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  11112. "shasum": ""
  11113. },
  11114. "require": {
  11115. "php": "^7.0"
  11116. },
  11117. "require-dev": {
  11118. "phpunit/phpunit": "^6.2"
  11119. },
  11120. "type": "library",
  11121. "extra": {
  11122. "branch-alias": {
  11123. "dev-master": "2.0-dev"
  11124. }
  11125. },
  11126. "autoload": {
  11127. "classmap": [
  11128. "src/"
  11129. ]
  11130. },
  11131. "notification-url": "https://packagist.org/downloads/",
  11132. "license": [
  11133. "BSD-3-Clause"
  11134. ],
  11135. "authors": [
  11136. {
  11137. "name": "Kore Nordmann",
  11138. "email": "mail@kore-nordmann.de"
  11139. },
  11140. {
  11141. "name": "Sebastian Bergmann",
  11142. "email": "sebastian@phpunit.de"
  11143. }
  11144. ],
  11145. "description": "Diff implementation",
  11146. "homepage": "https://github.com/sebastianbergmann/diff",
  11147. "keywords": [
  11148. "diff"
  11149. ],
  11150. "time": "2017-08-03T08:09:46+00:00"
  11151. },
  11152. {
  11153. "name": "sebastian/environment",
  11154. "version": "3.1.0",
  11155. "source": {
  11156. "type": "git",
  11157. "url": "https://github.com/sebastianbergmann/environment.git",
  11158. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  11159. },
  11160. "dist": {
  11161. "type": "zip",
  11162. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  11163. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  11164. "shasum": ""
  11165. },
  11166. "require": {
  11167. "php": "^7.0"
  11168. },
  11169. "require-dev": {
  11170. "phpunit/phpunit": "^6.1"
  11171. },
  11172. "type": "library",
  11173. "extra": {
  11174. "branch-alias": {
  11175. "dev-master": "3.1.x-dev"
  11176. }
  11177. },
  11178. "autoload": {
  11179. "classmap": [
  11180. "src/"
  11181. ]
  11182. },
  11183. "notification-url": "https://packagist.org/downloads/",
  11184. "license": [
  11185. "BSD-3-Clause"
  11186. ],
  11187. "authors": [
  11188. {
  11189. "name": "Sebastian Bergmann",
  11190. "email": "sebastian@phpunit.de"
  11191. }
  11192. ],
  11193. "description": "Provides functionality to handle HHVM/PHP environments",
  11194. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11195. "keywords": [
  11196. "Xdebug",
  11197. "environment",
  11198. "hhvm"
  11199. ],
  11200. "time": "2017-07-01T08:51:00+00:00"
  11201. },
  11202. {
  11203. "name": "sebastian/exporter",
  11204. "version": "3.1.0",
  11205. "source": {
  11206. "type": "git",
  11207. "url": "https://github.com/sebastianbergmann/exporter.git",
  11208. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  11209. },
  11210. "dist": {
  11211. "type": "zip",
  11212. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  11213. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  11214. "shasum": ""
  11215. },
  11216. "require": {
  11217. "php": "^7.0",
  11218. "sebastian/recursion-context": "^3.0"
  11219. },
  11220. "require-dev": {
  11221. "ext-mbstring": "*",
  11222. "phpunit/phpunit": "^6.0"
  11223. },
  11224. "type": "library",
  11225. "extra": {
  11226. "branch-alias": {
  11227. "dev-master": "3.1.x-dev"
  11228. }
  11229. },
  11230. "autoload": {
  11231. "classmap": [
  11232. "src/"
  11233. ]
  11234. },
  11235. "notification-url": "https://packagist.org/downloads/",
  11236. "license": [
  11237. "BSD-3-Clause"
  11238. ],
  11239. "authors": [
  11240. {
  11241. "name": "Jeff Welch",
  11242. "email": "whatthejeff@gmail.com"
  11243. },
  11244. {
  11245. "name": "Volker Dusch",
  11246. "email": "github@wallbash.com"
  11247. },
  11248. {
  11249. "name": "Bernhard Schussek",
  11250. "email": "bschussek@2bepublished.at"
  11251. },
  11252. {
  11253. "name": "Sebastian Bergmann",
  11254. "email": "sebastian@phpunit.de"
  11255. },
  11256. {
  11257. "name": "Adam Harvey",
  11258. "email": "aharvey@php.net"
  11259. }
  11260. ],
  11261. "description": "Provides the functionality to export PHP variables for visualization",
  11262. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  11263. "keywords": [
  11264. "export",
  11265. "exporter"
  11266. ],
  11267. "time": "2017-04-03T13:19:02+00:00"
  11268. },
  11269. {
  11270. "name": "sebastian/global-state",
  11271. "version": "2.0.0",
  11272. "source": {
  11273. "type": "git",
  11274. "url": "https://github.com/sebastianbergmann/global-state.git",
  11275. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  11276. },
  11277. "dist": {
  11278. "type": "zip",
  11279. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11280. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11281. "shasum": ""
  11282. },
  11283. "require": {
  11284. "php": "^7.0"
  11285. },
  11286. "require-dev": {
  11287. "phpunit/phpunit": "^6.0"
  11288. },
  11289. "suggest": {
  11290. "ext-uopz": "*"
  11291. },
  11292. "type": "library",
  11293. "extra": {
  11294. "branch-alias": {
  11295. "dev-master": "2.0-dev"
  11296. }
  11297. },
  11298. "autoload": {
  11299. "classmap": [
  11300. "src/"
  11301. ]
  11302. },
  11303. "notification-url": "https://packagist.org/downloads/",
  11304. "license": [
  11305. "BSD-3-Clause"
  11306. ],
  11307. "authors": [
  11308. {
  11309. "name": "Sebastian Bergmann",
  11310. "email": "sebastian@phpunit.de"
  11311. }
  11312. ],
  11313. "description": "Snapshotting of global state",
  11314. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11315. "keywords": [
  11316. "global state"
  11317. ],
  11318. "time": "2017-04-27T15:39:26+00:00"
  11319. },
  11320. {
  11321. "name": "sebastian/object-enumerator",
  11322. "version": "3.0.3",
  11323. "source": {
  11324. "type": "git",
  11325. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11326. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  11327. },
  11328. "dist": {
  11329. "type": "zip",
  11330. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  11331. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  11332. "shasum": ""
  11333. },
  11334. "require": {
  11335. "php": "^7.0",
  11336. "sebastian/object-reflector": "^1.1.1",
  11337. "sebastian/recursion-context": "^3.0"
  11338. },
  11339. "require-dev": {
  11340. "phpunit/phpunit": "^6.0"
  11341. },
  11342. "type": "library",
  11343. "extra": {
  11344. "branch-alias": {
  11345. "dev-master": "3.0.x-dev"
  11346. }
  11347. },
  11348. "autoload": {
  11349. "classmap": [
  11350. "src/"
  11351. ]
  11352. },
  11353. "notification-url": "https://packagist.org/downloads/",
  11354. "license": [
  11355. "BSD-3-Clause"
  11356. ],
  11357. "authors": [
  11358. {
  11359. "name": "Sebastian Bergmann",
  11360. "email": "sebastian@phpunit.de"
  11361. }
  11362. ],
  11363. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11364. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11365. "time": "2017-08-03T12:35:26+00:00"
  11366. },
  11367. {
  11368. "name": "sebastian/object-reflector",
  11369. "version": "1.1.1",
  11370. "source": {
  11371. "type": "git",
  11372. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11373. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  11374. },
  11375. "dist": {
  11376. "type": "zip",
  11377. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  11378. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  11379. "shasum": ""
  11380. },
  11381. "require": {
  11382. "php": "^7.0"
  11383. },
  11384. "require-dev": {
  11385. "phpunit/phpunit": "^6.0"
  11386. },
  11387. "type": "library",
  11388. "extra": {
  11389. "branch-alias": {
  11390. "dev-master": "1.1-dev"
  11391. }
  11392. },
  11393. "autoload": {
  11394. "classmap": [
  11395. "src/"
  11396. ]
  11397. },
  11398. "notification-url": "https://packagist.org/downloads/",
  11399. "license": [
  11400. "BSD-3-Clause"
  11401. ],
  11402. "authors": [
  11403. {
  11404. "name": "Sebastian Bergmann",
  11405. "email": "sebastian@phpunit.de"
  11406. }
  11407. ],
  11408. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11409. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11410. "time": "2017-03-29T09:07:27+00:00"
  11411. },
  11412. {
  11413. "name": "sebastian/recursion-context",
  11414. "version": "3.0.0",
  11415. "source": {
  11416. "type": "git",
  11417. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11418. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  11419. },
  11420. "dist": {
  11421. "type": "zip",
  11422. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  11423. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  11424. "shasum": ""
  11425. },
  11426. "require": {
  11427. "php": "^7.0"
  11428. },
  11429. "require-dev": {
  11430. "phpunit/phpunit": "^6.0"
  11431. },
  11432. "type": "library",
  11433. "extra": {
  11434. "branch-alias": {
  11435. "dev-master": "3.0.x-dev"
  11436. }
  11437. },
  11438. "autoload": {
  11439. "classmap": [
  11440. "src/"
  11441. ]
  11442. },
  11443. "notification-url": "https://packagist.org/downloads/",
  11444. "license": [
  11445. "BSD-3-Clause"
  11446. ],
  11447. "authors": [
  11448. {
  11449. "name": "Jeff Welch",
  11450. "email": "whatthejeff@gmail.com"
  11451. },
  11452. {
  11453. "name": "Sebastian Bergmann",
  11454. "email": "sebastian@phpunit.de"
  11455. },
  11456. {
  11457. "name": "Adam Harvey",
  11458. "email": "aharvey@php.net"
  11459. }
  11460. ],
  11461. "description": "Provides functionality to recursively process PHP variables",
  11462. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  11463. "time": "2017-03-03T06:23:57+00:00"
  11464. },
  11465. {
  11466. "name": "sebastian/resource-operations",
  11467. "version": "1.0.0",
  11468. "source": {
  11469. "type": "git",
  11470. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  11471. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  11472. },
  11473. "dist": {
  11474. "type": "zip",
  11475. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  11476. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  11477. "shasum": ""
  11478. },
  11479. "require": {
  11480. "php": ">=5.6.0"
  11481. },
  11482. "type": "library",
  11483. "extra": {
  11484. "branch-alias": {
  11485. "dev-master": "1.0.x-dev"
  11486. }
  11487. },
  11488. "autoload": {
  11489. "classmap": [
  11490. "src/"
  11491. ]
  11492. },
  11493. "notification-url": "https://packagist.org/downloads/",
  11494. "license": [
  11495. "BSD-3-Clause"
  11496. ],
  11497. "authors": [
  11498. {
  11499. "name": "Sebastian Bergmann",
  11500. "email": "sebastian@phpunit.de"
  11501. }
  11502. ],
  11503. "description": "Provides a list of PHP built-in functions that operate on resources",
  11504. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  11505. "time": "2015-07-28T20:34:47+00:00"
  11506. },
  11507. {
  11508. "name": "sebastian/version",
  11509. "version": "2.0.1",
  11510. "source": {
  11511. "type": "git",
  11512. "url": "https://github.com/sebastianbergmann/version.git",
  11513. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  11514. },
  11515. "dist": {
  11516. "type": "zip",
  11517. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  11518. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  11519. "shasum": ""
  11520. },
  11521. "require": {
  11522. "php": ">=5.6"
  11523. },
  11524. "type": "library",
  11525. "extra": {
  11526. "branch-alias": {
  11527. "dev-master": "2.0.x-dev"
  11528. }
  11529. },
  11530. "autoload": {
  11531. "classmap": [
  11532. "src/"
  11533. ]
  11534. },
  11535. "notification-url": "https://packagist.org/downloads/",
  11536. "license": [
  11537. "BSD-3-Clause"
  11538. ],
  11539. "authors": [
  11540. {
  11541. "name": "Sebastian Bergmann",
  11542. "email": "sebastian@phpunit.de",
  11543. "role": "lead"
  11544. }
  11545. ],
  11546. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11547. "homepage": "https://github.com/sebastianbergmann/version",
  11548. "time": "2016-10-03T07:35:21+00:00"
  11549. },
  11550. {
  11551. "name": "squizlabs/php_codesniffer",
  11552. "version": "3.3.2",
  11553. "source": {
  11554. "type": "git",
  11555. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  11556. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e"
  11557. },
  11558. "dist": {
  11559. "type": "zip",
  11560. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  11561. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  11562. "shasum": ""
  11563. },
  11564. "require": {
  11565. "ext-simplexml": "*",
  11566. "ext-tokenizer": "*",
  11567. "ext-xmlwriter": "*",
  11568. "php": ">=5.4.0"
  11569. },
  11570. "require-dev": {
  11571. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  11572. },
  11573. "bin": [
  11574. "bin/phpcs",
  11575. "bin/phpcbf"
  11576. ],
  11577. "type": "library",
  11578. "extra": {
  11579. "branch-alias": {
  11580. "dev-master": "3.x-dev"
  11581. }
  11582. },
  11583. "notification-url": "https://packagist.org/downloads/",
  11584. "license": [
  11585. "BSD-3-Clause"
  11586. ],
  11587. "authors": [
  11588. {
  11589. "name": "Greg Sherwood",
  11590. "role": "lead"
  11591. }
  11592. ],
  11593. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  11594. "homepage": "http://www.squizlabs.com/php-codesniffer",
  11595. "keywords": [
  11596. "phpcs",
  11597. "standards"
  11598. ],
  11599. "time": "2018-09-23T23:08:17+00:00"
  11600. },
  11601. {
  11602. "name": "symfony/browser-kit",
  11603. "version": "v3.4.17",
  11604. "source": {
  11605. "type": "git",
  11606. "url": "https://github.com/symfony/browser-kit.git",
  11607. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0"
  11608. },
  11609. "dist": {
  11610. "type": "zip",
  11611. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  11612. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  11613. "shasum": ""
  11614. },
  11615. "require": {
  11616. "php": "^5.5.9|>=7.0.8",
  11617. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  11618. },
  11619. "require-dev": {
  11620. "symfony/css-selector": "~2.8|~3.0|~4.0",
  11621. "symfony/process": "~2.8|~3.0|~4.0"
  11622. },
  11623. "suggest": {
  11624. "symfony/process": ""
  11625. },
  11626. "type": "library",
  11627. "extra": {
  11628. "branch-alias": {
  11629. "dev-master": "3.4-dev"
  11630. }
  11631. },
  11632. "autoload": {
  11633. "psr-4": {
  11634. "Symfony\\Component\\BrowserKit\\": ""
  11635. },
  11636. "exclude-from-classmap": [
  11637. "/Tests/"
  11638. ]
  11639. },
  11640. "notification-url": "https://packagist.org/downloads/",
  11641. "license": [
  11642. "MIT"
  11643. ],
  11644. "authors": [
  11645. {
  11646. "name": "Fabien Potencier",
  11647. "email": "fabien@symfony.com"
  11648. },
  11649. {
  11650. "name": "Symfony Community",
  11651. "homepage": "https://symfony.com/contributors"
  11652. }
  11653. ],
  11654. "description": "Symfony BrowserKit Component",
  11655. "homepage": "https://symfony.com",
  11656. "time": "2018-07-26T09:06:28+00:00"
  11657. },
  11658. {
  11659. "name": "symfony/phpunit-bridge",
  11660. "version": "v3.4.17",
  11661. "source": {
  11662. "type": "git",
  11663. "url": "https://github.com/symfony/phpunit-bridge.git",
  11664. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4"
  11665. },
  11666. "dist": {
  11667. "type": "zip",
  11668. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/76e013a98031356604e5a730c9eb22713dc4dda4",
  11669. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4",
  11670. "shasum": ""
  11671. },
  11672. "require": {
  11673. "php": ">=5.3.3"
  11674. },
  11675. "conflict": {
  11676. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  11677. },
  11678. "suggest": {
  11679. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  11680. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  11681. },
  11682. "bin": [
  11683. "bin/simple-phpunit"
  11684. ],
  11685. "type": "symfony-bridge",
  11686. "extra": {
  11687. "branch-alias": {
  11688. "dev-master": "3.4-dev"
  11689. },
  11690. "thanks": {
  11691. "name": "phpunit/phpunit",
  11692. "url": "https://github.com/sebastianbergmann/phpunit"
  11693. }
  11694. },
  11695. "autoload": {
  11696. "files": [
  11697. "bootstrap.php"
  11698. ],
  11699. "psr-4": {
  11700. "Symfony\\Bridge\\PhpUnit\\": ""
  11701. },
  11702. "exclude-from-classmap": [
  11703. "/Tests/"
  11704. ]
  11705. },
  11706. "notification-url": "https://packagist.org/downloads/",
  11707. "license": [
  11708. "MIT"
  11709. ],
  11710. "authors": [
  11711. {
  11712. "name": "Nicolas Grekas",
  11713. "email": "p@tchwork.com"
  11714. },
  11715. {
  11716. "name": "Symfony Community",
  11717. "homepage": "https://symfony.com/contributors"
  11718. }
  11719. ],
  11720. "description": "Symfony PHPUnit Bridge",
  11721. "homepage": "https://symfony.com",
  11722. "time": "2018-10-02T12:28:39+00:00"
  11723. },
  11724. {
  11725. "name": "theseer/tokenizer",
  11726. "version": "1.1.0",
  11727. "source": {
  11728. "type": "git",
  11729. "url": "https://github.com/theseer/tokenizer.git",
  11730. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  11731. },
  11732. "dist": {
  11733. "type": "zip",
  11734. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  11735. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  11736. "shasum": ""
  11737. },
  11738. "require": {
  11739. "ext-dom": "*",
  11740. "ext-tokenizer": "*",
  11741. "ext-xmlwriter": "*",
  11742. "php": "^7.0"
  11743. },
  11744. "type": "library",
  11745. "autoload": {
  11746. "classmap": [
  11747. "src/"
  11748. ]
  11749. },
  11750. "notification-url": "https://packagist.org/downloads/",
  11751. "license": [
  11752. "BSD-3-Clause"
  11753. ],
  11754. "authors": [
  11755. {
  11756. "name": "Arne Blankerts",
  11757. "email": "arne@blankerts.de",
  11758. "role": "Developer"
  11759. }
  11760. ],
  11761. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11762. "time": "2017-04-07T12:08:54+00:00"
  11763. }
  11764. ],
  11765. "aliases": [],
  11766. "minimum-stability": "dev",
  11767. "stability-flags": {
  11768. "drupal/examples": 20,
  11769. "drupal/advanced_text_formatter": 10,
  11770. "drupal/autocomplete_deluxe": 10,
  11771. "drupal/better_exposed_filters": 15,
  11772. "drupal/better_messages": 15,
  11773. "drupal/bulkdelete": 20,
  11774. "drupal/content_lock": 15,
  11775. "drupal/context": 10,
  11776. "drupal/domain": 15,
  11777. "drupal/domain_alias": 15,
  11778. "drupal/domain_config": 15,
  11779. "drupal/email_registration": 5,
  11780. "drupal/entity_browser_enhanced": 5,
  11781. "drupal/entity_clone": 15,
  11782. "drupal/filefield_sources": 20,
  11783. "drupal/filter_perms": 20,
  11784. "drupal/inline_entity_form": 5,
  11785. "drupal/login_destination": 20,
  11786. "drupal/maillog": 20,
  11787. "drupal/maxlength": 10,
  11788. "drupal/menu_position": 20,
  11789. "drupal/path_alias_xt": 20,
  11790. "drupal/pathologic": 15,
  11791. "drupal/profile": 5,
  11792. "drupal/smtp": 10,
  11793. "drupal/synonyms": 15,
  11794. "drupal/translation_views": 15,
  11795. "drupal/toolbar_themes": 15,
  11796. "drupal/ultimate_cron": 15,
  11797. "drupal/workflow": 20,
  11798. "behat/mink": 20,
  11799. "behat/mink-selenium2-driver": 20
  11800. },
  11801. "prefer-stable": true,
  11802. "prefer-lowest": false,
  11803. "platform": {
  11804. "ext-date": "*",
  11805. "ext-dom": "*",
  11806. "ext-filter": "*",
  11807. "ext-gd": "*",
  11808. "ext-hash": "*",
  11809. "ext-json": "*",
  11810. "ext-pcre": "*",
  11811. "ext-pdo": "*",
  11812. "ext-session": "*",
  11813. "ext-simplexml": "*",
  11814. "ext-spl": "*",
  11815. "ext-tokenizer": "*",
  11816. "ext-xml": "*",
  11817. "php": "^5.5.9|>=7.0.8"
  11818. },
  11819. "platform-dev": []
  11820. }