composer.lock 442 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432
  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": "feb474307bb454795da76ad5e40b4825",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/5ffdc93de0af2770d396bf433d8b2667c77277ea",
  20. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "ext-mbstring": "*",
  26. "php": ">=5.5",
  27. "symfony/filesystem": "^2.0.5|^3.0",
  28. "symfony/process": "^2.1|^3.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0|^5.0",
  35. "symfony/finder": "^2.0.5|^3.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2016-11-03T16:10:31+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.2.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  84. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2017-12-20T14:37:45+00:00"
  124. },
  125. {
  126. "name": "chi-teck/drupal-code-generator",
  127. "version": "1.27.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "a839bc89d385087d8a7a96a9c1c4bd470ffb627e"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/a839bc89d385087d8a7a96a9c1c4bd470ffb627e",
  136. "reference": "a839bc89d385087d8a7a96a9c1c4bd470ffb627e",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "ext-json": "*",
  141. "php": ">=5.5.9",
  142. "symfony/console": "~2.7|^3",
  143. "symfony/filesystem": "~2.7|^3",
  144. "twig/twig": "^1.23.1"
  145. },
  146. "bin": [
  147. "bin/dcg"
  148. ],
  149. "type": "library",
  150. "extra": {
  151. "branch-alias": {
  152. "dev-master": "1.x-dev"
  153. }
  154. },
  155. "autoload": {
  156. "files": [
  157. "src/bootstrap.php"
  158. ],
  159. "psr-4": {
  160. "DrupalCodeGenerator\\": "src"
  161. }
  162. },
  163. "notification-url": "https://packagist.org/downloads/",
  164. "license": [
  165. "GPL-2.0-or-later"
  166. ],
  167. "description": "Drupal code generator",
  168. "time": "2018-10-11T08:05:59+00:00"
  169. },
  170. {
  171. "name": "commerceguys/addressing",
  172. "version": "v1.0.2",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/commerceguys/addressing.git",
  176. "reference": "f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b",
  181. "reference": "f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b",
  182. "shasum": ""
  183. },
  184. "require": {
  185. "doctrine/collections": "~1.0",
  186. "php": ">=5.5.0"
  187. },
  188. "require-dev": {
  189. "mikey179/vfsstream": "1.*",
  190. "phpunit/phpunit": "~4.0",
  191. "squizlabs/php_codesniffer": "2.*",
  192. "symfony/validator": ">=3.2"
  193. },
  194. "suggest": {
  195. "symfony/validator": "to validate addresses"
  196. },
  197. "type": "library",
  198. "extra": {
  199. "branch-alias": {
  200. "dev-master": "1.x-dev"
  201. }
  202. },
  203. "autoload": {
  204. "psr-4": {
  205. "CommerceGuys\\Addressing\\": "src"
  206. }
  207. },
  208. "notification-url": "https://packagist.org/downloads/",
  209. "license": [
  210. "MIT"
  211. ],
  212. "authors": [
  213. {
  214. "name": "Bojan Zivanovic"
  215. },
  216. {
  217. "name": "Damien Tournoud"
  218. }
  219. ],
  220. "description": "Addressing library powered by CLDR and Google's address data.",
  221. "keywords": [
  222. "address",
  223. "internationalization",
  224. "localization",
  225. "postal"
  226. ],
  227. "time": "2018-10-21T23:38:05+00:00"
  228. },
  229. {
  230. "name": "composer/installers",
  231. "version": "v1.6.0",
  232. "source": {
  233. "type": "git",
  234. "url": "https://github.com/composer/installers.git",
  235. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  236. },
  237. "dist": {
  238. "type": "zip",
  239. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  240. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  241. "shasum": ""
  242. },
  243. "require": {
  244. "composer-plugin-api": "^1.0"
  245. },
  246. "replace": {
  247. "roundcube/plugin-installer": "*",
  248. "shama/baton": "*"
  249. },
  250. "require-dev": {
  251. "composer/composer": "1.0.*@dev",
  252. "phpunit/phpunit": "^4.8.36"
  253. },
  254. "type": "composer-plugin",
  255. "extra": {
  256. "class": "Composer\\Installers\\Plugin",
  257. "branch-alias": {
  258. "dev-master": "1.0-dev"
  259. }
  260. },
  261. "autoload": {
  262. "psr-4": {
  263. "Composer\\Installers\\": "src/Composer/Installers"
  264. }
  265. },
  266. "notification-url": "https://packagist.org/downloads/",
  267. "license": [
  268. "MIT"
  269. ],
  270. "authors": [
  271. {
  272. "name": "Kyle Robinson Young",
  273. "email": "kyle@dontkry.com",
  274. "homepage": "https://github.com/shama"
  275. }
  276. ],
  277. "description": "A multi-framework Composer library installer",
  278. "homepage": "https://composer.github.io/installers/",
  279. "keywords": [
  280. "Craft",
  281. "Dolibarr",
  282. "Eliasis",
  283. "Hurad",
  284. "ImageCMS",
  285. "Kanboard",
  286. "Lan Management System",
  287. "MODX Evo",
  288. "Mautic",
  289. "Maya",
  290. "OXID",
  291. "Plentymarkets",
  292. "Porto",
  293. "RadPHP",
  294. "SMF",
  295. "Thelia",
  296. "WolfCMS",
  297. "agl",
  298. "aimeos",
  299. "annotatecms",
  300. "attogram",
  301. "bitrix",
  302. "cakephp",
  303. "chef",
  304. "cockpit",
  305. "codeigniter",
  306. "concrete5",
  307. "croogo",
  308. "dokuwiki",
  309. "drupal",
  310. "eZ Platform",
  311. "elgg",
  312. "expressionengine",
  313. "fuelphp",
  314. "grav",
  315. "installer",
  316. "itop",
  317. "joomla",
  318. "kohana",
  319. "laravel",
  320. "lavalite",
  321. "lithium",
  322. "magento",
  323. "majima",
  324. "mako",
  325. "mediawiki",
  326. "modulework",
  327. "modx",
  328. "moodle",
  329. "osclass",
  330. "phpbb",
  331. "piwik",
  332. "ppi",
  333. "puppet",
  334. "pxcms",
  335. "reindex",
  336. "roundcube",
  337. "shopware",
  338. "silverstripe",
  339. "sydes",
  340. "symfony",
  341. "typo3",
  342. "wordpress",
  343. "yawik",
  344. "zend",
  345. "zikula"
  346. ],
  347. "time": "2018-08-27T06:10:37+00:00"
  348. },
  349. {
  350. "name": "composer/semver",
  351. "version": "1.4.2",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/composer/semver.git",
  355. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  360. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "php": "^5.3.2 || ^7.0"
  365. },
  366. "require-dev": {
  367. "phpunit/phpunit": "^4.5 || ^5.0.5",
  368. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  369. },
  370. "type": "library",
  371. "extra": {
  372. "branch-alias": {
  373. "dev-master": "1.x-dev"
  374. }
  375. },
  376. "autoload": {
  377. "psr-4": {
  378. "Composer\\Semver\\": "src"
  379. }
  380. },
  381. "notification-url": "https://packagist.org/downloads/",
  382. "license": [
  383. "MIT"
  384. ],
  385. "authors": [
  386. {
  387. "name": "Nils Adermann",
  388. "email": "naderman@naderman.de",
  389. "homepage": "http://www.naderman.de"
  390. },
  391. {
  392. "name": "Jordi Boggiano",
  393. "email": "j.boggiano@seld.be",
  394. "homepage": "http://seld.be"
  395. },
  396. {
  397. "name": "Rob Bast",
  398. "email": "rob.bast@gmail.com",
  399. "homepage": "http://robbast.nl"
  400. }
  401. ],
  402. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  403. "keywords": [
  404. "semantic",
  405. "semver",
  406. "validation",
  407. "versioning"
  408. ],
  409. "time": "2016-08-30T16:08:34+00:00"
  410. },
  411. {
  412. "name": "consolidation/annotated-command",
  413. "version": "2.9.1",
  414. "source": {
  415. "type": "git",
  416. "url": "https://github.com/consolidation/annotated-command.git",
  417. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac"
  418. },
  419. "dist": {
  420. "type": "zip",
  421. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  422. "reference": "4bdbb8fa149e1cc1511bd77b0bc4729fd66bccac",
  423. "shasum": ""
  424. },
  425. "require": {
  426. "consolidation/output-formatters": "^3.1.12",
  427. "php": ">=5.4.0",
  428. "psr/log": "^1",
  429. "symfony/console": "^2.8|^3|^4",
  430. "symfony/event-dispatcher": "^2.5|^3|^4",
  431. "symfony/finder": "^2.5|^3|^4"
  432. },
  433. "require-dev": {
  434. "g1a/composer-test-scenarios": "^2",
  435. "phpunit/phpunit": "^6",
  436. "satooshi/php-coveralls": "^2",
  437. "squizlabs/php_codesniffer": "^2.7"
  438. },
  439. "type": "library",
  440. "extra": {
  441. "branch-alias": {
  442. "dev-master": "2.x-dev"
  443. }
  444. },
  445. "autoload": {
  446. "psr-4": {
  447. "Consolidation\\AnnotatedCommand\\": "src"
  448. }
  449. },
  450. "notification-url": "https://packagist.org/downloads/",
  451. "license": [
  452. "MIT"
  453. ],
  454. "authors": [
  455. {
  456. "name": "Greg Anderson",
  457. "email": "greg.1.anderson@greenknowe.org"
  458. }
  459. ],
  460. "description": "Initialize Symfony Console commands from annotated command class methods.",
  461. "time": "2018-09-19T17:47:18+00:00"
  462. },
  463. {
  464. "name": "consolidation/config",
  465. "version": "1.1.1",
  466. "source": {
  467. "type": "git",
  468. "url": "https://github.com/consolidation/config.git",
  469. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c"
  470. },
  471. "dist": {
  472. "type": "zip",
  473. "url": "https://api.github.com/repos/consolidation/config/zipball/925231dfff32f05b787e1fddb265e789b939cf4c",
  474. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c",
  475. "shasum": ""
  476. },
  477. "require": {
  478. "dflydev/dot-access-data": "^1.1.0",
  479. "grasmash/expander": "^1",
  480. "php": ">=5.4.0"
  481. },
  482. "require-dev": {
  483. "g1a/composer-test-scenarios": "^1",
  484. "phpunit/phpunit": "^5",
  485. "satooshi/php-coveralls": "^1.0",
  486. "squizlabs/php_codesniffer": "2.*",
  487. "symfony/console": "^2.5|^3|^4",
  488. "symfony/yaml": "^2.8.11|^3|^4"
  489. },
  490. "suggest": {
  491. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  492. },
  493. "type": "library",
  494. "extra": {
  495. "branch-alias": {
  496. "dev-master": "1.x-dev"
  497. }
  498. },
  499. "autoload": {
  500. "psr-4": {
  501. "Consolidation\\Config\\": "src"
  502. }
  503. },
  504. "notification-url": "https://packagist.org/downloads/",
  505. "license": [
  506. "MIT"
  507. ],
  508. "authors": [
  509. {
  510. "name": "Greg Anderson",
  511. "email": "greg.1.anderson@greenknowe.org"
  512. }
  513. ],
  514. "description": "Provide configuration services for a commandline tool.",
  515. "time": "2018-10-24T17:55:35+00:00"
  516. },
  517. {
  518. "name": "consolidation/log",
  519. "version": "1.0.6",
  520. "source": {
  521. "type": "git",
  522. "url": "https://github.com/consolidation/log.git",
  523. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395"
  524. },
  525. "dist": {
  526. "type": "zip",
  527. "url": "https://api.github.com/repos/consolidation/log/zipball/dfd8189a771fe047bf3cd669111b2de5f1c79395",
  528. "reference": "dfd8189a771fe047bf3cd669111b2de5f1c79395",
  529. "shasum": ""
  530. },
  531. "require": {
  532. "php": ">=5.5.0",
  533. "psr/log": "~1.0",
  534. "symfony/console": "^2.8|^3|^4"
  535. },
  536. "require-dev": {
  537. "g1a/composer-test-scenarios": "^1",
  538. "phpunit/phpunit": "4.*",
  539. "satooshi/php-coveralls": "^2",
  540. "squizlabs/php_codesniffer": "2.*"
  541. },
  542. "type": "library",
  543. "extra": {
  544. "branch-alias": {
  545. "dev-master": "1.x-dev"
  546. }
  547. },
  548. "autoload": {
  549. "psr-4": {
  550. "Consolidation\\Log\\": "src"
  551. }
  552. },
  553. "notification-url": "https://packagist.org/downloads/",
  554. "license": [
  555. "MIT"
  556. ],
  557. "authors": [
  558. {
  559. "name": "Greg Anderson",
  560. "email": "greg.1.anderson@greenknowe.org"
  561. }
  562. ],
  563. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  564. "time": "2018-05-25T18:14:39+00:00"
  565. },
  566. {
  567. "name": "consolidation/output-formatters",
  568. "version": "3.4.0",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/consolidation/output-formatters.git",
  572. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a942680232094c4a5b21c0b7e54c20cce623ae19",
  577. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "dflydev/dot-access-data": "^1.1.0",
  582. "php": ">=5.4.0",
  583. "symfony/console": "^2.8|^3|^4",
  584. "symfony/finder": "^2.5|^3|^4"
  585. },
  586. "require-dev": {
  587. "g1a/composer-test-scenarios": "^2",
  588. "phpunit/phpunit": "^5.7.27",
  589. "satooshi/php-coveralls": "^2",
  590. "squizlabs/php_codesniffer": "^2.7",
  591. "symfony/console": "3.2.3",
  592. "symfony/var-dumper": "^2.8|^3|^4",
  593. "victorjonsson/markdowndocs": "^1.3"
  594. },
  595. "suggest": {
  596. "symfony/var-dumper": "For using the var_dump formatter"
  597. },
  598. "type": "library",
  599. "extra": {
  600. "branch-alias": {
  601. "dev-master": "3.x-dev"
  602. }
  603. },
  604. "autoload": {
  605. "psr-4": {
  606. "Consolidation\\OutputFormatters\\": "src"
  607. }
  608. },
  609. "notification-url": "https://packagist.org/downloads/",
  610. "license": [
  611. "MIT"
  612. ],
  613. "authors": [
  614. {
  615. "name": "Greg Anderson",
  616. "email": "greg.1.anderson@greenknowe.org"
  617. }
  618. ],
  619. "description": "Format text by applying transformations provided by plug-in formatters.",
  620. "time": "2018-10-19T22:35:38+00:00"
  621. },
  622. {
  623. "name": "consolidation/robo",
  624. "version": "1.3.1",
  625. "source": {
  626. "type": "git",
  627. "url": "https://github.com/consolidation/Robo.git",
  628. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d"
  629. },
  630. "dist": {
  631. "type": "zip",
  632. "url": "https://api.github.com/repos/consolidation/Robo/zipball/31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  633. "reference": "31f2d2562c4e1dcde70f2659eefd59aa9c7f5b2d",
  634. "shasum": ""
  635. },
  636. "require": {
  637. "consolidation/annotated-command": "^2.8.2",
  638. "consolidation/config": "^1.0.10",
  639. "consolidation/log": "~1",
  640. "consolidation/output-formatters": "^3.1.13",
  641. "consolidation/self-update": "^1",
  642. "g1a/composer-test-scenarios": "^2",
  643. "grasmash/yaml-expander": "^1.3",
  644. "league/container": "^2.2",
  645. "php": ">=5.5.0",
  646. "symfony/console": "^2.8|^3|^4",
  647. "symfony/event-dispatcher": "^2.5|^3|^4",
  648. "symfony/filesystem": "^2.5|^3|^4",
  649. "symfony/finder": "^2.5|^3|^4",
  650. "symfony/process": "^2.5|^3|^4"
  651. },
  652. "replace": {
  653. "codegyre/robo": "< 1.0"
  654. },
  655. "require-dev": {
  656. "codeception/aspect-mock": "^1|^2.1.1",
  657. "codeception/base": "^2.3.7",
  658. "codeception/verify": "^0.3.2",
  659. "goaop/framework": "~2.1.2",
  660. "goaop/parser-reflection": "^1.1.0",
  661. "natxet/cssmin": "3.0.4",
  662. "nikic/php-parser": "^3.1.5",
  663. "patchwork/jsqueeze": "~2",
  664. "pear/archive_tar": "^1.4.2",
  665. "phpunit/php-code-coverage": "~2|~4",
  666. "satooshi/php-coveralls": "^2",
  667. "squizlabs/php_codesniffer": "^2.8"
  668. },
  669. "suggest": {
  670. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  671. "natxet/CssMin": "For minifying CSS files in taskMinify",
  672. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  673. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  674. },
  675. "bin": [
  676. "robo"
  677. ],
  678. "type": "library",
  679. "extra": {
  680. "branch-alias": {
  681. "dev-master": "1.x-dev",
  682. "dev-state": "1.x-dev"
  683. }
  684. },
  685. "autoload": {
  686. "psr-4": {
  687. "Robo\\": "src"
  688. }
  689. },
  690. "notification-url": "https://packagist.org/downloads/",
  691. "license": [
  692. "MIT"
  693. ],
  694. "authors": [
  695. {
  696. "name": "Davert",
  697. "email": "davert.php@resend.cc"
  698. }
  699. ],
  700. "description": "Modern task runner",
  701. "time": "2018-08-17T18:44:18+00:00"
  702. },
  703. {
  704. "name": "consolidation/self-update",
  705. "version": "1.1.5",
  706. "source": {
  707. "type": "git",
  708. "url": "https://github.com/consolidation/self-update.git",
  709. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  710. },
  711. "dist": {
  712. "type": "zip",
  713. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  714. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  715. "shasum": ""
  716. },
  717. "require": {
  718. "php": ">=5.5.0",
  719. "symfony/console": "^2.8|^3|^4",
  720. "symfony/filesystem": "^2.5|^3|^4"
  721. },
  722. "bin": [
  723. "scripts/release"
  724. ],
  725. "type": "library",
  726. "extra": {
  727. "branch-alias": {
  728. "dev-master": "1.x-dev"
  729. }
  730. },
  731. "autoload": {
  732. "psr-4": {
  733. "SelfUpdate\\": "src"
  734. }
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "MIT"
  739. ],
  740. "authors": [
  741. {
  742. "name": "Greg Anderson",
  743. "email": "greg.1.anderson@greenknowe.org"
  744. },
  745. {
  746. "name": "Alexander Menk",
  747. "email": "menk@mestrona.net"
  748. }
  749. ],
  750. "description": "Provides a self:update command for Symfony Console applications.",
  751. "time": "2018-10-28T01:52:03+00:00"
  752. },
  753. {
  754. "name": "consolidation/site-alias",
  755. "version": "1.1.9",
  756. "source": {
  757. "type": "git",
  758. "url": "https://github.com/consolidation/site-alias.git",
  759. "reference": "0a4c49f91e44b0b7bb288f3547875a136a7ed704"
  760. },
  761. "dist": {
  762. "type": "zip",
  763. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/0a4c49f91e44b0b7bb288f3547875a136a7ed704",
  764. "reference": "0a4c49f91e44b0b7bb288f3547875a136a7ed704",
  765. "shasum": ""
  766. },
  767. "require": {
  768. "php": ">=5.5.0"
  769. },
  770. "require-dev": {
  771. "consolidation/robo": "^1.2.3",
  772. "g1a/composer-test-scenarios": "^2",
  773. "knplabs/github-api": "^2.7",
  774. "php-http/guzzle6-adapter": "^1.1",
  775. "phpunit/phpunit": "^5",
  776. "satooshi/php-coveralls": "^2",
  777. "squizlabs/php_codesniffer": "^2.8",
  778. "symfony/console": "^2.8|^3|^4",
  779. "symfony/yaml": "~2.3|^3"
  780. },
  781. "type": "library",
  782. "extra": {
  783. "branch-alias": {
  784. "dev-master": "1.x-dev"
  785. }
  786. },
  787. "autoload": {
  788. "psr-4": {
  789. "Consolidation\\SiteAlias\\": "src"
  790. }
  791. },
  792. "notification-url": "https://packagist.org/downloads/",
  793. "license": [
  794. "MIT"
  795. ],
  796. "authors": [
  797. {
  798. "name": "Moshe Weitzman",
  799. "email": "weitzman@tejasa.com"
  800. },
  801. {
  802. "name": "Greg Anderson",
  803. "email": "greg.1.anderson@greenknowe.org"
  804. }
  805. ],
  806. "description": "Manage alias records for local and remote sites.",
  807. "time": "2018-10-31T01:29:05+00:00"
  808. },
  809. {
  810. "name": "container-interop/container-interop",
  811. "version": "1.2.0",
  812. "source": {
  813. "type": "git",
  814. "url": "https://github.com/container-interop/container-interop.git",
  815. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  816. },
  817. "dist": {
  818. "type": "zip",
  819. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  820. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  821. "shasum": ""
  822. },
  823. "require": {
  824. "psr/container": "^1.0"
  825. },
  826. "type": "library",
  827. "autoload": {
  828. "psr-4": {
  829. "Interop\\Container\\": "src/Interop/Container/"
  830. }
  831. },
  832. "notification-url": "https://packagist.org/downloads/",
  833. "license": [
  834. "MIT"
  835. ],
  836. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  837. "homepage": "https://github.com/container-interop/container-interop",
  838. "time": "2017-02-14T19:40:03+00:00"
  839. },
  840. {
  841. "name": "cweagans/composer-patches",
  842. "version": "1.6.5",
  843. "source": {
  844. "type": "git",
  845. "url": "https://github.com/cweagans/composer-patches.git",
  846. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  847. },
  848. "dist": {
  849. "type": "zip",
  850. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  851. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  852. "shasum": ""
  853. },
  854. "require": {
  855. "composer-plugin-api": "^1.0",
  856. "php": ">=5.3.0"
  857. },
  858. "require-dev": {
  859. "composer/composer": "~1.0",
  860. "phpunit/phpunit": "~4.6"
  861. },
  862. "type": "composer-plugin",
  863. "extra": {
  864. "class": "cweagans\\Composer\\Patches"
  865. },
  866. "autoload": {
  867. "psr-4": {
  868. "cweagans\\Composer\\": "src"
  869. }
  870. },
  871. "notification-url": "https://packagist.org/downloads/",
  872. "license": [
  873. "BSD-3-Clause"
  874. ],
  875. "authors": [
  876. {
  877. "name": "Cameron Eagans",
  878. "email": "me@cweagans.net"
  879. }
  880. ],
  881. "description": "Provides a way to patch Composer packages.",
  882. "time": "2018-05-11T18:00:16+00:00"
  883. },
  884. {
  885. "name": "dflydev/dot-access-configuration",
  886. "version": "v1.0.3",
  887. "source": {
  888. "type": "git",
  889. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  890. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  891. },
  892. "dist": {
  893. "type": "zip",
  894. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  895. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  896. "shasum": ""
  897. },
  898. "require": {
  899. "dflydev/dot-access-data": "1.*",
  900. "dflydev/placeholder-resolver": "1.*",
  901. "php": ">=5.3.2"
  902. },
  903. "require-dev": {
  904. "symfony/yaml": "~2.1"
  905. },
  906. "suggest": {
  907. "symfony/yaml": "Required for using the YAML Configuration Builders"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "branch-alias": {
  912. "dev-master": "1.0-dev"
  913. }
  914. },
  915. "autoload": {
  916. "psr-0": {
  917. "Dflydev\\DotAccessConfiguration": "src"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Dragonfly Development Inc.",
  927. "email": "info@dflydev.com",
  928. "homepage": "http://dflydev.com"
  929. },
  930. {
  931. "name": "Beau Simensen",
  932. "email": "beau@dflydev.com",
  933. "homepage": "http://beausimensen.com"
  934. }
  935. ],
  936. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  937. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  938. "keywords": [
  939. "config",
  940. "configuration"
  941. ],
  942. "time": "2018-09-08T23:00:17+00:00"
  943. },
  944. {
  945. "name": "dflydev/dot-access-data",
  946. "version": "v1.1.0",
  947. "source": {
  948. "type": "git",
  949. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  950. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  951. },
  952. "dist": {
  953. "type": "zip",
  954. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  955. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  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\\DotAccessData": "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. "name": "Carlos Frutos",
  989. "email": "carlos@kiwing.it",
  990. "homepage": "https://github.com/cfrutos"
  991. }
  992. ],
  993. "description": "Given a deep data structure, access data by dot notation.",
  994. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  995. "keywords": [
  996. "access",
  997. "data",
  998. "dot",
  999. "notation"
  1000. ],
  1001. "time": "2017-01-20T21:14:22+00:00"
  1002. },
  1003. {
  1004. "name": "dflydev/placeholder-resolver",
  1005. "version": "v1.0.2",
  1006. "source": {
  1007. "type": "git",
  1008. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1009. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1010. },
  1011. "dist": {
  1012. "type": "zip",
  1013. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1014. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1015. "shasum": ""
  1016. },
  1017. "require": {
  1018. "php": ">=5.3.2"
  1019. },
  1020. "type": "library",
  1021. "extra": {
  1022. "branch-alias": {
  1023. "dev-master": "1.0-dev"
  1024. }
  1025. },
  1026. "autoload": {
  1027. "psr-0": {
  1028. "Dflydev\\PlaceholderResolver": "src"
  1029. }
  1030. },
  1031. "notification-url": "https://packagist.org/downloads/",
  1032. "license": [
  1033. "MIT"
  1034. ],
  1035. "authors": [
  1036. {
  1037. "name": "Dragonfly Development Inc.",
  1038. "email": "info@dflydev.com",
  1039. "homepage": "http://dflydev.com"
  1040. },
  1041. {
  1042. "name": "Beau Simensen",
  1043. "email": "beau@dflydev.com",
  1044. "homepage": "http://beausimensen.com"
  1045. }
  1046. ],
  1047. "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.",
  1048. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1049. "keywords": [
  1050. "placeholder",
  1051. "resolver"
  1052. ],
  1053. "time": "2012-10-28T21:08:28+00:00"
  1054. },
  1055. {
  1056. "name": "dnoegel/php-xdg-base-dir",
  1057. "version": "0.1",
  1058. "source": {
  1059. "type": "git",
  1060. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1061. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1062. },
  1063. "dist": {
  1064. "type": "zip",
  1065. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1066. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1067. "shasum": ""
  1068. },
  1069. "require": {
  1070. "php": ">=5.3.2"
  1071. },
  1072. "require-dev": {
  1073. "phpunit/phpunit": "@stable"
  1074. },
  1075. "type": "project",
  1076. "autoload": {
  1077. "psr-4": {
  1078. "XdgBaseDir\\": "src/"
  1079. }
  1080. },
  1081. "notification-url": "https://packagist.org/downloads/",
  1082. "license": [
  1083. "MIT"
  1084. ],
  1085. "description": "implementation of xdg base directory specification for php",
  1086. "time": "2014-10-24T07:27:01+00:00"
  1087. },
  1088. {
  1089. "name": "doctrine/annotations",
  1090. "version": "v1.2.7",
  1091. "source": {
  1092. "type": "git",
  1093. "url": "https://github.com/doctrine/annotations.git",
  1094. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  1095. },
  1096. "dist": {
  1097. "type": "zip",
  1098. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1099. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  1100. "shasum": ""
  1101. },
  1102. "require": {
  1103. "doctrine/lexer": "1.*",
  1104. "php": ">=5.3.2"
  1105. },
  1106. "require-dev": {
  1107. "doctrine/cache": "1.*",
  1108. "phpunit/phpunit": "4.*"
  1109. },
  1110. "type": "library",
  1111. "extra": {
  1112. "branch-alias": {
  1113. "dev-master": "1.3.x-dev"
  1114. }
  1115. },
  1116. "autoload": {
  1117. "psr-0": {
  1118. "Doctrine\\Common\\Annotations\\": "lib/"
  1119. }
  1120. },
  1121. "notification-url": "https://packagist.org/downloads/",
  1122. "license": [
  1123. "MIT"
  1124. ],
  1125. "authors": [
  1126. {
  1127. "name": "Roman Borschel",
  1128. "email": "roman@code-factory.org"
  1129. },
  1130. {
  1131. "name": "Benjamin Eberlei",
  1132. "email": "kontakt@beberlei.de"
  1133. },
  1134. {
  1135. "name": "Guilherme Blanco",
  1136. "email": "guilhermeblanco@gmail.com"
  1137. },
  1138. {
  1139. "name": "Jonathan Wage",
  1140. "email": "jonwage@gmail.com"
  1141. },
  1142. {
  1143. "name": "Johannes Schmitt",
  1144. "email": "schmittjoh@gmail.com"
  1145. }
  1146. ],
  1147. "description": "Docblock Annotations Parser",
  1148. "homepage": "http://www.doctrine-project.org",
  1149. "keywords": [
  1150. "annotations",
  1151. "docblock",
  1152. "parser"
  1153. ],
  1154. "time": "2015-08-31T12:32:49+00:00"
  1155. },
  1156. {
  1157. "name": "doctrine/cache",
  1158. "version": "v1.6.2",
  1159. "source": {
  1160. "type": "git",
  1161. "url": "https://github.com/doctrine/cache.git",
  1162. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1163. },
  1164. "dist": {
  1165. "type": "zip",
  1166. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1167. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1168. "shasum": ""
  1169. },
  1170. "require": {
  1171. "php": "~5.5|~7.0"
  1172. },
  1173. "conflict": {
  1174. "doctrine/common": ">2.2,<2.4"
  1175. },
  1176. "require-dev": {
  1177. "phpunit/phpunit": "~4.8|~5.0",
  1178. "predis/predis": "~1.0",
  1179. "satooshi/php-coveralls": "~0.6"
  1180. },
  1181. "type": "library",
  1182. "extra": {
  1183. "branch-alias": {
  1184. "dev-master": "1.6.x-dev"
  1185. }
  1186. },
  1187. "autoload": {
  1188. "psr-4": {
  1189. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1190. }
  1191. },
  1192. "notification-url": "https://packagist.org/downloads/",
  1193. "license": [
  1194. "MIT"
  1195. ],
  1196. "authors": [
  1197. {
  1198. "name": "Roman Borschel",
  1199. "email": "roman@code-factory.org"
  1200. },
  1201. {
  1202. "name": "Benjamin Eberlei",
  1203. "email": "kontakt@beberlei.de"
  1204. },
  1205. {
  1206. "name": "Guilherme Blanco",
  1207. "email": "guilhermeblanco@gmail.com"
  1208. },
  1209. {
  1210. "name": "Jonathan Wage",
  1211. "email": "jonwage@gmail.com"
  1212. },
  1213. {
  1214. "name": "Johannes Schmitt",
  1215. "email": "schmittjoh@gmail.com"
  1216. }
  1217. ],
  1218. "description": "Caching library offering an object-oriented API for many cache backends",
  1219. "homepage": "http://www.doctrine-project.org",
  1220. "keywords": [
  1221. "cache",
  1222. "caching"
  1223. ],
  1224. "time": "2017-07-22T12:49:21+00:00"
  1225. },
  1226. {
  1227. "name": "doctrine/collections",
  1228. "version": "v1.4.0",
  1229. "source": {
  1230. "type": "git",
  1231. "url": "https://github.com/doctrine/collections.git",
  1232. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1233. },
  1234. "dist": {
  1235. "type": "zip",
  1236. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1237. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1238. "shasum": ""
  1239. },
  1240. "require": {
  1241. "php": "^5.6 || ^7.0"
  1242. },
  1243. "require-dev": {
  1244. "doctrine/coding-standard": "~0.1@dev",
  1245. "phpunit/phpunit": "^5.7"
  1246. },
  1247. "type": "library",
  1248. "extra": {
  1249. "branch-alias": {
  1250. "dev-master": "1.3.x-dev"
  1251. }
  1252. },
  1253. "autoload": {
  1254. "psr-0": {
  1255. "Doctrine\\Common\\Collections\\": "lib/"
  1256. }
  1257. },
  1258. "notification-url": "https://packagist.org/downloads/",
  1259. "license": [
  1260. "MIT"
  1261. ],
  1262. "authors": [
  1263. {
  1264. "name": "Roman Borschel",
  1265. "email": "roman@code-factory.org"
  1266. },
  1267. {
  1268. "name": "Benjamin Eberlei",
  1269. "email": "kontakt@beberlei.de"
  1270. },
  1271. {
  1272. "name": "Guilherme Blanco",
  1273. "email": "guilhermeblanco@gmail.com"
  1274. },
  1275. {
  1276. "name": "Jonathan Wage",
  1277. "email": "jonwage@gmail.com"
  1278. },
  1279. {
  1280. "name": "Johannes Schmitt",
  1281. "email": "schmittjoh@gmail.com"
  1282. }
  1283. ],
  1284. "description": "Collections Abstraction library",
  1285. "homepage": "http://www.doctrine-project.org",
  1286. "keywords": [
  1287. "array",
  1288. "collections",
  1289. "iterator"
  1290. ],
  1291. "time": "2017-01-03T10:49:41+00:00"
  1292. },
  1293. {
  1294. "name": "doctrine/common",
  1295. "version": "v2.7.3",
  1296. "source": {
  1297. "type": "git",
  1298. "url": "https://github.com/doctrine/common.git",
  1299. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1300. },
  1301. "dist": {
  1302. "type": "zip",
  1303. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1304. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1305. "shasum": ""
  1306. },
  1307. "require": {
  1308. "doctrine/annotations": "1.*",
  1309. "doctrine/cache": "1.*",
  1310. "doctrine/collections": "1.*",
  1311. "doctrine/inflector": "1.*",
  1312. "doctrine/lexer": "1.*",
  1313. "php": "~5.6|~7.0"
  1314. },
  1315. "require-dev": {
  1316. "phpunit/phpunit": "^5.4.6"
  1317. },
  1318. "type": "library",
  1319. "extra": {
  1320. "branch-alias": {
  1321. "dev-master": "2.7.x-dev"
  1322. }
  1323. },
  1324. "autoload": {
  1325. "psr-4": {
  1326. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1327. }
  1328. },
  1329. "notification-url": "https://packagist.org/downloads/",
  1330. "license": [
  1331. "MIT"
  1332. ],
  1333. "authors": [
  1334. {
  1335. "name": "Roman Borschel",
  1336. "email": "roman@code-factory.org"
  1337. },
  1338. {
  1339. "name": "Benjamin Eberlei",
  1340. "email": "kontakt@beberlei.de"
  1341. },
  1342. {
  1343. "name": "Guilherme Blanco",
  1344. "email": "guilhermeblanco@gmail.com"
  1345. },
  1346. {
  1347. "name": "Jonathan Wage",
  1348. "email": "jonwage@gmail.com"
  1349. },
  1350. {
  1351. "name": "Johannes Schmitt",
  1352. "email": "schmittjoh@gmail.com"
  1353. }
  1354. ],
  1355. "description": "Common Library for Doctrine projects",
  1356. "homepage": "http://www.doctrine-project.org",
  1357. "keywords": [
  1358. "annotations",
  1359. "collections",
  1360. "eventmanager",
  1361. "persistence",
  1362. "spl"
  1363. ],
  1364. "time": "2017-07-22T08:35:12+00:00"
  1365. },
  1366. {
  1367. "name": "doctrine/inflector",
  1368. "version": "v1.2.0",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://github.com/doctrine/inflector.git",
  1372. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1377. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1378. "shasum": ""
  1379. },
  1380. "require": {
  1381. "php": "^7.0"
  1382. },
  1383. "require-dev": {
  1384. "phpunit/phpunit": "^6.2"
  1385. },
  1386. "type": "library",
  1387. "extra": {
  1388. "branch-alias": {
  1389. "dev-master": "1.2.x-dev"
  1390. }
  1391. },
  1392. "autoload": {
  1393. "psr-4": {
  1394. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1395. }
  1396. },
  1397. "notification-url": "https://packagist.org/downloads/",
  1398. "license": [
  1399. "MIT"
  1400. ],
  1401. "authors": [
  1402. {
  1403. "name": "Roman Borschel",
  1404. "email": "roman@code-factory.org"
  1405. },
  1406. {
  1407. "name": "Benjamin Eberlei",
  1408. "email": "kontakt@beberlei.de"
  1409. },
  1410. {
  1411. "name": "Guilherme Blanco",
  1412. "email": "guilhermeblanco@gmail.com"
  1413. },
  1414. {
  1415. "name": "Jonathan Wage",
  1416. "email": "jonwage@gmail.com"
  1417. },
  1418. {
  1419. "name": "Johannes Schmitt",
  1420. "email": "schmittjoh@gmail.com"
  1421. }
  1422. ],
  1423. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1424. "homepage": "http://www.doctrine-project.org",
  1425. "keywords": [
  1426. "inflection",
  1427. "pluralize",
  1428. "singularize",
  1429. "string"
  1430. ],
  1431. "time": "2017-07-22T12:18:28+00:00"
  1432. },
  1433. {
  1434. "name": "doctrine/lexer",
  1435. "version": "v1.0.1",
  1436. "source": {
  1437. "type": "git",
  1438. "url": "https://github.com/doctrine/lexer.git",
  1439. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1440. },
  1441. "dist": {
  1442. "type": "zip",
  1443. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1444. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1445. "shasum": ""
  1446. },
  1447. "require": {
  1448. "php": ">=5.3.2"
  1449. },
  1450. "type": "library",
  1451. "extra": {
  1452. "branch-alias": {
  1453. "dev-master": "1.0.x-dev"
  1454. }
  1455. },
  1456. "autoload": {
  1457. "psr-0": {
  1458. "Doctrine\\Common\\Lexer\\": "lib/"
  1459. }
  1460. },
  1461. "notification-url": "https://packagist.org/downloads/",
  1462. "license": [
  1463. "MIT"
  1464. ],
  1465. "authors": [
  1466. {
  1467. "name": "Roman Borschel",
  1468. "email": "roman@code-factory.org"
  1469. },
  1470. {
  1471. "name": "Guilherme Blanco",
  1472. "email": "guilhermeblanco@gmail.com"
  1473. },
  1474. {
  1475. "name": "Johannes Schmitt",
  1476. "email": "schmittjoh@gmail.com"
  1477. }
  1478. ],
  1479. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1480. "homepage": "http://www.doctrine-project.org",
  1481. "keywords": [
  1482. "lexer",
  1483. "parser"
  1484. ],
  1485. "time": "2014-09-09T13:34:57+00:00"
  1486. },
  1487. {
  1488. "name": "drupal/actions_permissions",
  1489. "version": "2.4.0",
  1490. "require": {
  1491. "drupal/core": "*",
  1492. "drupal/views_bulk_operations": "self.version"
  1493. },
  1494. "type": "metapackage",
  1495. "extra": {
  1496. "branch-alias": {
  1497. "dev-2.x": "2.x-dev"
  1498. },
  1499. "drupal": {
  1500. "version": "8.x-2.4",
  1501. "datestamp": "1530516821",
  1502. "security-coverage": {
  1503. "status": "covered",
  1504. "message": "Covered by Drupal's security advisory policy"
  1505. }
  1506. }
  1507. },
  1508. "notification-url": "https://packages.drupal.org/8/downloads",
  1509. "license": [
  1510. "GPL-2.0-or-later"
  1511. ],
  1512. "authors": [
  1513. {
  1514. "name": "Graber",
  1515. "homepage": "https://www.drupal.org/user/1599440"
  1516. },
  1517. {
  1518. "name": "Jon Pugh",
  1519. "homepage": "https://www.drupal.org/user/17028"
  1520. },
  1521. {
  1522. "name": "bojanz",
  1523. "homepage": "https://www.drupal.org/user/86106"
  1524. },
  1525. {
  1526. "name": "infojunkie",
  1527. "homepage": "https://www.drupal.org/user/48424"
  1528. },
  1529. {
  1530. "name": "joelpittet",
  1531. "homepage": "https://www.drupal.org/user/160302"
  1532. }
  1533. ],
  1534. "description": "Adds access permissions on all actions allowing admins to restrict access on a per-role basis.",
  1535. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  1536. "support": {
  1537. "source": "http://cgit.drupalcode.org/views_bulk_operations"
  1538. }
  1539. },
  1540. {
  1541. "name": "drupal/address",
  1542. "version": "1.4.0",
  1543. "source": {
  1544. "type": "git",
  1545. "url": "https://git.drupal.org/project/address",
  1546. "reference": "8.x-1.4"
  1547. },
  1548. "dist": {
  1549. "type": "zip",
  1550. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.4.zip",
  1551. "reference": "8.x-1.4",
  1552. "shasum": "143e426be73418c719c6bddd5fb81c610604e860"
  1553. },
  1554. "require": {
  1555. "commerceguys/addressing": "^1.0.0",
  1556. "drupal/core": "*"
  1557. },
  1558. "require-dev": {
  1559. "drupal/token": "*"
  1560. },
  1561. "type": "drupal-module",
  1562. "extra": {
  1563. "branch-alias": {
  1564. "dev-1.x": "1.x-dev"
  1565. },
  1566. "drupal": {
  1567. "version": "8.x-1.4",
  1568. "datestamp": "1527081784",
  1569. "security-coverage": {
  1570. "status": "covered",
  1571. "message": "Covered by Drupal's security advisory policy"
  1572. }
  1573. }
  1574. },
  1575. "notification-url": "https://packages.drupal.org/8/downloads",
  1576. "license": [
  1577. "GPL-2.0+"
  1578. ],
  1579. "authors": [
  1580. {
  1581. "name": "bojanz",
  1582. "homepage": "https://www.drupal.org/user/86106"
  1583. },
  1584. {
  1585. "name": "googletorp",
  1586. "homepage": "https://www.drupal.org/user/386230"
  1587. },
  1588. {
  1589. "name": "rszrama",
  1590. "homepage": "https://www.drupal.org/user/49344"
  1591. }
  1592. ],
  1593. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1594. "homepage": "http://drupal.org/project/address",
  1595. "support": {
  1596. "source": "http://cgit.drupalcode.org/address"
  1597. }
  1598. },
  1599. {
  1600. "name": "drupal/admin_toolbar",
  1601. "version": "1.24.0",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://git.drupal.org/project/admin_toolbar",
  1605. "reference": "8.x-1.24"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.24.zip",
  1610. "reference": "8.x-1.24",
  1611. "shasum": "682ffa443a1e339583022eb6adbb00c1103ea6d4"
  1612. },
  1613. "require": {
  1614. "drupal/core": "*"
  1615. },
  1616. "type": "drupal-module",
  1617. "extra": {
  1618. "branch-alias": {
  1619. "dev-1.x": "1.x-dev"
  1620. },
  1621. "drupal": {
  1622. "version": "8.x-1.24",
  1623. "datestamp": "1527523080",
  1624. "security-coverage": {
  1625. "status": "covered",
  1626. "message": "Covered by Drupal's security advisory policy"
  1627. }
  1628. }
  1629. },
  1630. "notification-url": "https://packages.drupal.org/8/downloads",
  1631. "license": [
  1632. "GPL-2.0+"
  1633. ],
  1634. "authors": [
  1635. {
  1636. "name": "Wilfrid Roze (eme)",
  1637. "homepage": "https://www.drupal.org/u/eme",
  1638. "role": "Maintainer"
  1639. },
  1640. {
  1641. "name": "Romain Jarraud (romainj)",
  1642. "homepage": "https://www.drupal.org/u/romainj",
  1643. "role": "Maintainer"
  1644. },
  1645. {
  1646. "name": "Adrian Cid Almaguer (adriancid)",
  1647. "homepage": "https://www.drupal.org/u/adriancid",
  1648. "email": "adriancid@gmail.com",
  1649. "role": "Maintainer"
  1650. },
  1651. {
  1652. "name": "Mohamed Anis Taktak (matio89)",
  1653. "homepage": "https://www.drupal.org/u/matio89",
  1654. "role": "Maintainer"
  1655. },
  1656. {
  1657. "name": "fethi.krout",
  1658. "homepage": "https://www.drupal.org/user/3206765"
  1659. },
  1660. {
  1661. "name": "matio89",
  1662. "homepage": "https://www.drupal.org/user/2320090"
  1663. },
  1664. {
  1665. "name": "romainj",
  1666. "homepage": "https://www.drupal.org/user/370706"
  1667. }
  1668. ],
  1669. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1670. "homepage": "http://drupal.org/project/admin_toolbar",
  1671. "keywords": [
  1672. "Drupal",
  1673. "Toolbar"
  1674. ],
  1675. "support": {
  1676. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1677. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1678. }
  1679. },
  1680. {
  1681. "name": "drupal/adminimal_theme",
  1682. "version": "1.3.0",
  1683. "source": {
  1684. "type": "git",
  1685. "url": "https://git.drupal.org/project/adminimal_theme",
  1686. "reference": "8.x-1.3"
  1687. },
  1688. "dist": {
  1689. "type": "zip",
  1690. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.3.zip",
  1691. "reference": "8.x-1.3",
  1692. "shasum": "bb9f280bcdbd7e4d384a925c685a2aa1feed8419"
  1693. },
  1694. "require": {
  1695. "drupal/core": "~8.0"
  1696. },
  1697. "type": "drupal-theme",
  1698. "extra": {
  1699. "branch-alias": {
  1700. "dev-1.x": "1.x-dev"
  1701. },
  1702. "drupal": {
  1703. "version": "8.x-1.3",
  1704. "datestamp": "1480507083",
  1705. "security-coverage": {
  1706. "status": "covered",
  1707. "message": "Covered by Drupal's security advisory policy"
  1708. }
  1709. }
  1710. },
  1711. "notification-url": "https://packages.drupal.org/8/downloads",
  1712. "license": [
  1713. "GPL-2.0-or-later"
  1714. ],
  1715. "authors": [
  1716. {
  1717. "name": "ANDiTKO",
  1718. "homepage": "https://www.drupal.org/user/1428124"
  1719. },
  1720. {
  1721. "name": "realityloop",
  1722. "homepage": "https://www.drupal.org/user/139189"
  1723. }
  1724. ],
  1725. "description": "Drupal administration theme with modern minimalist design.",
  1726. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1727. "support": {
  1728. "source": "http://cgit.drupalcode.org/adminimal_theme"
  1729. }
  1730. },
  1731. {
  1732. "name": "drupal/advanced_text_formatter",
  1733. "version": "1.0.0-beta3",
  1734. "source": {
  1735. "type": "git",
  1736. "url": "https://git.drupal.org/project/advanced_text_formatter",
  1737. "reference": "8.x-1.0-beta3"
  1738. },
  1739. "dist": {
  1740. "type": "zip",
  1741. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-8.x-1.0-beta3.zip",
  1742. "reference": "8.x-1.0-beta3",
  1743. "shasum": "35e0154440ba7836dda70b8627f156872da75302"
  1744. },
  1745. "require": {
  1746. "drupal/core": "*"
  1747. },
  1748. "type": "drupal-module",
  1749. "extra": {
  1750. "branch-alias": {
  1751. "dev-1.x": "1.x-dev"
  1752. },
  1753. "drupal": {
  1754. "version": "8.x-1.0-beta3",
  1755. "datestamp": "1445163539",
  1756. "security-coverage": {
  1757. "status": "not-covered",
  1758. "message": "Beta releases are not covered by Drupal security advisories."
  1759. }
  1760. }
  1761. },
  1762. "notification-url": "https://packages.drupal.org/8/downloads",
  1763. "license": [
  1764. "GPL-2.0-or-later"
  1765. ],
  1766. "authors": [
  1767. {
  1768. "name": "thmnhat",
  1769. "homepage": "https://www.drupal.org/user/998946"
  1770. }
  1771. ],
  1772. "description": "Provides an additional formatter for text field, text area and text format.",
  1773. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1774. "support": {
  1775. "source": "http://cgit.drupalcode.org/advanced_text_formatter"
  1776. }
  1777. },
  1778. {
  1779. "name": "drupal/audiofield",
  1780. "version": "1.6.0",
  1781. "source": {
  1782. "type": "git",
  1783. "url": "https://git.drupal.org/project/audiofield",
  1784. "reference": "8.x-1.6"
  1785. },
  1786. "dist": {
  1787. "type": "zip",
  1788. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.6.zip",
  1789. "reference": "8.x-1.6",
  1790. "shasum": "bd63641c2ed9e9774b82423bf03c95540b395126"
  1791. },
  1792. "require": {
  1793. "drupal/core": "~8.0"
  1794. },
  1795. "type": "drupal-module",
  1796. "extra": {
  1797. "branch-alias": {
  1798. "dev-1.x": "1.x-dev"
  1799. },
  1800. "drupal": {
  1801. "version": "8.x-1.6",
  1802. "datestamp": "1514414884",
  1803. "security-coverage": {
  1804. "status": "covered",
  1805. "message": "Covered by Drupal's security advisory policy"
  1806. }
  1807. }
  1808. },
  1809. "notification-url": "https://packages.drupal.org/8/downloads",
  1810. "license": [
  1811. "GPL-2.0+"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Daniel Moberly",
  1816. "homepage": "https://www.drupal.org/u/danielmoberly",
  1817. "role": "Maintainer"
  1818. },
  1819. {
  1820. "name": "josipsaric",
  1821. "homepage": "https://www.drupal.org/user/3063287"
  1822. },
  1823. {
  1824. "name": "msajko",
  1825. "homepage": "https://www.drupal.org/user/3483723"
  1826. },
  1827. {
  1828. "name": "tamerzg",
  1829. "homepage": "https://www.drupal.org/user/464564"
  1830. }
  1831. ],
  1832. "description": "AudioField Module",
  1833. "homepage": "https://www.drupal.org/project/audiofield",
  1834. "support": {
  1835. "source": "http://cgit.drupalcode.org/audiofield",
  1836. "issues": "https://www.drupal.org/project/issues/audiofield"
  1837. }
  1838. },
  1839. {
  1840. "name": "drupal/autocomplete_deluxe",
  1841. "version": "1.0.0-beta1",
  1842. "source": {
  1843. "type": "git",
  1844. "url": "https://git.drupal.org/project/autocomplete_deluxe",
  1845. "reference": "8.x-1.0-beta1"
  1846. },
  1847. "dist": {
  1848. "type": "zip",
  1849. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-8.x-1.0-beta1.zip",
  1850. "reference": "8.x-1.0-beta1",
  1851. "shasum": "f59d928761a01a055c2240155a84b1d7286fe666"
  1852. },
  1853. "require": {
  1854. "drupal/core": "~8.0"
  1855. },
  1856. "type": "drupal-module",
  1857. "extra": {
  1858. "branch-alias": {
  1859. "dev-1.x": "1.x-dev"
  1860. },
  1861. "drupal": {
  1862. "version": "8.x-1.0-beta1",
  1863. "datestamp": "1502921644",
  1864. "security-coverage": {
  1865. "status": "not-covered",
  1866. "message": "Beta releases are not covered by Drupal security advisories."
  1867. }
  1868. }
  1869. },
  1870. "notification-url": "https://packages.drupal.org/8/downloads",
  1871. "license": [
  1872. "GPL-2.0+"
  1873. ],
  1874. "authors": [
  1875. {
  1876. "name": "Edward Chan",
  1877. "homepage": "https://www.drupal.org/user/1781334"
  1878. },
  1879. {
  1880. "name": "edwardchiapet",
  1881. "homepage": "https://www.drupal.org/user/2354784"
  1882. },
  1883. {
  1884. "name": "mpriscella",
  1885. "homepage": "https://www.drupal.org/user/2354820"
  1886. },
  1887. {
  1888. "name": "sepgil",
  1889. "homepage": "https://www.drupal.org/user/512828"
  1890. }
  1891. ],
  1892. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  1893. "homepage": "https://www.drupal.org/sandbox/edwardchan/2888186",
  1894. "support": {
  1895. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  1896. "issues": "https://www.drupal.org/project/issues/2888186"
  1897. }
  1898. },
  1899. {
  1900. "name": "drupal/autologout",
  1901. "version": "1.0.0",
  1902. "source": {
  1903. "type": "git",
  1904. "url": "https://git.drupal.org/project/autologout",
  1905. "reference": "8.x-1.0"
  1906. },
  1907. "dist": {
  1908. "type": "zip",
  1909. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  1910. "reference": "8.x-1.0",
  1911. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  1912. },
  1913. "require": {
  1914. "drupal/core": "~8.0"
  1915. },
  1916. "type": "drupal-module",
  1917. "extra": {
  1918. "branch-alias": {
  1919. "dev-1.x": "1.x-dev"
  1920. },
  1921. "drupal": {
  1922. "version": "8.x-1.0",
  1923. "datestamp": "1494237185",
  1924. "security-coverage": {
  1925. "status": "covered",
  1926. "message": "Covered by Drupal's security advisory policy"
  1927. }
  1928. }
  1929. },
  1930. "notification-url": "https://packages.drupal.org/8/downloads",
  1931. "license": [
  1932. "GPL-2.0+"
  1933. ],
  1934. "authors": [
  1935. {
  1936. "name": "AjK",
  1937. "homepage": "https://www.drupal.org/user/39030"
  1938. },
  1939. {
  1940. "name": "AjitS",
  1941. "homepage": "https://www.drupal.org/user/981944"
  1942. },
  1943. {
  1944. "name": "dandrews",
  1945. "homepage": "https://www.drupal.org/user/2014490"
  1946. },
  1947. {
  1948. "name": "johnennew",
  1949. "homepage": "https://www.drupal.org/user/1150042"
  1950. },
  1951. {
  1952. "name": "jrglasgow",
  1953. "homepage": "https://www.drupal.org/user/36590"
  1954. },
  1955. {
  1956. "name": "kmasood",
  1957. "homepage": "https://www.drupal.org/user/1262860"
  1958. },
  1959. {
  1960. "name": "levelos",
  1961. "homepage": "https://www.drupal.org/user/54135"
  1962. },
  1963. {
  1964. "name": "prabeen.giri",
  1965. "homepage": "https://www.drupal.org/user/913078"
  1966. },
  1967. {
  1968. "name": "str8",
  1969. "homepage": "https://www.drupal.org/user/2865063"
  1970. }
  1971. ],
  1972. "description": "Adds automated timed logout.",
  1973. "homepage": "http://drupal.org/project/autologout",
  1974. "support": {
  1975. "source": "http://cgit.drupalcode.org/autologout"
  1976. }
  1977. },
  1978. {
  1979. "name": "drupal/better_exposed_filters",
  1980. "version": "3.0.0-alpha5",
  1981. "source": {
  1982. "type": "git",
  1983. "url": "https://git.drupal.org/project/better_exposed_filters",
  1984. "reference": "8.x-3.0-alpha5"
  1985. },
  1986. "dist": {
  1987. "type": "zip",
  1988. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-3.0-alpha5.zip",
  1989. "reference": "8.x-3.0-alpha5",
  1990. "shasum": "8dbcff4b3bcd24f753d5d1ba6a523442a3690a76"
  1991. },
  1992. "require": {
  1993. "drupal/core": "*"
  1994. },
  1995. "type": "drupal-module",
  1996. "extra": {
  1997. "branch-alias": {
  1998. "dev-3.x": "3.x-dev"
  1999. },
  2000. "drupal": {
  2001. "version": "8.x-3.0-alpha5",
  2002. "datestamp": "1540513084",
  2003. "security-coverage": {
  2004. "status": "not-covered",
  2005. "message": "Alpha releases are not covered by Drupal security advisories."
  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": "chr.fritsch",
  2016. "homepage": "https://www.drupal.org/user/2103716"
  2017. },
  2018. {
  2019. "name": "jkopel",
  2020. "homepage": "https://www.drupal.org/user/66207"
  2021. },
  2022. {
  2023. "name": "mikeker",
  2024. "homepage": "https://www.drupal.org/user/192273"
  2025. },
  2026. {
  2027. "name": "mortona2k",
  2028. "homepage": "https://www.drupal.org/user/1029484"
  2029. },
  2030. {
  2031. "name": "rlhawk",
  2032. "homepage": "https://www.drupal.org/user/352283"
  2033. }
  2034. ],
  2035. "description": "Provides advanced options (such as links, checkboxes, or jQueryUI widgets) for exposed Views elements.",
  2036. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2037. "support": {
  2038. "source": "http://cgit.drupalcode.org/better_exposed_filters"
  2039. }
  2040. },
  2041. {
  2042. "name": "drupal/better_messages",
  2043. "version": "1.0.0-alpha2",
  2044. "source": {
  2045. "type": "git",
  2046. "url": "https://git.drupal.org/project/better_messages",
  2047. "reference": "8.x-1.0-alpha2"
  2048. },
  2049. "dist": {
  2050. "type": "zip",
  2051. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2052. "reference": "8.x-1.0-alpha2",
  2053. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2054. },
  2055. "require": {
  2056. "drupal/core": "~8.0"
  2057. },
  2058. "type": "drupal-module",
  2059. "extra": {
  2060. "branch-alias": {
  2061. "dev-1.x": "1.x-dev"
  2062. },
  2063. "drupal": {
  2064. "version": "8.x-1.0-alpha2",
  2065. "datestamp": "1517663880",
  2066. "security-coverage": {
  2067. "status": "not-covered",
  2068. "message": "Alpha releases are not covered by Drupal security advisories."
  2069. }
  2070. }
  2071. },
  2072. "notification-url": "https://packages.drupal.org/8/downloads",
  2073. "license": [
  2074. "GPL-2.0-or-later"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "Mohammed J. Razem",
  2079. "homepage": "https://www.drupal.org/user/255384"
  2080. },
  2081. {
  2082. "name": "bucefal91",
  2083. "homepage": "https://www.drupal.org/user/504128"
  2084. },
  2085. {
  2086. "name": "le72",
  2087. "homepage": "https://www.drupal.org/user/1866896"
  2088. }
  2089. ],
  2090. "description": "Better Messages module for Drupal 8.",
  2091. "homepage": "https://www.drupal.org/project/better_messages",
  2092. "support": {
  2093. "source": "http://cgit.drupalcode.org/better_messages"
  2094. }
  2095. },
  2096. {
  2097. "name": "drupal/betterlogin",
  2098. "version": "1.2.0",
  2099. "source": {
  2100. "type": "git",
  2101. "url": "https://git.drupal.org/project/betterlogin",
  2102. "reference": "8.x-1.2"
  2103. },
  2104. "dist": {
  2105. "type": "zip",
  2106. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.2.zip",
  2107. "reference": "8.x-1.2",
  2108. "shasum": "6b9ab142bf563685346d2b4e2db46ada209ed6ad"
  2109. },
  2110. "require": {
  2111. "drupal/core": "~8.0"
  2112. },
  2113. "type": "drupal-module",
  2114. "extra": {
  2115. "branch-alias": {
  2116. "dev-1.x": "1.x-dev"
  2117. },
  2118. "drupal": {
  2119. "version": "8.x-1.2",
  2120. "datestamp": "1515587585",
  2121. "security-coverage": {
  2122. "status": "covered",
  2123. "message": "Covered by Drupal's security advisory policy"
  2124. }
  2125. }
  2126. },
  2127. "notification-url": "https://packages.drupal.org/8/downloads",
  2128. "license": [
  2129. "GPL-2.0-or-later"
  2130. ],
  2131. "authors": [
  2132. {
  2133. "name": "Yogesh Pawar",
  2134. "homepage": "https://www.drupal.org/user/2922907"
  2135. },
  2136. {
  2137. "name": "theamoeba",
  2138. "homepage": "https://www.drupal.org/user/251700"
  2139. }
  2140. ],
  2141. "description": "Make the login screens better :)",
  2142. "homepage": "https://www.drupal.org/project/betterlogin",
  2143. "support": {
  2144. "source": "http://cgit.drupalcode.org/betterlogin"
  2145. }
  2146. },
  2147. {
  2148. "name": "drupal/block_class",
  2149. "version": "1.0.0",
  2150. "source": {
  2151. "type": "git",
  2152. "url": "https://git.drupal.org/project/block_class",
  2153. "reference": "8.x-1.0"
  2154. },
  2155. "dist": {
  2156. "type": "zip",
  2157. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.0.zip",
  2158. "reference": "8.x-1.0",
  2159. "shasum": "1a691999d051a3c010c2b6f2df73954ee02f424d"
  2160. },
  2161. "require": {
  2162. "drupal/core": "*"
  2163. },
  2164. "type": "drupal-module",
  2165. "extra": {
  2166. "branch-alias": {
  2167. "dev-1.x": "1.x-dev"
  2168. },
  2169. "drupal": {
  2170. "version": "8.x-1.0",
  2171. "datestamp": "1531440821",
  2172. "security-coverage": {
  2173. "status": "covered",
  2174. "message": "Covered by Drupal's security advisory policy"
  2175. }
  2176. }
  2177. },
  2178. "notification-url": "https://packages.drupal.org/8/downloads",
  2179. "license": [
  2180. "GPL-2.0+"
  2181. ],
  2182. "authors": [
  2183. {
  2184. "name": "Todd Nienkerk",
  2185. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2186. "role": "Maintainer"
  2187. },
  2188. {
  2189. "name": "Renato Gonçalves (RenatoG)",
  2190. "homepage": "https://www.drupal.org/u/RenatoG",
  2191. "email": "renatog@ciandt.com",
  2192. "role": "Maintainer"
  2193. },
  2194. {
  2195. "name": "Aaron Stanush",
  2196. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2197. "role": "Maintainer"
  2198. },
  2199. {
  2200. "name": "David Suissa (DYdave)",
  2201. "homepage": "https://www.drupal.org/u/DYdave",
  2202. "role": "Maintainer"
  2203. },
  2204. {
  2205. "name": "Four Kitchens",
  2206. "homepage": "https://www.drupal.org/user/358502",
  2207. "role": "Maintainer"
  2208. },
  2209. {
  2210. "name": "berenddeboer",
  2211. "homepage": "https://www.drupal.org/u/berenddeboer",
  2212. "role": "Maintainer"
  2213. },
  2214. {
  2215. "name": "elliotttf",
  2216. "homepage": "https://www.drupal.org/u/elliotttf",
  2217. "role": "Maintainer"
  2218. },
  2219. {
  2220. "name": "Michal Minecki (mirzu)",
  2221. "homepage": "https://www.drupal.org/u/mirzu",
  2222. "role": "Maintainer"
  2223. },
  2224. {
  2225. "name": "Patrick Coffey (pcoffey)",
  2226. "homepage": "https://www.drupal.org/u/pcoffey",
  2227. "role": "Maintainer"
  2228. },
  2229. {
  2230. "name": "Taylor Smith (tsmith512)",
  2231. "homepage": "https://www.drupal.org/u/tsmith512",
  2232. "role": "Maintainer"
  2233. },
  2234. {
  2235. "name": "tsmith512",
  2236. "homepage": "https://www.drupal.org/user/2031446"
  2237. }
  2238. ],
  2239. "description": "Allows assigning classes to Blocks.",
  2240. "homepage": "https://www.drupal.org/project/block_class",
  2241. "support": {
  2242. "source": "https://cgit.drupalcode.org/block_class",
  2243. "issues": "https://www.drupal.org/project/issues/block_class",
  2244. "irc": "irc://irc.freenode.org/drupal-contribute"
  2245. }
  2246. },
  2247. {
  2248. "name": "drupal/bulkdelete",
  2249. "version": "dev-1.x",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://git.drupal.org/project/bulkdelete",
  2253. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2254. },
  2255. "require": {
  2256. "drupal/core": "~8.0"
  2257. },
  2258. "type": "drupal-module",
  2259. "extra": {
  2260. "branch-alias": {
  2261. "dev-1.x": "1.x-dev"
  2262. },
  2263. "drupal": {
  2264. "version": "8.x-1.x-dev",
  2265. "datestamp": "1495565583",
  2266. "security-coverage": {
  2267. "status": "not-covered",
  2268. "message": "Dev releases are not covered by Drupal security advisories."
  2269. }
  2270. }
  2271. },
  2272. "notification-url": "https://packages.drupal.org/8/downloads",
  2273. "license": [
  2274. "GPL-2.0-or-later"
  2275. ],
  2276. "authors": [
  2277. {
  2278. "name": "Kars-T",
  2279. "homepage": "https://www.drupal.org/user/224499"
  2280. },
  2281. {
  2282. "name": "Rahul Seth",
  2283. "homepage": "https://www.drupal.org/user/2694359"
  2284. },
  2285. {
  2286. "name": "adriancid",
  2287. "homepage": "https://www.drupal.org/user/1962106"
  2288. },
  2289. {
  2290. "name": "robertDouglass",
  2291. "homepage": "https://www.drupal.org/user/5449"
  2292. }
  2293. ],
  2294. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2295. "homepage": "https://www.drupal.org/project/bulkdelete",
  2296. "support": {
  2297. "source": "http://cgit.drupalcode.org/bulkdelete"
  2298. },
  2299. "time": "2017-05-23T18:49:48+00:00"
  2300. },
  2301. {
  2302. "name": "drupal/computed_field",
  2303. "version": "2.0.0-alpha4",
  2304. "source": {
  2305. "type": "git",
  2306. "url": "https://git.drupal.org/project/computed_field",
  2307. "reference": "8.x-2.0-alpha4"
  2308. },
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://ftp.drupal.org/files/projects/computed_field-8.x-2.0-alpha4.zip",
  2312. "reference": "8.x-2.0-alpha4",
  2313. "shasum": "daf67f2ecbb2785fa3c01416690ac48fd6737c9c"
  2314. },
  2315. "require": {
  2316. "drupal/core": "~8.0"
  2317. },
  2318. "type": "drupal-module",
  2319. "extra": {
  2320. "branch-alias": {
  2321. "dev-2.x": "2.x-dev"
  2322. },
  2323. "drupal": {
  2324. "version": "8.x-2.0-alpha4",
  2325. "datestamp": "1498842542",
  2326. "security-coverage": {
  2327. "status": "not-covered",
  2328. "message": "Alpha releases are not covered by Drupal security advisories."
  2329. }
  2330. }
  2331. },
  2332. "notification-url": "https://packages.drupal.org/8/downloads",
  2333. "license": [
  2334. "GPL-2.0-or-later"
  2335. ],
  2336. "authors": [
  2337. {
  2338. "name": "Agileware",
  2339. "homepage": "https://www.drupal.org/user/89106"
  2340. },
  2341. {
  2342. "name": "Moonshine",
  2343. "homepage": "https://www.drupal.org/user/133705"
  2344. },
  2345. {
  2346. "name": "Pedro Lozano",
  2347. "homepage": "https://www.drupal.org/user/123766"
  2348. },
  2349. {
  2350. "name": "colan",
  2351. "homepage": "https://www.drupal.org/user/58704"
  2352. },
  2353. {
  2354. "name": "dealancer",
  2355. "homepage": "https://www.drupal.org/user/243418"
  2356. },
  2357. {
  2358. "name": "markus_petrux",
  2359. "homepage": "https://www.drupal.org/user/39593"
  2360. },
  2361. {
  2362. "name": "nickcaballero",
  2363. "homepage": "https://www.drupal.org/user/588336"
  2364. },
  2365. {
  2366. "name": "ram4nd",
  2367. "homepage": "https://www.drupal.org/user/601534"
  2368. }
  2369. ],
  2370. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2371. "homepage": "https://www.drupal.org/project/computed_field",
  2372. "support": {
  2373. "source": "http://cgit.drupalcode.org/computed_field"
  2374. }
  2375. },
  2376. {
  2377. "name": "drupal/config_devel",
  2378. "version": "1.2.0",
  2379. "source": {
  2380. "type": "git",
  2381. "url": "https://git.drupal.org/project/config_devel",
  2382. "reference": "8.x-1.2"
  2383. },
  2384. "dist": {
  2385. "type": "zip",
  2386. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2387. "reference": "8.x-1.2",
  2388. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2389. },
  2390. "require": {
  2391. "drupal/core": "~8.0"
  2392. },
  2393. "type": "drupal-module",
  2394. "extra": {
  2395. "branch-alias": {
  2396. "dev-1.x": "1.x-dev"
  2397. },
  2398. "drupal": {
  2399. "version": "8.x-1.2",
  2400. "datestamp": "1510843084",
  2401. "security-coverage": {
  2402. "status": "covered",
  2403. "message": "Covered by Drupal's security advisory policy"
  2404. }
  2405. }
  2406. },
  2407. "notification-url": "https://packages.drupal.org/8/downloads",
  2408. "license": [
  2409. "GPL-2.0+"
  2410. ],
  2411. "authors": [
  2412. {
  2413. "name": "alexpott",
  2414. "homepage": "https://www.drupal.org/user/157725"
  2415. },
  2416. {
  2417. "name": "benjy",
  2418. "homepage": "https://www.drupal.org/user/1852732"
  2419. },
  2420. {
  2421. "name": "chx",
  2422. "homepage": "https://www.drupal.org/user/9446"
  2423. },
  2424. {
  2425. "name": "joachim",
  2426. "homepage": "https://www.drupal.org/user/107701"
  2427. },
  2428. {
  2429. "name": "nedjo",
  2430. "homepage": "https://www.drupal.org/user/4481"
  2431. },
  2432. {
  2433. "name": "tim.plunkett",
  2434. "homepage": "https://www.drupal.org/user/241634"
  2435. },
  2436. {
  2437. "name": "vijaycs85",
  2438. "homepage": "https://www.drupal.org/user/93488"
  2439. }
  2440. ],
  2441. "description": "Helps developers work with configuration.",
  2442. "homepage": "https://www.drupal.org/project/config_devel",
  2443. "support": {
  2444. "source": "http://cgit.drupalcode.org/config_devel"
  2445. }
  2446. },
  2447. {
  2448. "name": "drupal/config_filter",
  2449. "version": "1.3.0",
  2450. "source": {
  2451. "type": "git",
  2452. "url": "https://git.drupal.org/project/config_filter",
  2453. "reference": "8.x-1.3"
  2454. },
  2455. "dist": {
  2456. "type": "zip",
  2457. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.3.zip",
  2458. "reference": "8.x-1.3",
  2459. "shasum": "56255a17c45dcbb0af713215885a8d74214d2ebc"
  2460. },
  2461. "require": {
  2462. "drupal/core": "~8.0"
  2463. },
  2464. "suggest": {
  2465. "drupal/config_split": "Split site configuration for different environments."
  2466. },
  2467. "type": "drupal-module",
  2468. "extra": {
  2469. "branch-alias": {
  2470. "dev-1.x": "1.x-dev"
  2471. },
  2472. "drupal": {
  2473. "version": "8.x-1.3",
  2474. "datestamp": "1537978080",
  2475. "security-coverage": {
  2476. "status": "covered",
  2477. "message": "Covered by Drupal's security advisory policy"
  2478. }
  2479. }
  2480. },
  2481. "notification-url": "https://packages.drupal.org/8/downloads",
  2482. "license": [
  2483. "GPL-2.0+"
  2484. ],
  2485. "authors": [
  2486. {
  2487. "name": "Fabian Bircher",
  2488. "homepage": "https://www.drupal.org/u/bircher",
  2489. "email": "opensource@fabianbircher.com",
  2490. "role": "Maintainer"
  2491. },
  2492. {
  2493. "name": "Nuvole Web",
  2494. "homepage": "http://nuvole.org",
  2495. "email": "info@nuvole.org",
  2496. "role": "Maintainer"
  2497. },
  2498. {
  2499. "name": "pescetti",
  2500. "homepage": "https://www.drupal.org/user/436244"
  2501. }
  2502. ],
  2503. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2504. "homepage": "https://www.drupal.org/project/config_filter",
  2505. "keywords": [
  2506. "Drupal",
  2507. "configuration",
  2508. "configuration management"
  2509. ],
  2510. "support": {
  2511. "source": "http://cgit.drupalcode.org/config_filter",
  2512. "issues": "https://www.drupal.org/project/issues/config_filter",
  2513. "irc": "irc://irc.freenode.org/drupal-contribute"
  2514. }
  2515. },
  2516. {
  2517. "name": "drupal/config_ignore",
  2518. "version": "2.1.0",
  2519. "source": {
  2520. "type": "git",
  2521. "url": "https://git.drupal.org/project/config_ignore",
  2522. "reference": "8.x-2.1"
  2523. },
  2524. "dist": {
  2525. "type": "zip",
  2526. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2527. "reference": "8.x-2.1",
  2528. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2529. },
  2530. "require": {
  2531. "drupal/config_filter": "1.*",
  2532. "drupal/core": "~8.0"
  2533. },
  2534. "type": "drupal-module",
  2535. "extra": {
  2536. "branch-alias": {
  2537. "dev-2.x": "2.x-dev"
  2538. },
  2539. "drupal": {
  2540. "version": "8.x-2.1",
  2541. "datestamp": "1507706044",
  2542. "security-coverage": {
  2543. "status": "covered",
  2544. "message": "Covered by Drupal's security advisory policy"
  2545. }
  2546. }
  2547. },
  2548. "notification-url": "https://packages.drupal.org/8/downloads",
  2549. "license": [
  2550. "GPL-2.0+"
  2551. ],
  2552. "authors": [
  2553. {
  2554. "name": "Tommy Lynge Jørgensen",
  2555. "homepage": "https://www.drupal.org/u/tlyngej",
  2556. "email": "tlyngej@gmail.com",
  2557. "role": "Maintainer"
  2558. },
  2559. {
  2560. "name": "Fabian Bircher",
  2561. "homepage": "https://www.drupal.org/u/bircher",
  2562. "role": "Maintainer"
  2563. }
  2564. ],
  2565. "description": "Ignore certain configuration during import.",
  2566. "homepage": "http://drupal.org/project/config_ignore",
  2567. "support": {
  2568. "source": "http://cgit.drupalcode.org/config_ignore",
  2569. "issues": "http://drupal.org/project/config_ignore",
  2570. "irc": "irc://irc.freenode.org/drupal-contribute"
  2571. }
  2572. },
  2573. {
  2574. "name": "drupal/config_update",
  2575. "version": "1.5.0",
  2576. "source": {
  2577. "type": "git",
  2578. "url": "https://git.drupal.org/project/config_update",
  2579. "reference": "8.x-1.5"
  2580. },
  2581. "dist": {
  2582. "type": "zip",
  2583. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.5.zip",
  2584. "reference": "8.x-1.5",
  2585. "shasum": "2f7ae5f90b1c0ab8edf84680d2651e81fab6a126"
  2586. },
  2587. "require": {
  2588. "drupal/core": "*"
  2589. },
  2590. "type": "drupal-module",
  2591. "extra": {
  2592. "branch-alias": {
  2593. "dev-1.x": "1.x-dev"
  2594. },
  2595. "drupal": {
  2596. "version": "8.x-1.5",
  2597. "datestamp": "1512587912",
  2598. "security-coverage": {
  2599. "status": "covered",
  2600. "message": "Covered by Drupal's security advisory policy"
  2601. }
  2602. }
  2603. },
  2604. "notification-url": "https://packages.drupal.org/8/downloads",
  2605. "license": [
  2606. "GPL-2.0-or-later"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "jhodgdon",
  2611. "homepage": "https://www.drupal.org/user/155601"
  2612. },
  2613. {
  2614. "name": "nedjo",
  2615. "homepage": "https://www.drupal.org/user/4481"
  2616. }
  2617. ],
  2618. "description": "Provides basic revert and update functionality for other modules",
  2619. "homepage": "https://www.drupal.org/project/config_update",
  2620. "support": {
  2621. "source": "http://cgit.drupalcode.org/config_update"
  2622. }
  2623. },
  2624. {
  2625. "name": "drupal/console",
  2626. "version": "1.8.0",
  2627. "source": {
  2628. "type": "git",
  2629. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2630. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  2631. },
  2632. "dist": {
  2633. "type": "zip",
  2634. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2635. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2636. "shasum": ""
  2637. },
  2638. "require": {
  2639. "alchemy/zippy": "0.4.3",
  2640. "composer/installers": "~1.0",
  2641. "doctrine/annotations": "^1.2",
  2642. "doctrine/collections": "^1.3",
  2643. "drupal/console-core": "1.8.0",
  2644. "drupal/console-extend-plugin": "~0",
  2645. "guzzlehttp/guzzle": "~6.1",
  2646. "php": "^5.5.9 || ^7.0",
  2647. "psy/psysh": "0.6.* || ~0.8",
  2648. "symfony/css-selector": "~2.8|~3.0",
  2649. "symfony/dom-crawler": "~2.8|~3.0",
  2650. "symfony/http-foundation": "~2.8|~3.0"
  2651. },
  2652. "suggest": {
  2653. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  2654. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  2655. },
  2656. "bin": [
  2657. "bin/drupal"
  2658. ],
  2659. "type": "library",
  2660. "autoload": {
  2661. "psr-4": {
  2662. "Drupal\\Console\\": "src"
  2663. }
  2664. },
  2665. "notification-url": "https://packagist.org/downloads/",
  2666. "license": [
  2667. "GPL-2.0-or-later"
  2668. ],
  2669. "authors": [
  2670. {
  2671. "name": "David Flores",
  2672. "email": "dmousex@gmail.com",
  2673. "homepage": "http://dmouse.net"
  2674. },
  2675. {
  2676. "name": "Jesus Manuel Olivas",
  2677. "email": "jesus.olivas@gmail.com",
  2678. "homepage": "http://jmolivas.com"
  2679. },
  2680. {
  2681. "name": "Eduardo Garcia",
  2682. "email": "enzo@enzolutions.com",
  2683. "homepage": "http://enzolutions.com/"
  2684. },
  2685. {
  2686. "name": "Omar Aguirre",
  2687. "email": "omersguchigu@gmail.com"
  2688. },
  2689. {
  2690. "name": "Drupal Console Contributors",
  2691. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2692. }
  2693. ],
  2694. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2695. "homepage": "http://drupalconsole.com/",
  2696. "keywords": [
  2697. "console",
  2698. "development",
  2699. "drupal",
  2700. "symfony"
  2701. ],
  2702. "time": "2018-03-21T20:50:16+00:00"
  2703. },
  2704. {
  2705. "name": "drupal/console-core",
  2706. "version": "1.8.0",
  2707. "source": {
  2708. "type": "git",
  2709. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2710. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  2711. },
  2712. "dist": {
  2713. "type": "zip",
  2714. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  2715. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  2716. "shasum": ""
  2717. },
  2718. "require": {
  2719. "dflydev/dot-access-configuration": "^1.0",
  2720. "drupal/console-en": "1.8.0",
  2721. "php": "^5.5.9 || ^7.0",
  2722. "stecman/symfony-console-completion": "~0.7",
  2723. "symfony/config": "~2.8|~3.0",
  2724. "symfony/console": "~2.8|~3.0",
  2725. "symfony/debug": "~2.8|~3.0",
  2726. "symfony/dependency-injection": "~2.8|~3.0",
  2727. "symfony/event-dispatcher": "~2.8|~3.0",
  2728. "symfony/filesystem": "~2.8|~3.0",
  2729. "symfony/finder": "~2.8|~3.0",
  2730. "symfony/process": "~2.8|~3.0",
  2731. "symfony/translation": "~2.8|~3.0",
  2732. "symfony/yaml": "~2.8|~3.0",
  2733. "twig/twig": "^1.23.1",
  2734. "webflo/drupal-finder": "^1.0",
  2735. "webmozart/path-util": "^2.3"
  2736. },
  2737. "type": "library",
  2738. "autoload": {
  2739. "files": [
  2740. "src/functions.php"
  2741. ],
  2742. "psr-4": {
  2743. "Drupal\\Console\\Core\\": "src"
  2744. }
  2745. },
  2746. "notification-url": "https://packagist.org/downloads/",
  2747. "license": [
  2748. "GPL-2.0-or-later"
  2749. ],
  2750. "authors": [
  2751. {
  2752. "name": "David Flores",
  2753. "email": "dmousex@gmail.com",
  2754. "homepage": "http://dmouse.net"
  2755. },
  2756. {
  2757. "name": "Jesus Manuel Olivas",
  2758. "email": "jesus.olivas@gmail.com",
  2759. "homepage": "http://jmolivas.com"
  2760. },
  2761. {
  2762. "name": "Drupal Console Contributors",
  2763. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2764. },
  2765. {
  2766. "name": "Eduardo Garcia",
  2767. "email": "enzo@enzolutions.com",
  2768. "homepage": "http://enzolutions.com/"
  2769. },
  2770. {
  2771. "name": "Omar Aguirre",
  2772. "email": "omersguchigu@gmail.com"
  2773. }
  2774. ],
  2775. "description": "Drupal Console Core",
  2776. "homepage": "http://drupalconsole.com/",
  2777. "keywords": [
  2778. "console",
  2779. "development",
  2780. "drupal",
  2781. "symfony"
  2782. ],
  2783. "time": "2018-03-21T19:33:23+00:00"
  2784. },
  2785. {
  2786. "name": "drupal/console-en",
  2787. "version": "1.8.0",
  2788. "source": {
  2789. "type": "git",
  2790. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2791. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  2792. },
  2793. "dist": {
  2794. "type": "zip",
  2795. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  2796. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  2797. "shasum": ""
  2798. },
  2799. "type": "drupal-console-language",
  2800. "notification-url": "https://packagist.org/downloads/",
  2801. "license": [
  2802. "GPL-2.0-or-later"
  2803. ],
  2804. "authors": [
  2805. {
  2806. "name": "David Flores",
  2807. "email": "dmousex@gmail.com",
  2808. "homepage": "http://dmouse.net"
  2809. },
  2810. {
  2811. "name": "Jesus Manuel Olivas",
  2812. "email": "jesus.olivas@gmail.com",
  2813. "homepage": "http://jmolivas.com"
  2814. },
  2815. {
  2816. "name": "Drupal Console Contributors",
  2817. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2818. },
  2819. {
  2820. "name": "Eduardo Garcia",
  2821. "email": "enzo@enzolutions.com",
  2822. "homepage": "http://enzolutions.com/"
  2823. },
  2824. {
  2825. "name": "Omar Aguirre",
  2826. "email": "omersguchigu@gmail.com"
  2827. }
  2828. ],
  2829. "description": "Drupal Console English Language",
  2830. "homepage": "http://drupalconsole.com/",
  2831. "keywords": [
  2832. "console",
  2833. "development",
  2834. "drupal",
  2835. "symfony"
  2836. ],
  2837. "time": "2018-03-21T19:16:27+00:00"
  2838. },
  2839. {
  2840. "name": "drupal/console-extend-plugin",
  2841. "version": "0.9.2",
  2842. "source": {
  2843. "type": "git",
  2844. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2845. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  2846. },
  2847. "dist": {
  2848. "type": "zip",
  2849. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  2850. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  2851. "shasum": ""
  2852. },
  2853. "require": {
  2854. "composer-plugin-api": "^1.0",
  2855. "symfony/finder": "~2.7|~3.0",
  2856. "symfony/yaml": "~2.7|~3.0"
  2857. },
  2858. "type": "composer-plugin",
  2859. "extra": {
  2860. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  2861. },
  2862. "autoload": {
  2863. "psr-4": {
  2864. "Drupal\\Console\\Composer\\Plugin\\": "src"
  2865. }
  2866. },
  2867. "notification-url": "https://packagist.org/downloads/",
  2868. "license": [
  2869. "GPL-2.0+"
  2870. ],
  2871. "authors": [
  2872. {
  2873. "name": "Jesus Manuel Olivas",
  2874. "email": "jesus.olivas@gmail.com"
  2875. }
  2876. ],
  2877. "description": "Drupal Console Extend Plugin",
  2878. "time": "2017-07-28T17:11:54+00:00"
  2879. },
  2880. {
  2881. "name": "drupal/content_lock",
  2882. "version": "1.0.0-alpha8",
  2883. "source": {
  2884. "type": "git",
  2885. "url": "https://git.drupal.org/project/content_lock",
  2886. "reference": "8.x-1.0-alpha8"
  2887. },
  2888. "dist": {
  2889. "type": "zip",
  2890. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-1.0-alpha8.zip",
  2891. "reference": "8.x-1.0-alpha8",
  2892. "shasum": "dbb5986dbfbe325eb869a4ac42b88b266dc089c6"
  2893. },
  2894. "require": {
  2895. "drupal/core": "~8"
  2896. },
  2897. "require-dev": {
  2898. "drupal/conflict": "dev-2.x",
  2899. "drupal/prefetch_cache": "dev-1.x"
  2900. },
  2901. "type": "drupal-module",
  2902. "extra": {
  2903. "branch-alias": {
  2904. "dev-1.x": "1.x-dev"
  2905. },
  2906. "drupal": {
  2907. "version": "8.x-1.0-alpha8",
  2908. "datestamp": "1520356080",
  2909. "security-coverage": {
  2910. "status": "not-covered",
  2911. "message": "Alpha releases are not covered by Drupal security advisories."
  2912. }
  2913. }
  2914. },
  2915. "notification-url": "https://packages.drupal.org/8/downloads",
  2916. "license": [
  2917. "GPL-2.0-or-later"
  2918. ],
  2919. "authors": [
  2920. {
  2921. "name": "Joseph Zhao",
  2922. "homepage": "https://www.drupal.org/user/1987218"
  2923. },
  2924. {
  2925. "name": "chr.fritsch",
  2926. "homepage": "https://www.drupal.org/user/2103716"
  2927. },
  2928. {
  2929. "name": "ergonlogic",
  2930. "homepage": "https://www.drupal.org/user/368613"
  2931. }
  2932. ],
  2933. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  2934. "homepage": "https://www.drupal.org/project/content_lock",
  2935. "support": {
  2936. "source": "http://cgit.drupalcode.org/content_lock"
  2937. }
  2938. },
  2939. {
  2940. "name": "drupal/context",
  2941. "version": "4.0.0-beta2",
  2942. "source": {
  2943. "type": "git",
  2944. "url": "https://git.drupal.org/project/context",
  2945. "reference": "8.x-4.0-beta2"
  2946. },
  2947. "dist": {
  2948. "type": "zip",
  2949. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  2950. "reference": "8.x-4.0-beta2",
  2951. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  2952. },
  2953. "require": {
  2954. "drupal/core": "~8.0"
  2955. },
  2956. "type": "drupal-module",
  2957. "extra": {
  2958. "branch-alias": {
  2959. "dev-4.x": "4.x-dev"
  2960. },
  2961. "drupal": {
  2962. "version": "8.x-4.0-beta2",
  2963. "datestamp": "1505378944",
  2964. "security-coverage": {
  2965. "status": "not-covered",
  2966. "message": "Beta releases are not covered by Drupal security advisories."
  2967. }
  2968. }
  2969. },
  2970. "notification-url": "https://packages.drupal.org/8/downloads",
  2971. "license": [
  2972. "MIT"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "Christoffer Palm",
  2977. "homepage": "http://www.oddhill.se/",
  2978. "email": "christoffer.palm@oddhill.se",
  2979. "role": "Developer"
  2980. },
  2981. {
  2982. "name": "Steven Jones",
  2983. "homepage": "https://www.drupal.org/user/99644"
  2984. },
  2985. {
  2986. "name": "alex_b",
  2987. "homepage": "https://www.drupal.org/user/53995"
  2988. },
  2989. {
  2990. "name": "boshtian",
  2991. "homepage": "https://www.drupal.org/user/1773456"
  2992. },
  2993. {
  2994. "name": "colan",
  2995. "homepage": "https://www.drupal.org/user/58704"
  2996. },
  2997. {
  2998. "name": "emanaton",
  2999. "homepage": "https://www.drupal.org/user/120853"
  3000. },
  3001. {
  3002. "name": "febbraro",
  3003. "homepage": "https://www.drupal.org/user/43670"
  3004. },
  3005. {
  3006. "name": "fizk",
  3007. "homepage": "https://www.drupal.org/user/473174"
  3008. },
  3009. {
  3010. "name": "hass",
  3011. "homepage": "https://www.drupal.org/user/85918"
  3012. },
  3013. {
  3014. "name": "hefox",
  3015. "homepage": "https://www.drupal.org/user/426416"
  3016. },
  3017. {
  3018. "name": "hyrcan",
  3019. "homepage": "https://www.drupal.org/user/26618"
  3020. },
  3021. {
  3022. "name": "jmiccolis",
  3023. "homepage": "https://www.drupal.org/user/31731"
  3024. },
  3025. {
  3026. "name": "tekante",
  3027. "homepage": "https://www.drupal.org/user/640024"
  3028. },
  3029. {
  3030. "name": "yhahn",
  3031. "homepage": "https://www.drupal.org/user/264833"
  3032. }
  3033. ],
  3034. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3035. "homepage": "https://github.com/oddhill/context",
  3036. "keywords": [
  3037. "Drupal",
  3038. "block",
  3039. "conditions",
  3040. "context",
  3041. "visibility"
  3042. ],
  3043. "support": {
  3044. "source": "https://github.com/oddhill/context",
  3045. "issues": "https://github.com/oddhill/context/issues",
  3046. "docs": "https://github.com/oddhill/context"
  3047. }
  3048. },
  3049. {
  3050. "name": "drupal/cshs",
  3051. "version": "dev-1.x",
  3052. "source": {
  3053. "type": "git",
  3054. "url": "https://git.drupal.org/project/cshs",
  3055. "reference": "c4a2deff253e24c83b14f960ce9dce49fa115f60"
  3056. },
  3057. "require": {
  3058. "drupal/core": "*"
  3059. },
  3060. "type": "drupal-module",
  3061. "extra": {
  3062. "branch-alias": {
  3063. "dev-1.x": "1.x-dev"
  3064. },
  3065. "drupal": {
  3066. "version": "8.x-1.0-beta4+4-dev",
  3067. "datestamp": "1512800285",
  3068. "security-coverage": {
  3069. "status": "not-covered",
  3070. "message": "Dev releases are not covered by Drupal security advisories."
  3071. }
  3072. }
  3073. },
  3074. "notification-url": "https://packages.drupal.org/8/downloads",
  3075. "license": [
  3076. "GPL-2.0-or-later"
  3077. ],
  3078. "authors": [
  3079. {
  3080. "name": "BR0kEN",
  3081. "homepage": "https://www.drupal.org/user/2802285"
  3082. },
  3083. {
  3084. "name": "purushotam.rai",
  3085. "homepage": "https://www.drupal.org/user/3193859"
  3086. },
  3087. {
  3088. "name": "valderama",
  3089. "homepage": "https://www.drupal.org/user/103634"
  3090. }
  3091. ],
  3092. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3093. "homepage": "https://www.drupal.org/project/cshs",
  3094. "support": {
  3095. "source": "http://cgit.drupalcode.org/cshs"
  3096. },
  3097. "time": "2018-06-24T13:39:17+00:00"
  3098. },
  3099. {
  3100. "name": "drupal/ctools",
  3101. "version": "3.0.0",
  3102. "source": {
  3103. "type": "git",
  3104. "url": "https://git.drupal.org/project/ctools",
  3105. "reference": "8.x-3.0"
  3106. },
  3107. "dist": {
  3108. "type": "zip",
  3109. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip",
  3110. "reference": "8.x-3.0",
  3111. "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
  3112. },
  3113. "require": {
  3114. "drupal/core": "~8.0"
  3115. },
  3116. "type": "drupal-module",
  3117. "extra": {
  3118. "branch-alias": {
  3119. "dev-3.x": "3.x-dev"
  3120. },
  3121. "drupal": {
  3122. "version": "8.x-3.0",
  3123. "datestamp": "1493401742",
  3124. "security-coverage": {
  3125. "status": "covered",
  3126. "message": "Covered by Drupal's security advisory policy"
  3127. }
  3128. }
  3129. },
  3130. "notification-url": "https://packages.drupal.org/8/downloads",
  3131. "license": [
  3132. "GPL-2.0+"
  3133. ],
  3134. "authors": [
  3135. {
  3136. "name": "Kris Vanderwater (EclipseGc)",
  3137. "homepage": "https://www.drupal.org/u/eclipsegc",
  3138. "role": "Maintainer"
  3139. },
  3140. {
  3141. "name": "Jakob Perry (japerry)",
  3142. "homepage": "https://www.drupal.org/u/japerry",
  3143. "role": "Maintainer"
  3144. },
  3145. {
  3146. "name": "Tim Plunkett (tim.plunkett)",
  3147. "homepage": "https://www.drupal.org/u/timplunkett",
  3148. "role": "Maintainer"
  3149. },
  3150. {
  3151. "name": "James Gilliland (neclimdul)",
  3152. "homepage": "https://www.drupal.org/u/neclimdul",
  3153. "role": "Maintainer"
  3154. },
  3155. {
  3156. "name": "Daniel Wehner (dawehner)",
  3157. "homepage": "https://www.drupal.org/u/dawehner",
  3158. "role": "Maintainer"
  3159. },
  3160. {
  3161. "name": "joelpittet",
  3162. "homepage": "https://www.drupal.org/user/160302"
  3163. },
  3164. {
  3165. "name": "merlinofchaos",
  3166. "homepage": "https://www.drupal.org/user/26979"
  3167. },
  3168. {
  3169. "name": "neclimdul",
  3170. "homepage": "https://www.drupal.org/user/48673"
  3171. },
  3172. {
  3173. "name": "sdboyer",
  3174. "homepage": "https://www.drupal.org/user/146719"
  3175. },
  3176. {
  3177. "name": "sun",
  3178. "homepage": "https://www.drupal.org/user/54136"
  3179. },
  3180. {
  3181. "name": "tim.plunkett",
  3182. "homepage": "https://www.drupal.org/user/241634"
  3183. }
  3184. ],
  3185. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3186. "homepage": "https://www.drupal.org/project/ctools",
  3187. "support": {
  3188. "source": "http://cgit.drupalcode.org/ctools",
  3189. "issues": "https://www.drupal.org/project/issues/ctools"
  3190. }
  3191. },
  3192. {
  3193. "name": "drupal/date_range_formatter",
  3194. "version": "3.1.0",
  3195. "source": {
  3196. "type": "git",
  3197. "url": "https://git.drupal.org/project/date_range_formatter",
  3198. "reference": "8.x-3.1"
  3199. },
  3200. "dist": {
  3201. "type": "zip",
  3202. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3203. "reference": "8.x-3.1",
  3204. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3205. },
  3206. "require": {
  3207. "drupal/core": "*"
  3208. },
  3209. "type": "drupal-module",
  3210. "extra": {
  3211. "branch-alias": {
  3212. "dev-3.x": "3.x-dev"
  3213. },
  3214. "drupal": {
  3215. "version": "8.x-3.1",
  3216. "datestamp": "1502454544",
  3217. "security-coverage": {
  3218. "status": "covered",
  3219. "message": "Covered by Drupal's security advisory policy"
  3220. }
  3221. }
  3222. },
  3223. "notification-url": "https://packages.drupal.org/8/downloads",
  3224. "license": [
  3225. "GPL-2.0-or-later"
  3226. ],
  3227. "authors": [
  3228. {
  3229. "name": "Sudishth",
  3230. "homepage": "https://www.drupal.org/user/1440562"
  3231. },
  3232. {
  3233. "name": "maximpodorov",
  3234. "homepage": "https://www.drupal.org/user/515310"
  3235. }
  3236. ],
  3237. "description": "Formats date ranges.",
  3238. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3239. "support": {
  3240. "source": "http://cgit.drupalcode.org/date_range_formatter"
  3241. }
  3242. },
  3243. {
  3244. "name": "drupal/devel",
  3245. "version": "1.2.0",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://git.drupal.org/project/devel",
  3249. "reference": "8.x-1.2"
  3250. },
  3251. "dist": {
  3252. "type": "zip",
  3253. "url": "https://ftp.drupal.org/files/projects/devel-8.x-1.2.zip",
  3254. "reference": "8.x-1.2",
  3255. "shasum": "01f3349ef75f6e21fceef24be9d3d6506ca29647"
  3256. },
  3257. "require": {
  3258. "drupal/core": "~8.0"
  3259. },
  3260. "suggest": {
  3261. "symfony/var-dumper": "Pretty print complex values better with var-dumper available"
  3262. },
  3263. "type": "drupal-module",
  3264. "extra": {
  3265. "branch-alias": {
  3266. "dev-1.x": "1.x-dev"
  3267. },
  3268. "drupal": {
  3269. "version": "8.x-1.2",
  3270. "datestamp": "1507197844",
  3271. "security-coverage": {
  3272. "status": "covered",
  3273. "message": "Covered by Drupal's security advisory policy"
  3274. }
  3275. }
  3276. },
  3277. "notification-url": "https://packages.drupal.org/8/downloads",
  3278. "license": [
  3279. "GPL-2.0+"
  3280. ],
  3281. "authors": [
  3282. {
  3283. "name": "Moshe Weitzman",
  3284. "homepage": "https://github.com/weitzman",
  3285. "email": "weitzman@tejasa.com",
  3286. "role": "Maintainer"
  3287. },
  3288. {
  3289. "name": "Hans Salvisberg",
  3290. "homepage": "https://www.drupal.org/u/salvis",
  3291. "email": "drupal@salvisberg.com",
  3292. "role": "Maintainer"
  3293. },
  3294. {
  3295. "name": "Luca Lusso",
  3296. "homepage": "https://www.drupal.org/u/lussoluca",
  3297. "role": "Maintainer"
  3298. },
  3299. {
  3300. "name": "Marco (willzyx)",
  3301. "homepage": "https://www.drupal.org/u/willzyx",
  3302. "role": "Maintainer"
  3303. },
  3304. {
  3305. "name": "See contributors",
  3306. "homepage": "https://www.drupal.org/node/3236/committers"
  3307. },
  3308. {
  3309. "name": "salvis",
  3310. "homepage": "https://www.drupal.org/user/82964"
  3311. },
  3312. {
  3313. "name": "willzyx",
  3314. "homepage": "https://www.drupal.org/user/1043862"
  3315. }
  3316. ],
  3317. "description": "Various blocks, pages, and functions for developers.",
  3318. "homepage": "http://drupal.org/project/devel",
  3319. "support": {
  3320. "source": "http://cgit.drupalcode.org/devel",
  3321. "issues": "http://drupal.org/project/devel",
  3322. "irc": "irc://irc.freenode.org/drupal-contribute"
  3323. }
  3324. },
  3325. {
  3326. "name": "drupal/devel_generate",
  3327. "version": "1.2.0",
  3328. "require": {
  3329. "drupal/core": "~8.0",
  3330. "drupal/devel": "self.version"
  3331. },
  3332. "type": "metapackage",
  3333. "extra": {
  3334. "branch-alias": {
  3335. "dev-1.x": "1.x-dev"
  3336. },
  3337. "drupal": {
  3338. "version": "8.x-1.2",
  3339. "datestamp": "1507197844",
  3340. "security-coverage": {
  3341. "status": "covered",
  3342. "message": "Covered by Drupal's security advisory policy"
  3343. }
  3344. }
  3345. },
  3346. "notification-url": "https://packages.drupal.org/8/downloads",
  3347. "license": [
  3348. "GPL-2.0-or-later"
  3349. ],
  3350. "authors": [
  3351. {
  3352. "name": "catch",
  3353. "homepage": "https://www.drupal.org/user/35733"
  3354. },
  3355. {
  3356. "name": "juampynr",
  3357. "homepage": "https://www.drupal.org/user/682736"
  3358. },
  3359. {
  3360. "name": "lussoluca",
  3361. "homepage": "https://www.drupal.org/user/138068"
  3362. },
  3363. {
  3364. "name": "moshe weitzman",
  3365. "homepage": "https://www.drupal.org/user/23"
  3366. },
  3367. {
  3368. "name": "pcambra",
  3369. "homepage": "https://www.drupal.org/user/122101"
  3370. },
  3371. {
  3372. "name": "salvis",
  3373. "homepage": "https://www.drupal.org/user/82964"
  3374. },
  3375. {
  3376. "name": "willzyx",
  3377. "homepage": "https://www.drupal.org/user/1043862"
  3378. }
  3379. ],
  3380. "description": "Generate dummy users, nodes, menus, taxonomy terms...",
  3381. "homepage": "https://www.drupal.org/project/devel",
  3382. "support": {
  3383. "source": "http://cgit.drupalcode.org/devel"
  3384. }
  3385. },
  3386. {
  3387. "name": "drupal/domain",
  3388. "version": "1.0.0-alpha14",
  3389. "source": {
  3390. "type": "git",
  3391. "url": "https://git.drupal.org/project/domain",
  3392. "reference": "8.x-1.0-alpha14"
  3393. },
  3394. "dist": {
  3395. "type": "zip",
  3396. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha14.zip",
  3397. "reference": "8.x-1.0-alpha14",
  3398. "shasum": "9889669ee19ae07fc44ab3bbe6fd7049e1317499"
  3399. },
  3400. "require": {
  3401. "drupal/core": "^8.5"
  3402. },
  3403. "require-dev": {
  3404. "drupal/domain_access": "*"
  3405. },
  3406. "type": "drupal-module",
  3407. "extra": {
  3408. "branch-alias": {
  3409. "dev-1.x": "1.x-dev"
  3410. },
  3411. "drupal": {
  3412. "version": "8.x-1.0-alpha14",
  3413. "datestamp": "1539981780",
  3414. "security-coverage": {
  3415. "status": "not-covered",
  3416. "message": "Alpha releases are not covered by Drupal security advisories."
  3417. }
  3418. }
  3419. },
  3420. "notification-url": "https://packages.drupal.org/8/downloads",
  3421. "license": [
  3422. "GPL-2.0-or-later"
  3423. ],
  3424. "authors": [
  3425. {
  3426. "name": "agentrickard",
  3427. "homepage": "https://www.drupal.org/user/20975"
  3428. },
  3429. {
  3430. "name": "nonsie",
  3431. "homepage": "https://www.drupal.org/user/29899"
  3432. }
  3433. ],
  3434. "description": "Creates domain records within a Drupal installation.",
  3435. "homepage": "https://www.drupal.org/project/domain",
  3436. "support": {
  3437. "source": "http://cgit.drupalcode.org/domain"
  3438. }
  3439. },
  3440. {
  3441. "name": "drupal/domain_alias",
  3442. "version": "1.0.0-alpha14",
  3443. "require": {
  3444. "drupal/core": "~8.0",
  3445. "drupal/domain": "self.version"
  3446. },
  3447. "type": "metapackage",
  3448. "extra": {
  3449. "branch-alias": {
  3450. "dev-1.x": "1.x-dev"
  3451. },
  3452. "drupal": {
  3453. "version": "8.x-1.0-alpha14",
  3454. "datestamp": "1539981780",
  3455. "security-coverage": {
  3456. "status": "not-covered",
  3457. "message": "Alpha releases are not covered by Drupal security advisories."
  3458. }
  3459. }
  3460. },
  3461. "notification-url": "https://packages.drupal.org/8/downloads",
  3462. "license": [
  3463. "GPL-2.0-or-later"
  3464. ],
  3465. "authors": [
  3466. {
  3467. "name": "agentrickard",
  3468. "homepage": "https://www.drupal.org/user/20975"
  3469. },
  3470. {
  3471. "name": "nonsie",
  3472. "homepage": "https://www.drupal.org/user/29899"
  3473. }
  3474. ],
  3475. "description": "Maps multiple host requests to a single domain record.",
  3476. "homepage": "https://www.drupal.org/project/domain",
  3477. "support": {
  3478. "source": "http://cgit.drupalcode.org/domain"
  3479. }
  3480. },
  3481. {
  3482. "name": "drupal/domain_config",
  3483. "version": "1.0.0-alpha14",
  3484. "require": {
  3485. "drupal/core": "~8.0",
  3486. "drupal/domain": "self.version"
  3487. },
  3488. "type": "metapackage",
  3489. "extra": {
  3490. "branch-alias": {
  3491. "dev-1.x": "1.x-dev"
  3492. },
  3493. "drupal": {
  3494. "version": "8.x-1.0-alpha14",
  3495. "datestamp": "1539981780",
  3496. "security-coverage": {
  3497. "status": "not-covered",
  3498. "message": "Alpha releases are not covered by Drupal security advisories."
  3499. }
  3500. }
  3501. },
  3502. "notification-url": "https://packages.drupal.org/8/downloads",
  3503. "license": [
  3504. "GPL-2.0-or-later"
  3505. ],
  3506. "authors": [
  3507. {
  3508. "name": "agentrickard",
  3509. "homepage": "https://www.drupal.org/user/20975"
  3510. },
  3511. {
  3512. "name": "nonsie",
  3513. "homepage": "https://www.drupal.org/user/29899"
  3514. }
  3515. ],
  3516. "description": "Allows domain specific configuration.",
  3517. "homepage": "https://www.drupal.org/project/domain",
  3518. "support": {
  3519. "source": "http://cgit.drupalcode.org/domain"
  3520. }
  3521. },
  3522. {
  3523. "name": "drupal/domain_site_settings",
  3524. "version": "1.3.0",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://git.drupal.org/project/domain_site_settings",
  3528. "reference": "8.x-1.3"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3533. "reference": "8.x-1.3",
  3534. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3535. },
  3536. "require": {
  3537. "drupal/core": "~8.0",
  3538. "drupal/domain": "*",
  3539. "drupal/domain_config": "*"
  3540. },
  3541. "type": "drupal-module",
  3542. "extra": {
  3543. "branch-alias": {
  3544. "dev-1.x": "1.x-dev"
  3545. },
  3546. "drupal": {
  3547. "version": "8.x-1.3",
  3548. "datestamp": "1537684980",
  3549. "security-coverage": {
  3550. "status": "covered",
  3551. "message": "Covered by Drupal's security advisory policy"
  3552. }
  3553. }
  3554. },
  3555. "notification-url": "https://packages.drupal.org/8/downloads",
  3556. "license": [
  3557. "GPL-2.0+"
  3558. ],
  3559. "authors": [
  3560. {
  3561. "name": "aloknarwaria",
  3562. "homepage": "https://www.drupal.org/user/906640"
  3563. }
  3564. ],
  3565. "description": "Basic Site Setting for Domains.",
  3566. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3567. "keywords": [
  3568. "Drupal"
  3569. ],
  3570. "support": {
  3571. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3572. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3573. }
  3574. },
  3575. {
  3576. "name": "drupal/email_registration",
  3577. "version": "1.0.0-rc5",
  3578. "source": {
  3579. "type": "git",
  3580. "url": "https://git.drupal.org/project/email_registration",
  3581. "reference": "8.x-1.0-rc5"
  3582. },
  3583. "dist": {
  3584. "type": "zip",
  3585. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc5.zip",
  3586. "reference": "8.x-1.0-rc5",
  3587. "shasum": "8e068ad37077bb3937150155ce13617d98b9b6b1"
  3588. },
  3589. "require": {
  3590. "drupal/core": "*"
  3591. },
  3592. "type": "drupal-module",
  3593. "extra": {
  3594. "branch-alias": {
  3595. "dev-1.x": "1.x-dev"
  3596. },
  3597. "drupal": {
  3598. "version": "8.x-1.0-rc5",
  3599. "datestamp": "1491318182",
  3600. "security-coverage": {
  3601. "status": "not-covered",
  3602. "message": "RC releases are not covered by Drupal security advisories."
  3603. }
  3604. }
  3605. },
  3606. "notification-url": "https://packages.drupal.org/8/downloads",
  3607. "license": [
  3608. "GPL-2.0-or-later"
  3609. ],
  3610. "authors": [
  3611. {
  3612. "name": "Chris Herberte",
  3613. "homepage": "https://www.drupal.org/user/1171"
  3614. },
  3615. {
  3616. "name": "andypost",
  3617. "homepage": "https://www.drupal.org/user/118908"
  3618. },
  3619. {
  3620. "name": "greggles",
  3621. "homepage": "https://www.drupal.org/user/36762"
  3622. },
  3623. {
  3624. "name": "moshe weitzman",
  3625. "homepage": "https://www.drupal.org/user/23"
  3626. }
  3627. ],
  3628. "description": "Allows users to register with an e-mail address as their username.",
  3629. "homepage": "https://www.drupal.org/project/email_registration",
  3630. "support": {
  3631. "source": "http://cgit.drupalcode.org/email_registration"
  3632. }
  3633. },
  3634. {
  3635. "name": "drupal/embed",
  3636. "version": "1.0.0",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://git.drupal.org/project/embed",
  3640. "reference": "8.x-1.0"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip",
  3645. "reference": "8.x-1.0",
  3646. "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a"
  3647. },
  3648. "require": {
  3649. "drupal/core": "~8.0"
  3650. },
  3651. "type": "drupal-module",
  3652. "extra": {
  3653. "branch-alias": {
  3654. "dev-1.x": "1.x-dev"
  3655. },
  3656. "drupal": {
  3657. "version": "8.x-1.0",
  3658. "datestamp": "1490755685",
  3659. "security-coverage": {
  3660. "status": "covered",
  3661. "message": "Covered by Drupal's security advisory policy"
  3662. }
  3663. }
  3664. },
  3665. "notification-url": "https://packages.drupal.org/8/downloads",
  3666. "license": [
  3667. "GPL-2.0+"
  3668. ],
  3669. "authors": [
  3670. {
  3671. "name": "Dave Reid",
  3672. "homepage": "https://www.drupal.org/user/53892"
  3673. },
  3674. {
  3675. "name": "Devin Carlson",
  3676. "homepage": "https://www.drupal.org/user/290182"
  3677. },
  3678. {
  3679. "name": "Drupal Media Team",
  3680. "homepage": "https://www.drupal.org/user/3260690"
  3681. },
  3682. {
  3683. "name": "cs_shadow",
  3684. "homepage": "https://www.drupal.org/user/2828287"
  3685. },
  3686. {
  3687. "name": "slashrsm",
  3688. "homepage": "https://www.drupal.org/user/744628"
  3689. }
  3690. ],
  3691. "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.",
  3692. "homepage": "https://www.drupal.org/project/embed",
  3693. "support": {
  3694. "source": "http://cgit.drupalcode.org/embed",
  3695. "issues": "https://www.drupal.org/project/issues/embed",
  3696. "irc": "irc://irc.freenode.org/drupal-media"
  3697. }
  3698. },
  3699. {
  3700. "name": "drupal/entity",
  3701. "version": "1.0.0-rc1",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://git.drupal.org/project/entity",
  3705. "reference": "8.x-1.0-rc1"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc1.zip",
  3710. "reference": "8.x-1.0-rc1",
  3711. "shasum": "f2dcd7afd0d36b6f261b10a204057a5c801ad20b"
  3712. },
  3713. "require": {
  3714. "drupal/core": "^8.6"
  3715. },
  3716. "type": "drupal-module",
  3717. "extra": {
  3718. "branch-alias": {
  3719. "dev-1.x": "1.x-dev"
  3720. },
  3721. "drupal": {
  3722. "version": "8.x-1.0-rc1",
  3723. "datestamp": "1539272769",
  3724. "security-coverage": {
  3725. "status": "not-covered",
  3726. "message": "RC releases are not covered by Drupal security advisories."
  3727. }
  3728. }
  3729. },
  3730. "notification-url": "https://packages.drupal.org/8/downloads",
  3731. "license": [
  3732. "GPL-2.0+"
  3733. ],
  3734. "authors": [
  3735. {
  3736. "name": "Berdir",
  3737. "homepage": "https://www.drupal.org/user/214652"
  3738. },
  3739. {
  3740. "name": "bojanz",
  3741. "homepage": "https://www.drupal.org/user/86106"
  3742. },
  3743. {
  3744. "name": "dawehner",
  3745. "homepage": "https://www.drupal.org/user/99340"
  3746. },
  3747. {
  3748. "name": "dixon_",
  3749. "homepage": "https://www.drupal.org/user/239911"
  3750. },
  3751. {
  3752. "name": "fago",
  3753. "homepage": "https://www.drupal.org/user/16747"
  3754. }
  3755. ],
  3756. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3757. "homepage": "http://drupal.org/project/entity",
  3758. "support": {
  3759. "source": "http://cgit.drupalcode.org/entity"
  3760. }
  3761. },
  3762. {
  3763. "name": "drupal/entity_browser",
  3764. "version": "2.0.0",
  3765. "source": {
  3766. "type": "git",
  3767. "url": "https://git.drupal.org/project/entity_browser",
  3768. "reference": "8.x-2.0"
  3769. },
  3770. "dist": {
  3771. "type": "zip",
  3772. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0.zip",
  3773. "reference": "8.x-2.0",
  3774. "shasum": "683a7a252c947433c7b78bb838d6d8973c13cf77"
  3775. },
  3776. "require": {
  3777. "drupal/core": "~8.0"
  3778. },
  3779. "require-dev": {
  3780. "drupal/ctools": "*",
  3781. "drupal/inline_entity_form": "*",
  3782. "drupal/paragraphs": "*",
  3783. "drupal/token": "*"
  3784. },
  3785. "type": "drupal-module",
  3786. "extra": {
  3787. "branch-alias": {
  3788. "dev-2.x": "2.x-dev",
  3789. "dev-8.x-1.x": "8.1.x-dev"
  3790. },
  3791. "drupal": {
  3792. "version": "8.x-2.0",
  3793. "datestamp": "1536328684",
  3794. "security-coverage": {
  3795. "status": "covered",
  3796. "message": "Covered by Drupal's security advisory policy"
  3797. }
  3798. }
  3799. },
  3800. "notification-url": "https://packages.drupal.org/8/downloads",
  3801. "license": [
  3802. "GPL-2.0+"
  3803. ],
  3804. "authors": [
  3805. {
  3806. "name": "Janez Urevc",
  3807. "homepage": "https://github.com/slashrsm",
  3808. "role": "Maintainer"
  3809. },
  3810. {
  3811. "name": "Primoz Hmeljak",
  3812. "homepage": "https://github.com/primsi",
  3813. "role": "Maintainer"
  3814. },
  3815. {
  3816. "name": "See other contributors",
  3817. "homepage": "https://www.drupal.org/node/1943336/committers",
  3818. "role": "contributor"
  3819. },
  3820. {
  3821. "name": "Primsi",
  3822. "homepage": "https://www.drupal.org/user/282629"
  3823. },
  3824. {
  3825. "name": "marcingy",
  3826. "homepage": "https://www.drupal.org/user/77320"
  3827. },
  3828. {
  3829. "name": "samuel.mortenson",
  3830. "homepage": "https://www.drupal.org/user/2582268"
  3831. },
  3832. {
  3833. "name": "slashrsm",
  3834. "homepage": "https://www.drupal.org/user/744628"
  3835. }
  3836. ],
  3837. "description": "Entity browsing and selecting component.",
  3838. "homepage": "http://drupal.org/project/entity_browser",
  3839. "support": {
  3840. "source": "http://cgit.drupalcode.org/entity_browser",
  3841. "issues": "http://drupal.org/project/issues/entity_browser",
  3842. "irc": "irc://irc.freenode.org/drupal-contribute"
  3843. }
  3844. },
  3845. {
  3846. "name": "drupal/entity_browser_enhanced",
  3847. "version": "1.0.0-rc3",
  3848. "source": {
  3849. "type": "git",
  3850. "url": "https://git.drupal.org/project/entity_browser_enhanced",
  3851. "reference": "8.x-1.0-rc3"
  3852. },
  3853. "dist": {
  3854. "type": "zip",
  3855. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0-rc3.zip",
  3856. "reference": "8.x-1.0-rc3",
  3857. "shasum": "041a93dac5ec9f74a8834faee60995c4db7d1e65"
  3858. },
  3859. "require": {
  3860. "drupal/core": "~8.0",
  3861. "drupal/entity_browser": "*"
  3862. },
  3863. "type": "drupal-module",
  3864. "extra": {
  3865. "branch-alias": {
  3866. "dev-1.x": "1.x-dev",
  3867. "dev-8.x-1.x": "8.1.x-dev"
  3868. },
  3869. "drupal": {
  3870. "version": "8.x-1.0-rc3",
  3871. "datestamp": "1528884525",
  3872. "security-coverage": {
  3873. "status": "not-covered",
  3874. "message": "RC releases are not covered by Drupal security advisories."
  3875. }
  3876. }
  3877. },
  3878. "notification-url": "https://packages.drupal.org/8/downloads",
  3879. "license": [
  3880. "GPL-2.0-or-later"
  3881. ],
  3882. "authors": [
  3883. {
  3884. "name": "Vardot",
  3885. "homepage": "https://www.drupal.org/vardot",
  3886. "role": "Maintainer"
  3887. },
  3888. {
  3889. "name": "RajabNatshah",
  3890. "homepage": "https://www.drupal.org/user/1414312"
  3891. }
  3892. ],
  3893. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  3894. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  3895. "support": {
  3896. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  3897. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  3898. }
  3899. },
  3900. {
  3901. "name": "drupal/entity_clone",
  3902. "version": "1.0.0-alpha2",
  3903. "source": {
  3904. "type": "git",
  3905. "url": "https://git.drupal.org/project/entity_clone",
  3906. "reference": "8.x-1.0-alpha2"
  3907. },
  3908. "dist": {
  3909. "type": "zip",
  3910. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-alpha2.zip",
  3911. "reference": "8.x-1.0-alpha2",
  3912. "shasum": "55a533e56853b78f949796040ee68881a68917b5"
  3913. },
  3914. "require": {
  3915. "drupal/core": "~8.0"
  3916. },
  3917. "type": "drupal-module",
  3918. "extra": {
  3919. "branch-alias": {
  3920. "dev-1.x": "1.x-dev"
  3921. },
  3922. "drupal": {
  3923. "version": "8.x-1.0-alpha2",
  3924. "datestamp": "1513145285",
  3925. "security-coverage": {
  3926. "status": "not-covered",
  3927. "message": "Alpha releases are not covered by Drupal security advisories."
  3928. }
  3929. }
  3930. },
  3931. "notification-url": "https://packages.drupal.org/8/downloads",
  3932. "license": [
  3933. "GPL-2.0-or-later"
  3934. ],
  3935. "authors": [
  3936. {
  3937. "name": "vpeltot",
  3938. "homepage": "https://www.drupal.org/user/1361586"
  3939. }
  3940. ],
  3941. "description": "Add a clone action for all entities",
  3942. "homepage": "https://www.drupal.org/project/entity_clone",
  3943. "support": {
  3944. "source": "http://cgit.drupalcode.org/entity_clone"
  3945. }
  3946. },
  3947. {
  3948. "name": "drupal/examples",
  3949. "version": "dev-1.x",
  3950. "source": {
  3951. "type": "git",
  3952. "url": "https://git.drupal.org/project/examples",
  3953. "reference": "0be75808520a7c921ad7c87ac1cc87d716f5dc51"
  3954. },
  3955. "require": {
  3956. "drupal/core": "*"
  3957. },
  3958. "require-dev": {
  3959. "drupal/stream_wrapper_example": "*"
  3960. },
  3961. "suggest": {
  3962. "drupal/devel": "Some modules will be able to pretty-print PHP with this module."
  3963. },
  3964. "type": "drupal-module",
  3965. "extra": {
  3966. "branch-alias": {
  3967. "dev-1.x": "1.x-dev"
  3968. },
  3969. "drupal": {
  3970. "version": "8.x-1.x-dev",
  3971. "datestamp": "1536200285",
  3972. "security-coverage": {
  3973. "status": "not-covered",
  3974. "message": "Project has not opted into security advisory coverage!"
  3975. }
  3976. }
  3977. },
  3978. "notification-url": "https://packages.drupal.org/8/downloads",
  3979. "license": [
  3980. "GPL-2.0+"
  3981. ],
  3982. "authors": [
  3983. {
  3984. "name": "Dave Reid",
  3985. "homepage": "https://www.drupal.org/user/53892"
  3986. },
  3987. {
  3988. "name": "Itangalo",
  3989. "homepage": "https://www.drupal.org/user/153998"
  3990. },
  3991. {
  3992. "name": "Mile23",
  3993. "homepage": "https://www.drupal.org/user/116231"
  3994. },
  3995. {
  3996. "name": "Torenware",
  3997. "homepage": "https://www.drupal.org/user/18784"
  3998. },
  3999. {
  4000. "name": "add1sun",
  4001. "homepage": "https://www.drupal.org/user/65088"
  4002. },
  4003. {
  4004. "name": "cyberswat",
  4005. "homepage": "https://www.drupal.org/user/27802"
  4006. },
  4007. {
  4008. "name": "ilo",
  4009. "homepage": "https://www.drupal.org/user/118449"
  4010. },
  4011. {
  4012. "name": "jhodgdon",
  4013. "homepage": "https://www.drupal.org/user/155601"
  4014. },
  4015. {
  4016. "name": "jn2",
  4017. "homepage": "https://www.drupal.org/user/1001014"
  4018. },
  4019. {
  4020. "name": "katbailey",
  4021. "homepage": "https://www.drupal.org/user/172987"
  4022. },
  4023. {
  4024. "name": "linclark",
  4025. "homepage": "https://www.drupal.org/user/396253"
  4026. },
  4027. {
  4028. "name": "marvil07",
  4029. "homepage": "https://www.drupal.org/user/132175"
  4030. },
  4031. {
  4032. "name": "mikl",
  4033. "homepage": "https://www.drupal.org/user/58679"
  4034. },
  4035. {
  4036. "name": "rfay",
  4037. "homepage": "https://www.drupal.org/user/30906"
  4038. },
  4039. {
  4040. "name": "socketwench",
  4041. "homepage": "https://www.drupal.org/user/65793"
  4042. },
  4043. {
  4044. "name": "yched",
  4045. "homepage": "https://www.drupal.org/user/39567"
  4046. }
  4047. ],
  4048. "description": "The Examples for Developers project aims to provide high-quality, well-documented API examples for a broad range of Drupal core functionality.",
  4049. "homepage": "https://www.drupal.org/project/examples",
  4050. "support": {
  4051. "source": "http://cgit.drupalcode.org/examples",
  4052. "issues": "https://www.drupal.org/project/issues/examples",
  4053. "documentation": "https://api.drupal.org/api/examples"
  4054. },
  4055. "time": "2018-09-10T23:01:03+00:00"
  4056. },
  4057. {
  4058. "name": "drupal/extlink",
  4059. "version": "1.1.0",
  4060. "source": {
  4061. "type": "git",
  4062. "url": "https://git.drupal.org/project/extlink",
  4063. "reference": "8.x-1.1"
  4064. },
  4065. "dist": {
  4066. "type": "zip",
  4067. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.1.zip",
  4068. "reference": "8.x-1.1",
  4069. "shasum": "0894f1cd12e2e1aa6b00ea4a6dd5e7234eb2b2b2"
  4070. },
  4071. "require": {
  4072. "drupal/core": "~8.0"
  4073. },
  4074. "type": "drupal-module",
  4075. "extra": {
  4076. "branch-alias": {
  4077. "dev-1.x": "1.x-dev"
  4078. },
  4079. "drupal": {
  4080. "version": "8.x-1.1",
  4081. "datestamp": "1524232684",
  4082. "security-coverage": {
  4083. "status": "covered",
  4084. "message": "Covered by Drupal's security advisory policy"
  4085. }
  4086. }
  4087. },
  4088. "notification-url": "https://packages.drupal.org/8/downloads",
  4089. "license": [
  4090. "GPL-2.0-or-later"
  4091. ],
  4092. "authors": [
  4093. {
  4094. "name": "elachlan",
  4095. "homepage": "https://www.drupal.org/user/1021502"
  4096. },
  4097. {
  4098. "name": "jjeff",
  4099. "homepage": "https://www.drupal.org/user/17190"
  4100. },
  4101. {
  4102. "name": "quicksketch",
  4103. "homepage": "https://www.drupal.org/user/35821"
  4104. }
  4105. ],
  4106. "description": "Modify behavior and appearance of external links.",
  4107. "homepage": "https://www.drupal.org/project/extlink",
  4108. "support": {
  4109. "source": "http://cgit.drupalcode.org/extlink"
  4110. }
  4111. },
  4112. {
  4113. "name": "drupal/field_group",
  4114. "version": "1.0.0",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://git.drupal.org/project/field_group",
  4118. "reference": "8.x-1.0"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-1.0.zip",
  4123. "reference": "8.x-1.0",
  4124. "shasum": "e8aa3fae5c3c5dec84644bb577996938d638a611"
  4125. },
  4126. "require": {
  4127. "drupal/core": "*"
  4128. },
  4129. "type": "drupal-module",
  4130. "extra": {
  4131. "branch-alias": {
  4132. "dev-1.x": "1.x-dev"
  4133. },
  4134. "drupal": {
  4135. "version": "8.x-1.0",
  4136. "datestamp": "1510352885",
  4137. "security-coverage": {
  4138. "status": "covered",
  4139. "message": "Covered by Drupal's security advisory policy"
  4140. }
  4141. }
  4142. },
  4143. "notification-url": "https://packages.drupal.org/8/downloads",
  4144. "license": [
  4145. "GPL-2.0+"
  4146. ],
  4147. "authors": [
  4148. {
  4149. "name": "Hydra",
  4150. "homepage": "https://www.drupal.org/user/647364"
  4151. },
  4152. {
  4153. "name": "Stalski",
  4154. "homepage": "https://www.drupal.org/user/322618"
  4155. },
  4156. {
  4157. "name": "jyve",
  4158. "homepage": "https://www.drupal.org/user/591438"
  4159. },
  4160. {
  4161. "name": "swentel",
  4162. "homepage": "https://www.drupal.org/user/107403"
  4163. },
  4164. {
  4165. "name": "zuuperman",
  4166. "homepage": "https://www.drupal.org/user/361625"
  4167. }
  4168. ],
  4169. "description": "Provides the field_group module.",
  4170. "homepage": "https://www.drupal.org/project/field_group",
  4171. "support": {
  4172. "source": "http://cgit.drupalcode.org/field_group"
  4173. }
  4174. },
  4175. {
  4176. "name": "drupal/file_mdm",
  4177. "version": "1.1.0",
  4178. "source": {
  4179. "type": "git",
  4180. "url": "https://git.drupal.org/project/file_mdm",
  4181. "reference": "8.x-1.1"
  4182. },
  4183. "dist": {
  4184. "type": "zip",
  4185. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-1.1.zip",
  4186. "reference": "8.x-1.1",
  4187. "shasum": "7f354aec6f89e3141c2aa1fb3747ad5d4578c13f"
  4188. },
  4189. "require": {
  4190. "drupal/core": "~8.0",
  4191. "lsolesen/pel": "0.9.6",
  4192. "phenx/php-font-lib": "0.5",
  4193. "php": ">=5.6"
  4194. },
  4195. "require-dev": {
  4196. "drupal/image_effects": "*"
  4197. },
  4198. "type": "drupal-module",
  4199. "extra": {
  4200. "branch-alias": {
  4201. "dev-1.x": "1.x-dev"
  4202. },
  4203. "drupal": {
  4204. "version": "8.x-1.1",
  4205. "datestamp": "1488273785",
  4206. "security-coverage": {
  4207. "status": "covered",
  4208. "message": "Covered by Drupal's security advisory policy"
  4209. }
  4210. }
  4211. },
  4212. "notification-url": "https://packages.drupal.org/8/downloads",
  4213. "license": [
  4214. "GPL-2.0-or-later"
  4215. ],
  4216. "authors": [
  4217. {
  4218. "name": "mondrake",
  4219. "homepage": "https://www.drupal.org/user/1307444"
  4220. }
  4221. ],
  4222. "description": "Provides a service to manage file metadata.",
  4223. "homepage": "https://www.drupal.org/project/file_mdm",
  4224. "support": {
  4225. "source": "http://cgit.drupalcode.org/file_mdm"
  4226. }
  4227. },
  4228. {
  4229. "name": "drupal/file_mdm_exif",
  4230. "version": "1.1.0",
  4231. "require": {
  4232. "drupal/core": "~8.0",
  4233. "drupal/file_mdm": "self.version"
  4234. },
  4235. "require-dev": {
  4236. "drupal/image_effects": "*"
  4237. },
  4238. "type": "metapackage",
  4239. "extra": {
  4240. "branch-alias": {
  4241. "dev-1.x": "1.x-dev"
  4242. },
  4243. "drupal": {
  4244. "version": "8.x-1.1",
  4245. "datestamp": "1488273785",
  4246. "security-coverage": {
  4247. "status": "covered",
  4248. "message": "Covered by Drupal's security advisory policy"
  4249. }
  4250. }
  4251. },
  4252. "notification-url": "https://packages.drupal.org/8/downloads",
  4253. "license": [
  4254. "GPL-2.0-or-later"
  4255. ],
  4256. "authors": [
  4257. {
  4258. "name": "mondrake",
  4259. "homepage": "https://www.drupal.org/user/1307444"
  4260. }
  4261. ],
  4262. "description": "Provides a file metadata plugin for EXIF image information.",
  4263. "homepage": "https://www.drupal.org/project/file_mdm",
  4264. "support": {
  4265. "source": "http://cgit.drupalcode.org/file_mdm"
  4266. }
  4267. },
  4268. {
  4269. "name": "drupal/filefield_sources",
  4270. "version": "dev-1.x",
  4271. "source": {
  4272. "type": "git",
  4273. "url": "https://git.drupal.org/project/filefield_sources",
  4274. "reference": "b19c6a839804f47587828d4a50e29e0720fa4c08"
  4275. },
  4276. "require": {
  4277. "drupal/core": "*"
  4278. },
  4279. "type": "drupal-module",
  4280. "extra": {
  4281. "branch-alias": {
  4282. "dev-1.x": "1.x-dev"
  4283. },
  4284. "drupal": {
  4285. "version": "8.x-1.x-dev",
  4286. "datestamp": "1487711283",
  4287. "security-coverage": {
  4288. "status": "not-covered",
  4289. "message": "Dev releases are not covered by Drupal security advisories."
  4290. }
  4291. }
  4292. },
  4293. "notification-url": "https://packages.drupal.org/8/downloads",
  4294. "license": [
  4295. "GPL-2.0-or-later"
  4296. ],
  4297. "authors": [
  4298. {
  4299. "name": "profak",
  4300. "homepage": "https://www.drupal.org/user/782534"
  4301. },
  4302. {
  4303. "name": "quicksketch",
  4304. "homepage": "https://www.drupal.org/user/35821"
  4305. }
  4306. ],
  4307. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4308. "homepage": "https://www.drupal.org/project/filefield_sources",
  4309. "support": {
  4310. "source": "http://cgit.drupalcode.org/filefield_sources"
  4311. },
  4312. "time": "2017-02-21T21:07:00+00:00"
  4313. },
  4314. {
  4315. "name": "drupal/filter_perms",
  4316. "version": "dev-1.x",
  4317. "source": {
  4318. "type": "git",
  4319. "url": "https://git.drupal.org/project/filter_perms",
  4320. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4321. },
  4322. "require": {
  4323. "drupal/core": "*"
  4324. },
  4325. "type": "drupal-module",
  4326. "extra": {
  4327. "branch-alias": {
  4328. "dev-1.x": "1.x-dev"
  4329. },
  4330. "drupal": {
  4331. "version": "8.x-1.x-dev",
  4332. "datestamp": "1469645939",
  4333. "security-coverage": {
  4334. "status": "not-covered",
  4335. "message": "Dev releases are not covered by Drupal security advisories."
  4336. }
  4337. }
  4338. },
  4339. "notification-url": "https://packages.drupal.org/8/downloads",
  4340. "license": [
  4341. "GPL-2.0-or-later"
  4342. ],
  4343. "authors": [
  4344. {
  4345. "name": "cYu",
  4346. "homepage": "https://www.drupal.org/user/202205"
  4347. },
  4348. {
  4349. "name": "deekayen",
  4350. "homepage": "https://www.drupal.org/user/972"
  4351. },
  4352. {
  4353. "name": "willzyx",
  4354. "homepage": "https://www.drupal.org/user/1043862"
  4355. }
  4356. ],
  4357. "description": "Provides role and module filters to simplify the user permissions page.",
  4358. "homepage": "https://www.drupal.org/project/filter_perms",
  4359. "support": {
  4360. "source": "http://cgit.drupalcode.org/filter_perms"
  4361. },
  4362. "time": "2016-07-27T19:01:11+00:00"
  4363. },
  4364. {
  4365. "name": "drupal/honeypot",
  4366. "version": "1.29.0",
  4367. "source": {
  4368. "type": "git",
  4369. "url": "https://git.drupal.org/project/honeypot",
  4370. "reference": "8.x-1.29"
  4371. },
  4372. "dist": {
  4373. "type": "zip",
  4374. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4375. "reference": "8.x-1.29",
  4376. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4377. },
  4378. "require": {
  4379. "drupal/core": "~8.0"
  4380. },
  4381. "type": "drupal-module",
  4382. "extra": {
  4383. "branch-alias": {
  4384. "dev-1.x": "1.x-dev"
  4385. },
  4386. "drupal": {
  4387. "version": "8.x-1.29",
  4388. "datestamp": "1536179280",
  4389. "security-coverage": {
  4390. "status": "covered",
  4391. "message": "Covered by Drupal's security advisory policy"
  4392. }
  4393. }
  4394. },
  4395. "notification-url": "https://packages.drupal.org/8/downloads",
  4396. "license": [
  4397. "GPL-2.0+"
  4398. ],
  4399. "authors": [
  4400. {
  4401. "name": "Jeff Geerling",
  4402. "homepage": "https://www.drupal.org/user/389011",
  4403. "email": "geerlingguy@mac.com"
  4404. }
  4405. ],
  4406. "description": "Mitigates spam form submissions using the honeypot method.",
  4407. "homepage": "https://www.drupal.org/project/honeypot",
  4408. "keywords": [
  4409. "deterrent",
  4410. "form",
  4411. "honeypot",
  4412. "honeytrap",
  4413. "php",
  4414. "spam"
  4415. ],
  4416. "support": {
  4417. "source": "http://cgit.drupalcode.org/honeypot"
  4418. }
  4419. },
  4420. {
  4421. "name": "drupal/imagemagick",
  4422. "version": "2.3.0",
  4423. "source": {
  4424. "type": "git",
  4425. "url": "https://git.drupal.org/project/imagemagick",
  4426. "reference": "8.x-2.3"
  4427. },
  4428. "dist": {
  4429. "type": "zip",
  4430. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-2.3.zip",
  4431. "reference": "8.x-2.3",
  4432. "shasum": "8359921d4700e954364c2633332c20579bb75a34"
  4433. },
  4434. "require": {
  4435. "drupal/core": "^8.3",
  4436. "drupal/file_mdm": "^1.1",
  4437. "drupal/file_mdm_exif": "^1.1"
  4438. },
  4439. "type": "drupal-module",
  4440. "extra": {
  4441. "branch-alias": {
  4442. "dev-2.x": "2.x-dev"
  4443. },
  4444. "drupal": {
  4445. "version": "8.x-2.3",
  4446. "datestamp": "1520958305",
  4447. "security-coverage": {
  4448. "status": "covered",
  4449. "message": "Covered by Drupal's security advisory policy"
  4450. }
  4451. }
  4452. },
  4453. "notification-url": "https://packages.drupal.org/8/downloads",
  4454. "license": [
  4455. "GPL-2.0-or-later"
  4456. ],
  4457. "authors": [
  4458. {
  4459. "name": "Chris Charlton",
  4460. "homepage": "https://www.drupal.org/user/17089"
  4461. },
  4462. {
  4463. "name": "chx",
  4464. "homepage": "https://www.drupal.org/user/9446"
  4465. },
  4466. {
  4467. "name": "claudiu.cristea",
  4468. "homepage": "https://www.drupal.org/user/56348"
  4469. },
  4470. {
  4471. "name": "dman",
  4472. "homepage": "https://www.drupal.org/user/33240"
  4473. },
  4474. {
  4475. "name": "dopry",
  4476. "homepage": "https://www.drupal.org/user/22202"
  4477. },
  4478. {
  4479. "name": "drewish",
  4480. "homepage": "https://www.drupal.org/user/34869"
  4481. },
  4482. {
  4483. "name": "gdl",
  4484. "homepage": "https://www.drupal.org/user/507326"
  4485. },
  4486. {
  4487. "name": "mondrake",
  4488. "homepage": "https://www.drupal.org/user/1307444"
  4489. },
  4490. {
  4491. "name": "quicksketch",
  4492. "homepage": "https://www.drupal.org/user/35821"
  4493. },
  4494. {
  4495. "name": "sun",
  4496. "homepage": "https://www.drupal.org/user/54136"
  4497. },
  4498. {
  4499. "name": "walkah",
  4500. "homepage": "https://www.drupal.org/user/1531"
  4501. }
  4502. ],
  4503. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4504. "homepage": "https://www.drupal.org/project/imagemagick",
  4505. "support": {
  4506. "source": "http://cgit.drupalcode.org/imagemagick"
  4507. }
  4508. },
  4509. {
  4510. "name": "drupal/inline_entity_form",
  4511. "version": "1.0.0-rc1",
  4512. "source": {
  4513. "type": "git",
  4514. "url": "https://git.drupal.org/project/inline_entity_form",
  4515. "reference": "8.x-1.0-rc1"
  4516. },
  4517. "dist": {
  4518. "type": "zip",
  4519. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc1.zip",
  4520. "reference": "8.x-1.0-rc1",
  4521. "shasum": "898789fb6a0662fc2572b87f8d0654a0241473f9"
  4522. },
  4523. "require": {
  4524. "drupal/core": "~8.0"
  4525. },
  4526. "require-dev": {
  4527. "drupal/entity_reference_revisions": "*"
  4528. },
  4529. "type": "drupal-module",
  4530. "extra": {
  4531. "branch-alias": {
  4532. "dev-1.x": "1.x-dev"
  4533. },
  4534. "drupal": {
  4535. "version": "8.x-1.0-rc1",
  4536. "datestamp": "1527030784",
  4537. "security-coverage": {
  4538. "status": "not-covered",
  4539. "message": "RC releases are not covered by Drupal security advisories."
  4540. }
  4541. }
  4542. },
  4543. "notification-url": "https://packages.drupal.org/8/downloads",
  4544. "license": [
  4545. "GPL-2.0+"
  4546. ],
  4547. "authors": [
  4548. {
  4549. "name": "bojanz",
  4550. "homepage": "https://www.drupal.org/user/86106"
  4551. },
  4552. {
  4553. "name": "dawehner",
  4554. "homepage": "https://www.drupal.org/user/99340"
  4555. },
  4556. {
  4557. "name": "rszrama",
  4558. "homepage": "https://www.drupal.org/user/49344"
  4559. },
  4560. {
  4561. "name": "slashrsm",
  4562. "homepage": "https://www.drupal.org/user/744628"
  4563. },
  4564. {
  4565. "name": "webflo",
  4566. "homepage": "https://www.drupal.org/user/254778"
  4567. }
  4568. ],
  4569. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4570. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4571. "support": {
  4572. "source": "http://cgit.drupalcode.org/inline_entity_form"
  4573. }
  4574. },
  4575. {
  4576. "name": "drupal/kint",
  4577. "version": "1.2.0",
  4578. "require": {
  4579. "drupal/core": "~8.0",
  4580. "drupal/devel": "self.version"
  4581. },
  4582. "type": "metapackage",
  4583. "extra": {
  4584. "branch-alias": {
  4585. "dev-1.x": "1.x-dev"
  4586. },
  4587. "drupal": {
  4588. "version": "8.x-1.2",
  4589. "datestamp": "1507197844",
  4590. "security-coverage": {
  4591. "status": "covered",
  4592. "message": "Covered by Drupal's security advisory policy"
  4593. }
  4594. }
  4595. },
  4596. "notification-url": "https://packages.drupal.org/8/downloads",
  4597. "license": [
  4598. "GPL-2.0-or-later"
  4599. ],
  4600. "authors": [
  4601. {
  4602. "name": "catch",
  4603. "homepage": "https://www.drupal.org/user/35733"
  4604. },
  4605. {
  4606. "name": "juampynr",
  4607. "homepage": "https://www.drupal.org/user/682736"
  4608. },
  4609. {
  4610. "name": "lussoluca",
  4611. "homepage": "https://www.drupal.org/user/138068"
  4612. },
  4613. {
  4614. "name": "moshe weitzman",
  4615. "homepage": "https://www.drupal.org/user/23"
  4616. },
  4617. {
  4618. "name": "pcambra",
  4619. "homepage": "https://www.drupal.org/user/122101"
  4620. },
  4621. {
  4622. "name": "salvis",
  4623. "homepage": "https://www.drupal.org/user/82964"
  4624. },
  4625. {
  4626. "name": "willzyx",
  4627. "homepage": "https://www.drupal.org/user/1043862"
  4628. }
  4629. ],
  4630. "description": "Wrapper for Kint debugging tool",
  4631. "homepage": "https://www.drupal.org/project/devel",
  4632. "support": {
  4633. "source": "http://cgit.drupalcode.org/devel"
  4634. }
  4635. },
  4636. {
  4637. "name": "drupal/link_attributes",
  4638. "version": "1.5.0",
  4639. "source": {
  4640. "type": "git",
  4641. "url": "https://git.drupal.org/project/link_attributes",
  4642. "reference": "8.x-1.5"
  4643. },
  4644. "dist": {
  4645. "type": "zip",
  4646. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.5.zip",
  4647. "reference": "8.x-1.5",
  4648. "shasum": "48c0e6ac2c3f4843372abb394c1aabe380dfa604"
  4649. },
  4650. "require": {
  4651. "drupal/core": "*"
  4652. },
  4653. "type": "drupal-module",
  4654. "extra": {
  4655. "branch-alias": {
  4656. "dev-1.x": "1.x-dev"
  4657. },
  4658. "drupal": {
  4659. "version": "8.x-1.5",
  4660. "datestamp": "1537173781",
  4661. "security-coverage": {
  4662. "status": "covered",
  4663. "message": "Covered by Drupal's security advisory policy"
  4664. }
  4665. }
  4666. },
  4667. "notification-url": "https://packages.drupal.org/8/downloads",
  4668. "license": [
  4669. "GPL-2.0-or-later"
  4670. ],
  4671. "authors": [
  4672. {
  4673. "name": "larowlan",
  4674. "homepage": "https://www.drupal.org/user/395439"
  4675. }
  4676. ],
  4677. "description": "Provides a widget to allow settings of link attributes for menu links.",
  4678. "homepage": "https://www.drupal.org/project/link_attributes",
  4679. "support": {
  4680. "source": "http://cgit.drupalcode.org/link_attributes"
  4681. }
  4682. },
  4683. {
  4684. "name": "drupal/linkit",
  4685. "version": "4.3.0",
  4686. "source": {
  4687. "type": "git",
  4688. "url": "https://git.drupal.org/project/linkit",
  4689. "reference": "8.x-4.3"
  4690. },
  4691. "dist": {
  4692. "type": "zip",
  4693. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  4694. "reference": "8.x-4.3",
  4695. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  4696. },
  4697. "require": {
  4698. "drupal/core": "~8.0"
  4699. },
  4700. "type": "drupal-module",
  4701. "extra": {
  4702. "branch-alias": {
  4703. "dev-4.x": "4.x-dev"
  4704. },
  4705. "drupal": {
  4706. "version": "8.x-4.3",
  4707. "datestamp": "1490205830",
  4708. "security-coverage": {
  4709. "status": "covered",
  4710. "message": "Covered by Drupal's security advisory policy"
  4711. }
  4712. }
  4713. },
  4714. "notification-url": "https://packages.drupal.org/8/downloads",
  4715. "license": [
  4716. "GPL-2.0+"
  4717. ],
  4718. "authors": [
  4719. {
  4720. "name": "Emil Stjerneman",
  4721. "homepage": "https://stjerneman.com",
  4722. "email": "emil@stjerneman.com",
  4723. "role": "Maintainer"
  4724. }
  4725. ],
  4726. "description": "Linkit - Enriched linking experience",
  4727. "homepage": "http://drupal.org/project/linkit",
  4728. "support": {
  4729. "source": "http://cgit.drupalcode.org/linkit",
  4730. "issues": "http://drupal.org/project/linkit"
  4731. }
  4732. },
  4733. {
  4734. "name": "drupal/login_destination",
  4735. "version": "dev-1.x",
  4736. "source": {
  4737. "type": "git",
  4738. "url": "https://git.drupal.org/project/login_destination",
  4739. "reference": "54be8b89fdc073ca40af6b9b2eeb050e0aeb7908"
  4740. },
  4741. "require": {
  4742. "drupal/core": "~8.0"
  4743. },
  4744. "type": "drupal-module",
  4745. "extra": {
  4746. "branch-alias": {
  4747. "dev-1.x": "1.x-dev"
  4748. },
  4749. "drupal": {
  4750. "version": "8.x-1.x-dev",
  4751. "datestamp": "1514805485",
  4752. "security-coverage": {
  4753. "status": "not-covered",
  4754. "message": "Dev releases are not covered by Drupal security advisories."
  4755. }
  4756. }
  4757. },
  4758. "notification-url": "https://packages.drupal.org/8/downloads",
  4759. "license": [
  4760. "GPL-2.0-or-later"
  4761. ],
  4762. "authors": [
  4763. {
  4764. "name": "Oliver Huynh",
  4765. "homepage": "https://www.drupal.org/user/243730"
  4766. },
  4767. {
  4768. "name": "akashjain132",
  4769. "homepage": "https://www.drupal.org/user/2622667"
  4770. },
  4771. {
  4772. "name": "beautifulmind",
  4773. "homepage": "https://www.drupal.org/user/219482"
  4774. },
  4775. {
  4776. "name": "ddrozdik",
  4777. "homepage": "https://www.drupal.org/user/574124"
  4778. },
  4779. {
  4780. "name": "jng12",
  4781. "homepage": "https://www.drupal.org/user/204316"
  4782. },
  4783. {
  4784. "name": "marcp",
  4785. "homepage": "https://www.drupal.org/user/20885"
  4786. },
  4787. {
  4788. "name": "mithy",
  4789. "homepage": "https://www.drupal.org/user/258911"
  4790. },
  4791. {
  4792. "name": "moshe weitzman",
  4793. "homepage": "https://www.drupal.org/user/23"
  4794. },
  4795. {
  4796. "name": "quantumized",
  4797. "homepage": "https://www.drupal.org/user/61221"
  4798. },
  4799. {
  4800. "name": "rsvelko",
  4801. "homepage": "https://www.drupal.org/user/337401"
  4802. }
  4803. ],
  4804. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  4805. "homepage": "https://www.drupal.org/project/login_destination",
  4806. "support": {
  4807. "source": "http://cgit.drupalcode.org/login_destination"
  4808. },
  4809. "time": "2018-01-01T11:13:09+00:00"
  4810. },
  4811. {
  4812. "name": "drupal/maillog",
  4813. "version": "dev-1.x",
  4814. "source": {
  4815. "type": "git",
  4816. "url": "https://git.drupal.org/project/maillog",
  4817. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4818. },
  4819. "require": {
  4820. "drupal/core": "*"
  4821. },
  4822. "type": "drupal-module",
  4823. "extra": {
  4824. "branch-alias": {
  4825. "dev-1.x": "1.x-dev"
  4826. },
  4827. "drupal": {
  4828. "version": "8.x-1.x-dev",
  4829. "datestamp": "1470431939",
  4830. "security-coverage": {
  4831. "status": "not-covered",
  4832. "message": "Project has not opted into security advisory coverage!"
  4833. }
  4834. }
  4835. },
  4836. "notification-url": "https://packages.drupal.org/8/downloads",
  4837. "license": [
  4838. "GPL-2.0-or-later"
  4839. ],
  4840. "authors": [
  4841. {
  4842. "name": "Berdir",
  4843. "homepage": "https://www.drupal.org/user/214652"
  4844. },
  4845. {
  4846. "name": "DamienMcKenna",
  4847. "homepage": "https://www.drupal.org/user/108450"
  4848. },
  4849. {
  4850. "name": "miro_dietiker",
  4851. "homepage": "https://www.drupal.org/user/227761"
  4852. },
  4853. {
  4854. "name": "pluess",
  4855. "homepage": "https://www.drupal.org/user/84659"
  4856. }
  4857. ],
  4858. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4859. "homepage": "https://www.drupal.org/project/maillog",
  4860. "support": {
  4861. "source": "http://cgit.drupalcode.org/maillog"
  4862. },
  4863. "time": "2016-08-05T21:18:07+00:00"
  4864. },
  4865. {
  4866. "name": "drupal/mailsystem",
  4867. "version": "4.1.0",
  4868. "source": {
  4869. "type": "git",
  4870. "url": "https://git.drupal.org/project/mailsystem",
  4871. "reference": "8.x-4.1"
  4872. },
  4873. "dist": {
  4874. "type": "zip",
  4875. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.1.zip",
  4876. "reference": "8.x-4.1",
  4877. "shasum": "318b87f1fdf96e6db30b04a98108af02a0fc3dcc"
  4878. },
  4879. "require": {
  4880. "drupal/core": "^8.0.5"
  4881. },
  4882. "type": "drupal-module",
  4883. "extra": {
  4884. "branch-alias": {
  4885. "dev-4.x": "4.x-dev"
  4886. },
  4887. "drupal": {
  4888. "version": "8.x-4.1",
  4889. "datestamp": "1467993646",
  4890. "security-coverage": {
  4891. "status": "covered",
  4892. "message": "Covered by Drupal's security advisory policy"
  4893. }
  4894. }
  4895. },
  4896. "notification-url": "https://packages.drupal.org/8/downloads",
  4897. "license": [
  4898. "GPL-2.0+"
  4899. ],
  4900. "authors": [
  4901. {
  4902. "name": "Berdir",
  4903. "homepage": "https://www.drupal.org/user/214652"
  4904. },
  4905. {
  4906. "name": "Les Lim",
  4907. "homepage": "https://www.drupal.org/user/84263"
  4908. },
  4909. {
  4910. "name": "Nafes",
  4911. "homepage": "https://www.drupal.org/user/2489926"
  4912. },
  4913. {
  4914. "name": "miro_dietiker",
  4915. "homepage": "https://www.drupal.org/user/227761"
  4916. },
  4917. {
  4918. "name": "pillarsdotnet",
  4919. "homepage": "https://www.drupal.org/user/36148"
  4920. }
  4921. ],
  4922. "description": "Mail System",
  4923. "homepage": "https://www.drupal.org/project/mailsystem",
  4924. "support": {
  4925. "source": "http://cgit.drupalcode.org/mailsystem"
  4926. }
  4927. },
  4928. {
  4929. "name": "drupal/matomo",
  4930. "version": "1.7.0",
  4931. "source": {
  4932. "type": "git",
  4933. "url": "https://git.drupal.org/project/matomo",
  4934. "reference": "8.x-1.7"
  4935. },
  4936. "dist": {
  4937. "type": "zip",
  4938. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.7.zip",
  4939. "reference": "8.x-1.7",
  4940. "shasum": "6b7dbc8c76800a6dadb7568cf2a3f3efdde88e13"
  4941. },
  4942. "require": {
  4943. "drupal/core": "~8.0"
  4944. },
  4945. "require-dev": {
  4946. "drupal/php": "*",
  4947. "drupal/token": "*"
  4948. },
  4949. "type": "drupal-module",
  4950. "extra": {
  4951. "branch-alias": {
  4952. "dev-1.x": "1.x-dev"
  4953. },
  4954. "drupal": {
  4955. "version": "8.x-1.7",
  4956. "datestamp": "1531470197",
  4957. "security-coverage": {
  4958. "status": "covered",
  4959. "message": "Covered by Drupal's security advisory policy"
  4960. }
  4961. }
  4962. },
  4963. "notification-url": "https://packages.drupal.org/8/downloads",
  4964. "license": [
  4965. "GPL-2.0+"
  4966. ],
  4967. "authors": [
  4968. {
  4969. "name": "hass",
  4970. "homepage": "https://www.drupal.org/u/hass"
  4971. },
  4972. {
  4973. "name": "See other contributors",
  4974. "homepage": "https://www.drupal.org/node/247808/committers"
  4975. }
  4976. ],
  4977. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4978. "homepage": "https://www.drupal.org/project/matomo",
  4979. "support": {
  4980. "source": "http://git.drupal.org/project/matomo.git",
  4981. "issues": "https://www.drupal.org/project/issues/matomo"
  4982. }
  4983. },
  4984. {
  4985. "name": "drupal/maxlength",
  4986. "version": "1.0.0-beta2",
  4987. "source": {
  4988. "type": "git",
  4989. "url": "https://git.drupal.org/project/maxlength",
  4990. "reference": "8.x-1.0-beta2"
  4991. },
  4992. "dist": {
  4993. "type": "zip",
  4994. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-beta2.zip",
  4995. "reference": "8.x-1.0-beta2",
  4996. "shasum": "27f7374e55ebdcc696d22d98be8cf4cf9bf58204"
  4997. },
  4998. "require": {
  4999. "drupal/core": "~8.0"
  5000. },
  5001. "type": "drupal-module",
  5002. "extra": {
  5003. "branch-alias": {
  5004. "dev-1.x": "1.x-dev"
  5005. },
  5006. "drupal": {
  5007. "version": "8.x-1.0-beta2",
  5008. "datestamp": "1527856384",
  5009. "security-coverage": {
  5010. "status": "not-covered",
  5011. "message": "Beta releases are not covered by Drupal security advisories."
  5012. }
  5013. }
  5014. },
  5015. "notification-url": "https://packages.drupal.org/8/downloads",
  5016. "license": [
  5017. "GPL-2.0-or-later"
  5018. ],
  5019. "authors": [
  5020. {
  5021. "name": "Aron Novak",
  5022. "homepage": "https://www.drupal.org/user/61864"
  5023. },
  5024. {
  5025. "name": "Schnitzel",
  5026. "homepage": "https://www.drupal.org/user/643820"
  5027. },
  5028. {
  5029. "name": "a_c_m",
  5030. "homepage": "https://www.drupal.org/user/195063"
  5031. },
  5032. {
  5033. "name": "artur.thiessen",
  5034. "homepage": "https://www.drupal.org/user/2390554"
  5035. },
  5036. {
  5037. "name": "barneytech",
  5038. "homepage": "https://www.drupal.org/user/669922"
  5039. },
  5040. {
  5041. "name": "claudiu_cristea",
  5042. "homepage": "https://www.drupal.org/user/2623935"
  5043. },
  5044. {
  5045. "name": "dawehner",
  5046. "homepage": "https://www.drupal.org/user/99340"
  5047. },
  5048. {
  5049. "name": "derhasi",
  5050. "homepage": "https://www.drupal.org/user/83474"
  5051. },
  5052. {
  5053. "name": "frjo",
  5054. "homepage": "https://www.drupal.org/user/5546"
  5055. },
  5056. {
  5057. "name": "hefox",
  5058. "homepage": "https://www.drupal.org/user/426416"
  5059. },
  5060. {
  5061. "name": "jm.federico",
  5062. "homepage": "https://www.drupal.org/user/509892"
  5063. },
  5064. {
  5065. "name": "k4v",
  5066. "homepage": "https://www.drupal.org/user/744246"
  5067. },
  5068. {
  5069. "name": "mariano73",
  5070. "homepage": "https://www.drupal.org/user/1324866"
  5071. },
  5072. {
  5073. "name": "mariuss",
  5074. "homepage": "https://www.drupal.org/user/28539"
  5075. },
  5076. {
  5077. "name": "sanduhrs",
  5078. "homepage": "https://www.drupal.org/user/28074"
  5079. },
  5080. {
  5081. "name": "vasi1186",
  5082. "homepage": "https://www.drupal.org/user/342104"
  5083. }
  5084. ],
  5085. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  5086. "homepage": "https://www.drupal.org/project/maxlength",
  5087. "support": {
  5088. "source": "http://cgit.drupalcode.org/maxlength"
  5089. }
  5090. },
  5091. {
  5092. "name": "drupal/menu_admin_per_menu",
  5093. "version": "1.0.0",
  5094. "source": {
  5095. "type": "git",
  5096. "url": "https://git.drupal.org/project/menu_admin_per_menu",
  5097. "reference": "8.x-1.0"
  5098. },
  5099. "dist": {
  5100. "type": "zip",
  5101. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  5102. "reference": "8.x-1.0",
  5103. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  5104. },
  5105. "require": {
  5106. "drupal/core": "*"
  5107. },
  5108. "type": "drupal-module",
  5109. "extra": {
  5110. "branch-alias": {
  5111. "dev-1.x": "1.x-dev"
  5112. },
  5113. "drupal": {
  5114. "version": "8.x-1.0",
  5115. "datestamp": "1507184944",
  5116. "security-coverage": {
  5117. "status": "covered",
  5118. "message": "Covered by Drupal's security advisory policy"
  5119. }
  5120. }
  5121. },
  5122. "notification-url": "https://packages.drupal.org/8/downloads",
  5123. "license": [
  5124. "GPL-2.0-or-later"
  5125. ],
  5126. "authors": [
  5127. {
  5128. "name": "anrikun",
  5129. "homepage": "https://www.drupal.org/user/410199"
  5130. },
  5131. {
  5132. "name": "mkdok",
  5133. "homepage": "https://www.drupal.org/user/3308753"
  5134. }
  5135. ],
  5136. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5137. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5138. "support": {
  5139. "source": "http://cgit.drupalcode.org/menu_admin_per_menu"
  5140. }
  5141. },
  5142. {
  5143. "name": "drupal/menu_block",
  5144. "version": "1.5.0",
  5145. "source": {
  5146. "type": "git",
  5147. "url": "https://git.drupal.org/project/menu_block",
  5148. "reference": "8.x-1.5"
  5149. },
  5150. "dist": {
  5151. "type": "zip",
  5152. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip",
  5153. "reference": "8.x-1.5",
  5154. "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b"
  5155. },
  5156. "require": {
  5157. "drupal/core": "*"
  5158. },
  5159. "type": "drupal-module",
  5160. "extra": {
  5161. "branch-alias": {
  5162. "dev-1.x": "1.x-dev"
  5163. },
  5164. "drupal": {
  5165. "version": "8.x-1.5",
  5166. "datestamp": "1525200184",
  5167. "security-coverage": {
  5168. "status": "covered",
  5169. "message": "Covered by Drupal's security advisory policy"
  5170. }
  5171. }
  5172. },
  5173. "notification-url": "https://packages.drupal.org/8/downloads",
  5174. "license": [
  5175. "GPL-2.0-or-later"
  5176. ],
  5177. "authors": [
  5178. {
  5179. "name": "Dave Reid",
  5180. "homepage": "https://www.drupal.org/user/53892"
  5181. },
  5182. {
  5183. "name": "JohnAlbin",
  5184. "homepage": "https://www.drupal.org/user/32095"
  5185. },
  5186. {
  5187. "name": "joelpittet",
  5188. "homepage": "https://www.drupal.org/user/160302"
  5189. },
  5190. {
  5191. "name": "kim.pepper",
  5192. "homepage": "https://www.drupal.org/user/370574"
  5193. },
  5194. {
  5195. "name": "rrrob",
  5196. "homepage": "https://www.drupal.org/user/273533"
  5197. }
  5198. ],
  5199. "description": "Provides configurable blocks of menu links.",
  5200. "homepage": "https://www.drupal.org/project/menu_block",
  5201. "support": {
  5202. "source": "http://cgit.drupalcode.org/menu_block"
  5203. }
  5204. },
  5205. {
  5206. "name": "drupal/menu_position",
  5207. "version": "dev-1.x",
  5208. "source": {
  5209. "type": "git",
  5210. "url": "https://git.drupal.org/project/menu_position",
  5211. "reference": "11191df8dc7bdb1ef215c3f623c098555f571552"
  5212. },
  5213. "require": {
  5214. "drupal/core": "~8.0"
  5215. },
  5216. "type": "drupal-module",
  5217. "extra": {
  5218. "branch-alias": {
  5219. "dev-1.x": "1.x-dev"
  5220. },
  5221. "drupal": {
  5222. "version": "8.x-1.x-dev",
  5223. "datestamp": "1520418485",
  5224. "security-coverage": {
  5225. "status": "not-covered",
  5226. "message": "Dev releases are not covered by Drupal security advisories."
  5227. }
  5228. }
  5229. },
  5230. "notification-url": "https://packages.drupal.org/8/downloads",
  5231. "license": [
  5232. "GPL-2.0+"
  5233. ],
  5234. "authors": [
  5235. {
  5236. "name": "BarisW",
  5237. "homepage": "https://www.drupal.org/user/107229"
  5238. },
  5239. {
  5240. "name": "JohnAlbin",
  5241. "homepage": "https://www.drupal.org/user/32095"
  5242. },
  5243. {
  5244. "name": "lbainbridge",
  5245. "homepage": "https://www.drupal.org/user/2406996"
  5246. }
  5247. ],
  5248. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5249. "homepage": "https://www.drupal.org/project/menu_position",
  5250. "support": {
  5251. "source": "http://cgit.drupalcode.org/menu_position",
  5252. "issues": "https://www.drupal.org/project/issues/menu_position"
  5253. },
  5254. "time": "2018-08-02T13:52:40+00:00"
  5255. },
  5256. {
  5257. "name": "drupal/migrate_plus",
  5258. "version": "4.0.0",
  5259. "source": {
  5260. "type": "git",
  5261. "url": "https://git.drupal.org/project/migrate_plus",
  5262. "reference": "8.x-4.0"
  5263. },
  5264. "dist": {
  5265. "type": "zip",
  5266. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.0.zip",
  5267. "reference": "8.x-4.0",
  5268. "shasum": "63dad289defe8298aa5ca5e30062fe9761d19eca"
  5269. },
  5270. "require": {
  5271. "drupal/core": "^8.3"
  5272. },
  5273. "require-dev": {
  5274. "drupal/migrate_example_advanced_setup": "*",
  5275. "drupal/migrate_example_setup": "*"
  5276. },
  5277. "suggest": {
  5278. "ext-soap": "*",
  5279. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  5280. },
  5281. "type": "drupal-module",
  5282. "extra": {
  5283. "branch-alias": {
  5284. "dev-4.x": "4.x-dev"
  5285. },
  5286. "drupal": {
  5287. "version": "8.x-4.0",
  5288. "datestamp": "1536264180",
  5289. "security-coverage": {
  5290. "status": "covered",
  5291. "message": "Covered by Drupal's security advisory policy"
  5292. }
  5293. }
  5294. },
  5295. "notification-url": "https://packages.drupal.org/8/downloads",
  5296. "license": [
  5297. "GPL-2.0+"
  5298. ],
  5299. "authors": [
  5300. {
  5301. "name": "Mike Ryan",
  5302. "homepage": "https://www.drupal.org/u/mikeryan",
  5303. "role": "Maintainer"
  5304. },
  5305. {
  5306. "name": "mikeryan",
  5307. "homepage": "https://www.drupal.org/user/4420"
  5308. }
  5309. ],
  5310. "description": "Enhancements to core migration support.",
  5311. "homepage": "https://www.drupal.org/project/migrate_plus",
  5312. "support": {
  5313. "source": "https://cgit.drupalcode.org/migrate_plus",
  5314. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  5315. "irc": "irc://irc.freenode.org/drupal-migrate"
  5316. }
  5317. },
  5318. {
  5319. "name": "drupal/migrate_tools",
  5320. "version": "dev-4.x",
  5321. "source": {
  5322. "type": "git",
  5323. "url": "https://git.drupal.org/project/migrate_tools",
  5324. "reference": "9fc2977a80ad46dab0caa11682d269fe3bfe4985"
  5325. },
  5326. "require": {
  5327. "drupal/core": "^8.3",
  5328. "drupal/migrate_plus": "^4"
  5329. },
  5330. "require-dev": {
  5331. "drupal/coder": "^8",
  5332. "drupal/migrate_source_csv": "^2.2"
  5333. },
  5334. "type": "drupal-module",
  5335. "extra": {
  5336. "branch-alias": {
  5337. "dev-4.x": "4.x-dev"
  5338. },
  5339. "drupal": {
  5340. "version": "8.x-4.0+4-dev",
  5341. "datestamp": "1540829581",
  5342. "security-coverage": {
  5343. "status": "not-covered",
  5344. "message": "Dev releases are not covered by Drupal security advisories."
  5345. }
  5346. },
  5347. "drush": {
  5348. "services": {
  5349. "drush.services.yml": "^9"
  5350. }
  5351. }
  5352. },
  5353. "notification-url": "https://packages.drupal.org/8/downloads",
  5354. "license": [
  5355. "GPL-2.0+"
  5356. ],
  5357. "authors": [
  5358. {
  5359. "name": "heddn",
  5360. "homepage": "https://www.drupal.org/user/1463982"
  5361. },
  5362. {
  5363. "name": "mikeryan",
  5364. "homepage": "https://www.drupal.org/user/4420"
  5365. },
  5366. {
  5367. "name": "moshe weitzman",
  5368. "homepage": "https://www.drupal.org/user/23"
  5369. }
  5370. ],
  5371. "description": "Tools to assist in developing and running migrations.",
  5372. "homepage": "http://drupal.org/project/migrate_tools",
  5373. "support": {
  5374. "source": "http://cgit.drupalcode.org/migrate_tools",
  5375. "issues": "http://drupal.org/project/migrate_tools",
  5376. "irc": "irc://irc.freenode.org/drupal-migrate"
  5377. },
  5378. "time": "2018-11-06T14:19:48+00:00"
  5379. },
  5380. {
  5381. "name": "drupal/pagerer",
  5382. "version": "1.4.0",
  5383. "source": {
  5384. "type": "git",
  5385. "url": "https://git.drupal.org/project/pagerer",
  5386. "reference": "8.x-1.4"
  5387. },
  5388. "dist": {
  5389. "type": "zip",
  5390. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-1.4.zip",
  5391. "reference": "8.x-1.4",
  5392. "shasum": "9b4eb6899b0927859e7d5198f1fd814a10a66ddb"
  5393. },
  5394. "require": {
  5395. "drupal/core": "^8.1"
  5396. },
  5397. "type": "drupal-module",
  5398. "extra": {
  5399. "branch-alias": {
  5400. "dev-1.x": "1.x-dev"
  5401. },
  5402. "drupal": {
  5403. "version": "8.x-1.4",
  5404. "datestamp": "1522851484",
  5405. "security-coverage": {
  5406. "status": "covered",
  5407. "message": "Covered by Drupal's security advisory policy"
  5408. }
  5409. }
  5410. },
  5411. "notification-url": "https://packages.drupal.org/8/downloads",
  5412. "license": [
  5413. "GPL-2.0-or-later"
  5414. ],
  5415. "authors": [
  5416. {
  5417. "name": "mondrake",
  5418. "homepage": "https://www.drupal.org/user/1307444"
  5419. }
  5420. ],
  5421. "description": "Configurable pager styles.",
  5422. "homepage": "https://www.drupal.org/project/pagerer",
  5423. "support": {
  5424. "source": "http://cgit.drupalcode.org/pagerer"
  5425. }
  5426. },
  5427. {
  5428. "name": "drupal/path_alias_xt",
  5429. "version": "dev-1.x",
  5430. "source": {
  5431. "type": "git",
  5432. "url": "https://git.drupal.org/project/path_alias_xt",
  5433. "reference": "5d88c9297e4629f390b03ce3ec8c1c8c890b296b"
  5434. },
  5435. "require": {
  5436. "drupal/core": "*"
  5437. },
  5438. "type": "drupal-module",
  5439. "extra": {
  5440. "branch-alias": {
  5441. "dev-1.x": "1.x-dev"
  5442. },
  5443. "drupal": {
  5444. "version": "8.x-1.x-dev",
  5445. "datestamp": "1500044942",
  5446. "security-coverage": {
  5447. "status": "not-covered",
  5448. "message": "Dev releases are not covered by Drupal security advisories."
  5449. }
  5450. }
  5451. },
  5452. "notification-url": "https://packages.drupal.org/8/downloads",
  5453. "license": [
  5454. "GPL-2.0-or-later"
  5455. ],
  5456. "authors": [
  5457. {
  5458. "name": "RdeBoer",
  5459. "homepage": "https://www.drupal.org/user/404007"
  5460. },
  5461. {
  5462. "name": "adriancid",
  5463. "homepage": "https://www.drupal.org/user/1962106"
  5464. },
  5465. {
  5466. "name": "sdstyles",
  5467. "homepage": "https://www.drupal.org/user/1420228"
  5468. }
  5469. ],
  5470. "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.",
  5471. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5472. "support": {
  5473. "source": "http://cgit.drupalcode.org/path_alias_xt"
  5474. },
  5475. "time": "2017-07-14T15:06:28+00:00"
  5476. },
  5477. {
  5478. "name": "drupal/pathauto",
  5479. "version": "1.3.0",
  5480. "source": {
  5481. "type": "git",
  5482. "url": "https://git.drupal.org/project/pathauto",
  5483. "reference": "8.x-1.3"
  5484. },
  5485. "dist": {
  5486. "type": "zip",
  5487. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip",
  5488. "reference": "8.x-1.3",
  5489. "shasum": "115d5998d7636a03e26c7ce34261b65809d53965"
  5490. },
  5491. "require": {
  5492. "drupal/core": "^8.5",
  5493. "drupal/ctools": "*",
  5494. "drupal/token": "*"
  5495. },
  5496. "type": "drupal-module",
  5497. "extra": {
  5498. "branch-alias": {
  5499. "dev-1.x": "1.x-dev"
  5500. },
  5501. "drupal": {
  5502. "version": "8.x-1.3",
  5503. "datestamp": "1536407884",
  5504. "security-coverage": {
  5505. "status": "covered",
  5506. "message": "Covered by Drupal's security advisory policy"
  5507. }
  5508. }
  5509. },
  5510. "notification-url": "https://packages.drupal.org/8/downloads",
  5511. "license": [
  5512. "GPL-2.0-or-later"
  5513. ],
  5514. "authors": [
  5515. {
  5516. "name": "Berdir",
  5517. "homepage": "https://www.drupal.org/user/214652"
  5518. },
  5519. {
  5520. "name": "Dave Reid",
  5521. "homepage": "https://www.drupal.org/user/53892"
  5522. },
  5523. {
  5524. "name": "Freso",
  5525. "homepage": "https://www.drupal.org/user/27504"
  5526. },
  5527. {
  5528. "name": "greggles",
  5529. "homepage": "https://www.drupal.org/user/36762"
  5530. }
  5531. ],
  5532. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5533. "homepage": "https://www.drupal.org/project/pathauto",
  5534. "support": {
  5535. "source": "http://cgit.drupalcode.org/pathauto"
  5536. }
  5537. },
  5538. {
  5539. "name": "drupal/pathologic",
  5540. "version": "1.0.0-alpha1",
  5541. "source": {
  5542. "type": "git",
  5543. "url": "https://git.drupal.org/project/pathologic",
  5544. "reference": "8.x-1.0-alpha1"
  5545. },
  5546. "dist": {
  5547. "type": "zip",
  5548. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha1.zip",
  5549. "reference": "8.x-1.0-alpha1",
  5550. "shasum": "51c699cc001969baa00cca60cf2302a32e578090"
  5551. },
  5552. "require": {
  5553. "drupal/core": "*"
  5554. },
  5555. "type": "drupal-module",
  5556. "extra": {
  5557. "branch-alias": {
  5558. "dev-1.x": "1.x-dev"
  5559. },
  5560. "drupal": {
  5561. "version": "8.x-1.0-alpha1",
  5562. "datestamp": "1525211884",
  5563. "security-coverage": {
  5564. "status": "not-covered",
  5565. "message": "Alpha releases are not covered by Drupal security advisories."
  5566. }
  5567. }
  5568. },
  5569. "notification-url": "https://packages.drupal.org/8/downloads",
  5570. "license": [
  5571. "GPL-2.0-or-later"
  5572. ],
  5573. "authors": [
  5574. {
  5575. "name": "Berdir",
  5576. "homepage": "https://www.drupal.org/user/214652"
  5577. },
  5578. {
  5579. "name": "Garrett Albright",
  5580. "homepage": "https://www.drupal.org/user/191212"
  5581. },
  5582. {
  5583. "name": "dww",
  5584. "homepage": "https://www.drupal.org/user/46549"
  5585. }
  5586. ],
  5587. "description": "Helps avoid broken links and incorrect paths in content.",
  5588. "homepage": "https://www.drupal.org/project/pathologic",
  5589. "support": {
  5590. "source": "http://cgit.drupalcode.org/pathologic"
  5591. }
  5592. },
  5593. {
  5594. "name": "drupal/persistent_login",
  5595. "version": "1.1.0",
  5596. "source": {
  5597. "type": "git",
  5598. "url": "https://git.drupal.org/project/persistent_login",
  5599. "reference": "8.x-1.1"
  5600. },
  5601. "dist": {
  5602. "type": "zip",
  5603. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.1.zip",
  5604. "reference": "8.x-1.1",
  5605. "shasum": "b1e8f725662ab915767f339e00d7b185ac9097b2"
  5606. },
  5607. "require": {
  5608. "drupal/core": "^8.3"
  5609. },
  5610. "type": "drupal-module",
  5611. "extra": {
  5612. "branch-alias": {
  5613. "dev-1.x": "1.x-dev"
  5614. },
  5615. "drupal": {
  5616. "version": "8.x-1.1",
  5617. "datestamp": "1539379980",
  5618. "security-coverage": {
  5619. "status": "covered",
  5620. "message": "Covered by Drupal's security advisory policy"
  5621. }
  5622. }
  5623. },
  5624. "notification-url": "https://packages.drupal.org/8/downloads",
  5625. "license": [
  5626. "GPL-2.0+"
  5627. ],
  5628. "authors": [
  5629. {
  5630. "name": "gapple",
  5631. "homepage": "https://www.drupal.org/user/490940"
  5632. }
  5633. ],
  5634. "description": "Provides a \"Remember Me\" feature on the login form.",
  5635. "homepage": "https://www.drupal.org/project/persistent_login",
  5636. "keywords": [
  5637. "Drupal"
  5638. ],
  5639. "support": {
  5640. "source": "http://cgit.drupalcode.org/persistent_login",
  5641. "issues": "http://drupal.org/project/issues/persistent_login"
  5642. }
  5643. },
  5644. {
  5645. "name": "drupal/profile",
  5646. "version": "1.0.0-rc1",
  5647. "source": {
  5648. "type": "git",
  5649. "url": "https://git.drupal.org/project/profile",
  5650. "reference": "8.x-1.0-rc1"
  5651. },
  5652. "dist": {
  5653. "type": "zip",
  5654. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc1.zip",
  5655. "reference": "8.x-1.0-rc1",
  5656. "shasum": "cc537ca25412adc4fa601ff42cf2fb5cbc6e7b6b"
  5657. },
  5658. "require": {
  5659. "drupal/core": "~8.1",
  5660. "drupal/entity": "*"
  5661. },
  5662. "type": "drupal-module",
  5663. "extra": {
  5664. "branch-alias": {
  5665. "dev-1.x": "1.x-dev"
  5666. },
  5667. "drupal": {
  5668. "version": "8.x-1.0-rc1",
  5669. "datestamp": "1505830324",
  5670. "security-coverage": {
  5671. "status": "not-covered",
  5672. "message": "RC releases are not covered by Drupal security advisories."
  5673. }
  5674. }
  5675. },
  5676. "notification-url": "https://packages.drupal.org/8/downloads",
  5677. "license": [
  5678. "GPL-2.0+"
  5679. ],
  5680. "authors": [
  5681. {
  5682. "name": "bojanz",
  5683. "homepage": "https://www.drupal.org/user/86106"
  5684. },
  5685. {
  5686. "name": "daggerhart",
  5687. "homepage": "https://www.drupal.org/user/167806"
  5688. },
  5689. {
  5690. "name": "dakala",
  5691. "homepage": "https://www.drupal.org/user/53175"
  5692. },
  5693. {
  5694. "name": "fago",
  5695. "homepage": "https://www.drupal.org/user/16747"
  5696. },
  5697. {
  5698. "name": "mglaman",
  5699. "homepage": "https://www.drupal.org/user/2416470"
  5700. },
  5701. {
  5702. "name": "pcambra",
  5703. "homepage": "https://www.drupal.org/user/122101"
  5704. }
  5705. ],
  5706. "description": "Provides configurable user profiles.",
  5707. "homepage": "http://drupal.org/project/profile",
  5708. "support": {
  5709. "source": "http://cgit.drupalcode.org/profile"
  5710. }
  5711. },
  5712. {
  5713. "name": "drupal/redirect",
  5714. "version": "1.3.0",
  5715. "source": {
  5716. "type": "git",
  5717. "url": "https://git.drupal.org/project/redirect",
  5718. "reference": "8.x-1.3"
  5719. },
  5720. "dist": {
  5721. "type": "zip",
  5722. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  5723. "reference": "8.x-1.3",
  5724. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  5725. },
  5726. "require": {
  5727. "drupal/core": "~8"
  5728. },
  5729. "type": "drupal-module",
  5730. "extra": {
  5731. "branch-alias": {
  5732. "dev-1.x": "1.x-dev"
  5733. },
  5734. "drupal": {
  5735. "version": "8.x-1.3",
  5736. "datestamp": "1539682684",
  5737. "security-coverage": {
  5738. "status": "covered",
  5739. "message": "Covered by Drupal's security advisory policy"
  5740. }
  5741. }
  5742. },
  5743. "notification-url": "https://packages.drupal.org/8/downloads",
  5744. "license": [
  5745. "GPL-2.0+"
  5746. ],
  5747. "authors": [
  5748. {
  5749. "name": "Berdir",
  5750. "homepage": "https://www.drupal.org/user/214652"
  5751. },
  5752. {
  5753. "name": "Dave Reid",
  5754. "homepage": "https://www.drupal.org/user/53892"
  5755. },
  5756. {
  5757. "name": "pifagor",
  5758. "homepage": "https://www.drupal.org/user/2375692"
  5759. }
  5760. ],
  5761. "description": "Allows users to redirect from old URLs to new URLs.",
  5762. "homepage": "https://www.drupal.org/project/redirect",
  5763. "support": {
  5764. "source": "http://cgit.drupalcode.org/redirect"
  5765. }
  5766. },
  5767. {
  5768. "name": "drupal/redis",
  5769. "version": "1.0.0",
  5770. "source": {
  5771. "type": "git",
  5772. "url": "https://git.drupal.org/project/redis",
  5773. "reference": "8.x-1.0"
  5774. },
  5775. "dist": {
  5776. "type": "zip",
  5777. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.0.zip",
  5778. "reference": "8.x-1.0",
  5779. "shasum": "98cf460db5c9aaacf3d5c02ac51e0c9e8e85edbb"
  5780. },
  5781. "require": {
  5782. "drupal/core": "~8.0"
  5783. },
  5784. "suggest": {
  5785. "predis/predis": "^1.1.1"
  5786. },
  5787. "type": "drupal-module",
  5788. "extra": {
  5789. "branch-alias": {
  5790. "dev-1.x": "1.x-dev"
  5791. },
  5792. "drupal": {
  5793. "version": "8.x-1.0",
  5794. "datestamp": "1527699484",
  5795. "security-coverage": {
  5796. "status": "covered",
  5797. "message": "Covered by Drupal's security advisory policy"
  5798. }
  5799. }
  5800. },
  5801. "autoload": {
  5802. "psr-4": {
  5803. "Drupal\\redis\\": "src"
  5804. }
  5805. },
  5806. "notification-url": "https://packages.drupal.org/8/downloads",
  5807. "license": [
  5808. "GPL-2.0"
  5809. ],
  5810. "authors": [
  5811. {
  5812. "name": "Berdir",
  5813. "homepage": "https://www.drupal.org/user/214652"
  5814. },
  5815. {
  5816. "name": "pounard",
  5817. "homepage": "https://www.drupal.org/user/240164"
  5818. }
  5819. ],
  5820. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5821. "homepage": "https://www.drupal.org/project/redis",
  5822. "support": {
  5823. "source": "http://cgit.drupalcode.org/redis"
  5824. }
  5825. },
  5826. {
  5827. "name": "drupal/search_api",
  5828. "version": "1.10.0",
  5829. "source": {
  5830. "type": "git",
  5831. "url": "https://git.drupal.org/project/search_api",
  5832. "reference": "8.x-1.10"
  5833. },
  5834. "dist": {
  5835. "type": "zip",
  5836. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.10.zip",
  5837. "reference": "8.x-1.10",
  5838. "shasum": "1c1d038310a079f8e8154545f743ff7a506c4b8e"
  5839. },
  5840. "require": {
  5841. "drupal/core": "^8.5"
  5842. },
  5843. "require-dev": {
  5844. "drupal/search_api_autocomplete": "@dev",
  5845. "drupal/search_api_db": "*"
  5846. },
  5847. "suggest": {
  5848. "drupal/facets": "Adds the ability to create faceted searches.",
  5849. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5850. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5851. },
  5852. "type": "drupal-module",
  5853. "extra": {
  5854. "branch-alias": {
  5855. "dev-1.x": "1.x-dev"
  5856. },
  5857. "drupal": {
  5858. "version": "8.x-1.10",
  5859. "datestamp": "1537175280",
  5860. "security-coverage": {
  5861. "status": "covered",
  5862. "message": "Covered by Drupal's security advisory policy"
  5863. }
  5864. },
  5865. "drush": {
  5866. "services": {
  5867. "drush.services.yml": "^9"
  5868. }
  5869. }
  5870. },
  5871. "notification-url": "https://packages.drupal.org/8/downloads",
  5872. "license": [
  5873. "GPL-2.0+"
  5874. ],
  5875. "authors": [
  5876. {
  5877. "name": "Thomas Seidl",
  5878. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5879. },
  5880. {
  5881. "name": "Nick Veenhof",
  5882. "homepage": "https://www.drupal.org/u/nick_vh"
  5883. },
  5884. {
  5885. "name": "See other contributors",
  5886. "homepage": "https://www.drupal.org/node/790418/committers"
  5887. }
  5888. ],
  5889. "description": "Provides a generic framework for modules offering search capabilities.",
  5890. "homepage": "https://www.drupal.org/project/search_api",
  5891. "support": {
  5892. "source": "http://git.drupal.org/project/search_api.git",
  5893. "issues": "https://www.drupal.org/project/issues/search_api",
  5894. "irc": "irc://irc.freenode.org/drupal-search-api"
  5895. }
  5896. },
  5897. {
  5898. "name": "drupal/search_api_db",
  5899. "version": "1.10.0",
  5900. "require": {
  5901. "drupal/core": "~8.0",
  5902. "drupal/search_api": "self.version"
  5903. },
  5904. "type": "metapackage",
  5905. "extra": {
  5906. "branch-alias": {
  5907. "dev-1.x": "1.x-dev"
  5908. },
  5909. "drupal": {
  5910. "version": "8.x-1.10",
  5911. "datestamp": "1537175280",
  5912. "security-coverage": {
  5913. "status": "covered",
  5914. "message": "Covered by Drupal's security advisory policy"
  5915. }
  5916. }
  5917. },
  5918. "notification-url": "https://packages.drupal.org/8/downloads",
  5919. "license": [
  5920. "GPL-2.0-or-later"
  5921. ],
  5922. "authors": [
  5923. {
  5924. "name": "Nick_vh",
  5925. "homepage": "https://www.drupal.org/user/122682"
  5926. },
  5927. {
  5928. "name": "drunken monkey",
  5929. "homepage": "https://www.drupal.org/user/205582"
  5930. }
  5931. ],
  5932. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  5933. "homepage": "https://www.drupal.org/project/search_api",
  5934. "support": {
  5935. "source": "http://cgit.drupalcode.org/search_api"
  5936. }
  5937. },
  5938. {
  5939. "name": "drupal/smart_trim",
  5940. "version": "1.1.0",
  5941. "source": {
  5942. "type": "git",
  5943. "url": "https://git.drupal.org/project/smart_trim",
  5944. "reference": "8.x-1.1"
  5945. },
  5946. "dist": {
  5947. "type": "zip",
  5948. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.1.zip",
  5949. "reference": "8.x-1.1",
  5950. "shasum": "5f1c0f15914208e0ad2ec5cce1d6419040596fc0"
  5951. },
  5952. "require": {
  5953. "drupal/core": "*"
  5954. },
  5955. "type": "drupal-module",
  5956. "extra": {
  5957. "branch-alias": {
  5958. "dev-1.x": "1.x-dev"
  5959. },
  5960. "drupal": {
  5961. "version": "8.x-1.1",
  5962. "datestamp": "1516301286",
  5963. "security-coverage": {
  5964. "status": "covered",
  5965. "message": "Covered by Drupal's security advisory policy"
  5966. }
  5967. }
  5968. },
  5969. "notification-url": "https://packages.drupal.org/8/downloads",
  5970. "license": [
  5971. "GPL-2.0+"
  5972. ],
  5973. "authors": [
  5974. {
  5975. "name": "Mark Casias (markie)",
  5976. "homepage": "https://www.drupal.org/u/markie",
  5977. "role": "Maintainer"
  5978. },
  5979. {
  5980. "name": "chrisjlee",
  5981. "homepage": "https://www.drupal.org/user/760600"
  5982. },
  5983. {
  5984. "name": "drywall",
  5985. "homepage": "https://www.drupal.org/user/192591"
  5986. },
  5987. {
  5988. "name": "jsenich",
  5989. "homepage": "https://www.drupal.org/user/58871"
  5990. },
  5991. {
  5992. "name": "markie",
  5993. "homepage": "https://www.drupal.org/user/206687"
  5994. },
  5995. {
  5996. "name": "newsignature",
  5997. "homepage": "https://www.drupal.org/user/765518"
  5998. }
  5999. ],
  6000. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6001. "homepage": "https://drupal.org/project/smart_trim",
  6002. "support": {
  6003. "source": "https://cgit.drupalcode.org/smart_trim",
  6004. "issues": "https://drupal.org/project/issues/smart_trim"
  6005. }
  6006. },
  6007. {
  6008. "name": "drupal/smtp",
  6009. "version": "1.0.0-beta4",
  6010. "source": {
  6011. "type": "git",
  6012. "url": "https://git.drupal.org/project/smtp",
  6013. "reference": "8.x-1.0-beta4"
  6014. },
  6015. "dist": {
  6016. "type": "zip",
  6017. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0-beta4.zip",
  6018. "reference": "8.x-1.0-beta4",
  6019. "shasum": "80a4df4b2fd2d1b2dc653552d232ce98cb54bb9d"
  6020. },
  6021. "require": {
  6022. "drupal/core": "~8.0"
  6023. },
  6024. "type": "drupal-module",
  6025. "extra": {
  6026. "branch-alias": {
  6027. "dev-1.x": "1.x-dev"
  6028. },
  6029. "drupal": {
  6030. "version": "8.x-1.0-beta4",
  6031. "datestamp": "1527598380",
  6032. "security-coverage": {
  6033. "status": "not-covered",
  6034. "message": "Beta releases are not covered by Drupal security advisories."
  6035. }
  6036. }
  6037. },
  6038. "notification-url": "https://packages.drupal.org/8/downloads",
  6039. "license": [
  6040. "GPL-2.0"
  6041. ],
  6042. "authors": [
  6043. {
  6044. "name": "LukeLast",
  6045. "homepage": "https://www.drupal.org/user/30151"
  6046. },
  6047. {
  6048. "name": "japerry",
  6049. "homepage": "https://www.drupal.org/user/45640"
  6050. },
  6051. {
  6052. "name": "josesanmartin",
  6053. "homepage": "https://www.drupal.org/user/72012"
  6054. },
  6055. {
  6056. "name": "oadaeh",
  6057. "homepage": "https://www.drupal.org/user/4649"
  6058. },
  6059. {
  6060. "name": "wundo",
  6061. "homepage": "https://www.drupal.org/user/25523"
  6062. },
  6063. {
  6064. "name": "yettyn",
  6065. "homepage": "https://www.drupal.org/user/93281"
  6066. }
  6067. ],
  6068. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6069. "homepage": "https://www.drupal.org/project/smtp",
  6070. "support": {
  6071. "source": "http://cgit.drupalcode.org/smtp",
  6072. "issues": "https://www.drupal.org/project/issues/smtp"
  6073. }
  6074. },
  6075. {
  6076. "name": "drupal/synonyms",
  6077. "version": "dev-1.x",
  6078. "source": {
  6079. "type": "git",
  6080. "url": "https://git.drupal.org/project/synonyms",
  6081. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  6082. },
  6083. "require": {
  6084. "drupal/core": "^8.2"
  6085. },
  6086. "type": "drupal-module",
  6087. "extra": {
  6088. "branch-alias": {
  6089. "dev-1.x": "1.x-dev"
  6090. },
  6091. "drupal": {
  6092. "version": "8.x-1.0-alpha1+4-dev",
  6093. "datestamp": "1520765584",
  6094. "security-coverage": {
  6095. "status": "not-covered",
  6096. "message": "Dev releases are not covered by Drupal security advisories."
  6097. }
  6098. }
  6099. },
  6100. "notification-url": "https://packages.drupal.org/8/downloads",
  6101. "license": [
  6102. "GPL-2.0-or-later"
  6103. ],
  6104. "authors": [
  6105. {
  6106. "name": "Zen",
  6107. "homepage": "https://www.drupal.org/user/21209"
  6108. },
  6109. {
  6110. "name": "bojanz",
  6111. "homepage": "https://www.drupal.org/user/86106"
  6112. },
  6113. {
  6114. "name": "bucefal91",
  6115. "homepage": "https://www.drupal.org/user/504128"
  6116. }
  6117. ],
  6118. "description": "Provides synonyms feature for content entities.",
  6119. "homepage": "https://www.drupal.org/project/synonyms",
  6120. "support": {
  6121. "source": "http://cgit.drupalcode.org/synonyms"
  6122. },
  6123. "time": "2018-10-21T17:05:25+00:00"
  6124. },
  6125. {
  6126. "name": "drupal/telephone_formatter",
  6127. "version": "1.0.0-beta1",
  6128. "source": {
  6129. "type": "git",
  6130. "url": "https://git.drupal.org/project/telephone_formatter",
  6131. "reference": "8.x-1.0-beta1"
  6132. },
  6133. "dist": {
  6134. "type": "zip",
  6135. "url": "https://ftp.drupal.org/files/projects/telephone_formatter-8.x-1.0-beta1.zip",
  6136. "reference": "8.x-1.0-beta1",
  6137. "shasum": "6d606d98840d983ace3f642879cb49683f2c1711"
  6138. },
  6139. "require": {
  6140. "drupal/core": "*",
  6141. "giggsey/libphonenumber-for-php": "^8.0"
  6142. },
  6143. "suggest": {
  6144. "drupal/telephone_validation": "Unsure data quality"
  6145. },
  6146. "type": "drupal-module",
  6147. "extra": {
  6148. "branch-alias": {
  6149. "dev-1.x": "1.x-dev"
  6150. },
  6151. "drupal": {
  6152. "version": "8.x-1.0-beta1",
  6153. "datestamp": "1492638542",
  6154. "security-coverage": {
  6155. "status": "not-covered",
  6156. "message": "Beta releases are not covered by Drupal security advisories."
  6157. }
  6158. }
  6159. },
  6160. "notification-url": "https://packages.drupal.org/8/downloads",
  6161. "license": [
  6162. "GPL-2.0+"
  6163. ],
  6164. "authors": [
  6165. {
  6166. "name": "Jakub Piasecki",
  6167. "homepage": "https://www.drupal.org/user/1532844",
  6168. "email": "jakub@piaseccy.pl"
  6169. }
  6170. ],
  6171. "description": "Additional formatters to Telephone field.",
  6172. "homepage": "https://www.drupal.org/project/telephone_formatter",
  6173. "support": {
  6174. "source": "http://cgit.drupalcode.org/telephone_formatter",
  6175. "issues": "http://drupal.org/project/issues/telephone_formatter"
  6176. }
  6177. },
  6178. {
  6179. "name": "drupal/telephone_validation",
  6180. "version": "2.1.0",
  6181. "source": {
  6182. "type": "git",
  6183. "url": "https://git.drupal.org/project/telephone_validation",
  6184. "reference": "8.x-2.1"
  6185. },
  6186. "dist": {
  6187. "type": "zip",
  6188. "url": "https://ftp.drupal.org/files/projects/telephone_validation-8.x-2.1.zip",
  6189. "reference": "8.x-2.1",
  6190. "shasum": "fcdb0c3c5541b06e6dd469a7aacefd2d0a891b74"
  6191. },
  6192. "require": {
  6193. "drupal/core": "^8.0",
  6194. "drupal/telephone": "*",
  6195. "giggsey/libphonenumber-for-php": "~8.0"
  6196. },
  6197. "type": "drupal-module",
  6198. "extra": {
  6199. "branch-alias": {
  6200. "dev-2.x": "2.x-dev"
  6201. },
  6202. "drupal": {
  6203. "version": "8.x-2.1",
  6204. "datestamp": "1527165785",
  6205. "security-coverage": {
  6206. "status": "covered",
  6207. "message": "Covered by Drupal's security advisory policy"
  6208. }
  6209. }
  6210. },
  6211. "notification-url": "https://packages.drupal.org/8/downloads",
  6212. "license": [
  6213. "GPL-2.0+"
  6214. ],
  6215. "authors": [
  6216. {
  6217. "name": "zaporylie",
  6218. "homepage": "https://www.drupal.org/user/1532844"
  6219. }
  6220. ],
  6221. "description": "Use 3rd party library to validate telephone field.",
  6222. "homepage": "http://drupal.org/project/telephone_validation",
  6223. "support": {
  6224. "source": "http://cgit.drupalcode.org/telephone_validation",
  6225. "issues": "http://drupal.org/project/issues/telephone_validation"
  6226. }
  6227. },
  6228. {
  6229. "name": "drupal/token",
  6230. "version": "1.5.0",
  6231. "source": {
  6232. "type": "git",
  6233. "url": "https://git.drupal.org/project/token",
  6234. "reference": "8.x-1.5"
  6235. },
  6236. "dist": {
  6237. "type": "zip",
  6238. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  6239. "reference": "8.x-1.5",
  6240. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  6241. },
  6242. "require": {
  6243. "drupal/core": "^8.5"
  6244. },
  6245. "type": "drupal-module",
  6246. "extra": {
  6247. "branch-alias": {
  6248. "dev-1.x": "1.x-dev"
  6249. },
  6250. "drupal": {
  6251. "version": "8.x-1.5",
  6252. "datestamp": "1537557481",
  6253. "security-coverage": {
  6254. "status": "covered",
  6255. "message": "Covered by Drupal's security advisory policy"
  6256. }
  6257. }
  6258. },
  6259. "notification-url": "https://packages.drupal.org/8/downloads",
  6260. "license": [
  6261. "GPL-2.0-or-later"
  6262. ],
  6263. "authors": [
  6264. {
  6265. "name": "Berdir",
  6266. "homepage": "https://www.drupal.org/user/214652"
  6267. },
  6268. {
  6269. "name": "Dave Reid",
  6270. "homepage": "https://www.drupal.org/user/53892"
  6271. },
  6272. {
  6273. "name": "eaton",
  6274. "homepage": "https://www.drupal.org/user/16496"
  6275. },
  6276. {
  6277. "name": "fago",
  6278. "homepage": "https://www.drupal.org/user/16747"
  6279. },
  6280. {
  6281. "name": "greggles",
  6282. "homepage": "https://www.drupal.org/user/36762"
  6283. },
  6284. {
  6285. "name": "mikeryan",
  6286. "homepage": "https://www.drupal.org/user/4420"
  6287. }
  6288. ],
  6289. "description": "Provides a user interface for the Token API and some missing core tokens.",
  6290. "homepage": "https://www.drupal.org/project/token",
  6291. "support": {
  6292. "source": "http://cgit.drupalcode.org/token"
  6293. }
  6294. },
  6295. {
  6296. "name": "drupal/toolbar_themes",
  6297. "version": "1.0.0-alpha4",
  6298. "source": {
  6299. "type": "git",
  6300. "url": "https://git.drupal.org/project/toolbar_themes",
  6301. "reference": "8.x-1.0-alpha4"
  6302. },
  6303. "dist": {
  6304. "type": "zip",
  6305. "url": "https://ftp.drupal.org/files/projects/toolbar_themes-8.x-1.0-alpha4.zip",
  6306. "reference": "8.x-1.0-alpha4",
  6307. "shasum": "15c38da8bfd5a44e47e436d8f432a0aaf6b2cd70"
  6308. },
  6309. "require": {
  6310. "drupal/core": "*"
  6311. },
  6312. "type": "drupal-module",
  6313. "extra": {
  6314. "branch-alias": {
  6315. "dev-1.x": "1.x-dev"
  6316. },
  6317. "drupal": {
  6318. "version": "8.x-1.0-alpha4",
  6319. "datestamp": "1474198439",
  6320. "security-coverage": {
  6321. "status": "not-covered",
  6322. "message": "Project has not opted into security advisory coverage!"
  6323. }
  6324. }
  6325. },
  6326. "notification-url": "https://packages.drupal.org/8/downloads",
  6327. "license": [
  6328. "GPL-2.0-or-later"
  6329. ],
  6330. "authors": [
  6331. {
  6332. "name": "Jeff Burnz",
  6333. "homepage": "https://www.drupal.org/user/61393"
  6334. }
  6335. ],
  6336. "description": "Apply themes to the toolbar.",
  6337. "homepage": "https://www.drupal.org/project/toolbar_themes",
  6338. "support": {
  6339. "source": "http://cgit.drupalcode.org/toolbar_themes"
  6340. }
  6341. },
  6342. {
  6343. "name": "drupal/translation_views",
  6344. "version": "1.0.0-alpha4",
  6345. "source": {
  6346. "type": "git",
  6347. "url": "https://git.drupal.org/project/translation_views",
  6348. "reference": "8.x-1.0-alpha4"
  6349. },
  6350. "dist": {
  6351. "type": "zip",
  6352. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha4.zip",
  6353. "reference": "8.x-1.0-alpha4",
  6354. "shasum": "96f7828005a8d559f31f0dfcb471a68698311cda"
  6355. },
  6356. "require": {
  6357. "drupal/core": "*"
  6358. },
  6359. "type": "drupal-module",
  6360. "extra": {
  6361. "branch-alias": {
  6362. "dev-1.x": "1.x-dev"
  6363. },
  6364. "drupal": {
  6365. "version": "8.x-1.0-alpha4",
  6366. "datestamp": "1538124180",
  6367. "security-coverage": {
  6368. "status": "not-covered",
  6369. "message": "Project has not opted into security advisory coverage!"
  6370. }
  6371. }
  6372. },
  6373. "notification-url": "https://packages.drupal.org/8/downloads",
  6374. "license": [
  6375. "GPL-2.0-or-later"
  6376. ],
  6377. "authors": [
  6378. {
  6379. "name": "matsbla",
  6380. "homepage": "https://www.drupal.org/user/2325394"
  6381. },
  6382. {
  6383. "name": "vlad.dancer",
  6384. "homepage": "https://www.drupal.org/user/903844"
  6385. }
  6386. ],
  6387. "description": "Create customized lists and queries of translations from your database.",
  6388. "homepage": "https://www.drupal.org/project/translation_views",
  6389. "support": {
  6390. "source": "http://cgit.drupalcode.org/translation_views"
  6391. }
  6392. },
  6393. {
  6394. "name": "drupal/ultimate_cron",
  6395. "version": "2.0.0-alpha4",
  6396. "source": {
  6397. "type": "git",
  6398. "url": "https://git.drupal.org/project/ultimate_cron",
  6399. "reference": "8.x-2.0-alpha4"
  6400. },
  6401. "dist": {
  6402. "type": "zip",
  6403. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha4.zip",
  6404. "reference": "8.x-2.0-alpha4",
  6405. "shasum": "50cdadd061f1f6fadb961b04ed04348bcc4719d3"
  6406. },
  6407. "require": {
  6408. "drupal/core": "~8.0"
  6409. },
  6410. "type": "drupal-module",
  6411. "extra": {
  6412. "branch-alias": {
  6413. "dev-2.x": "2.x-dev"
  6414. },
  6415. "drupal": {
  6416. "version": "8.x-2.0-alpha4",
  6417. "datestamp": "1527925385",
  6418. "security-coverage": {
  6419. "status": "not-covered",
  6420. "message": "Alpha releases are not covered by Drupal security advisories."
  6421. }
  6422. }
  6423. },
  6424. "notification-url": "https://packages.drupal.org/8/downloads",
  6425. "license": [
  6426. "GPL-2.0-or-later"
  6427. ],
  6428. "authors": [
  6429. {
  6430. "name": "Berdir",
  6431. "homepage": "https://www.drupal.org/user/214652"
  6432. },
  6433. {
  6434. "name": "Dane Powell",
  6435. "homepage": "https://www.drupal.org/user/339326"
  6436. },
  6437. {
  6438. "name": "arnested",
  6439. "homepage": "https://www.drupal.org/user/245635"
  6440. },
  6441. {
  6442. "name": "gielfeldt",
  6443. "homepage": "https://www.drupal.org/user/366993"
  6444. },
  6445. {
  6446. "name": "miro_dietiker",
  6447. "homepage": "https://www.drupal.org/user/227761"
  6448. }
  6449. ],
  6450. "description": "Cron",
  6451. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6452. "support": {
  6453. "source": "http://cgit.drupalcode.org/ultimate_cron"
  6454. }
  6455. },
  6456. {
  6457. "name": "drupal/url_to_video_filter",
  6458. "version": "1.3.0",
  6459. "source": {
  6460. "type": "git",
  6461. "url": "https://git.drupal.org/project/url_to_video_filter",
  6462. "reference": "8.x-1.3"
  6463. },
  6464. "dist": {
  6465. "type": "zip",
  6466. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  6467. "reference": "8.x-1.3",
  6468. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  6469. },
  6470. "require": {
  6471. "drupal/core": "~8.0"
  6472. },
  6473. "type": "drupal-module",
  6474. "extra": {
  6475. "branch-alias": {
  6476. "dev-1.x": "1.x-dev"
  6477. },
  6478. "drupal": {
  6479. "version": "8.x-1.3",
  6480. "datestamp": "1532695981",
  6481. "security-coverage": {
  6482. "status": "covered",
  6483. "message": "Covered by Drupal's security advisory policy"
  6484. }
  6485. }
  6486. },
  6487. "notification-url": "https://packages.drupal.org/8/downloads",
  6488. "license": [
  6489. "GPL-2.0-or-later"
  6490. ],
  6491. "authors": [
  6492. {
  6493. "name": "Jaypan",
  6494. "homepage": "https://www.drupal.org/user/324696"
  6495. }
  6496. ],
  6497. "description": "Text filter to convert URLs to embedded videos",
  6498. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  6499. "support": {
  6500. "source": "http://cgit.drupalcode.org/url_to_video_filter"
  6501. }
  6502. },
  6503. {
  6504. "name": "drupal/video_embed_field",
  6505. "version": "2.0.0",
  6506. "source": {
  6507. "type": "git",
  6508. "url": "https://git.drupal.org/project/video_embed_field",
  6509. "reference": "8.x-2.0"
  6510. },
  6511. "dist": {
  6512. "type": "zip",
  6513. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.0.zip",
  6514. "reference": "8.x-2.0",
  6515. "shasum": "e864f090b3cb9405376ca324d81ace83613e2019"
  6516. },
  6517. "require": {
  6518. "drupal/core": "*"
  6519. },
  6520. "require-dev": {
  6521. "drupal/colorbox": "*",
  6522. "drupal/media_entity": "*",
  6523. "drupal/media_entity_embeddable_video": "*"
  6524. },
  6525. "type": "drupal-module",
  6526. "extra": {
  6527. "branch-alias": {
  6528. "dev-2.x": "2.x-dev"
  6529. },
  6530. "drupal": {
  6531. "version": "8.x-1.x",
  6532. "datestamp": "1523338084",
  6533. "security-coverage": {
  6534. "status": "covered",
  6535. "message": "Covered by Drupal's security advisory policy"
  6536. },
  6537. "package": "Field types"
  6538. }
  6539. },
  6540. "notification-url": "https://packages.drupal.org/8/downloads",
  6541. "license": [
  6542. "GPL-2.0+"
  6543. ],
  6544. "authors": [
  6545. {
  6546. "name": "Sam152",
  6547. "homepage": "https://www.drupal.org/user/1485048"
  6548. },
  6549. {
  6550. "name": "jec006",
  6551. "homepage": "https://www.drupal.org/user/855980"
  6552. },
  6553. {
  6554. "name": "plopesc",
  6555. "homepage": "https://www.drupal.org/user/282415"
  6556. }
  6557. ],
  6558. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  6559. "homepage": "https://www.drupal.org/project/video_embed_field",
  6560. "support": {
  6561. "source": "http://cgit.drupalcode.org/video_embed_field"
  6562. }
  6563. },
  6564. {
  6565. "name": "drupal/views_bulk_edit",
  6566. "version": "2.2.0",
  6567. "source": {
  6568. "type": "git",
  6569. "url": "https://git.drupal.org/project/views_bulk_edit",
  6570. "reference": "8.x-2.2"
  6571. },
  6572. "dist": {
  6573. "type": "zip",
  6574. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  6575. "reference": "8.x-2.2",
  6576. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  6577. },
  6578. "require": {
  6579. "drupal/core": "*",
  6580. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  6581. },
  6582. "type": "drupal-module",
  6583. "extra": {
  6584. "branch-alias": {
  6585. "dev-2.x": "2.x-dev"
  6586. },
  6587. "drupal": {
  6588. "version": "8.x-2.2",
  6589. "datestamp": "1532689085",
  6590. "security-coverage": {
  6591. "status": "covered",
  6592. "message": "Covered by Drupal's security advisory policy"
  6593. }
  6594. }
  6595. },
  6596. "notification-url": "https://packages.drupal.org/8/downloads",
  6597. "license": [
  6598. "GPL-2.0+"
  6599. ],
  6600. "authors": [
  6601. {
  6602. "name": "Marcin Grabias",
  6603. "homepage": "https://www.drupal.org/u/graber"
  6604. },
  6605. {
  6606. "name": "benjy",
  6607. "homepage": "https://www.drupal.org/user/1852732"
  6608. }
  6609. ],
  6610. "description": "Allows bulk edition of entity field values.",
  6611. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  6612. "support": {
  6613. "source": "http://cgit.drupalcode.org/views_bulk_edit",
  6614. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  6615. }
  6616. },
  6617. {
  6618. "name": "drupal/views_bulk_operations",
  6619. "version": "2.4.0",
  6620. "source": {
  6621. "type": "git",
  6622. "url": "https://git.drupal.org/project/views_bulk_operations",
  6623. "reference": "8.x-2.4"
  6624. },
  6625. "dist": {
  6626. "type": "zip",
  6627. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.4.zip",
  6628. "reference": "8.x-2.4",
  6629. "shasum": "50c5778770f3a92e38ecf664301b77146e3cc931"
  6630. },
  6631. "require": {
  6632. "drupal/core": "^8.4"
  6633. },
  6634. "type": "drupal-module",
  6635. "extra": {
  6636. "branch-alias": {
  6637. "dev-2.x": "2.x-dev"
  6638. },
  6639. "drupal": {
  6640. "version": "8.x-2.4",
  6641. "datestamp": "1530516821",
  6642. "security-coverage": {
  6643. "status": "covered",
  6644. "message": "Covered by Drupal's security advisory policy"
  6645. }
  6646. },
  6647. "drush": {
  6648. "services": {
  6649. "drush.services.yml": "^9"
  6650. }
  6651. }
  6652. },
  6653. "notification-url": "https://packages.drupal.org/8/downloads",
  6654. "license": [
  6655. "GPL-2.0+"
  6656. ],
  6657. "authors": [
  6658. {
  6659. "name": "Marcin Grabias",
  6660. "homepage": "https://www.drupal.org/u/graber"
  6661. },
  6662. {
  6663. "name": "Jon Pugh",
  6664. "homepage": "https://www.drupal.org/user/17028"
  6665. },
  6666. {
  6667. "name": "bojanz",
  6668. "homepage": "https://www.drupal.org/user/86106"
  6669. },
  6670. {
  6671. "name": "infojunkie",
  6672. "homepage": "https://www.drupal.org/user/48424"
  6673. },
  6674. {
  6675. "name": "joelpittet",
  6676. "homepage": "https://www.drupal.org/user/160302"
  6677. }
  6678. ],
  6679. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  6680. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  6681. "support": {
  6682. "source": "http://cgit.drupalcode.org/views_bulk_operations",
  6683. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  6684. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  6685. }
  6686. },
  6687. {
  6688. "name": "drupal/views_ef_fieldset",
  6689. "version": "dev-1.x",
  6690. "source": {
  6691. "type": "git",
  6692. "url": "https://git.drupal.org/project/views_ef_fieldset",
  6693. "reference": "f53f9e3390f1491ace93662634477bc43f844759"
  6694. },
  6695. "require": {
  6696. "drupal/core": "*"
  6697. },
  6698. "type": "drupal-module",
  6699. "extra": {
  6700. "branch-alias": {
  6701. "dev-1.x": "1.x-dev"
  6702. },
  6703. "drupal": {
  6704. "version": "8.x-1.1+4-dev",
  6705. "datestamp": "1538990580",
  6706. "security-coverage": {
  6707. "status": "not-covered",
  6708. "message": "Dev releases are not covered by Drupal security advisories."
  6709. }
  6710. }
  6711. },
  6712. "notification-url": "https://packages.drupal.org/8/downloads",
  6713. "license": [
  6714. "GPL-2.0-or-later"
  6715. ],
  6716. "authors": [
  6717. {
  6718. "name": "Pol",
  6719. "homepage": "https://www.drupal.org/user/47194"
  6720. },
  6721. {
  6722. "name": "ciss",
  6723. "homepage": "https://www.drupal.org/user/1632364"
  6724. }
  6725. ],
  6726. "description": "Provide an option to render the \"exposed form widgets\" in a fieldset.",
  6727. "homepage": "https://www.drupal.org/project/views_ef_fieldset",
  6728. "support": {
  6729. "source": "http://cgit.drupalcode.org/views_ef_fieldset"
  6730. },
  6731. "time": "2018-11-16T09:23:47+00:00"
  6732. },
  6733. {
  6734. "name": "drupal/workflow",
  6735. "version": "dev-1.x",
  6736. "source": {
  6737. "type": "git",
  6738. "url": "https://git.drupal.org/project/workflow",
  6739. "reference": "942b2a293696fd4c40fbb906f742a2d9293e5fcb"
  6740. },
  6741. "require": {
  6742. "drupal/core": "*"
  6743. },
  6744. "type": "drupal-module",
  6745. "extra": {
  6746. "branch-alias": {
  6747. "dev-1.x": "1.x-dev"
  6748. },
  6749. "drupal": {
  6750. "version": "8.x-1.1+19-dev",
  6751. "datestamp": "1537125481",
  6752. "security-coverage": {
  6753. "status": "not-covered",
  6754. "message": "Dev releases are not covered by Drupal security advisories."
  6755. }
  6756. },
  6757. "patches_applied": {
  6758. "fix bad way of including files": "https://www.drupal.org/files/issues/2018-11-01/workflow-include.patch"
  6759. }
  6760. },
  6761. "notification-url": "https://packages.drupal.org/8/downloads",
  6762. "license": [
  6763. "GPL-2.0-or-later"
  6764. ],
  6765. "authors": [
  6766. {
  6767. "name": "Bastlynn",
  6768. "homepage": "https://www.drupal.org/user/275249"
  6769. },
  6770. {
  6771. "name": "Heine",
  6772. "homepage": "https://www.drupal.org/user/17943"
  6773. },
  6774. {
  6775. "name": "JacobSingh",
  6776. "homepage": "https://www.drupal.org/user/68912"
  6777. },
  6778. {
  6779. "name": "NancyDru",
  6780. "homepage": "https://www.drupal.org/user/101412"
  6781. },
  6782. {
  6783. "name": "eaton",
  6784. "homepage": "https://www.drupal.org/user/16496"
  6785. },
  6786. {
  6787. "name": "johnv",
  6788. "homepage": "https://www.drupal.org/user/591042"
  6789. },
  6790. {
  6791. "name": "jvandyk",
  6792. "homepage": "https://www.drupal.org/user/2375"
  6793. },
  6794. {
  6795. "name": "mfredrickson",
  6796. "homepage": "https://www.drupal.org/user/31994"
  6797. },
  6798. {
  6799. "name": "q0rban",
  6800. "homepage": "https://www.drupal.org/user/31022"
  6801. }
  6802. ],
  6803. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  6804. "homepage": "https://www.drupal.org/project/workflow",
  6805. "support": {
  6806. "source": "http://cgit.drupalcode.org/workflow"
  6807. },
  6808. "time": "2018-09-16T19:25:10+00:00"
  6809. },
  6810. {
  6811. "name": "drush/drush",
  6812. "version": "9.5.2",
  6813. "source": {
  6814. "type": "git",
  6815. "url": "https://github.com/drush-ops/drush.git",
  6816. "reference": "17f0106706391675a281c6d212850853bdbe90f9"
  6817. },
  6818. "dist": {
  6819. "type": "zip",
  6820. "url": "https://api.github.com/repos/drush-ops/drush/zipball/17f0106706391675a281c6d212850853bdbe90f9",
  6821. "reference": "17f0106706391675a281c6d212850853bdbe90f9",
  6822. "shasum": ""
  6823. },
  6824. "require": {
  6825. "chi-teck/drupal-code-generator": "^1.27.0",
  6826. "composer/semver": "^1.4",
  6827. "consolidation/annotated-command": "^2.9.1",
  6828. "consolidation/config": "^1.1.0",
  6829. "consolidation/output-formatters": "^3.1.12",
  6830. "consolidation/robo": "^1.1.5",
  6831. "consolidation/site-alias": "^1.1.5",
  6832. "ext-dom": "*",
  6833. "grasmash/yaml-expander": "^1.1.1",
  6834. "league/container": "~2",
  6835. "php": ">=5.6.0",
  6836. "psr/log": "~1.0",
  6837. "psy/psysh": "~0.6",
  6838. "symfony/config": "^3.4",
  6839. "symfony/console": "^3.4",
  6840. "symfony/event-dispatcher": "^3.4",
  6841. "symfony/finder": "^3.4",
  6842. "symfony/process": "^3.4",
  6843. "symfony/var-dumper": "^3.4",
  6844. "symfony/yaml": "^3.4",
  6845. "webflo/drupal-finder": "^1.1",
  6846. "webmozart/path-util": "^2.1.0"
  6847. },
  6848. "require-dev": {
  6849. "composer/installers": "^1.2",
  6850. "cweagans/composer-patches": "~1.0",
  6851. "drupal/alinks": "1.0.0",
  6852. "drupal/devel": "^1.0@RC",
  6853. "drupal/empty_theme": "1.0",
  6854. "g1a/composer-test-scenarios": "^2.2.0",
  6855. "lox/xhprof": "dev-master",
  6856. "phpunit/phpunit": "^4.8.36 || ^6.1",
  6857. "squizlabs/php_codesniffer": "^2.7",
  6858. "vlucas/phpdotenv": "^2.4",
  6859. "webflo/drupal-core-strict": "8.6.x-dev"
  6860. },
  6861. "bin": [
  6862. "drush"
  6863. ],
  6864. "type": "library",
  6865. "extra": {
  6866. "installer-paths": {
  6867. "sut/core": [
  6868. "type:drupal-core"
  6869. ],
  6870. "sut/libraries/{$name}": [
  6871. "type:drupal-library"
  6872. ],
  6873. "sut/modules/unish/{$name}": [
  6874. "drupal/devel"
  6875. ],
  6876. "sut/themes/unish/{$name}": [
  6877. "drupal/empty_theme"
  6878. ],
  6879. "sut/modules/contrib/{$name}": [
  6880. "type:drupal-module"
  6881. ],
  6882. "sut/profiles/contrib/{$name}": [
  6883. "type:drupal-profile"
  6884. ],
  6885. "sut/themes/contrib/{$name}": [
  6886. "type:drupal-theme"
  6887. ],
  6888. "sut/drush/contrib/{$name}": [
  6889. "type:drupal-drush"
  6890. ]
  6891. },
  6892. "branch-alias": {
  6893. "dev-master": "9.x-dev"
  6894. }
  6895. },
  6896. "autoload": {
  6897. "psr-4": {
  6898. "Drush\\": "src/",
  6899. "Drush\\Internal\\": "internal-copy/",
  6900. "Unish\\": "tests/"
  6901. }
  6902. },
  6903. "notification-url": "https://packagist.org/downloads/",
  6904. "license": [
  6905. "GPL-2.0-or-later"
  6906. ],
  6907. "authors": [
  6908. {
  6909. "name": "Moshe Weitzman",
  6910. "email": "weitzman@tejasa.com"
  6911. },
  6912. {
  6913. "name": "Owen Barton",
  6914. "email": "drupal@owenbarton.com"
  6915. },
  6916. {
  6917. "name": "Greg Anderson",
  6918. "email": "greg.1.anderson@greenknowe.org"
  6919. },
  6920. {
  6921. "name": "Jonathan Araña Cruz",
  6922. "email": "jonhattan@faita.net"
  6923. },
  6924. {
  6925. "name": "Jonathan Hedstrom",
  6926. "email": "jhedstrom@gmail.com"
  6927. },
  6928. {
  6929. "name": "Christopher Gervais",
  6930. "email": "chris@ergonlogic.com"
  6931. },
  6932. {
  6933. "name": "Dave Reid",
  6934. "email": "dave@davereid.net"
  6935. },
  6936. {
  6937. "name": "Damian Lee",
  6938. "email": "damiankloip@googlemail.com"
  6939. }
  6940. ],
  6941. "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.",
  6942. "homepage": "http://www.drush.org",
  6943. "time": "2018-10-17T18:37:53+00:00"
  6944. },
  6945. {
  6946. "name": "easyrdf/easyrdf",
  6947. "version": "0.9.1",
  6948. "source": {
  6949. "type": "git",
  6950. "url": "https://github.com/njh/easyrdf.git",
  6951. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6952. },
  6953. "dist": {
  6954. "type": "zip",
  6955. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6956. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6957. "shasum": ""
  6958. },
  6959. "require": {
  6960. "ext-mbstring": "*",
  6961. "ext-pcre": "*",
  6962. "php": ">=5.2.8"
  6963. },
  6964. "require-dev": {
  6965. "phpunit/phpunit": "~3.5",
  6966. "sami/sami": "~1.4",
  6967. "squizlabs/php_codesniffer": "~1.4.3"
  6968. },
  6969. "suggest": {
  6970. "ml/json-ld": "~1.0"
  6971. },
  6972. "type": "library",
  6973. "autoload": {
  6974. "psr-0": {
  6975. "EasyRdf_": "lib/"
  6976. }
  6977. },
  6978. "notification-url": "https://packagist.org/downloads/",
  6979. "license": [
  6980. "BSD-3-Clause"
  6981. ],
  6982. "authors": [
  6983. {
  6984. "name": "Nicholas Humfrey",
  6985. "email": "njh@aelius.com",
  6986. "homepage": "http://www.aelius.com/njh/",
  6987. "role": "Developer"
  6988. },
  6989. {
  6990. "name": "Alexey Zakhlestin",
  6991. "email": "indeyets@gmail.com",
  6992. "role": "Developer"
  6993. }
  6994. ],
  6995. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  6996. "homepage": "http://www.easyrdf.org/",
  6997. "keywords": [
  6998. "Linked Data",
  6999. "RDF",
  7000. "Semantic Web",
  7001. "Turtle",
  7002. "rdfa",
  7003. "sparql"
  7004. ],
  7005. "time": "2015-02-27T09:45:49+00:00"
  7006. },
  7007. {
  7008. "name": "egulias/email-validator",
  7009. "version": "1.2.15",
  7010. "source": {
  7011. "type": "git",
  7012. "url": "https://github.com/egulias/EmailValidator.git",
  7013. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  7014. },
  7015. "dist": {
  7016. "type": "zip",
  7017. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7018. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7019. "shasum": ""
  7020. },
  7021. "require": {
  7022. "doctrine/lexer": "^1.0.1",
  7023. "php": ">= 5.3.3"
  7024. },
  7025. "require-dev": {
  7026. "phpunit/phpunit": "^4.8.24"
  7027. },
  7028. "type": "library",
  7029. "extra": {
  7030. "branch-alias": {
  7031. "dev-master": "2.0.x-dev"
  7032. }
  7033. },
  7034. "autoload": {
  7035. "psr-0": {
  7036. "Egulias\\": "src/"
  7037. }
  7038. },
  7039. "notification-url": "https://packagist.org/downloads/",
  7040. "license": [
  7041. "MIT"
  7042. ],
  7043. "authors": [
  7044. {
  7045. "name": "Eduardo Gulias Davis"
  7046. }
  7047. ],
  7048. "description": "A library for validating emails",
  7049. "homepage": "https://github.com/egulias/EmailValidator",
  7050. "keywords": [
  7051. "email",
  7052. "emailvalidation",
  7053. "emailvalidator",
  7054. "validation",
  7055. "validator"
  7056. ],
  7057. "time": "2018-09-25T20:59:41+00:00"
  7058. },
  7059. {
  7060. "name": "g1a/composer-test-scenarios",
  7061. "version": "2.2.0",
  7062. "source": {
  7063. "type": "git",
  7064. "url": "https://github.com/g1a/composer-test-scenarios.git",
  7065. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880"
  7066. },
  7067. "dist": {
  7068. "type": "zip",
  7069. "url": "https://api.github.com/repos/g1a/composer-test-scenarios/zipball/a166fd15191aceab89f30c097e694b7cf3db4880",
  7070. "reference": "a166fd15191aceab89f30c097e694b7cf3db4880",
  7071. "shasum": ""
  7072. },
  7073. "bin": [
  7074. "scripts/create-scenario",
  7075. "scripts/dependency-licenses",
  7076. "scripts/install-scenario"
  7077. ],
  7078. "type": "library",
  7079. "notification-url": "https://packagist.org/downloads/",
  7080. "license": [
  7081. "MIT"
  7082. ],
  7083. "authors": [
  7084. {
  7085. "name": "Greg Anderson",
  7086. "email": "greg.1.anderson@greenknowe.org"
  7087. }
  7088. ],
  7089. "description": "Useful scripts for testing multiple sets of Composer dependencies.",
  7090. "time": "2018-08-08T23:37:23+00:00"
  7091. },
  7092. {
  7093. "name": "giggsey/libphonenumber-for-php",
  7094. "version": "8.10.2",
  7095. "source": {
  7096. "type": "git",
  7097. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  7098. "reference": "a71f260c2efce10ded8af030a20fa13edfb0e9be"
  7099. },
  7100. "dist": {
  7101. "type": "zip",
  7102. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/a71f260c2efce10ded8af030a20fa13edfb0e9be",
  7103. "reference": "a71f260c2efce10ded8af030a20fa13edfb0e9be",
  7104. "shasum": ""
  7105. },
  7106. "require": {
  7107. "ext-mbstring": "*",
  7108. "giggsey/locale": "^1.2",
  7109. "php": ">=5.3.2"
  7110. },
  7111. "require-dev": {
  7112. "pear/pear-core-minimal": "^1.9",
  7113. "pear/pear_exception": "^1.0",
  7114. "pear/versioncontrol_git": "^0.5",
  7115. "phing/phing": "^2.7",
  7116. "php-coveralls/php-coveralls": "^1.0|^2.0",
  7117. "phpunit/phpunit": "^4.8.36|^5.0",
  7118. "symfony/console": "^2.8|^3.0"
  7119. },
  7120. "type": "library",
  7121. "extra": {
  7122. "branch-alias": {
  7123. "dev-master": "8.x-dev"
  7124. }
  7125. },
  7126. "autoload": {
  7127. "psr-4": {
  7128. "libphonenumber\\": "src/"
  7129. },
  7130. "exclude-from-classmap": [
  7131. "/src/data/",
  7132. "/src/carrier/data/",
  7133. "/src/geocoding/data/",
  7134. "/src/timezone/data/"
  7135. ]
  7136. },
  7137. "notification-url": "https://packagist.org/downloads/",
  7138. "license": [
  7139. "Apache-2.0"
  7140. ],
  7141. "authors": [
  7142. {
  7143. "name": "Joshua Gigg",
  7144. "email": "giggsey@gmail.com",
  7145. "homepage": "https://giggsey.com/"
  7146. }
  7147. ],
  7148. "description": "PHP Port of Google's libphonenumber",
  7149. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  7150. "keywords": [
  7151. "geocoding",
  7152. "geolocation",
  7153. "libphonenumber",
  7154. "mobile",
  7155. "phonenumber",
  7156. "validation"
  7157. ],
  7158. "time": "2018-12-06T10:42:08+00:00"
  7159. },
  7160. {
  7161. "name": "giggsey/locale",
  7162. "version": "1.6",
  7163. "source": {
  7164. "type": "git",
  7165. "url": "https://github.com/giggsey/Locale.git",
  7166. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5"
  7167. },
  7168. "dist": {
  7169. "type": "zip",
  7170. "url": "https://api.github.com/repos/giggsey/Locale/zipball/da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7171. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7172. "shasum": ""
  7173. },
  7174. "require": {
  7175. "php": ">=5.3.2"
  7176. },
  7177. "require-dev": {
  7178. "pear/pear-core-minimal": "^1.9",
  7179. "pear/pear_exception": "^1.0",
  7180. "pear/versioncontrol_git": "^0.5",
  7181. "phing/phing": "~2.7",
  7182. "phpunit/phpunit": "^4.8|^5.0",
  7183. "satooshi/php-coveralls": "^1.0",
  7184. "symfony/console": "^2.8|^3.0|^4.0",
  7185. "symfony/filesystem": "^2.8|^3.0|^4.0",
  7186. "symfony/finder": "^2.8|^3.0|^4.0",
  7187. "symfony/process": "^2.8|^3.0|^4.0"
  7188. },
  7189. "type": "library",
  7190. "autoload": {
  7191. "psr-4": {
  7192. "Giggsey\\Locale\\": "src/"
  7193. }
  7194. },
  7195. "notification-url": "https://packagist.org/downloads/",
  7196. "license": [
  7197. "MIT"
  7198. ],
  7199. "authors": [
  7200. {
  7201. "name": "Joshua Gigg",
  7202. "email": "giggsey@gmail.com",
  7203. "homepage": "http://giggsey.com/"
  7204. }
  7205. ],
  7206. "description": "Locale functions required by libphonenumber-for-php",
  7207. "time": "2018-10-18T07:17:52+00:00"
  7208. },
  7209. {
  7210. "name": "grasmash/expander",
  7211. "version": "1.0.0",
  7212. "source": {
  7213. "type": "git",
  7214. "url": "https://github.com/grasmash/expander.git",
  7215. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  7216. },
  7217. "dist": {
  7218. "type": "zip",
  7219. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7220. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7221. "shasum": ""
  7222. },
  7223. "require": {
  7224. "dflydev/dot-access-data": "^1.1.0",
  7225. "php": ">=5.4"
  7226. },
  7227. "require-dev": {
  7228. "greg-1-anderson/composer-test-scenarios": "^1",
  7229. "phpunit/phpunit": "^4|^5.5.4",
  7230. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7231. "squizlabs/php_codesniffer": "^2.7"
  7232. },
  7233. "type": "library",
  7234. "extra": {
  7235. "branch-alias": {
  7236. "dev-master": "1.x-dev"
  7237. }
  7238. },
  7239. "autoload": {
  7240. "psr-4": {
  7241. "Grasmash\\Expander\\": "src/"
  7242. }
  7243. },
  7244. "notification-url": "https://packagist.org/downloads/",
  7245. "license": [
  7246. "MIT"
  7247. ],
  7248. "authors": [
  7249. {
  7250. "name": "Matthew Grasmick"
  7251. }
  7252. ],
  7253. "description": "Expands internal property references in PHP arrays file.",
  7254. "time": "2017-12-21T22:14:55+00:00"
  7255. },
  7256. {
  7257. "name": "grasmash/yaml-expander",
  7258. "version": "1.4.0",
  7259. "source": {
  7260. "type": "git",
  7261. "url": "https://github.com/grasmash/yaml-expander.git",
  7262. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  7263. },
  7264. "dist": {
  7265. "type": "zip",
  7266. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7267. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7268. "shasum": ""
  7269. },
  7270. "require": {
  7271. "dflydev/dot-access-data": "^1.1.0",
  7272. "php": ">=5.4",
  7273. "symfony/yaml": "^2.8.11|^3|^4"
  7274. },
  7275. "require-dev": {
  7276. "greg-1-anderson/composer-test-scenarios": "^1",
  7277. "phpunit/phpunit": "^4.8|^5.5.4",
  7278. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7279. "squizlabs/php_codesniffer": "^2.7"
  7280. },
  7281. "type": "library",
  7282. "extra": {
  7283. "branch-alias": {
  7284. "dev-master": "1.x-dev"
  7285. }
  7286. },
  7287. "autoload": {
  7288. "psr-4": {
  7289. "Grasmash\\YamlExpander\\": "src/"
  7290. }
  7291. },
  7292. "notification-url": "https://packagist.org/downloads/",
  7293. "license": [
  7294. "MIT"
  7295. ],
  7296. "authors": [
  7297. {
  7298. "name": "Matthew Grasmick"
  7299. }
  7300. ],
  7301. "description": "Expands internal property references in a yaml file.",
  7302. "time": "2017-12-16T16:06:03+00:00"
  7303. },
  7304. {
  7305. "name": "guzzlehttp/guzzle",
  7306. "version": "6.3.3",
  7307. "source": {
  7308. "type": "git",
  7309. "url": "https://github.com/guzzle/guzzle.git",
  7310. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  7311. },
  7312. "dist": {
  7313. "type": "zip",
  7314. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7315. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7316. "shasum": ""
  7317. },
  7318. "require": {
  7319. "guzzlehttp/promises": "^1.0",
  7320. "guzzlehttp/psr7": "^1.4",
  7321. "php": ">=5.5"
  7322. },
  7323. "require-dev": {
  7324. "ext-curl": "*",
  7325. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  7326. "psr/log": "^1.0"
  7327. },
  7328. "suggest": {
  7329. "psr/log": "Required for using the Log middleware"
  7330. },
  7331. "type": "library",
  7332. "extra": {
  7333. "branch-alias": {
  7334. "dev-master": "6.3-dev"
  7335. }
  7336. },
  7337. "autoload": {
  7338. "files": [
  7339. "src/functions_include.php"
  7340. ],
  7341. "psr-4": {
  7342. "GuzzleHttp\\": "src/"
  7343. }
  7344. },
  7345. "notification-url": "https://packagist.org/downloads/",
  7346. "license": [
  7347. "MIT"
  7348. ],
  7349. "authors": [
  7350. {
  7351. "name": "Michael Dowling",
  7352. "email": "mtdowling@gmail.com",
  7353. "homepage": "https://github.com/mtdowling"
  7354. }
  7355. ],
  7356. "description": "Guzzle is a PHP HTTP client library",
  7357. "homepage": "http://guzzlephp.org/",
  7358. "keywords": [
  7359. "client",
  7360. "curl",
  7361. "framework",
  7362. "http",
  7363. "http client",
  7364. "rest",
  7365. "web service"
  7366. ],
  7367. "time": "2018-04-22T15:46:56+00:00"
  7368. },
  7369. {
  7370. "name": "guzzlehttp/promises",
  7371. "version": "v1.3.1",
  7372. "source": {
  7373. "type": "git",
  7374. "url": "https://github.com/guzzle/promises.git",
  7375. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  7376. },
  7377. "dist": {
  7378. "type": "zip",
  7379. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7380. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7381. "shasum": ""
  7382. },
  7383. "require": {
  7384. "php": ">=5.5.0"
  7385. },
  7386. "require-dev": {
  7387. "phpunit/phpunit": "^4.0"
  7388. },
  7389. "type": "library",
  7390. "extra": {
  7391. "branch-alias": {
  7392. "dev-master": "1.4-dev"
  7393. }
  7394. },
  7395. "autoload": {
  7396. "psr-4": {
  7397. "GuzzleHttp\\Promise\\": "src/"
  7398. },
  7399. "files": [
  7400. "src/functions_include.php"
  7401. ]
  7402. },
  7403. "notification-url": "https://packagist.org/downloads/",
  7404. "license": [
  7405. "MIT"
  7406. ],
  7407. "authors": [
  7408. {
  7409. "name": "Michael Dowling",
  7410. "email": "mtdowling@gmail.com",
  7411. "homepage": "https://github.com/mtdowling"
  7412. }
  7413. ],
  7414. "description": "Guzzle promises library",
  7415. "keywords": [
  7416. "promise"
  7417. ],
  7418. "time": "2016-12-20T10:07:11+00:00"
  7419. },
  7420. {
  7421. "name": "guzzlehttp/psr7",
  7422. "version": "1.4.2",
  7423. "source": {
  7424. "type": "git",
  7425. "url": "https://github.com/guzzle/psr7.git",
  7426. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
  7427. },
  7428. "dist": {
  7429. "type": "zip",
  7430. "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  7431. "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
  7432. "shasum": ""
  7433. },
  7434. "require": {
  7435. "php": ">=5.4.0",
  7436. "psr/http-message": "~1.0"
  7437. },
  7438. "provide": {
  7439. "psr/http-message-implementation": "1.0"
  7440. },
  7441. "require-dev": {
  7442. "phpunit/phpunit": "~4.0"
  7443. },
  7444. "type": "library",
  7445. "extra": {
  7446. "branch-alias": {
  7447. "dev-master": "1.4-dev"
  7448. }
  7449. },
  7450. "autoload": {
  7451. "psr-4": {
  7452. "GuzzleHttp\\Psr7\\": "src/"
  7453. },
  7454. "files": [
  7455. "src/functions_include.php"
  7456. ]
  7457. },
  7458. "notification-url": "https://packagist.org/downloads/",
  7459. "license": [
  7460. "MIT"
  7461. ],
  7462. "authors": [
  7463. {
  7464. "name": "Michael Dowling",
  7465. "email": "mtdowling@gmail.com",
  7466. "homepage": "https://github.com/mtdowling"
  7467. },
  7468. {
  7469. "name": "Tobias Schultze",
  7470. "homepage": "https://github.com/Tobion"
  7471. }
  7472. ],
  7473. "description": "PSR-7 message implementation that also provides common utility methods",
  7474. "keywords": [
  7475. "http",
  7476. "message",
  7477. "request",
  7478. "response",
  7479. "stream",
  7480. "uri",
  7481. "url"
  7482. ],
  7483. "time": "2017-03-20T17:10:46+00:00"
  7484. },
  7485. {
  7486. "name": "jakub-onderka/php-console-color",
  7487. "version": "v0.2",
  7488. "source": {
  7489. "type": "git",
  7490. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  7491. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  7492. },
  7493. "dist": {
  7494. "type": "zip",
  7495. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  7496. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  7497. "shasum": ""
  7498. },
  7499. "require": {
  7500. "php": ">=5.4.0"
  7501. },
  7502. "require-dev": {
  7503. "jakub-onderka/php-code-style": "1.0",
  7504. "jakub-onderka/php-parallel-lint": "1.0",
  7505. "jakub-onderka/php-var-dump-check": "0.*",
  7506. "phpunit/phpunit": "~4.3",
  7507. "squizlabs/php_codesniffer": "1.*"
  7508. },
  7509. "type": "library",
  7510. "autoload": {
  7511. "psr-4": {
  7512. "JakubOnderka\\PhpConsoleColor\\": "src/"
  7513. }
  7514. },
  7515. "notification-url": "https://packagist.org/downloads/",
  7516. "license": [
  7517. "BSD-2-Clause"
  7518. ],
  7519. "authors": [
  7520. {
  7521. "name": "Jakub Onderka",
  7522. "email": "jakub.onderka@gmail.com"
  7523. }
  7524. ],
  7525. "time": "2018-09-29T17:23:10+00:00"
  7526. },
  7527. {
  7528. "name": "jakub-onderka/php-console-highlighter",
  7529. "version": "v0.4",
  7530. "source": {
  7531. "type": "git",
  7532. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  7533. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  7534. },
  7535. "dist": {
  7536. "type": "zip",
  7537. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  7538. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  7539. "shasum": ""
  7540. },
  7541. "require": {
  7542. "ext-tokenizer": "*",
  7543. "jakub-onderka/php-console-color": "~0.2",
  7544. "php": ">=5.4.0"
  7545. },
  7546. "require-dev": {
  7547. "jakub-onderka/php-code-style": "~1.0",
  7548. "jakub-onderka/php-parallel-lint": "~1.0",
  7549. "jakub-onderka/php-var-dump-check": "~0.1",
  7550. "phpunit/phpunit": "~4.0",
  7551. "squizlabs/php_codesniffer": "~1.5"
  7552. },
  7553. "type": "library",
  7554. "autoload": {
  7555. "psr-4": {
  7556. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  7557. }
  7558. },
  7559. "notification-url": "https://packagist.org/downloads/",
  7560. "license": [
  7561. "MIT"
  7562. ],
  7563. "authors": [
  7564. {
  7565. "name": "Jakub Onderka",
  7566. "email": "acci@acci.cz",
  7567. "homepage": "http://www.acci.cz/"
  7568. }
  7569. ],
  7570. "description": "Highlight PHP code in terminal",
  7571. "time": "2018-09-29T18:48:56+00:00"
  7572. },
  7573. {
  7574. "name": "league/container",
  7575. "version": "2.4.1",
  7576. "source": {
  7577. "type": "git",
  7578. "url": "https://github.com/thephpleague/container.git",
  7579. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  7580. },
  7581. "dist": {
  7582. "type": "zip",
  7583. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  7584. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  7585. "shasum": ""
  7586. },
  7587. "require": {
  7588. "container-interop/container-interop": "^1.2",
  7589. "php": "^5.4.0 || ^7.0"
  7590. },
  7591. "provide": {
  7592. "container-interop/container-interop-implementation": "^1.2",
  7593. "psr/container-implementation": "^1.0"
  7594. },
  7595. "replace": {
  7596. "orno/di": "~2.0"
  7597. },
  7598. "require-dev": {
  7599. "phpunit/phpunit": "4.*"
  7600. },
  7601. "type": "library",
  7602. "extra": {
  7603. "branch-alias": {
  7604. "dev-2.x": "2.x-dev",
  7605. "dev-1.x": "1.x-dev"
  7606. }
  7607. },
  7608. "autoload": {
  7609. "psr-4": {
  7610. "League\\Container\\": "src"
  7611. }
  7612. },
  7613. "notification-url": "https://packagist.org/downloads/",
  7614. "license": [
  7615. "MIT"
  7616. ],
  7617. "authors": [
  7618. {
  7619. "name": "Phil Bennett",
  7620. "email": "philipobenito@gmail.com",
  7621. "homepage": "http://www.philipobenito.com",
  7622. "role": "Developer"
  7623. }
  7624. ],
  7625. "description": "A fast and intuitive dependency injection container.",
  7626. "homepage": "https://github.com/thephpleague/container",
  7627. "keywords": [
  7628. "container",
  7629. "dependency",
  7630. "di",
  7631. "injection",
  7632. "league",
  7633. "provider",
  7634. "service"
  7635. ],
  7636. "time": "2017-05-10T09:20:27+00:00"
  7637. },
  7638. {
  7639. "name": "lsolesen/pel",
  7640. "version": "0.9.6",
  7641. "source": {
  7642. "type": "git",
  7643. "url": "https://github.com/lsolesen/pel.git",
  7644. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23"
  7645. },
  7646. "dist": {
  7647. "type": "zip",
  7648. "url": "https://api.github.com/repos/lsolesen/pel/zipball/c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7649. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  7650. "shasum": ""
  7651. },
  7652. "require": {
  7653. "php": ">=5.0.0"
  7654. },
  7655. "require-dev": {
  7656. "ext-gd": "*",
  7657. "phpunit/phpunit": "5.7.*",
  7658. "satooshi/php-coveralls": "1.0.*",
  7659. "squizlabs/php_codesniffer": "3.0.0RC3"
  7660. },
  7661. "type": "library",
  7662. "autoload": {
  7663. "psr-4": {
  7664. "lsolesen\\pel\\": "src/"
  7665. }
  7666. },
  7667. "notification-url": "https://packagist.org/downloads/",
  7668. "license": [
  7669. "GPL-2.0"
  7670. ],
  7671. "authors": [
  7672. {
  7673. "name": "Lars Olesen",
  7674. "email": "lars@intraface.dk",
  7675. "homepage": "http://intraface.dk",
  7676. "role": "Developer"
  7677. },
  7678. {
  7679. "name": "Martin Geisler",
  7680. "email": "martin@geisler.net",
  7681. "homepage": "http://geisler.net",
  7682. "role": "Developer"
  7683. }
  7684. ],
  7685. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  7686. "homepage": "http://lsolesen.github.com/pel/",
  7687. "keywords": [
  7688. "exif",
  7689. "image"
  7690. ],
  7691. "time": "2017-02-03T11:58:58+00:00"
  7692. },
  7693. {
  7694. "name": "masterminds/html5",
  7695. "version": "2.3.1",
  7696. "source": {
  7697. "type": "git",
  7698. "url": "https://github.com/Masterminds/html5-php.git",
  7699. "reference": "33f8d475d28741398be26cdff7a10a63003324a3"
  7700. },
  7701. "dist": {
  7702. "type": "zip",
  7703. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/33f8d475d28741398be26cdff7a10a63003324a3",
  7704. "reference": "33f8d475d28741398be26cdff7a10a63003324a3",
  7705. "shasum": ""
  7706. },
  7707. "require": {
  7708. "ext-libxml": "*",
  7709. "php": ">=5.3.0"
  7710. },
  7711. "require-dev": {
  7712. "phpunit/phpunit": "4.*",
  7713. "sami/sami": "~2.0",
  7714. "satooshi/php-coveralls": "1.0.*"
  7715. },
  7716. "type": "library",
  7717. "extra": {
  7718. "branch-alias": {
  7719. "dev-master": "2.2-dev"
  7720. }
  7721. },
  7722. "autoload": {
  7723. "psr-4": {
  7724. "Masterminds\\": "src"
  7725. }
  7726. },
  7727. "notification-url": "https://packagist.org/downloads/",
  7728. "license": [
  7729. "MIT"
  7730. ],
  7731. "authors": [
  7732. {
  7733. "name": "Matt Butcher",
  7734. "email": "technosophos@gmail.com"
  7735. },
  7736. {
  7737. "name": "Asmir Mustafic",
  7738. "email": "goetas@gmail.com"
  7739. },
  7740. {
  7741. "name": "Matt Farina",
  7742. "email": "matt@mattfarina.com"
  7743. }
  7744. ],
  7745. "description": "An HTML5 parser and serializer.",
  7746. "homepage": "http://masterminds.github.io/html5-php",
  7747. "keywords": [
  7748. "HTML5",
  7749. "dom",
  7750. "html",
  7751. "parser",
  7752. "querypath",
  7753. "serializer",
  7754. "xml"
  7755. ],
  7756. "time": "2018-10-22T16:58:34+00:00"
  7757. },
  7758. {
  7759. "name": "nikic/php-parser",
  7760. "version": "v4.1.0",
  7761. "source": {
  7762. "type": "git",
  7763. "url": "https://github.com/nikic/PHP-Parser.git",
  7764. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0"
  7765. },
  7766. "dist": {
  7767. "type": "zip",
  7768. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/d0230c5c77a7e3cfa69446febf340978540958c0",
  7769. "reference": "d0230c5c77a7e3cfa69446febf340978540958c0",
  7770. "shasum": ""
  7771. },
  7772. "require": {
  7773. "ext-tokenizer": "*",
  7774. "php": ">=7.0"
  7775. },
  7776. "require-dev": {
  7777. "phpunit/phpunit": "^6.5 || ^7.0"
  7778. },
  7779. "bin": [
  7780. "bin/php-parse"
  7781. ],
  7782. "type": "library",
  7783. "extra": {
  7784. "branch-alias": {
  7785. "dev-master": "4.1-dev"
  7786. }
  7787. },
  7788. "autoload": {
  7789. "psr-4": {
  7790. "PhpParser\\": "lib/PhpParser"
  7791. }
  7792. },
  7793. "notification-url": "https://packagist.org/downloads/",
  7794. "license": [
  7795. "BSD-3-Clause"
  7796. ],
  7797. "authors": [
  7798. {
  7799. "name": "Nikita Popov"
  7800. }
  7801. ],
  7802. "description": "A PHP parser written in PHP",
  7803. "keywords": [
  7804. "parser",
  7805. "php"
  7806. ],
  7807. "time": "2018-10-10T09:24:14+00:00"
  7808. },
  7809. {
  7810. "name": "paragonie/random_compat",
  7811. "version": "v2.0.17",
  7812. "source": {
  7813. "type": "git",
  7814. "url": "https://github.com/paragonie/random_compat.git",
  7815. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d"
  7816. },
  7817. "dist": {
  7818. "type": "zip",
  7819. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/29af24f25bab834fcbb38ad2a69fa93b867e070d",
  7820. "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d",
  7821. "shasum": ""
  7822. },
  7823. "require": {
  7824. "php": ">=5.2.0"
  7825. },
  7826. "require-dev": {
  7827. "phpunit/phpunit": "4.*|5.*"
  7828. },
  7829. "suggest": {
  7830. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7831. },
  7832. "type": "library",
  7833. "autoload": {
  7834. "files": [
  7835. "lib/random.php"
  7836. ]
  7837. },
  7838. "notification-url": "https://packagist.org/downloads/",
  7839. "license": [
  7840. "MIT"
  7841. ],
  7842. "authors": [
  7843. {
  7844. "name": "Paragon Initiative Enterprises",
  7845. "email": "security@paragonie.com",
  7846. "homepage": "https://paragonie.com"
  7847. }
  7848. ],
  7849. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7850. "keywords": [
  7851. "csprng",
  7852. "polyfill",
  7853. "pseudorandom",
  7854. "random"
  7855. ],
  7856. "time": "2018-07-04T16:31:37+00:00"
  7857. },
  7858. {
  7859. "name": "phenx/php-font-lib",
  7860. "version": "0.5",
  7861. "source": {
  7862. "type": "git",
  7863. "url": "https://github.com/PhenX/php-font-lib.git",
  7864. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962"
  7865. },
  7866. "dist": {
  7867. "type": "zip",
  7868. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7869. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962",
  7870. "shasum": ""
  7871. },
  7872. "require-dev": {
  7873. "phpunit/phpunit": "^4.8"
  7874. },
  7875. "type": "library",
  7876. "autoload": {
  7877. "psr-4": {
  7878. "FontLib\\": "src/FontLib"
  7879. }
  7880. },
  7881. "notification-url": "https://packagist.org/downloads/",
  7882. "license": [
  7883. "LGPL-3.0"
  7884. ],
  7885. "authors": [
  7886. {
  7887. "name": "Fabien Ménager",
  7888. "email": "fabien.menager@gmail.com"
  7889. }
  7890. ],
  7891. "description": "A library to read, parse, export and make subsets of different types of font files.",
  7892. "homepage": "https://github.com/PhenX/php-font-lib",
  7893. "time": "2017-02-11T10:58:43+00:00"
  7894. },
  7895. {
  7896. "name": "psr/container",
  7897. "version": "1.0.0",
  7898. "source": {
  7899. "type": "git",
  7900. "url": "https://github.com/php-fig/container.git",
  7901. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7902. },
  7903. "dist": {
  7904. "type": "zip",
  7905. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7906. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7907. "shasum": ""
  7908. },
  7909. "require": {
  7910. "php": ">=5.3.0"
  7911. },
  7912. "type": "library",
  7913. "extra": {
  7914. "branch-alias": {
  7915. "dev-master": "1.0.x-dev"
  7916. }
  7917. },
  7918. "autoload": {
  7919. "psr-4": {
  7920. "Psr\\Container\\": "src/"
  7921. }
  7922. },
  7923. "notification-url": "https://packagist.org/downloads/",
  7924. "license": [
  7925. "MIT"
  7926. ],
  7927. "authors": [
  7928. {
  7929. "name": "PHP-FIG",
  7930. "homepage": "http://www.php-fig.org/"
  7931. }
  7932. ],
  7933. "description": "Common Container Interface (PHP FIG PSR-11)",
  7934. "homepage": "https://github.com/php-fig/container",
  7935. "keywords": [
  7936. "PSR-11",
  7937. "container",
  7938. "container-interface",
  7939. "container-interop",
  7940. "psr"
  7941. ],
  7942. "time": "2017-02-14T16:28:37+00:00"
  7943. },
  7944. {
  7945. "name": "psr/http-message",
  7946. "version": "1.0.1",
  7947. "source": {
  7948. "type": "git",
  7949. "url": "https://github.com/php-fig/http-message.git",
  7950. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7951. },
  7952. "dist": {
  7953. "type": "zip",
  7954. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7955. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7956. "shasum": ""
  7957. },
  7958. "require": {
  7959. "php": ">=5.3.0"
  7960. },
  7961. "type": "library",
  7962. "extra": {
  7963. "branch-alias": {
  7964. "dev-master": "1.0.x-dev"
  7965. }
  7966. },
  7967. "autoload": {
  7968. "psr-4": {
  7969. "Psr\\Http\\Message\\": "src/"
  7970. }
  7971. },
  7972. "notification-url": "https://packagist.org/downloads/",
  7973. "license": [
  7974. "MIT"
  7975. ],
  7976. "authors": [
  7977. {
  7978. "name": "PHP-FIG",
  7979. "homepage": "http://www.php-fig.org/"
  7980. }
  7981. ],
  7982. "description": "Common interface for HTTP messages",
  7983. "homepage": "https://github.com/php-fig/http-message",
  7984. "keywords": [
  7985. "http",
  7986. "http-message",
  7987. "psr",
  7988. "psr-7",
  7989. "request",
  7990. "response"
  7991. ],
  7992. "time": "2016-08-06T14:39:51+00:00"
  7993. },
  7994. {
  7995. "name": "psr/log",
  7996. "version": "1.0.2",
  7997. "source": {
  7998. "type": "git",
  7999. "url": "https://github.com/php-fig/log.git",
  8000. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
  8001. },
  8002. "dist": {
  8003. "type": "zip",
  8004. "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  8005. "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
  8006. "shasum": ""
  8007. },
  8008. "require": {
  8009. "php": ">=5.3.0"
  8010. },
  8011. "type": "library",
  8012. "extra": {
  8013. "branch-alias": {
  8014. "dev-master": "1.0.x-dev"
  8015. }
  8016. },
  8017. "autoload": {
  8018. "psr-4": {
  8019. "Psr\\Log\\": "Psr/Log/"
  8020. }
  8021. },
  8022. "notification-url": "https://packagist.org/downloads/",
  8023. "license": [
  8024. "MIT"
  8025. ],
  8026. "authors": [
  8027. {
  8028. "name": "PHP-FIG",
  8029. "homepage": "http://www.php-fig.org/"
  8030. }
  8031. ],
  8032. "description": "Common interface for logging libraries",
  8033. "homepage": "https://github.com/php-fig/log",
  8034. "keywords": [
  8035. "log",
  8036. "psr",
  8037. "psr-3"
  8038. ],
  8039. "time": "2016-10-10T12:19:37+00:00"
  8040. },
  8041. {
  8042. "name": "psy/psysh",
  8043. "version": "v0.9.9",
  8044. "source": {
  8045. "type": "git",
  8046. "url": "https://github.com/bobthecow/psysh.git",
  8047. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  8048. },
  8049. "dist": {
  8050. "type": "zip",
  8051. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8052. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8053. "shasum": ""
  8054. },
  8055. "require": {
  8056. "dnoegel/php-xdg-base-dir": "0.1",
  8057. "ext-json": "*",
  8058. "ext-tokenizer": "*",
  8059. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8060. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8061. "php": ">=5.4.0",
  8062. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8063. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8064. },
  8065. "require-dev": {
  8066. "bamarni/composer-bin-plugin": "^1.2",
  8067. "hoa/console": "~2.15|~3.16",
  8068. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8069. },
  8070. "suggest": {
  8071. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8072. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8073. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8074. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8075. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8076. },
  8077. "bin": [
  8078. "bin/psysh"
  8079. ],
  8080. "type": "library",
  8081. "extra": {
  8082. "branch-alias": {
  8083. "dev-develop": "0.9.x-dev"
  8084. }
  8085. },
  8086. "autoload": {
  8087. "files": [
  8088. "src/functions.php"
  8089. ],
  8090. "psr-4": {
  8091. "Psy\\": "src/"
  8092. }
  8093. },
  8094. "notification-url": "https://packagist.org/downloads/",
  8095. "license": [
  8096. "MIT"
  8097. ],
  8098. "authors": [
  8099. {
  8100. "name": "Justin Hileman",
  8101. "email": "justin@justinhileman.info",
  8102. "homepage": "http://justinhileman.com"
  8103. }
  8104. ],
  8105. "description": "An interactive shell for modern PHP.",
  8106. "homepage": "http://psysh.org",
  8107. "keywords": [
  8108. "REPL",
  8109. "console",
  8110. "interactive",
  8111. "shell"
  8112. ],
  8113. "time": "2018-10-13T15:16:03+00:00"
  8114. },
  8115. {
  8116. "name": "stack/builder",
  8117. "version": "v1.0.5",
  8118. "source": {
  8119. "type": "git",
  8120. "url": "https://github.com/stackphp/builder.git",
  8121. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  8122. },
  8123. "dist": {
  8124. "type": "zip",
  8125. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8126. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8127. "shasum": ""
  8128. },
  8129. "require": {
  8130. "php": ">=5.3.0",
  8131. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  8132. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  8133. },
  8134. "require-dev": {
  8135. "silex/silex": "~1.0"
  8136. },
  8137. "type": "library",
  8138. "extra": {
  8139. "branch-alias": {
  8140. "dev-master": "1.0-dev"
  8141. }
  8142. },
  8143. "autoload": {
  8144. "psr-0": {
  8145. "Stack": "src"
  8146. }
  8147. },
  8148. "notification-url": "https://packagist.org/downloads/",
  8149. "license": [
  8150. "MIT"
  8151. ],
  8152. "authors": [
  8153. {
  8154. "name": "Igor Wiedler",
  8155. "email": "igor@wiedler.ch"
  8156. }
  8157. ],
  8158. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  8159. "keywords": [
  8160. "stack"
  8161. ],
  8162. "time": "2017-11-18T14:57:29+00:00"
  8163. },
  8164. {
  8165. "name": "stecman/symfony-console-completion",
  8166. "version": "0.8.0",
  8167. "source": {
  8168. "type": "git",
  8169. "url": "https://github.com/stecman/symfony-console-completion.git",
  8170. "reference": "cd738867503477e91dbe84173dfabd431c883431"
  8171. },
  8172. "dist": {
  8173. "type": "zip",
  8174. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/cd738867503477e91dbe84173dfabd431c883431",
  8175. "reference": "cd738867503477e91dbe84173dfabd431c883431",
  8176. "shasum": ""
  8177. },
  8178. "require": {
  8179. "php": ">=5.3.2",
  8180. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  8181. },
  8182. "require-dev": {
  8183. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  8184. },
  8185. "type": "library",
  8186. "extra": {
  8187. "branch-alias": {
  8188. "dev-master": "0.6.x-dev"
  8189. }
  8190. },
  8191. "autoload": {
  8192. "psr-4": {
  8193. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  8194. }
  8195. },
  8196. "notification-url": "https://packagist.org/downloads/",
  8197. "license": [
  8198. "MIT"
  8199. ],
  8200. "authors": [
  8201. {
  8202. "name": "Stephen Holdaway",
  8203. "email": "stephen@stecman.co.nz"
  8204. }
  8205. ],
  8206. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  8207. "time": "2018-02-10T04:28:01+00:00"
  8208. },
  8209. {
  8210. "name": "symfony-cmf/routing",
  8211. "version": "1.4.1",
  8212. "source": {
  8213. "type": "git",
  8214. "url": "https://github.com/symfony-cmf/routing.git",
  8215. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  8216. },
  8217. "dist": {
  8218. "type": "zip",
  8219. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8220. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8221. "shasum": ""
  8222. },
  8223. "require": {
  8224. "php": "^5.3.9|^7.0",
  8225. "psr/log": "1.*",
  8226. "symfony/http-kernel": "^2.2|3.*",
  8227. "symfony/routing": "^2.2|3.*"
  8228. },
  8229. "require-dev": {
  8230. "friendsofsymfony/jsrouting-bundle": "^1.1",
  8231. "symfony-cmf/testing": "^1.3",
  8232. "symfony/config": "^2.2|3.*",
  8233. "symfony/dependency-injection": "^2.0.5|3.*",
  8234. "symfony/event-dispatcher": "^2.1|3.*"
  8235. },
  8236. "suggest": {
  8237. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  8238. },
  8239. "type": "library",
  8240. "extra": {
  8241. "branch-alias": {
  8242. "dev-master": "1.4-dev"
  8243. }
  8244. },
  8245. "autoload": {
  8246. "psr-4": {
  8247. "Symfony\\Cmf\\Component\\Routing\\": ""
  8248. }
  8249. },
  8250. "notification-url": "https://packagist.org/downloads/",
  8251. "license": [
  8252. "MIT"
  8253. ],
  8254. "authors": [
  8255. {
  8256. "name": "Symfony CMF Community",
  8257. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  8258. }
  8259. ],
  8260. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  8261. "homepage": "http://cmf.symfony.com",
  8262. "keywords": [
  8263. "database",
  8264. "routing"
  8265. ],
  8266. "time": "2017-05-09T08:10:41+00:00"
  8267. },
  8268. {
  8269. "name": "symfony/class-loader",
  8270. "version": "v3.4.17",
  8271. "source": {
  8272. "type": "git",
  8273. "url": "https://github.com/symfony/class-loader.git",
  8274. "reference": "f31333bdff54c7595f834d510a6d2325573ddb36"
  8275. },
  8276. "dist": {
  8277. "type": "zip",
  8278. "url": "https://api.github.com/repos/symfony/class-loader/zipball/f31333bdff54c7595f834d510a6d2325573ddb36",
  8279. "reference": "f31333bdff54c7595f834d510a6d2325573ddb36",
  8280. "shasum": ""
  8281. },
  8282. "require": {
  8283. "php": "^5.5.9|>=7.0.8"
  8284. },
  8285. "require-dev": {
  8286. "symfony/finder": "~2.8|~3.0|~4.0",
  8287. "symfony/polyfill-apcu": "~1.1"
  8288. },
  8289. "suggest": {
  8290. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  8291. },
  8292. "type": "library",
  8293. "extra": {
  8294. "branch-alias": {
  8295. "dev-master": "3.4-dev"
  8296. }
  8297. },
  8298. "autoload": {
  8299. "psr-4": {
  8300. "Symfony\\Component\\ClassLoader\\": ""
  8301. },
  8302. "exclude-from-classmap": [
  8303. "/Tests/"
  8304. ]
  8305. },
  8306. "notification-url": "https://packagist.org/downloads/",
  8307. "license": [
  8308. "MIT"
  8309. ],
  8310. "authors": [
  8311. {
  8312. "name": "Fabien Potencier",
  8313. "email": "fabien@symfony.com"
  8314. },
  8315. {
  8316. "name": "Symfony Community",
  8317. "homepage": "https://symfony.com/contributors"
  8318. }
  8319. ],
  8320. "description": "Symfony ClassLoader Component",
  8321. "homepage": "https://symfony.com",
  8322. "time": "2018-10-02T12:28:39+00:00"
  8323. },
  8324. {
  8325. "name": "symfony/config",
  8326. "version": "v3.4.17",
  8327. "source": {
  8328. "type": "git",
  8329. "url": "https://github.com/symfony/config.git",
  8330. "reference": "e5389132dc6320682de3643091121c048ff796b3"
  8331. },
  8332. "dist": {
  8333. "type": "zip",
  8334. "url": "https://api.github.com/repos/symfony/config/zipball/e5389132dc6320682de3643091121c048ff796b3",
  8335. "reference": "e5389132dc6320682de3643091121c048ff796b3",
  8336. "shasum": ""
  8337. },
  8338. "require": {
  8339. "php": "^5.5.9|>=7.0.8",
  8340. "symfony/filesystem": "~2.8|~3.0|~4.0",
  8341. "symfony/polyfill-ctype": "~1.8"
  8342. },
  8343. "conflict": {
  8344. "symfony/dependency-injection": "<3.3",
  8345. "symfony/finder": "<3.3"
  8346. },
  8347. "require-dev": {
  8348. "symfony/dependency-injection": "~3.3|~4.0",
  8349. "symfony/event-dispatcher": "~3.3|~4.0",
  8350. "symfony/finder": "~3.3|~4.0",
  8351. "symfony/yaml": "~3.0|~4.0"
  8352. },
  8353. "suggest": {
  8354. "symfony/yaml": "To use the yaml reference dumper"
  8355. },
  8356. "type": "library",
  8357. "extra": {
  8358. "branch-alias": {
  8359. "dev-master": "3.4-dev"
  8360. }
  8361. },
  8362. "autoload": {
  8363. "psr-4": {
  8364. "Symfony\\Component\\Config\\": ""
  8365. },
  8366. "exclude-from-classmap": [
  8367. "/Tests/"
  8368. ]
  8369. },
  8370. "notification-url": "https://packagist.org/downloads/",
  8371. "license": [
  8372. "MIT"
  8373. ],
  8374. "authors": [
  8375. {
  8376. "name": "Fabien Potencier",
  8377. "email": "fabien@symfony.com"
  8378. },
  8379. {
  8380. "name": "Symfony Community",
  8381. "homepage": "https://symfony.com/contributors"
  8382. }
  8383. ],
  8384. "description": "Symfony Config Component",
  8385. "homepage": "https://symfony.com",
  8386. "time": "2018-09-08T13:15:14+00:00"
  8387. },
  8388. {
  8389. "name": "symfony/console",
  8390. "version": "v3.4.17",
  8391. "source": {
  8392. "type": "git",
  8393. "url": "https://github.com/symfony/console.git",
  8394. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b"
  8395. },
  8396. "dist": {
  8397. "type": "zip",
  8398. "url": "https://api.github.com/repos/symfony/console/zipball/3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  8399. "reference": "3b2b415d4c48fbefca7dc742aa0a0171bfae4e0b",
  8400. "shasum": ""
  8401. },
  8402. "require": {
  8403. "php": "^5.5.9|>=7.0.8",
  8404. "symfony/debug": "~2.8|~3.0|~4.0",
  8405. "symfony/polyfill-mbstring": "~1.0"
  8406. },
  8407. "conflict": {
  8408. "symfony/dependency-injection": "<3.4",
  8409. "symfony/process": "<3.3"
  8410. },
  8411. "require-dev": {
  8412. "psr/log": "~1.0",
  8413. "symfony/config": "~3.3|~4.0",
  8414. "symfony/dependency-injection": "~3.4|~4.0",
  8415. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8416. "symfony/lock": "~3.4|~4.0",
  8417. "symfony/process": "~3.3|~4.0"
  8418. },
  8419. "suggest": {
  8420. "psr/log-implementation": "For using the console logger",
  8421. "symfony/event-dispatcher": "",
  8422. "symfony/lock": "",
  8423. "symfony/process": ""
  8424. },
  8425. "type": "library",
  8426. "extra": {
  8427. "branch-alias": {
  8428. "dev-master": "3.4-dev"
  8429. }
  8430. },
  8431. "autoload": {
  8432. "psr-4": {
  8433. "Symfony\\Component\\Console\\": ""
  8434. },
  8435. "exclude-from-classmap": [
  8436. "/Tests/"
  8437. ]
  8438. },
  8439. "notification-url": "https://packagist.org/downloads/",
  8440. "license": [
  8441. "MIT"
  8442. ],
  8443. "authors": [
  8444. {
  8445. "name": "Fabien Potencier",
  8446. "email": "fabien@symfony.com"
  8447. },
  8448. {
  8449. "name": "Symfony Community",
  8450. "homepage": "https://symfony.com/contributors"
  8451. }
  8452. ],
  8453. "description": "Symfony Console Component",
  8454. "homepage": "https://symfony.com",
  8455. "time": "2018-10-02T16:33:53+00:00"
  8456. },
  8457. {
  8458. "name": "symfony/css-selector",
  8459. "version": "v3.4.17",
  8460. "source": {
  8461. "type": "git",
  8462. "url": "https://github.com/symfony/css-selector.git",
  8463. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb"
  8464. },
  8465. "dist": {
  8466. "type": "zip",
  8467. "url": "https://api.github.com/repos/symfony/css-selector/zipball/3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  8468. "reference": "3503415d4aafabc31cd08c3a4ebac7f43fde8feb",
  8469. "shasum": ""
  8470. },
  8471. "require": {
  8472. "php": "^5.5.9|>=7.0.8"
  8473. },
  8474. "type": "library",
  8475. "extra": {
  8476. "branch-alias": {
  8477. "dev-master": "3.4-dev"
  8478. }
  8479. },
  8480. "autoload": {
  8481. "psr-4": {
  8482. "Symfony\\Component\\CssSelector\\": ""
  8483. },
  8484. "exclude-from-classmap": [
  8485. "/Tests/"
  8486. ]
  8487. },
  8488. "notification-url": "https://packagist.org/downloads/",
  8489. "license": [
  8490. "MIT"
  8491. ],
  8492. "authors": [
  8493. {
  8494. "name": "Jean-François Simon",
  8495. "email": "jeanfrancois.simon@sensiolabs.com"
  8496. },
  8497. {
  8498. "name": "Fabien Potencier",
  8499. "email": "fabien@symfony.com"
  8500. },
  8501. {
  8502. "name": "Symfony Community",
  8503. "homepage": "https://symfony.com/contributors"
  8504. }
  8505. ],
  8506. "description": "Symfony CssSelector Component",
  8507. "homepage": "https://symfony.com",
  8508. "time": "2018-10-02T16:33:53+00:00"
  8509. },
  8510. {
  8511. "name": "symfony/debug",
  8512. "version": "v3.4.17",
  8513. "source": {
  8514. "type": "git",
  8515. "url": "https://github.com/symfony/debug.git",
  8516. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6"
  8517. },
  8518. "dist": {
  8519. "type": "zip",
  8520. "url": "https://api.github.com/repos/symfony/debug/zipball/0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  8521. "reference": "0a612e9dfbd2ccce03eb174365f31ecdca930ff6",
  8522. "shasum": ""
  8523. },
  8524. "require": {
  8525. "php": "^5.5.9|>=7.0.8",
  8526. "psr/log": "~1.0"
  8527. },
  8528. "conflict": {
  8529. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  8530. },
  8531. "require-dev": {
  8532. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  8533. },
  8534. "type": "library",
  8535. "extra": {
  8536. "branch-alias": {
  8537. "dev-master": "3.4-dev"
  8538. }
  8539. },
  8540. "autoload": {
  8541. "psr-4": {
  8542. "Symfony\\Component\\Debug\\": ""
  8543. },
  8544. "exclude-from-classmap": [
  8545. "/Tests/"
  8546. ]
  8547. },
  8548. "notification-url": "https://packagist.org/downloads/",
  8549. "license": [
  8550. "MIT"
  8551. ],
  8552. "authors": [
  8553. {
  8554. "name": "Fabien Potencier",
  8555. "email": "fabien@symfony.com"
  8556. },
  8557. {
  8558. "name": "Symfony Community",
  8559. "homepage": "https://symfony.com/contributors"
  8560. }
  8561. ],
  8562. "description": "Symfony Debug Component",
  8563. "homepage": "https://symfony.com",
  8564. "time": "2018-10-02T16:33:53+00:00"
  8565. },
  8566. {
  8567. "name": "symfony/dependency-injection",
  8568. "version": "v3.4.17",
  8569. "source": {
  8570. "type": "git",
  8571. "url": "https://github.com/symfony/dependency-injection.git",
  8572. "reference": "aea20fef4e92396928b5db175788b90234c0270d"
  8573. },
  8574. "dist": {
  8575. "type": "zip",
  8576. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/aea20fef4e92396928b5db175788b90234c0270d",
  8577. "reference": "aea20fef4e92396928b5db175788b90234c0270d",
  8578. "shasum": ""
  8579. },
  8580. "require": {
  8581. "php": "^5.5.9|>=7.0.8",
  8582. "psr/container": "^1.0"
  8583. },
  8584. "conflict": {
  8585. "symfony/config": "<3.3.7",
  8586. "symfony/finder": "<3.3",
  8587. "symfony/proxy-manager-bridge": "<3.4",
  8588. "symfony/yaml": "<3.4"
  8589. },
  8590. "provide": {
  8591. "psr/container-implementation": "1.0"
  8592. },
  8593. "require-dev": {
  8594. "symfony/config": "~3.3|~4.0",
  8595. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8596. "symfony/yaml": "~3.4|~4.0"
  8597. },
  8598. "suggest": {
  8599. "symfony/config": "",
  8600. "symfony/expression-language": "For using expressions in service container configuration",
  8601. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8602. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8603. "symfony/yaml": ""
  8604. },
  8605. "type": "library",
  8606. "extra": {
  8607. "branch-alias": {
  8608. "dev-master": "3.4-dev"
  8609. }
  8610. },
  8611. "autoload": {
  8612. "psr-4": {
  8613. "Symfony\\Component\\DependencyInjection\\": ""
  8614. },
  8615. "exclude-from-classmap": [
  8616. "/Tests/"
  8617. ]
  8618. },
  8619. "notification-url": "https://packagist.org/downloads/",
  8620. "license": [
  8621. "MIT"
  8622. ],
  8623. "authors": [
  8624. {
  8625. "name": "Fabien Potencier",
  8626. "email": "fabien@symfony.com"
  8627. },
  8628. {
  8629. "name": "Symfony Community",
  8630. "homepage": "https://symfony.com/contributors"
  8631. }
  8632. ],
  8633. "description": "Symfony DependencyInjection Component",
  8634. "homepage": "https://symfony.com",
  8635. "time": "2018-10-02T12:28:39+00:00"
  8636. },
  8637. {
  8638. "name": "symfony/dom-crawler",
  8639. "version": "v3.4.17",
  8640. "source": {
  8641. "type": "git",
  8642. "url": "https://github.com/symfony/dom-crawler.git",
  8643. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722"
  8644. },
  8645. "dist": {
  8646. "type": "zip",
  8647. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/c705bee03ade5b47c087807dd9ffaaec8dda2722",
  8648. "reference": "c705bee03ade5b47c087807dd9ffaaec8dda2722",
  8649. "shasum": ""
  8650. },
  8651. "require": {
  8652. "php": "^5.5.9|>=7.0.8",
  8653. "symfony/polyfill-ctype": "~1.8",
  8654. "symfony/polyfill-mbstring": "~1.0"
  8655. },
  8656. "require-dev": {
  8657. "symfony/css-selector": "~2.8|~3.0|~4.0"
  8658. },
  8659. "suggest": {
  8660. "symfony/css-selector": ""
  8661. },
  8662. "type": "library",
  8663. "extra": {
  8664. "branch-alias": {
  8665. "dev-master": "3.4-dev"
  8666. }
  8667. },
  8668. "autoload": {
  8669. "psr-4": {
  8670. "Symfony\\Component\\DomCrawler\\": ""
  8671. },
  8672. "exclude-from-classmap": [
  8673. "/Tests/"
  8674. ]
  8675. },
  8676. "notification-url": "https://packagist.org/downloads/",
  8677. "license": [
  8678. "MIT"
  8679. ],
  8680. "authors": [
  8681. {
  8682. "name": "Fabien Potencier",
  8683. "email": "fabien@symfony.com"
  8684. },
  8685. {
  8686. "name": "Symfony Community",
  8687. "homepage": "https://symfony.com/contributors"
  8688. }
  8689. ],
  8690. "description": "Symfony DomCrawler Component",
  8691. "homepage": "https://symfony.com",
  8692. "time": "2018-10-02T12:28:39+00:00"
  8693. },
  8694. {
  8695. "name": "symfony/event-dispatcher",
  8696. "version": "v3.4.17",
  8697. "source": {
  8698. "type": "git",
  8699. "url": "https://github.com/symfony/event-dispatcher.git",
  8700. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb"
  8701. },
  8702. "dist": {
  8703. "type": "zip",
  8704. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  8705. "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
  8706. "shasum": ""
  8707. },
  8708. "require": {
  8709. "php": "^5.5.9|>=7.0.8"
  8710. },
  8711. "conflict": {
  8712. "symfony/dependency-injection": "<3.3"
  8713. },
  8714. "require-dev": {
  8715. "psr/log": "~1.0",
  8716. "symfony/config": "~2.8|~3.0|~4.0",
  8717. "symfony/dependency-injection": "~3.3|~4.0",
  8718. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8719. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8720. },
  8721. "suggest": {
  8722. "symfony/dependency-injection": "",
  8723. "symfony/http-kernel": ""
  8724. },
  8725. "type": "library",
  8726. "extra": {
  8727. "branch-alias": {
  8728. "dev-master": "3.4-dev"
  8729. }
  8730. },
  8731. "autoload": {
  8732. "psr-4": {
  8733. "Symfony\\Component\\EventDispatcher\\": ""
  8734. },
  8735. "exclude-from-classmap": [
  8736. "/Tests/"
  8737. ]
  8738. },
  8739. "notification-url": "https://packagist.org/downloads/",
  8740. "license": [
  8741. "MIT"
  8742. ],
  8743. "authors": [
  8744. {
  8745. "name": "Fabien Potencier",
  8746. "email": "fabien@symfony.com"
  8747. },
  8748. {
  8749. "name": "Symfony Community",
  8750. "homepage": "https://symfony.com/contributors"
  8751. }
  8752. ],
  8753. "description": "Symfony EventDispatcher Component",
  8754. "homepage": "https://symfony.com",
  8755. "time": "2018-07-26T09:06:28+00:00"
  8756. },
  8757. {
  8758. "name": "symfony/filesystem",
  8759. "version": "v3.4.17",
  8760. "source": {
  8761. "type": "git",
  8762. "url": "https://github.com/symfony/filesystem.git",
  8763. "reference": "d69930fc337d767607267d57c20a7403d0a822a4"
  8764. },
  8765. "dist": {
  8766. "type": "zip",
  8767. "url": "https://api.github.com/repos/symfony/filesystem/zipball/d69930fc337d767607267d57c20a7403d0a822a4",
  8768. "reference": "d69930fc337d767607267d57c20a7403d0a822a4",
  8769. "shasum": ""
  8770. },
  8771. "require": {
  8772. "php": "^5.5.9|>=7.0.8",
  8773. "symfony/polyfill-ctype": "~1.8"
  8774. },
  8775. "type": "library",
  8776. "extra": {
  8777. "branch-alias": {
  8778. "dev-master": "3.4-dev"
  8779. }
  8780. },
  8781. "autoload": {
  8782. "psr-4": {
  8783. "Symfony\\Component\\Filesystem\\": ""
  8784. },
  8785. "exclude-from-classmap": [
  8786. "/Tests/"
  8787. ]
  8788. },
  8789. "notification-url": "https://packagist.org/downloads/",
  8790. "license": [
  8791. "MIT"
  8792. ],
  8793. "authors": [
  8794. {
  8795. "name": "Fabien Potencier",
  8796. "email": "fabien@symfony.com"
  8797. },
  8798. {
  8799. "name": "Symfony Community",
  8800. "homepage": "https://symfony.com/contributors"
  8801. }
  8802. ],
  8803. "description": "Symfony Filesystem Component",
  8804. "homepage": "https://symfony.com",
  8805. "time": "2018-10-02T12:28:39+00:00"
  8806. },
  8807. {
  8808. "name": "symfony/finder",
  8809. "version": "v3.4.17",
  8810. "source": {
  8811. "type": "git",
  8812. "url": "https://github.com/symfony/finder.git",
  8813. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d"
  8814. },
  8815. "dist": {
  8816. "type": "zip",
  8817. "url": "https://api.github.com/repos/symfony/finder/zipball/54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  8818. "reference": "54ba444dddc5bd5708a34bd095ea67c6eb54644d",
  8819. "shasum": ""
  8820. },
  8821. "require": {
  8822. "php": "^5.5.9|>=7.0.8"
  8823. },
  8824. "type": "library",
  8825. "extra": {
  8826. "branch-alias": {
  8827. "dev-master": "3.4-dev"
  8828. }
  8829. },
  8830. "autoload": {
  8831. "psr-4": {
  8832. "Symfony\\Component\\Finder\\": ""
  8833. },
  8834. "exclude-from-classmap": [
  8835. "/Tests/"
  8836. ]
  8837. },
  8838. "notification-url": "https://packagist.org/downloads/",
  8839. "license": [
  8840. "MIT"
  8841. ],
  8842. "authors": [
  8843. {
  8844. "name": "Fabien Potencier",
  8845. "email": "fabien@symfony.com"
  8846. },
  8847. {
  8848. "name": "Symfony Community",
  8849. "homepage": "https://symfony.com/contributors"
  8850. }
  8851. ],
  8852. "description": "Symfony Finder Component",
  8853. "homepage": "https://symfony.com",
  8854. "time": "2018-10-03T08:46:40+00:00"
  8855. },
  8856. {
  8857. "name": "symfony/http-foundation",
  8858. "version": "v3.4.17",
  8859. "source": {
  8860. "type": "git",
  8861. "url": "https://github.com/symfony/http-foundation.git",
  8862. "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1"
  8863. },
  8864. "dist": {
  8865. "type": "zip",
  8866. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3a4498236ade473c52b92d509303e5fd1b211ab1",
  8867. "reference": "3a4498236ade473c52b92d509303e5fd1b211ab1",
  8868. "shasum": ""
  8869. },
  8870. "require": {
  8871. "php": "^5.5.9|>=7.0.8",
  8872. "symfony/polyfill-mbstring": "~1.1",
  8873. "symfony/polyfill-php70": "~1.6"
  8874. },
  8875. "require-dev": {
  8876. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8877. },
  8878. "type": "library",
  8879. "extra": {
  8880. "branch-alias": {
  8881. "dev-master": "3.4-dev"
  8882. }
  8883. },
  8884. "autoload": {
  8885. "psr-4": {
  8886. "Symfony\\Component\\HttpFoundation\\": ""
  8887. },
  8888. "exclude-from-classmap": [
  8889. "/Tests/"
  8890. ]
  8891. },
  8892. "notification-url": "https://packagist.org/downloads/",
  8893. "license": [
  8894. "MIT"
  8895. ],
  8896. "authors": [
  8897. {
  8898. "name": "Fabien Potencier",
  8899. "email": "fabien@symfony.com"
  8900. },
  8901. {
  8902. "name": "Symfony Community",
  8903. "homepage": "https://symfony.com/contributors"
  8904. }
  8905. ],
  8906. "description": "Symfony HttpFoundation Component",
  8907. "homepage": "https://symfony.com",
  8908. "time": "2018-10-03T08:48:18+00:00"
  8909. },
  8910. {
  8911. "name": "symfony/http-kernel",
  8912. "version": "v3.4.17",
  8913. "source": {
  8914. "type": "git",
  8915. "url": "https://github.com/symfony/http-kernel.git",
  8916. "reference": "a0944a9a1d8845da724236cde9a310964acadb1c"
  8917. },
  8918. "dist": {
  8919. "type": "zip",
  8920. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a0944a9a1d8845da724236cde9a310964acadb1c",
  8921. "reference": "a0944a9a1d8845da724236cde9a310964acadb1c",
  8922. "shasum": ""
  8923. },
  8924. "require": {
  8925. "php": "^5.5.9|>=7.0.8",
  8926. "psr/log": "~1.0",
  8927. "symfony/debug": "~2.8|~3.0|~4.0",
  8928. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8929. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8930. "symfony/polyfill-ctype": "~1.8"
  8931. },
  8932. "conflict": {
  8933. "symfony/config": "<2.8",
  8934. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8935. "symfony/var-dumper": "<3.3",
  8936. "twig/twig": "<1.34|<2.4,>=2"
  8937. },
  8938. "provide": {
  8939. "psr/log-implementation": "1.0"
  8940. },
  8941. "require-dev": {
  8942. "psr/cache": "~1.0",
  8943. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8944. "symfony/class-loader": "~2.8|~3.0",
  8945. "symfony/config": "~2.8|~3.0|~4.0",
  8946. "symfony/console": "~2.8|~3.0|~4.0",
  8947. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8948. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8949. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8950. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8951. "symfony/finder": "~2.8|~3.0|~4.0",
  8952. "symfony/process": "~2.8|~3.0|~4.0",
  8953. "symfony/routing": "~3.4|~4.0",
  8954. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8955. "symfony/templating": "~2.8|~3.0|~4.0",
  8956. "symfony/translation": "~2.8|~3.0|~4.0",
  8957. "symfony/var-dumper": "~3.3|~4.0"
  8958. },
  8959. "suggest": {
  8960. "symfony/browser-kit": "",
  8961. "symfony/config": "",
  8962. "symfony/console": "",
  8963. "symfony/dependency-injection": "",
  8964. "symfony/finder": "",
  8965. "symfony/var-dumper": ""
  8966. },
  8967. "type": "library",
  8968. "extra": {
  8969. "branch-alias": {
  8970. "dev-master": "3.4-dev"
  8971. }
  8972. },
  8973. "autoload": {
  8974. "psr-4": {
  8975. "Symfony\\Component\\HttpKernel\\": ""
  8976. },
  8977. "exclude-from-classmap": [
  8978. "/Tests/"
  8979. ]
  8980. },
  8981. "notification-url": "https://packagist.org/downloads/",
  8982. "license": [
  8983. "MIT"
  8984. ],
  8985. "authors": [
  8986. {
  8987. "name": "Fabien Potencier",
  8988. "email": "fabien@symfony.com"
  8989. },
  8990. {
  8991. "name": "Symfony Community",
  8992. "homepage": "https://symfony.com/contributors"
  8993. }
  8994. ],
  8995. "description": "Symfony HttpKernel Component",
  8996. "homepage": "https://symfony.com",
  8997. "time": "2018-10-03T12:03:34+00:00"
  8998. },
  8999. {
  9000. "name": "symfony/polyfill-ctype",
  9001. "version": "v1.10.0",
  9002. "source": {
  9003. "type": "git",
  9004. "url": "https://github.com/symfony/polyfill-ctype.git",
  9005. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  9006. },
  9007. "dist": {
  9008. "type": "zip",
  9009. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  9010. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  9011. "shasum": ""
  9012. },
  9013. "require": {
  9014. "php": ">=5.3.3"
  9015. },
  9016. "suggest": {
  9017. "ext-ctype": "For best performance"
  9018. },
  9019. "type": "library",
  9020. "extra": {
  9021. "branch-alias": {
  9022. "dev-master": "1.9-dev"
  9023. }
  9024. },
  9025. "autoload": {
  9026. "psr-4": {
  9027. "Symfony\\Polyfill\\Ctype\\": ""
  9028. },
  9029. "files": [
  9030. "bootstrap.php"
  9031. ]
  9032. },
  9033. "notification-url": "https://packagist.org/downloads/",
  9034. "license": [
  9035. "MIT"
  9036. ],
  9037. "authors": [
  9038. {
  9039. "name": "Symfony Community",
  9040. "homepage": "https://symfony.com/contributors"
  9041. },
  9042. {
  9043. "name": "Gert de Pagter",
  9044. "email": "BackEndTea@gmail.com"
  9045. }
  9046. ],
  9047. "description": "Symfony polyfill for ctype functions",
  9048. "homepage": "https://symfony.com",
  9049. "keywords": [
  9050. "compatibility",
  9051. "ctype",
  9052. "polyfill",
  9053. "portable"
  9054. ],
  9055. "time": "2018-08-06T14:22:27+00:00"
  9056. },
  9057. {
  9058. "name": "symfony/polyfill-iconv",
  9059. "version": "v1.10.0",
  9060. "source": {
  9061. "type": "git",
  9062. "url": "https://github.com/symfony/polyfill-iconv.git",
  9063. "reference": "97001cfc283484c9691769f51cdf25259037eba2"
  9064. },
  9065. "dist": {
  9066. "type": "zip",
  9067. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/97001cfc283484c9691769f51cdf25259037eba2",
  9068. "reference": "97001cfc283484c9691769f51cdf25259037eba2",
  9069. "shasum": ""
  9070. },
  9071. "require": {
  9072. "php": ">=5.3.3"
  9073. },
  9074. "suggest": {
  9075. "ext-iconv": "For best performance"
  9076. },
  9077. "type": "library",
  9078. "extra": {
  9079. "branch-alias": {
  9080. "dev-master": "1.9-dev"
  9081. }
  9082. },
  9083. "autoload": {
  9084. "psr-4": {
  9085. "Symfony\\Polyfill\\Iconv\\": ""
  9086. },
  9087. "files": [
  9088. "bootstrap.php"
  9089. ]
  9090. },
  9091. "notification-url": "https://packagist.org/downloads/",
  9092. "license": [
  9093. "MIT"
  9094. ],
  9095. "authors": [
  9096. {
  9097. "name": "Nicolas Grekas",
  9098. "email": "p@tchwork.com"
  9099. },
  9100. {
  9101. "name": "Symfony Community",
  9102. "homepage": "https://symfony.com/contributors"
  9103. }
  9104. ],
  9105. "description": "Symfony polyfill for the Iconv extension",
  9106. "homepage": "https://symfony.com",
  9107. "keywords": [
  9108. "compatibility",
  9109. "iconv",
  9110. "polyfill",
  9111. "portable",
  9112. "shim"
  9113. ],
  9114. "time": "2018-09-21T06:26:08+00:00"
  9115. },
  9116. {
  9117. "name": "symfony/polyfill-mbstring",
  9118. "version": "v1.10.0",
  9119. "source": {
  9120. "type": "git",
  9121. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9122. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  9123. },
  9124. "dist": {
  9125. "type": "zip",
  9126. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  9127. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  9128. "shasum": ""
  9129. },
  9130. "require": {
  9131. "php": ">=5.3.3"
  9132. },
  9133. "suggest": {
  9134. "ext-mbstring": "For best performance"
  9135. },
  9136. "type": "library",
  9137. "extra": {
  9138. "branch-alias": {
  9139. "dev-master": "1.9-dev"
  9140. }
  9141. },
  9142. "autoload": {
  9143. "psr-4": {
  9144. "Symfony\\Polyfill\\Mbstring\\": ""
  9145. },
  9146. "files": [
  9147. "bootstrap.php"
  9148. ]
  9149. },
  9150. "notification-url": "https://packagist.org/downloads/",
  9151. "license": [
  9152. "MIT"
  9153. ],
  9154. "authors": [
  9155. {
  9156. "name": "Nicolas Grekas",
  9157. "email": "p@tchwork.com"
  9158. },
  9159. {
  9160. "name": "Symfony Community",
  9161. "homepage": "https://symfony.com/contributors"
  9162. }
  9163. ],
  9164. "description": "Symfony polyfill for the Mbstring extension",
  9165. "homepage": "https://symfony.com",
  9166. "keywords": [
  9167. "compatibility",
  9168. "mbstring",
  9169. "polyfill",
  9170. "portable",
  9171. "shim"
  9172. ],
  9173. "time": "2018-09-21T13:07:52+00:00"
  9174. },
  9175. {
  9176. "name": "symfony/polyfill-php70",
  9177. "version": "v1.10.0",
  9178. "source": {
  9179. "type": "git",
  9180. "url": "https://github.com/symfony/polyfill-php70.git",
  9181. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  9182. },
  9183. "dist": {
  9184. "type": "zip",
  9185. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  9186. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  9187. "shasum": ""
  9188. },
  9189. "require": {
  9190. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  9191. "php": ">=5.3.3"
  9192. },
  9193. "type": "library",
  9194. "extra": {
  9195. "branch-alias": {
  9196. "dev-master": "1.9-dev"
  9197. }
  9198. },
  9199. "autoload": {
  9200. "psr-4": {
  9201. "Symfony\\Polyfill\\Php70\\": ""
  9202. },
  9203. "files": [
  9204. "bootstrap.php"
  9205. ],
  9206. "classmap": [
  9207. "Resources/stubs"
  9208. ]
  9209. },
  9210. "notification-url": "https://packagist.org/downloads/",
  9211. "license": [
  9212. "MIT"
  9213. ],
  9214. "authors": [
  9215. {
  9216. "name": "Nicolas Grekas",
  9217. "email": "p@tchwork.com"
  9218. },
  9219. {
  9220. "name": "Symfony Community",
  9221. "homepage": "https://symfony.com/contributors"
  9222. }
  9223. ],
  9224. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9225. "homepage": "https://symfony.com",
  9226. "keywords": [
  9227. "compatibility",
  9228. "polyfill",
  9229. "portable",
  9230. "shim"
  9231. ],
  9232. "time": "2018-09-21T06:26:08+00:00"
  9233. },
  9234. {
  9235. "name": "symfony/process",
  9236. "version": "v3.4.17",
  9237. "source": {
  9238. "type": "git",
  9239. "url": "https://github.com/symfony/process.git",
  9240. "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e"
  9241. },
  9242. "dist": {
  9243. "type": "zip",
  9244. "url": "https://api.github.com/repos/symfony/process/zipball/1dc2977afa7d70f90f3fefbcd84152813558910e",
  9245. "reference": "1dc2977afa7d70f90f3fefbcd84152813558910e",
  9246. "shasum": ""
  9247. },
  9248. "require": {
  9249. "php": "^5.5.9|>=7.0.8"
  9250. },
  9251. "type": "library",
  9252. "extra": {
  9253. "branch-alias": {
  9254. "dev-master": "3.4-dev"
  9255. }
  9256. },
  9257. "autoload": {
  9258. "psr-4": {
  9259. "Symfony\\Component\\Process\\": ""
  9260. },
  9261. "exclude-from-classmap": [
  9262. "/Tests/"
  9263. ]
  9264. },
  9265. "notification-url": "https://packagist.org/downloads/",
  9266. "license": [
  9267. "MIT"
  9268. ],
  9269. "authors": [
  9270. {
  9271. "name": "Fabien Potencier",
  9272. "email": "fabien@symfony.com"
  9273. },
  9274. {
  9275. "name": "Symfony Community",
  9276. "homepage": "https://symfony.com/contributors"
  9277. }
  9278. ],
  9279. "description": "Symfony Process Component",
  9280. "homepage": "https://symfony.com",
  9281. "time": "2018-10-02T12:28:39+00:00"
  9282. },
  9283. {
  9284. "name": "symfony/psr-http-message-bridge",
  9285. "version": "v1.1.0",
  9286. "source": {
  9287. "type": "git",
  9288. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9289. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  9290. },
  9291. "dist": {
  9292. "type": "zip",
  9293. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9294. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9295. "shasum": ""
  9296. },
  9297. "require": {
  9298. "php": "^5.3.3 || ^7.0",
  9299. "psr/http-message": "^1.0",
  9300. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9301. },
  9302. "require-dev": {
  9303. "symfony/phpunit-bridge": "^3.4 || 4.0"
  9304. },
  9305. "suggest": {
  9306. "psr/http-factory-implementation": "To use the PSR-17 factory",
  9307. "psr/http-message-implementation": "To use the HttpFoundation factory",
  9308. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  9309. },
  9310. "type": "symfony-bridge",
  9311. "extra": {
  9312. "branch-alias": {
  9313. "dev-master": "1.1-dev"
  9314. }
  9315. },
  9316. "autoload": {
  9317. "psr-4": {
  9318. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9319. }
  9320. },
  9321. "notification-url": "https://packagist.org/downloads/",
  9322. "license": [
  9323. "MIT"
  9324. ],
  9325. "authors": [
  9326. {
  9327. "name": "Symfony Community",
  9328. "homepage": "http://symfony.com/contributors"
  9329. },
  9330. {
  9331. "name": "Fabien Potencier",
  9332. "email": "fabien@symfony.com"
  9333. }
  9334. ],
  9335. "description": "PSR HTTP message bridge",
  9336. "homepage": "http://symfony.com",
  9337. "keywords": [
  9338. "http",
  9339. "http-message",
  9340. "psr-7"
  9341. ],
  9342. "time": "2018-08-30T16:28:28+00:00"
  9343. },
  9344. {
  9345. "name": "symfony/routing",
  9346. "version": "v3.4.17",
  9347. "source": {
  9348. "type": "git",
  9349. "url": "https://github.com/symfony/routing.git",
  9350. "reference": "585f6e2d740393d546978769dd56e496a6233e0b"
  9351. },
  9352. "dist": {
  9353. "type": "zip",
  9354. "url": "https://api.github.com/repos/symfony/routing/zipball/585f6e2d740393d546978769dd56e496a6233e0b",
  9355. "reference": "585f6e2d740393d546978769dd56e496a6233e0b",
  9356. "shasum": ""
  9357. },
  9358. "require": {
  9359. "php": "^5.5.9|>=7.0.8"
  9360. },
  9361. "conflict": {
  9362. "symfony/config": "<3.3.1",
  9363. "symfony/dependency-injection": "<3.3",
  9364. "symfony/yaml": "<3.4"
  9365. },
  9366. "require-dev": {
  9367. "doctrine/annotations": "~1.0",
  9368. "psr/log": "~1.0",
  9369. "symfony/config": "^3.3.1|~4.0",
  9370. "symfony/dependency-injection": "~3.3|~4.0",
  9371. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9372. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9373. "symfony/yaml": "~3.4|~4.0"
  9374. },
  9375. "suggest": {
  9376. "doctrine/annotations": "For using the annotation loader",
  9377. "symfony/config": "For using the all-in-one router or any loader",
  9378. "symfony/dependency-injection": "For loading routes from a service",
  9379. "symfony/expression-language": "For using expression matching",
  9380. "symfony/http-foundation": "For using a Symfony Request object",
  9381. "symfony/yaml": "For using the YAML loader"
  9382. },
  9383. "type": "library",
  9384. "extra": {
  9385. "branch-alias": {
  9386. "dev-master": "3.4-dev"
  9387. }
  9388. },
  9389. "autoload": {
  9390. "psr-4": {
  9391. "Symfony\\Component\\Routing\\": ""
  9392. },
  9393. "exclude-from-classmap": [
  9394. "/Tests/"
  9395. ]
  9396. },
  9397. "notification-url": "https://packagist.org/downloads/",
  9398. "license": [
  9399. "MIT"
  9400. ],
  9401. "authors": [
  9402. {
  9403. "name": "Fabien Potencier",
  9404. "email": "fabien@symfony.com"
  9405. },
  9406. {
  9407. "name": "Symfony Community",
  9408. "homepage": "https://symfony.com/contributors"
  9409. }
  9410. ],
  9411. "description": "Symfony Routing Component",
  9412. "homepage": "https://symfony.com",
  9413. "keywords": [
  9414. "router",
  9415. "routing",
  9416. "uri",
  9417. "url"
  9418. ],
  9419. "time": "2018-10-02T12:28:39+00:00"
  9420. },
  9421. {
  9422. "name": "symfony/serializer",
  9423. "version": "v3.4.17",
  9424. "source": {
  9425. "type": "git",
  9426. "url": "https://github.com/symfony/serializer.git",
  9427. "reference": "8bc00ef47a428bfebc4641f29d158e7c56137fcb"
  9428. },
  9429. "dist": {
  9430. "type": "zip",
  9431. "url": "https://api.github.com/repos/symfony/serializer/zipball/8bc00ef47a428bfebc4641f29d158e7c56137fcb",
  9432. "reference": "8bc00ef47a428bfebc4641f29d158e7c56137fcb",
  9433. "shasum": ""
  9434. },
  9435. "require": {
  9436. "php": "^5.5.9|>=7.0.8",
  9437. "symfony/polyfill-ctype": "~1.8"
  9438. },
  9439. "conflict": {
  9440. "phpdocumentor/type-resolver": "<0.2.1",
  9441. "symfony/dependency-injection": "<3.2",
  9442. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9443. "symfony/property-info": "<3.1",
  9444. "symfony/yaml": "<3.4"
  9445. },
  9446. "require-dev": {
  9447. "doctrine/annotations": "~1.0",
  9448. "doctrine/cache": "~1.0",
  9449. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9450. "symfony/cache": "~3.1|~4.0",
  9451. "symfony/config": "~2.8|~3.0|~4.0",
  9452. "symfony/dependency-injection": "~3.2|~4.0",
  9453. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9454. "symfony/property-access": "~2.8|~3.0|~4.0",
  9455. "symfony/property-info": "~3.1|~4.0",
  9456. "symfony/yaml": "~3.4|~4.0"
  9457. },
  9458. "suggest": {
  9459. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9460. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9461. "psr/cache-implementation": "For using the metadata cache.",
  9462. "symfony/config": "For using the XML mapping loader.",
  9463. "symfony/http-foundation": "To use the DataUriNormalizer.",
  9464. "symfony/property-access": "For using the ObjectNormalizer.",
  9465. "symfony/property-info": "To deserialize relations.",
  9466. "symfony/yaml": "For using the default YAML mapping loader."
  9467. },
  9468. "type": "library",
  9469. "extra": {
  9470. "branch-alias": {
  9471. "dev-master": "3.4-dev"
  9472. }
  9473. },
  9474. "autoload": {
  9475. "psr-4": {
  9476. "Symfony\\Component\\Serializer\\": ""
  9477. },
  9478. "exclude-from-classmap": [
  9479. "/Tests/"
  9480. ]
  9481. },
  9482. "notification-url": "https://packagist.org/downloads/",
  9483. "license": [
  9484. "MIT"
  9485. ],
  9486. "authors": [
  9487. {
  9488. "name": "Fabien Potencier",
  9489. "email": "fabien@symfony.com"
  9490. },
  9491. {
  9492. "name": "Symfony Community",
  9493. "homepage": "https://symfony.com/contributors"
  9494. }
  9495. ],
  9496. "description": "Symfony Serializer Component",
  9497. "homepage": "https://symfony.com",
  9498. "time": "2018-10-02T12:28:39+00:00"
  9499. },
  9500. {
  9501. "name": "symfony/translation",
  9502. "version": "v3.4.17",
  9503. "source": {
  9504. "type": "git",
  9505. "url": "https://github.com/symfony/translation.git",
  9506. "reference": "94bc3a79008e6640defedf5e14eb3b4f20048352"
  9507. },
  9508. "dist": {
  9509. "type": "zip",
  9510. "url": "https://api.github.com/repos/symfony/translation/zipball/94bc3a79008e6640defedf5e14eb3b4f20048352",
  9511. "reference": "94bc3a79008e6640defedf5e14eb3b4f20048352",
  9512. "shasum": ""
  9513. },
  9514. "require": {
  9515. "php": "^5.5.9|>=7.0.8",
  9516. "symfony/polyfill-mbstring": "~1.0"
  9517. },
  9518. "conflict": {
  9519. "symfony/config": "<2.8",
  9520. "symfony/dependency-injection": "<3.4",
  9521. "symfony/yaml": "<3.4"
  9522. },
  9523. "require-dev": {
  9524. "psr/log": "~1.0",
  9525. "symfony/config": "~2.8|~3.0|~4.0",
  9526. "symfony/dependency-injection": "~3.4|~4.0",
  9527. "symfony/finder": "~2.8|~3.0|~4.0",
  9528. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9529. "symfony/yaml": "~3.4|~4.0"
  9530. },
  9531. "suggest": {
  9532. "psr/log-implementation": "To use logging capability in translator",
  9533. "symfony/config": "",
  9534. "symfony/yaml": ""
  9535. },
  9536. "type": "library",
  9537. "extra": {
  9538. "branch-alias": {
  9539. "dev-master": "3.4-dev"
  9540. }
  9541. },
  9542. "autoload": {
  9543. "psr-4": {
  9544. "Symfony\\Component\\Translation\\": ""
  9545. },
  9546. "exclude-from-classmap": [
  9547. "/Tests/"
  9548. ]
  9549. },
  9550. "notification-url": "https://packagist.org/downloads/",
  9551. "license": [
  9552. "MIT"
  9553. ],
  9554. "authors": [
  9555. {
  9556. "name": "Fabien Potencier",
  9557. "email": "fabien@symfony.com"
  9558. },
  9559. {
  9560. "name": "Symfony Community",
  9561. "homepage": "https://symfony.com/contributors"
  9562. }
  9563. ],
  9564. "description": "Symfony Translation Component",
  9565. "homepage": "https://symfony.com",
  9566. "time": "2018-10-02T16:33:53+00:00"
  9567. },
  9568. {
  9569. "name": "symfony/validator",
  9570. "version": "v3.4.17",
  9571. "source": {
  9572. "type": "git",
  9573. "url": "https://github.com/symfony/validator.git",
  9574. "reference": "9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5"
  9575. },
  9576. "dist": {
  9577. "type": "zip",
  9578. "url": "https://api.github.com/repos/symfony/validator/zipball/9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5",
  9579. "reference": "9f8dbf0dceb03815c3160a279bf8cf4f8018a1c5",
  9580. "shasum": ""
  9581. },
  9582. "require": {
  9583. "php": "^5.5.9|>=7.0.8",
  9584. "symfony/polyfill-ctype": "~1.8",
  9585. "symfony/polyfill-mbstring": "~1.0",
  9586. "symfony/translation": "~2.8|~3.0|~4.0"
  9587. },
  9588. "conflict": {
  9589. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9590. "symfony/dependency-injection": "<3.3",
  9591. "symfony/http-kernel": "<3.3.5",
  9592. "symfony/yaml": "<3.4"
  9593. },
  9594. "require-dev": {
  9595. "doctrine/annotations": "~1.0",
  9596. "doctrine/cache": "~1.0",
  9597. "egulias/email-validator": "^1.2.8|~2.0",
  9598. "symfony/cache": "~3.1|~4.0",
  9599. "symfony/config": "~2.8|~3.0|~4.0",
  9600. "symfony/dependency-injection": "~3.3|~4.0",
  9601. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9602. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9603. "symfony/http-kernel": "^3.3.5|~4.0",
  9604. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9605. "symfony/property-access": "~2.8|~3.0|~4.0",
  9606. "symfony/var-dumper": "~3.3|~4.0",
  9607. "symfony/yaml": "~3.4|~4.0"
  9608. },
  9609. "suggest": {
  9610. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9611. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9612. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9613. "psr/cache-implementation": "For using the metadata cache.",
  9614. "symfony/config": "",
  9615. "symfony/expression-language": "For using the Expression validator",
  9616. "symfony/http-foundation": "",
  9617. "symfony/intl": "",
  9618. "symfony/property-access": "For accessing properties within comparison constraints",
  9619. "symfony/yaml": ""
  9620. },
  9621. "type": "library",
  9622. "extra": {
  9623. "branch-alias": {
  9624. "dev-master": "3.4-dev"
  9625. }
  9626. },
  9627. "autoload": {
  9628. "psr-4": {
  9629. "Symfony\\Component\\Validator\\": ""
  9630. },
  9631. "exclude-from-classmap": [
  9632. "/Tests/"
  9633. ]
  9634. },
  9635. "notification-url": "https://packagist.org/downloads/",
  9636. "license": [
  9637. "MIT"
  9638. ],
  9639. "authors": [
  9640. {
  9641. "name": "Fabien Potencier",
  9642. "email": "fabien@symfony.com"
  9643. },
  9644. {
  9645. "name": "Symfony Community",
  9646. "homepage": "https://symfony.com/contributors"
  9647. }
  9648. ],
  9649. "description": "Symfony Validator Component",
  9650. "homepage": "https://symfony.com",
  9651. "time": "2018-10-02T16:33:53+00:00"
  9652. },
  9653. {
  9654. "name": "symfony/var-dumper",
  9655. "version": "v3.4.17",
  9656. "source": {
  9657. "type": "git",
  9658. "url": "https://github.com/symfony/var-dumper.git",
  9659. "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181"
  9660. },
  9661. "dist": {
  9662. "type": "zip",
  9663. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ff8ac19e97e5c7c3979236b584719a1190f84181",
  9664. "reference": "ff8ac19e97e5c7c3979236b584719a1190f84181",
  9665. "shasum": ""
  9666. },
  9667. "require": {
  9668. "php": "^5.5.9|>=7.0.8",
  9669. "symfony/polyfill-mbstring": "~1.0"
  9670. },
  9671. "conflict": {
  9672. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9673. },
  9674. "require-dev": {
  9675. "ext-iconv": "*",
  9676. "twig/twig": "~1.34|~2.4"
  9677. },
  9678. "suggest": {
  9679. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9680. "ext-intl": "To show region name in time zone dump",
  9681. "ext-symfony_debug": ""
  9682. },
  9683. "type": "library",
  9684. "extra": {
  9685. "branch-alias": {
  9686. "dev-master": "3.4-dev"
  9687. }
  9688. },
  9689. "autoload": {
  9690. "files": [
  9691. "Resources/functions/dump.php"
  9692. ],
  9693. "psr-4": {
  9694. "Symfony\\Component\\VarDumper\\": ""
  9695. },
  9696. "exclude-from-classmap": [
  9697. "/Tests/"
  9698. ]
  9699. },
  9700. "notification-url": "https://packagist.org/downloads/",
  9701. "license": [
  9702. "MIT"
  9703. ],
  9704. "authors": [
  9705. {
  9706. "name": "Nicolas Grekas",
  9707. "email": "p@tchwork.com"
  9708. },
  9709. {
  9710. "name": "Symfony Community",
  9711. "homepage": "https://symfony.com/contributors"
  9712. }
  9713. ],
  9714. "description": "Symfony mechanism for exploring and dumping PHP variables",
  9715. "homepage": "https://symfony.com",
  9716. "keywords": [
  9717. "debug",
  9718. "dump"
  9719. ],
  9720. "time": "2018-10-02T16:33:53+00:00"
  9721. },
  9722. {
  9723. "name": "symfony/yaml",
  9724. "version": "v3.4.17",
  9725. "source": {
  9726. "type": "git",
  9727. "url": "https://github.com/symfony/yaml.git",
  9728. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f"
  9729. },
  9730. "dist": {
  9731. "type": "zip",
  9732. "url": "https://api.github.com/repos/symfony/yaml/zipball/640b6c27fed4066d64b64d5903a86043f4a4de7f",
  9733. "reference": "640b6c27fed4066d64b64d5903a86043f4a4de7f",
  9734. "shasum": ""
  9735. },
  9736. "require": {
  9737. "php": "^5.5.9|>=7.0.8",
  9738. "symfony/polyfill-ctype": "~1.8"
  9739. },
  9740. "conflict": {
  9741. "symfony/console": "<3.4"
  9742. },
  9743. "require-dev": {
  9744. "symfony/console": "~3.4|~4.0"
  9745. },
  9746. "suggest": {
  9747. "symfony/console": "For validating YAML files using the lint command"
  9748. },
  9749. "type": "library",
  9750. "extra": {
  9751. "branch-alias": {
  9752. "dev-master": "3.4-dev"
  9753. }
  9754. },
  9755. "autoload": {
  9756. "psr-4": {
  9757. "Symfony\\Component\\Yaml\\": ""
  9758. },
  9759. "exclude-from-classmap": [
  9760. "/Tests/"
  9761. ]
  9762. },
  9763. "notification-url": "https://packagist.org/downloads/",
  9764. "license": [
  9765. "MIT"
  9766. ],
  9767. "authors": [
  9768. {
  9769. "name": "Fabien Potencier",
  9770. "email": "fabien@symfony.com"
  9771. },
  9772. {
  9773. "name": "Symfony Community",
  9774. "homepage": "https://symfony.com/contributors"
  9775. }
  9776. ],
  9777. "description": "Symfony Yaml Component",
  9778. "homepage": "https://symfony.com",
  9779. "time": "2018-10-02T16:33:53+00:00"
  9780. },
  9781. {
  9782. "name": "twig/twig",
  9783. "version": "v1.35.4",
  9784. "source": {
  9785. "type": "git",
  9786. "url": "https://github.com/twigphp/Twig.git",
  9787. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a"
  9788. },
  9789. "dist": {
  9790. "type": "zip",
  9791. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  9792. "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
  9793. "shasum": ""
  9794. },
  9795. "require": {
  9796. "php": ">=5.3.3",
  9797. "symfony/polyfill-ctype": "^1.8"
  9798. },
  9799. "require-dev": {
  9800. "psr/container": "^1.0",
  9801. "symfony/debug": "^2.7",
  9802. "symfony/phpunit-bridge": "^3.3"
  9803. },
  9804. "type": "library",
  9805. "extra": {
  9806. "branch-alias": {
  9807. "dev-master": "1.35-dev"
  9808. }
  9809. },
  9810. "autoload": {
  9811. "psr-0": {
  9812. "Twig_": "lib/"
  9813. },
  9814. "psr-4": {
  9815. "Twig\\": "src/"
  9816. }
  9817. },
  9818. "notification-url": "https://packagist.org/downloads/",
  9819. "license": [
  9820. "BSD-3-Clause"
  9821. ],
  9822. "authors": [
  9823. {
  9824. "name": "Fabien Potencier",
  9825. "email": "fabien@symfony.com",
  9826. "homepage": "http://fabien.potencier.org",
  9827. "role": "Lead Developer"
  9828. },
  9829. {
  9830. "name": "Armin Ronacher",
  9831. "email": "armin.ronacher@active-4.com",
  9832. "role": "Project Founder"
  9833. },
  9834. {
  9835. "name": "Twig Team",
  9836. "homepage": "https://twig.symfony.com/contributors",
  9837. "role": "Contributors"
  9838. }
  9839. ],
  9840. "description": "Twig, the flexible, fast, and secure template language for PHP",
  9841. "homepage": "https://twig.symfony.com",
  9842. "keywords": [
  9843. "templating"
  9844. ],
  9845. "time": "2018-07-13T07:12:17+00:00"
  9846. },
  9847. {
  9848. "name": "webflo/drupal-finder",
  9849. "version": "1.1.0",
  9850. "source": {
  9851. "type": "git",
  9852. "url": "https://github.com/webflo/drupal-finder.git",
  9853. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  9854. },
  9855. "dist": {
  9856. "type": "zip",
  9857. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9858. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  9859. "shasum": ""
  9860. },
  9861. "require-dev": {
  9862. "mikey179/vfsstream": "^1.6",
  9863. "phpunit/phpunit": "^4.8"
  9864. },
  9865. "type": "library",
  9866. "autoload": {
  9867. "classmap": [
  9868. "src/DrupalFinder.php"
  9869. ]
  9870. },
  9871. "notification-url": "https://packagist.org/downloads/",
  9872. "license": [
  9873. "GPL-2.0+"
  9874. ],
  9875. "authors": [
  9876. {
  9877. "name": "Florian Weber",
  9878. "email": "florian@webflo.org"
  9879. }
  9880. ],
  9881. "description": "Helper class to locate a Drupal installation from a given path.",
  9882. "time": "2017-10-24T08:12:11+00:00"
  9883. },
  9884. {
  9885. "name": "webmozart/assert",
  9886. "version": "1.3.0",
  9887. "source": {
  9888. "type": "git",
  9889. "url": "https://github.com/webmozart/assert.git",
  9890. "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
  9891. },
  9892. "dist": {
  9893. "type": "zip",
  9894. "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
  9895. "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
  9896. "shasum": ""
  9897. },
  9898. "require": {
  9899. "php": "^5.3.3 || ^7.0"
  9900. },
  9901. "require-dev": {
  9902. "phpunit/phpunit": "^4.6",
  9903. "sebastian/version": "^1.0.1"
  9904. },
  9905. "type": "library",
  9906. "extra": {
  9907. "branch-alias": {
  9908. "dev-master": "1.3-dev"
  9909. }
  9910. },
  9911. "autoload": {
  9912. "psr-4": {
  9913. "Webmozart\\Assert\\": "src/"
  9914. }
  9915. },
  9916. "notification-url": "https://packagist.org/downloads/",
  9917. "license": [
  9918. "MIT"
  9919. ],
  9920. "authors": [
  9921. {
  9922. "name": "Bernhard Schussek",
  9923. "email": "bschussek@gmail.com"
  9924. }
  9925. ],
  9926. "description": "Assertions to validate method input/output with nice error messages.",
  9927. "keywords": [
  9928. "assert",
  9929. "check",
  9930. "validate"
  9931. ],
  9932. "time": "2018-01-29T19:49:41+00:00"
  9933. },
  9934. {
  9935. "name": "webmozart/path-util",
  9936. "version": "2.3.0",
  9937. "source": {
  9938. "type": "git",
  9939. "url": "https://github.com/webmozart/path-util.git",
  9940. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  9941. },
  9942. "dist": {
  9943. "type": "zip",
  9944. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9945. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  9946. "shasum": ""
  9947. },
  9948. "require": {
  9949. "php": ">=5.3.3",
  9950. "webmozart/assert": "~1.0"
  9951. },
  9952. "require-dev": {
  9953. "phpunit/phpunit": "^4.6",
  9954. "sebastian/version": "^1.0.1"
  9955. },
  9956. "type": "library",
  9957. "extra": {
  9958. "branch-alias": {
  9959. "dev-master": "2.3-dev"
  9960. }
  9961. },
  9962. "autoload": {
  9963. "psr-4": {
  9964. "Webmozart\\PathUtil\\": "src/"
  9965. }
  9966. },
  9967. "notification-url": "https://packagist.org/downloads/",
  9968. "license": [
  9969. "MIT"
  9970. ],
  9971. "authors": [
  9972. {
  9973. "name": "Bernhard Schussek",
  9974. "email": "bschussek@gmail.com"
  9975. }
  9976. ],
  9977. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  9978. "time": "2015-12-17T08:42:14+00:00"
  9979. },
  9980. {
  9981. "name": "wikimedia/composer-merge-plugin",
  9982. "version": "v1.4.1",
  9983. "source": {
  9984. "type": "git",
  9985. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  9986. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  9987. },
  9988. "dist": {
  9989. "type": "zip",
  9990. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  9991. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  9992. "shasum": ""
  9993. },
  9994. "require": {
  9995. "composer-plugin-api": "^1.0",
  9996. "php": ">=5.3.2"
  9997. },
  9998. "require-dev": {
  9999. "composer/composer": "~1.0.0",
  10000. "jakub-onderka/php-parallel-lint": "~0.8",
  10001. "phpunit/phpunit": "~4.8|~5.0",
  10002. "squizlabs/php_codesniffer": "~2.1.0"
  10003. },
  10004. "type": "composer-plugin",
  10005. "extra": {
  10006. "branch-alias": {
  10007. "dev-master": "1.3.x-dev"
  10008. },
  10009. "class": "Wikimedia\\Composer\\MergePlugin"
  10010. },
  10011. "autoload": {
  10012. "psr-4": {
  10013. "Wikimedia\\Composer\\": "src/"
  10014. }
  10015. },
  10016. "notification-url": "https://packagist.org/downloads/",
  10017. "license": [
  10018. "MIT"
  10019. ],
  10020. "authors": [
  10021. {
  10022. "name": "Bryan Davis",
  10023. "email": "bd808@wikimedia.org"
  10024. }
  10025. ],
  10026. "description": "Composer plugin to merge multiple composer.json files",
  10027. "time": "2017-04-25T02:31:25+00:00"
  10028. },
  10029. {
  10030. "name": "zendframework/zend-diactoros",
  10031. "version": "1.8.6",
  10032. "source": {
  10033. "type": "git",
  10034. "url": "https://github.com/zendframework/zend-diactoros.git",
  10035. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  10036. },
  10037. "dist": {
  10038. "type": "zip",
  10039. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  10040. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  10041. "shasum": ""
  10042. },
  10043. "require": {
  10044. "php": "^5.6 || ^7.0",
  10045. "psr/http-message": "^1.0"
  10046. },
  10047. "provide": {
  10048. "psr/http-message-implementation": "1.0"
  10049. },
  10050. "require-dev": {
  10051. "ext-dom": "*",
  10052. "ext-libxml": "*",
  10053. "php-http/psr7-integration-tests": "dev-master",
  10054. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  10055. "zendframework/zend-coding-standard": "~1.0"
  10056. },
  10057. "type": "library",
  10058. "extra": {
  10059. "branch-alias": {
  10060. "dev-master": "1.8.x-dev",
  10061. "dev-develop": "1.9.x-dev",
  10062. "dev-release-2.0": "2.0.x-dev"
  10063. }
  10064. },
  10065. "autoload": {
  10066. "files": [
  10067. "src/functions/create_uploaded_file.php",
  10068. "src/functions/marshal_headers_from_sapi.php",
  10069. "src/functions/marshal_method_from_sapi.php",
  10070. "src/functions/marshal_protocol_version_from_sapi.php",
  10071. "src/functions/marshal_uri_from_sapi.php",
  10072. "src/functions/normalize_server.php",
  10073. "src/functions/normalize_uploaded_files.php",
  10074. "src/functions/parse_cookie_header.php"
  10075. ],
  10076. "psr-4": {
  10077. "Zend\\Diactoros\\": "src/"
  10078. }
  10079. },
  10080. "notification-url": "https://packagist.org/downloads/",
  10081. "license": [
  10082. "BSD-2-Clause"
  10083. ],
  10084. "description": "PSR HTTP Message implementations",
  10085. "homepage": "https://github.com/zendframework/zend-diactoros",
  10086. "keywords": [
  10087. "http",
  10088. "psr",
  10089. "psr-7"
  10090. ],
  10091. "time": "2018-09-05T19:29:37+00:00"
  10092. },
  10093. {
  10094. "name": "zendframework/zend-escaper",
  10095. "version": "2.6.0",
  10096. "source": {
  10097. "type": "git",
  10098. "url": "https://github.com/zendframework/zend-escaper.git",
  10099. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  10100. },
  10101. "dist": {
  10102. "type": "zip",
  10103. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  10104. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  10105. "shasum": ""
  10106. },
  10107. "require": {
  10108. "php": "^5.6 || ^7.0"
  10109. },
  10110. "require-dev": {
  10111. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10112. "zendframework/zend-coding-standard": "~1.0.0"
  10113. },
  10114. "type": "library",
  10115. "extra": {
  10116. "branch-alias": {
  10117. "dev-master": "2.6.x-dev",
  10118. "dev-develop": "2.7.x-dev"
  10119. }
  10120. },
  10121. "autoload": {
  10122. "psr-4": {
  10123. "Zend\\Escaper\\": "src/"
  10124. }
  10125. },
  10126. "notification-url": "https://packagist.org/downloads/",
  10127. "license": [
  10128. "BSD-3-Clause"
  10129. ],
  10130. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  10131. "keywords": [
  10132. "ZendFramework",
  10133. "escaper",
  10134. "zf"
  10135. ],
  10136. "time": "2018-04-25T15:48:53+00:00"
  10137. },
  10138. {
  10139. "name": "zendframework/zend-feed",
  10140. "version": "2.10.3",
  10141. "source": {
  10142. "type": "git",
  10143. "url": "https://github.com/zendframework/zend-feed.git",
  10144. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888"
  10145. },
  10146. "dist": {
  10147. "type": "zip",
  10148. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/6641f4cf3f4586c63f83fd70b6d19966025c8888",
  10149. "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888",
  10150. "shasum": ""
  10151. },
  10152. "require": {
  10153. "php": "^5.6 || ^7.0",
  10154. "zendframework/zend-escaper": "^2.5.2",
  10155. "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
  10156. },
  10157. "require-dev": {
  10158. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  10159. "psr/http-message": "^1.0.1",
  10160. "zendframework/zend-cache": "^2.7.2",
  10161. "zendframework/zend-coding-standard": "~1.0.0",
  10162. "zendframework/zend-db": "^2.8.2",
  10163. "zendframework/zend-http": "^2.7",
  10164. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  10165. "zendframework/zend-validator": "^2.10.1"
  10166. },
  10167. "suggest": {
  10168. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  10169. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  10170. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  10171. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  10172. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  10173. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  10174. },
  10175. "type": "library",
  10176. "extra": {
  10177. "branch-alias": {
  10178. "dev-master": "2.10.x-dev",
  10179. "dev-develop": "2.11.x-dev"
  10180. }
  10181. },
  10182. "autoload": {
  10183. "psr-4": {
  10184. "Zend\\Feed\\": "src/"
  10185. }
  10186. },
  10187. "notification-url": "https://packagist.org/downloads/",
  10188. "license": [
  10189. "BSD-3-Clause"
  10190. ],
  10191. "description": "provides functionality for consuming RSS and Atom feeds",
  10192. "keywords": [
  10193. "ZendFramework",
  10194. "feed",
  10195. "zf"
  10196. ],
  10197. "time": "2018-08-01T13:53:20+00:00"
  10198. },
  10199. {
  10200. "name": "zendframework/zend-stdlib",
  10201. "version": "3.2.1",
  10202. "source": {
  10203. "type": "git",
  10204. "url": "https://github.com/zendframework/zend-stdlib.git",
  10205. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  10206. },
  10207. "dist": {
  10208. "type": "zip",
  10209. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  10210. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  10211. "shasum": ""
  10212. },
  10213. "require": {
  10214. "php": "^5.6 || ^7.0"
  10215. },
  10216. "require-dev": {
  10217. "phpbench/phpbench": "^0.13",
  10218. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10219. "zendframework/zend-coding-standard": "~1.0.0"
  10220. },
  10221. "type": "library",
  10222. "extra": {
  10223. "branch-alias": {
  10224. "dev-master": "3.2.x-dev",
  10225. "dev-develop": "3.3.x-dev"
  10226. }
  10227. },
  10228. "autoload": {
  10229. "psr-4": {
  10230. "Zend\\Stdlib\\": "src/"
  10231. }
  10232. },
  10233. "notification-url": "https://packagist.org/downloads/",
  10234. "license": [
  10235. "BSD-3-Clause"
  10236. ],
  10237. "description": "SPL extensions, array utilities, error handlers, and more",
  10238. "keywords": [
  10239. "ZendFramework",
  10240. "stdlib",
  10241. "zf"
  10242. ],
  10243. "time": "2018-08-28T21:34:05+00:00"
  10244. }
  10245. ],
  10246. "packages-dev": [
  10247. {
  10248. "name": "behat/mink",
  10249. "version": "dev-master",
  10250. "source": {
  10251. "type": "git",
  10252. "url": "https://github.com/minkphp/Mink.git",
  10253. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  10254. },
  10255. "dist": {
  10256. "type": "zip",
  10257. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  10258. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  10259. "shasum": ""
  10260. },
  10261. "require": {
  10262. "php": ">=5.3.1",
  10263. "symfony/css-selector": "^2.7|^3.0|^4.0"
  10264. },
  10265. "require-dev": {
  10266. "symfony/phpunit-bridge": "^3.3|^4.0"
  10267. },
  10268. "suggest": {
  10269. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  10270. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  10271. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  10272. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  10273. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  10274. },
  10275. "type": "library",
  10276. "extra": {
  10277. "branch-alias": {
  10278. "dev-master": "1.7.x-dev"
  10279. }
  10280. },
  10281. "autoload": {
  10282. "psr-4": {
  10283. "Behat\\Mink\\": "src/"
  10284. }
  10285. },
  10286. "notification-url": "https://packagist.org/downloads/",
  10287. "license": [
  10288. "MIT"
  10289. ],
  10290. "authors": [
  10291. {
  10292. "name": "Konstantin Kudryashov",
  10293. "email": "ever.zet@gmail.com",
  10294. "homepage": "http://everzet.com"
  10295. }
  10296. ],
  10297. "description": "Browser controller/emulator abstraction for PHP",
  10298. "homepage": "http://mink.behat.org/",
  10299. "keywords": [
  10300. "browser",
  10301. "testing",
  10302. "web"
  10303. ],
  10304. "time": "2018-06-24T20:08:51+00:00"
  10305. },
  10306. {
  10307. "name": "behat/mink-browserkit-driver",
  10308. "version": "1.3.3",
  10309. "source": {
  10310. "type": "git",
  10311. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  10312. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  10313. },
  10314. "dist": {
  10315. "type": "zip",
  10316. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  10317. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  10318. "shasum": ""
  10319. },
  10320. "require": {
  10321. "behat/mink": "^1.7.1@dev",
  10322. "php": ">=5.3.6",
  10323. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  10324. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  10325. },
  10326. "require-dev": {
  10327. "mink/driver-testsuite": "dev-master",
  10328. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  10329. },
  10330. "type": "mink-driver",
  10331. "extra": {
  10332. "branch-alias": {
  10333. "dev-master": "1.3.x-dev"
  10334. }
  10335. },
  10336. "autoload": {
  10337. "psr-4": {
  10338. "Behat\\Mink\\Driver\\": "src/"
  10339. }
  10340. },
  10341. "notification-url": "https://packagist.org/downloads/",
  10342. "license": [
  10343. "MIT"
  10344. ],
  10345. "authors": [
  10346. {
  10347. "name": "Konstantin Kudryashov",
  10348. "email": "ever.zet@gmail.com",
  10349. "homepage": "http://everzet.com"
  10350. }
  10351. ],
  10352. "description": "Symfony2 BrowserKit driver for Mink framework",
  10353. "homepage": "http://mink.behat.org/",
  10354. "keywords": [
  10355. "Mink",
  10356. "Symfony2",
  10357. "browser",
  10358. "testing"
  10359. ],
  10360. "time": "2018-05-02T09:25:31+00:00"
  10361. },
  10362. {
  10363. "name": "behat/mink-goutte-driver",
  10364. "version": "v1.2.1",
  10365. "source": {
  10366. "type": "git",
  10367. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  10368. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  10369. },
  10370. "dist": {
  10371. "type": "zip",
  10372. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  10373. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  10374. "shasum": ""
  10375. },
  10376. "require": {
  10377. "behat/mink": "~1.6@dev",
  10378. "behat/mink-browserkit-driver": "~1.2@dev",
  10379. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  10380. "php": ">=5.3.1"
  10381. },
  10382. "require-dev": {
  10383. "symfony/phpunit-bridge": "~2.7|~3.0"
  10384. },
  10385. "type": "mink-driver",
  10386. "extra": {
  10387. "branch-alias": {
  10388. "dev-master": "1.2.x-dev"
  10389. }
  10390. },
  10391. "autoload": {
  10392. "psr-4": {
  10393. "Behat\\Mink\\Driver\\": "src/"
  10394. }
  10395. },
  10396. "notification-url": "https://packagist.org/downloads/",
  10397. "license": [
  10398. "MIT"
  10399. ],
  10400. "authors": [
  10401. {
  10402. "name": "Konstantin Kudryashov",
  10403. "email": "ever.zet@gmail.com",
  10404. "homepage": "http://everzet.com"
  10405. }
  10406. ],
  10407. "description": "Goutte driver for Mink framework",
  10408. "homepage": "http://mink.behat.org/",
  10409. "keywords": [
  10410. "browser",
  10411. "goutte",
  10412. "headless",
  10413. "testing"
  10414. ],
  10415. "time": "2016-03-05T09:04:22+00:00"
  10416. },
  10417. {
  10418. "name": "behat/mink-selenium2-driver",
  10419. "version": "dev-master",
  10420. "source": {
  10421. "type": "git",
  10422. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  10423. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  10424. },
  10425. "dist": {
  10426. "type": "zip",
  10427. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  10428. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  10429. "shasum": ""
  10430. },
  10431. "require": {
  10432. "behat/mink": "~1.7@dev",
  10433. "instaclick/php-webdriver": "~1.1",
  10434. "php": ">=5.3.1"
  10435. },
  10436. "require-dev": {
  10437. "mink/driver-testsuite": "dev-master"
  10438. },
  10439. "type": "mink-driver",
  10440. "extra": {
  10441. "branch-alias": {
  10442. "dev-master": "1.3.x-dev"
  10443. }
  10444. },
  10445. "autoload": {
  10446. "psr-4": {
  10447. "Behat\\Mink\\Driver\\": "src/"
  10448. }
  10449. },
  10450. "notification-url": "https://packagist.org/downloads/",
  10451. "license": [
  10452. "MIT"
  10453. ],
  10454. "authors": [
  10455. {
  10456. "name": "Konstantin Kudryashov",
  10457. "email": "ever.zet@gmail.com",
  10458. "homepage": "http://everzet.com"
  10459. },
  10460. {
  10461. "name": "Pete Otaqui",
  10462. "email": "pete@otaqui.com",
  10463. "homepage": "https://github.com/pete-otaqui"
  10464. }
  10465. ],
  10466. "description": "Selenium2 (WebDriver) driver for Mink framework",
  10467. "homepage": "http://mink.behat.org/",
  10468. "keywords": [
  10469. "ajax",
  10470. "browser",
  10471. "javascript",
  10472. "selenium",
  10473. "testing",
  10474. "webdriver"
  10475. ],
  10476. "time": "2018-10-10T12:39:06+00:00"
  10477. },
  10478. {
  10479. "name": "doctrine/instantiator",
  10480. "version": "1.0.5",
  10481. "source": {
  10482. "type": "git",
  10483. "url": "https://github.com/doctrine/instantiator.git",
  10484. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  10485. },
  10486. "dist": {
  10487. "type": "zip",
  10488. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  10489. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  10490. "shasum": ""
  10491. },
  10492. "require": {
  10493. "php": ">=5.3,<8.0-DEV"
  10494. },
  10495. "require-dev": {
  10496. "athletic/athletic": "~0.1.8",
  10497. "ext-pdo": "*",
  10498. "ext-phar": "*",
  10499. "phpunit/phpunit": "~4.0",
  10500. "squizlabs/php_codesniffer": "~2.0"
  10501. },
  10502. "type": "library",
  10503. "extra": {
  10504. "branch-alias": {
  10505. "dev-master": "1.0.x-dev"
  10506. }
  10507. },
  10508. "autoload": {
  10509. "psr-4": {
  10510. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  10511. }
  10512. },
  10513. "notification-url": "https://packagist.org/downloads/",
  10514. "license": [
  10515. "MIT"
  10516. ],
  10517. "authors": [
  10518. {
  10519. "name": "Marco Pivetta",
  10520. "email": "ocramius@gmail.com",
  10521. "homepage": "http://ocramius.github.com/"
  10522. }
  10523. ],
  10524. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  10525. "homepage": "https://github.com/doctrine/instantiator",
  10526. "keywords": [
  10527. "constructor",
  10528. "instantiate"
  10529. ],
  10530. "time": "2015-06-14T21:17:01+00:00"
  10531. },
  10532. {
  10533. "name": "drupal/coder",
  10534. "version": "8.3.1",
  10535. "source": {
  10536. "type": "git",
  10537. "url": "https://git.drupal.org/project/coder.git",
  10538. "reference": "29a25627e7148b3119c84f18e087fc3b8c85b959"
  10539. },
  10540. "require": {
  10541. "ext-mbstring": "*",
  10542. "php": ">=5.4.0",
  10543. "squizlabs/php_codesniffer": "^3.0.1",
  10544. "symfony/yaml": ">=2.0.0"
  10545. },
  10546. "require-dev": {
  10547. "phpunit/phpunit": ">=3.7 <6"
  10548. },
  10549. "type": "phpcodesniffer-standard",
  10550. "autoload": {
  10551. "psr-0": {
  10552. "Drupal\\": "coder_sniffer/Drupal/",
  10553. "DrupalPractice\\": "coder_sniffer/Drupal/"
  10554. }
  10555. },
  10556. "notification-url": "https://packagist.org/downloads/",
  10557. "license": [
  10558. "GPL-2.0+"
  10559. ],
  10560. "description": "Coder is a library to review Drupal code.",
  10561. "homepage": "https://www.drupal.org/project/coder",
  10562. "keywords": [
  10563. "code review",
  10564. "phpcs",
  10565. "standards"
  10566. ],
  10567. "time": "2018-09-21T14:22:49+00:00"
  10568. },
  10569. {
  10570. "name": "fabpot/goutte",
  10571. "version": "v3.2.3",
  10572. "source": {
  10573. "type": "git",
  10574. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  10575. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  10576. },
  10577. "dist": {
  10578. "type": "zip",
  10579. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  10580. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  10581. "shasum": ""
  10582. },
  10583. "require": {
  10584. "guzzlehttp/guzzle": "^6.0",
  10585. "php": ">=5.5.0",
  10586. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  10587. "symfony/css-selector": "~2.1|~3.0|~4.0",
  10588. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  10589. },
  10590. "require-dev": {
  10591. "symfony/phpunit-bridge": "^3.3 || ^4"
  10592. },
  10593. "type": "application",
  10594. "extra": {
  10595. "branch-alias": {
  10596. "dev-master": "3.2-dev"
  10597. }
  10598. },
  10599. "autoload": {
  10600. "psr-4": {
  10601. "Goutte\\": "Goutte"
  10602. },
  10603. "exclude-from-classmap": [
  10604. "Goutte/Tests"
  10605. ]
  10606. },
  10607. "notification-url": "https://packagist.org/downloads/",
  10608. "license": [
  10609. "MIT"
  10610. ],
  10611. "authors": [
  10612. {
  10613. "name": "Fabien Potencier",
  10614. "email": "fabien@symfony.com"
  10615. }
  10616. ],
  10617. "description": "A simple PHP Web Scraper",
  10618. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  10619. "keywords": [
  10620. "scraper"
  10621. ],
  10622. "time": "2018-06-29T15:13:57+00:00"
  10623. },
  10624. {
  10625. "name": "instaclick/php-webdriver",
  10626. "version": "1.4.5",
  10627. "source": {
  10628. "type": "git",
  10629. "url": "https://github.com/instaclick/php-webdriver.git",
  10630. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  10631. },
  10632. "dist": {
  10633. "type": "zip",
  10634. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  10635. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  10636. "shasum": ""
  10637. },
  10638. "require": {
  10639. "ext-curl": "*",
  10640. "php": ">=5.3.2"
  10641. },
  10642. "require-dev": {
  10643. "phpunit/phpunit": "^4.8",
  10644. "satooshi/php-coveralls": "^1.0||^2.0"
  10645. },
  10646. "type": "library",
  10647. "extra": {
  10648. "branch-alias": {
  10649. "dev-master": "1.4.x-dev"
  10650. }
  10651. },
  10652. "autoload": {
  10653. "psr-0": {
  10654. "WebDriver": "lib/"
  10655. }
  10656. },
  10657. "notification-url": "https://packagist.org/downloads/",
  10658. "license": [
  10659. "Apache-2.0"
  10660. ],
  10661. "authors": [
  10662. {
  10663. "name": "Justin Bishop",
  10664. "email": "jubishop@gmail.com",
  10665. "role": "Developer"
  10666. },
  10667. {
  10668. "name": "Anthon Pang",
  10669. "email": "apang@softwaredevelopment.ca",
  10670. "role": "Fork Maintainer"
  10671. }
  10672. ],
  10673. "description": "PHP WebDriver for Selenium 2",
  10674. "homepage": "http://instaclick.com/",
  10675. "keywords": [
  10676. "browser",
  10677. "selenium",
  10678. "webdriver",
  10679. "webtest"
  10680. ],
  10681. "time": "2017-06-30T04:02:48+00:00"
  10682. },
  10683. {
  10684. "name": "jcalderonzumba/gastonjs",
  10685. "version": "v1.2.0",
  10686. "source": {
  10687. "type": "git",
  10688. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  10689. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  10690. },
  10691. "dist": {
  10692. "type": "zip",
  10693. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  10694. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  10695. "shasum": ""
  10696. },
  10697. "require": {
  10698. "guzzlehttp/guzzle": "~5.0|~6.0",
  10699. "php": ">=5.4"
  10700. },
  10701. "require-dev": {
  10702. "phpunit/phpunit": "~4.6",
  10703. "silex/silex": "~1.2",
  10704. "symfony/phpunit-bridge": "~2.7",
  10705. "symfony/process": "~2.1"
  10706. },
  10707. "type": "phantomjs-api",
  10708. "extra": {
  10709. "branch-alias": {
  10710. "dev-master": "1.1.x-dev"
  10711. }
  10712. },
  10713. "autoload": {
  10714. "psr-4": {
  10715. "Zumba\\GastonJS\\": "src"
  10716. }
  10717. },
  10718. "notification-url": "https://packagist.org/downloads/",
  10719. "license": [
  10720. "MIT"
  10721. ],
  10722. "authors": [
  10723. {
  10724. "name": "Juan Francisco Calderón Zumba",
  10725. "email": "juanfcz@gmail.com",
  10726. "homepage": "http://github.com/jcalderonzumba"
  10727. }
  10728. ],
  10729. "description": "PhantomJS API based server for webpage automation",
  10730. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  10731. "keywords": [
  10732. "api",
  10733. "automation",
  10734. "browser",
  10735. "headless",
  10736. "phantomjs"
  10737. ],
  10738. "time": "2017-03-31T07:31:47+00:00"
  10739. },
  10740. {
  10741. "name": "jcalderonzumba/mink-phantomjs-driver",
  10742. "version": "v0.3.3",
  10743. "source": {
  10744. "type": "git",
  10745. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  10746. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  10747. },
  10748. "dist": {
  10749. "type": "zip",
  10750. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  10751. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  10752. "shasum": ""
  10753. },
  10754. "require": {
  10755. "behat/mink": "~1.7",
  10756. "jcalderonzumba/gastonjs": "~1.0",
  10757. "php": ">=5.4",
  10758. "twig/twig": "~1.20|~2.0"
  10759. },
  10760. "require-dev": {
  10761. "mink/driver-testsuite": "dev-master",
  10762. "phpunit/phpunit": "~4.6"
  10763. },
  10764. "type": "mink-driver",
  10765. "extra": {
  10766. "branch-alias": {
  10767. "dev-master": "0.4.x-dev"
  10768. }
  10769. },
  10770. "autoload": {
  10771. "psr-4": {
  10772. "Zumba\\Mink\\Driver\\": "src"
  10773. }
  10774. },
  10775. "notification-url": "https://packagist.org/downloads/",
  10776. "license": [
  10777. "MIT"
  10778. ],
  10779. "authors": [
  10780. {
  10781. "name": "Juan Francisco Calderón Zumba",
  10782. "email": "juanfcz@gmail.com",
  10783. "homepage": "http://github.com/jcalderonzumba"
  10784. }
  10785. ],
  10786. "description": "PhantomJS driver for Mink framework",
  10787. "homepage": "http://mink.behat.org/",
  10788. "keywords": [
  10789. "ajax",
  10790. "browser",
  10791. "headless",
  10792. "javascript",
  10793. "phantomjs",
  10794. "testing"
  10795. ],
  10796. "time": "2016-12-01T10:57:30+00:00"
  10797. },
  10798. {
  10799. "name": "mikey179/vfsStream",
  10800. "version": "v1.6.5",
  10801. "source": {
  10802. "type": "git",
  10803. "url": "https://github.com/mikey179/vfsStream.git",
  10804. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  10805. },
  10806. "dist": {
  10807. "type": "zip",
  10808. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  10809. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  10810. "shasum": ""
  10811. },
  10812. "require": {
  10813. "php": ">=5.3.0"
  10814. },
  10815. "require-dev": {
  10816. "phpunit/phpunit": "~4.5"
  10817. },
  10818. "type": "library",
  10819. "extra": {
  10820. "branch-alias": {
  10821. "dev-master": "1.6.x-dev"
  10822. }
  10823. },
  10824. "autoload": {
  10825. "psr-0": {
  10826. "org\\bovigo\\vfs\\": "src/main/php"
  10827. }
  10828. },
  10829. "notification-url": "https://packagist.org/downloads/",
  10830. "license": [
  10831. "BSD-3-Clause"
  10832. ],
  10833. "authors": [
  10834. {
  10835. "name": "Frank Kleine",
  10836. "homepage": "http://frankkleine.de/",
  10837. "role": "Developer"
  10838. }
  10839. ],
  10840. "description": "Virtual file system to mock the real file system in unit tests.",
  10841. "homepage": "http://vfs.bovigo.org/",
  10842. "time": "2017-08-01T08:02:14+00:00"
  10843. },
  10844. {
  10845. "name": "myclabs/deep-copy",
  10846. "version": "1.7.0",
  10847. "source": {
  10848. "type": "git",
  10849. "url": "https://github.com/myclabs/DeepCopy.git",
  10850. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  10851. },
  10852. "dist": {
  10853. "type": "zip",
  10854. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10855. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  10856. "shasum": ""
  10857. },
  10858. "require": {
  10859. "php": "^5.6 || ^7.0"
  10860. },
  10861. "require-dev": {
  10862. "doctrine/collections": "^1.0",
  10863. "doctrine/common": "^2.6",
  10864. "phpunit/phpunit": "^4.1"
  10865. },
  10866. "type": "library",
  10867. "autoload": {
  10868. "psr-4": {
  10869. "DeepCopy\\": "src/DeepCopy/"
  10870. },
  10871. "files": [
  10872. "src/DeepCopy/deep_copy.php"
  10873. ]
  10874. },
  10875. "notification-url": "https://packagist.org/downloads/",
  10876. "license": [
  10877. "MIT"
  10878. ],
  10879. "description": "Create deep copies (clones) of your objects",
  10880. "keywords": [
  10881. "clone",
  10882. "copy",
  10883. "duplicate",
  10884. "object",
  10885. "object graph"
  10886. ],
  10887. "time": "2017-10-19T19:58:43+00:00"
  10888. },
  10889. {
  10890. "name": "phar-io/manifest",
  10891. "version": "1.0.1",
  10892. "source": {
  10893. "type": "git",
  10894. "url": "https://github.com/phar-io/manifest.git",
  10895. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  10896. },
  10897. "dist": {
  10898. "type": "zip",
  10899. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  10900. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  10901. "shasum": ""
  10902. },
  10903. "require": {
  10904. "ext-dom": "*",
  10905. "ext-phar": "*",
  10906. "phar-io/version": "^1.0.1",
  10907. "php": "^5.6 || ^7.0"
  10908. },
  10909. "type": "library",
  10910. "extra": {
  10911. "branch-alias": {
  10912. "dev-master": "1.0.x-dev"
  10913. }
  10914. },
  10915. "autoload": {
  10916. "classmap": [
  10917. "src/"
  10918. ]
  10919. },
  10920. "notification-url": "https://packagist.org/downloads/",
  10921. "license": [
  10922. "BSD-3-Clause"
  10923. ],
  10924. "authors": [
  10925. {
  10926. "name": "Arne Blankerts",
  10927. "email": "arne@blankerts.de",
  10928. "role": "Developer"
  10929. },
  10930. {
  10931. "name": "Sebastian Heuer",
  10932. "email": "sebastian@phpeople.de",
  10933. "role": "Developer"
  10934. },
  10935. {
  10936. "name": "Sebastian Bergmann",
  10937. "email": "sebastian@phpunit.de",
  10938. "role": "Developer"
  10939. }
  10940. ],
  10941. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10942. "time": "2017-03-05T18:14:27+00:00"
  10943. },
  10944. {
  10945. "name": "phar-io/version",
  10946. "version": "1.0.1",
  10947. "source": {
  10948. "type": "git",
  10949. "url": "https://github.com/phar-io/version.git",
  10950. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  10951. },
  10952. "dist": {
  10953. "type": "zip",
  10954. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  10955. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  10956. "shasum": ""
  10957. },
  10958. "require": {
  10959. "php": "^5.6 || ^7.0"
  10960. },
  10961. "type": "library",
  10962. "autoload": {
  10963. "classmap": [
  10964. "src/"
  10965. ]
  10966. },
  10967. "notification-url": "https://packagist.org/downloads/",
  10968. "license": [
  10969. "BSD-3-Clause"
  10970. ],
  10971. "authors": [
  10972. {
  10973. "name": "Arne Blankerts",
  10974. "email": "arne@blankerts.de",
  10975. "role": "Developer"
  10976. },
  10977. {
  10978. "name": "Sebastian Heuer",
  10979. "email": "sebastian@phpeople.de",
  10980. "role": "Developer"
  10981. },
  10982. {
  10983. "name": "Sebastian Bergmann",
  10984. "email": "sebastian@phpunit.de",
  10985. "role": "Developer"
  10986. }
  10987. ],
  10988. "description": "Library for handling version information and constraints",
  10989. "time": "2017-03-05T17:38:23+00:00"
  10990. },
  10991. {
  10992. "name": "phpdocumentor/reflection-common",
  10993. "version": "1.0.1",
  10994. "source": {
  10995. "type": "git",
  10996. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10997. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  10998. },
  10999. "dist": {
  11000. "type": "zip",
  11001. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11002. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11003. "shasum": ""
  11004. },
  11005. "require": {
  11006. "php": ">=5.5"
  11007. },
  11008. "require-dev": {
  11009. "phpunit/phpunit": "^4.6"
  11010. },
  11011. "type": "library",
  11012. "extra": {
  11013. "branch-alias": {
  11014. "dev-master": "1.0.x-dev"
  11015. }
  11016. },
  11017. "autoload": {
  11018. "psr-4": {
  11019. "phpDocumentor\\Reflection\\": [
  11020. "src"
  11021. ]
  11022. }
  11023. },
  11024. "notification-url": "https://packagist.org/downloads/",
  11025. "license": [
  11026. "MIT"
  11027. ],
  11028. "authors": [
  11029. {
  11030. "name": "Jaap van Otterdijk",
  11031. "email": "opensource@ijaap.nl"
  11032. }
  11033. ],
  11034. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  11035. "homepage": "http://www.phpdoc.org",
  11036. "keywords": [
  11037. "FQSEN",
  11038. "phpDocumentor",
  11039. "phpdoc",
  11040. "reflection",
  11041. "static analysis"
  11042. ],
  11043. "time": "2017-09-11T18:02:19+00:00"
  11044. },
  11045. {
  11046. "name": "phpdocumentor/reflection-docblock",
  11047. "version": "4.3.0",
  11048. "source": {
  11049. "type": "git",
  11050. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  11051. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  11052. },
  11053. "dist": {
  11054. "type": "zip",
  11055. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  11056. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  11057. "shasum": ""
  11058. },
  11059. "require": {
  11060. "php": "^7.0",
  11061. "phpdocumentor/reflection-common": "^1.0.0",
  11062. "phpdocumentor/type-resolver": "^0.4.0",
  11063. "webmozart/assert": "^1.0"
  11064. },
  11065. "require-dev": {
  11066. "doctrine/instantiator": "~1.0.5",
  11067. "mockery/mockery": "^1.0",
  11068. "phpunit/phpunit": "^6.4"
  11069. },
  11070. "type": "library",
  11071. "extra": {
  11072. "branch-alias": {
  11073. "dev-master": "4.x-dev"
  11074. }
  11075. },
  11076. "autoload": {
  11077. "psr-4": {
  11078. "phpDocumentor\\Reflection\\": [
  11079. "src/"
  11080. ]
  11081. }
  11082. },
  11083. "notification-url": "https://packagist.org/downloads/",
  11084. "license": [
  11085. "MIT"
  11086. ],
  11087. "authors": [
  11088. {
  11089. "name": "Mike van Riel",
  11090. "email": "me@mikevanriel.com"
  11091. }
  11092. ],
  11093. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  11094. "time": "2017-11-30T07:14:17+00:00"
  11095. },
  11096. {
  11097. "name": "phpdocumentor/type-resolver",
  11098. "version": "0.4.0",
  11099. "source": {
  11100. "type": "git",
  11101. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  11102. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  11103. },
  11104. "dist": {
  11105. "type": "zip",
  11106. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  11107. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  11108. "shasum": ""
  11109. },
  11110. "require": {
  11111. "php": "^5.5 || ^7.0",
  11112. "phpdocumentor/reflection-common": "^1.0"
  11113. },
  11114. "require-dev": {
  11115. "mockery/mockery": "^0.9.4",
  11116. "phpunit/phpunit": "^5.2||^4.8.24"
  11117. },
  11118. "type": "library",
  11119. "extra": {
  11120. "branch-alias": {
  11121. "dev-master": "1.0.x-dev"
  11122. }
  11123. },
  11124. "autoload": {
  11125. "psr-4": {
  11126. "phpDocumentor\\Reflection\\": [
  11127. "src/"
  11128. ]
  11129. }
  11130. },
  11131. "notification-url": "https://packagist.org/downloads/",
  11132. "license": [
  11133. "MIT"
  11134. ],
  11135. "authors": [
  11136. {
  11137. "name": "Mike van Riel",
  11138. "email": "me@mikevanriel.com"
  11139. }
  11140. ],
  11141. "time": "2017-07-14T14:27:02+00:00"
  11142. },
  11143. {
  11144. "name": "phpspec/prophecy",
  11145. "version": "1.8.0",
  11146. "source": {
  11147. "type": "git",
  11148. "url": "https://github.com/phpspec/prophecy.git",
  11149. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  11150. },
  11151. "dist": {
  11152. "type": "zip",
  11153. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11154. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11155. "shasum": ""
  11156. },
  11157. "require": {
  11158. "doctrine/instantiator": "^1.0.2",
  11159. "php": "^5.3|^7.0",
  11160. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  11161. "sebastian/comparator": "^1.1|^2.0|^3.0",
  11162. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  11163. },
  11164. "require-dev": {
  11165. "phpspec/phpspec": "^2.5|^3.2",
  11166. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  11167. },
  11168. "type": "library",
  11169. "extra": {
  11170. "branch-alias": {
  11171. "dev-master": "1.8.x-dev"
  11172. }
  11173. },
  11174. "autoload": {
  11175. "psr-0": {
  11176. "Prophecy\\": "src/"
  11177. }
  11178. },
  11179. "notification-url": "https://packagist.org/downloads/",
  11180. "license": [
  11181. "MIT"
  11182. ],
  11183. "authors": [
  11184. {
  11185. "name": "Konstantin Kudryashov",
  11186. "email": "ever.zet@gmail.com",
  11187. "homepage": "http://everzet.com"
  11188. },
  11189. {
  11190. "name": "Marcello Duarte",
  11191. "email": "marcello.duarte@gmail.com"
  11192. }
  11193. ],
  11194. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11195. "homepage": "https://github.com/phpspec/prophecy",
  11196. "keywords": [
  11197. "Double",
  11198. "Dummy",
  11199. "fake",
  11200. "mock",
  11201. "spy",
  11202. "stub"
  11203. ],
  11204. "time": "2018-08-05T17:53:17+00:00"
  11205. },
  11206. {
  11207. "name": "phpunit/php-code-coverage",
  11208. "version": "5.3.2",
  11209. "source": {
  11210. "type": "git",
  11211. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11212. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  11213. },
  11214. "dist": {
  11215. "type": "zip",
  11216. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  11217. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  11218. "shasum": ""
  11219. },
  11220. "require": {
  11221. "ext-dom": "*",
  11222. "ext-xmlwriter": "*",
  11223. "php": "^7.0",
  11224. "phpunit/php-file-iterator": "^1.4.2",
  11225. "phpunit/php-text-template": "^1.2.1",
  11226. "phpunit/php-token-stream": "^2.0.1",
  11227. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  11228. "sebastian/environment": "^3.0",
  11229. "sebastian/version": "^2.0.1",
  11230. "theseer/tokenizer": "^1.1"
  11231. },
  11232. "require-dev": {
  11233. "phpunit/phpunit": "^6.0"
  11234. },
  11235. "suggest": {
  11236. "ext-xdebug": "^2.5.5"
  11237. },
  11238. "type": "library",
  11239. "extra": {
  11240. "branch-alias": {
  11241. "dev-master": "5.3.x-dev"
  11242. }
  11243. },
  11244. "autoload": {
  11245. "classmap": [
  11246. "src/"
  11247. ]
  11248. },
  11249. "notification-url": "https://packagist.org/downloads/",
  11250. "license": [
  11251. "BSD-3-Clause"
  11252. ],
  11253. "authors": [
  11254. {
  11255. "name": "Sebastian Bergmann",
  11256. "email": "sebastian@phpunit.de",
  11257. "role": "lead"
  11258. }
  11259. ],
  11260. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11261. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11262. "keywords": [
  11263. "coverage",
  11264. "testing",
  11265. "xunit"
  11266. ],
  11267. "time": "2018-04-06T15:36:58+00:00"
  11268. },
  11269. {
  11270. "name": "phpunit/php-file-iterator",
  11271. "version": "1.4.5",
  11272. "source": {
  11273. "type": "git",
  11274. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11275. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  11276. },
  11277. "dist": {
  11278. "type": "zip",
  11279. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  11280. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  11281. "shasum": ""
  11282. },
  11283. "require": {
  11284. "php": ">=5.3.3"
  11285. },
  11286. "type": "library",
  11287. "extra": {
  11288. "branch-alias": {
  11289. "dev-master": "1.4.x-dev"
  11290. }
  11291. },
  11292. "autoload": {
  11293. "classmap": [
  11294. "src/"
  11295. ]
  11296. },
  11297. "notification-url": "https://packagist.org/downloads/",
  11298. "license": [
  11299. "BSD-3-Clause"
  11300. ],
  11301. "authors": [
  11302. {
  11303. "name": "Sebastian Bergmann",
  11304. "email": "sb@sebastian-bergmann.de",
  11305. "role": "lead"
  11306. }
  11307. ],
  11308. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11309. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11310. "keywords": [
  11311. "filesystem",
  11312. "iterator"
  11313. ],
  11314. "time": "2017-11-27T13:52:08+00:00"
  11315. },
  11316. {
  11317. "name": "phpunit/php-text-template",
  11318. "version": "1.2.1",
  11319. "source": {
  11320. "type": "git",
  11321. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11322. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  11323. },
  11324. "dist": {
  11325. "type": "zip",
  11326. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  11327. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  11328. "shasum": ""
  11329. },
  11330. "require": {
  11331. "php": ">=5.3.3"
  11332. },
  11333. "type": "library",
  11334. "autoload": {
  11335. "classmap": [
  11336. "src/"
  11337. ]
  11338. },
  11339. "notification-url": "https://packagist.org/downloads/",
  11340. "license": [
  11341. "BSD-3-Clause"
  11342. ],
  11343. "authors": [
  11344. {
  11345. "name": "Sebastian Bergmann",
  11346. "email": "sebastian@phpunit.de",
  11347. "role": "lead"
  11348. }
  11349. ],
  11350. "description": "Simple template engine.",
  11351. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11352. "keywords": [
  11353. "template"
  11354. ],
  11355. "time": "2015-06-21T13:50:34+00:00"
  11356. },
  11357. {
  11358. "name": "phpunit/php-timer",
  11359. "version": "1.0.9",
  11360. "source": {
  11361. "type": "git",
  11362. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11363. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  11364. },
  11365. "dist": {
  11366. "type": "zip",
  11367. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  11368. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  11369. "shasum": ""
  11370. },
  11371. "require": {
  11372. "php": "^5.3.3 || ^7.0"
  11373. },
  11374. "require-dev": {
  11375. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  11376. },
  11377. "type": "library",
  11378. "extra": {
  11379. "branch-alias": {
  11380. "dev-master": "1.0-dev"
  11381. }
  11382. },
  11383. "autoload": {
  11384. "classmap": [
  11385. "src/"
  11386. ]
  11387. },
  11388. "notification-url": "https://packagist.org/downloads/",
  11389. "license": [
  11390. "BSD-3-Clause"
  11391. ],
  11392. "authors": [
  11393. {
  11394. "name": "Sebastian Bergmann",
  11395. "email": "sb@sebastian-bergmann.de",
  11396. "role": "lead"
  11397. }
  11398. ],
  11399. "description": "Utility class for timing",
  11400. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11401. "keywords": [
  11402. "timer"
  11403. ],
  11404. "time": "2017-02-26T11:10:40+00:00"
  11405. },
  11406. {
  11407. "name": "phpunit/php-token-stream",
  11408. "version": "2.0.2",
  11409. "source": {
  11410. "type": "git",
  11411. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  11412. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  11413. },
  11414. "dist": {
  11415. "type": "zip",
  11416. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  11417. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  11418. "shasum": ""
  11419. },
  11420. "require": {
  11421. "ext-tokenizer": "*",
  11422. "php": "^7.0"
  11423. },
  11424. "require-dev": {
  11425. "phpunit/phpunit": "^6.2.4"
  11426. },
  11427. "type": "library",
  11428. "extra": {
  11429. "branch-alias": {
  11430. "dev-master": "2.0-dev"
  11431. }
  11432. },
  11433. "autoload": {
  11434. "classmap": [
  11435. "src/"
  11436. ]
  11437. },
  11438. "notification-url": "https://packagist.org/downloads/",
  11439. "license": [
  11440. "BSD-3-Clause"
  11441. ],
  11442. "authors": [
  11443. {
  11444. "name": "Sebastian Bergmann",
  11445. "email": "sebastian@phpunit.de"
  11446. }
  11447. ],
  11448. "description": "Wrapper around PHP's tokenizer extension.",
  11449. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  11450. "keywords": [
  11451. "tokenizer"
  11452. ],
  11453. "time": "2017-11-27T05:48:46+00:00"
  11454. },
  11455. {
  11456. "name": "phpunit/phpunit",
  11457. "version": "6.5.13",
  11458. "source": {
  11459. "type": "git",
  11460. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11461. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693"
  11462. },
  11463. "dist": {
  11464. "type": "zip",
  11465. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0973426fb012359b2f18d3bd1e90ef1172839693",
  11466. "reference": "0973426fb012359b2f18d3bd1e90ef1172839693",
  11467. "shasum": ""
  11468. },
  11469. "require": {
  11470. "ext-dom": "*",
  11471. "ext-json": "*",
  11472. "ext-libxml": "*",
  11473. "ext-mbstring": "*",
  11474. "ext-xml": "*",
  11475. "myclabs/deep-copy": "^1.6.1",
  11476. "phar-io/manifest": "^1.0.1",
  11477. "phar-io/version": "^1.0",
  11478. "php": "^7.0",
  11479. "phpspec/prophecy": "^1.7",
  11480. "phpunit/php-code-coverage": "^5.3",
  11481. "phpunit/php-file-iterator": "^1.4.3",
  11482. "phpunit/php-text-template": "^1.2.1",
  11483. "phpunit/php-timer": "^1.0.9",
  11484. "phpunit/phpunit-mock-objects": "^5.0.9",
  11485. "sebastian/comparator": "^2.1",
  11486. "sebastian/diff": "^2.0",
  11487. "sebastian/environment": "^3.1",
  11488. "sebastian/exporter": "^3.1",
  11489. "sebastian/global-state": "^2.0",
  11490. "sebastian/object-enumerator": "^3.0.3",
  11491. "sebastian/resource-operations": "^1.0",
  11492. "sebastian/version": "^2.0.1"
  11493. },
  11494. "conflict": {
  11495. "phpdocumentor/reflection-docblock": "3.0.2",
  11496. "phpunit/dbunit": "<3.0"
  11497. },
  11498. "require-dev": {
  11499. "ext-pdo": "*"
  11500. },
  11501. "suggest": {
  11502. "ext-xdebug": "*",
  11503. "phpunit/php-invoker": "^1.1"
  11504. },
  11505. "bin": [
  11506. "phpunit"
  11507. ],
  11508. "type": "library",
  11509. "extra": {
  11510. "branch-alias": {
  11511. "dev-master": "6.5.x-dev"
  11512. }
  11513. },
  11514. "autoload": {
  11515. "classmap": [
  11516. "src/"
  11517. ]
  11518. },
  11519. "notification-url": "https://packagist.org/downloads/",
  11520. "license": [
  11521. "BSD-3-Clause"
  11522. ],
  11523. "authors": [
  11524. {
  11525. "name": "Sebastian Bergmann",
  11526. "email": "sebastian@phpunit.de",
  11527. "role": "lead"
  11528. }
  11529. ],
  11530. "description": "The PHP Unit Testing framework.",
  11531. "homepage": "https://phpunit.de/",
  11532. "keywords": [
  11533. "phpunit",
  11534. "testing",
  11535. "xunit"
  11536. ],
  11537. "time": "2018-09-08T15:10:43+00:00"
  11538. },
  11539. {
  11540. "name": "phpunit/phpunit-mock-objects",
  11541. "version": "5.0.10",
  11542. "source": {
  11543. "type": "git",
  11544. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  11545. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  11546. },
  11547. "dist": {
  11548. "type": "zip",
  11549. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  11550. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  11551. "shasum": ""
  11552. },
  11553. "require": {
  11554. "doctrine/instantiator": "^1.0.5",
  11555. "php": "^7.0",
  11556. "phpunit/php-text-template": "^1.2.1",
  11557. "sebastian/exporter": "^3.1"
  11558. },
  11559. "conflict": {
  11560. "phpunit/phpunit": "<6.0"
  11561. },
  11562. "require-dev": {
  11563. "phpunit/phpunit": "^6.5.11"
  11564. },
  11565. "suggest": {
  11566. "ext-soap": "*"
  11567. },
  11568. "type": "library",
  11569. "extra": {
  11570. "branch-alias": {
  11571. "dev-master": "5.0.x-dev"
  11572. }
  11573. },
  11574. "autoload": {
  11575. "classmap": [
  11576. "src/"
  11577. ]
  11578. },
  11579. "notification-url": "https://packagist.org/downloads/",
  11580. "license": [
  11581. "BSD-3-Clause"
  11582. ],
  11583. "authors": [
  11584. {
  11585. "name": "Sebastian Bergmann",
  11586. "email": "sebastian@phpunit.de",
  11587. "role": "lead"
  11588. }
  11589. ],
  11590. "description": "Mock Object library for PHPUnit",
  11591. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  11592. "keywords": [
  11593. "mock",
  11594. "xunit"
  11595. ],
  11596. "time": "2018-08-09T05:50:03+00:00"
  11597. },
  11598. {
  11599. "name": "sebastian/code-unit-reverse-lookup",
  11600. "version": "1.0.1",
  11601. "source": {
  11602. "type": "git",
  11603. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11604. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  11605. },
  11606. "dist": {
  11607. "type": "zip",
  11608. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  11609. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  11610. "shasum": ""
  11611. },
  11612. "require": {
  11613. "php": "^5.6 || ^7.0"
  11614. },
  11615. "require-dev": {
  11616. "phpunit/phpunit": "^5.7 || ^6.0"
  11617. },
  11618. "type": "library",
  11619. "extra": {
  11620. "branch-alias": {
  11621. "dev-master": "1.0.x-dev"
  11622. }
  11623. },
  11624. "autoload": {
  11625. "classmap": [
  11626. "src/"
  11627. ]
  11628. },
  11629. "notification-url": "https://packagist.org/downloads/",
  11630. "license": [
  11631. "BSD-3-Clause"
  11632. ],
  11633. "authors": [
  11634. {
  11635. "name": "Sebastian Bergmann",
  11636. "email": "sebastian@phpunit.de"
  11637. }
  11638. ],
  11639. "description": "Looks up which function or method a line of code belongs to",
  11640. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11641. "time": "2017-03-04T06:30:41+00:00"
  11642. },
  11643. {
  11644. "name": "sebastian/comparator",
  11645. "version": "2.1.3",
  11646. "source": {
  11647. "type": "git",
  11648. "url": "https://github.com/sebastianbergmann/comparator.git",
  11649. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  11650. },
  11651. "dist": {
  11652. "type": "zip",
  11653. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  11654. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  11655. "shasum": ""
  11656. },
  11657. "require": {
  11658. "php": "^7.0",
  11659. "sebastian/diff": "^2.0 || ^3.0",
  11660. "sebastian/exporter": "^3.1"
  11661. },
  11662. "require-dev": {
  11663. "phpunit/phpunit": "^6.4"
  11664. },
  11665. "type": "library",
  11666. "extra": {
  11667. "branch-alias": {
  11668. "dev-master": "2.1.x-dev"
  11669. }
  11670. },
  11671. "autoload": {
  11672. "classmap": [
  11673. "src/"
  11674. ]
  11675. },
  11676. "notification-url": "https://packagist.org/downloads/",
  11677. "license": [
  11678. "BSD-3-Clause"
  11679. ],
  11680. "authors": [
  11681. {
  11682. "name": "Jeff Welch",
  11683. "email": "whatthejeff@gmail.com"
  11684. },
  11685. {
  11686. "name": "Volker Dusch",
  11687. "email": "github@wallbash.com"
  11688. },
  11689. {
  11690. "name": "Bernhard Schussek",
  11691. "email": "bschussek@2bepublished.at"
  11692. },
  11693. {
  11694. "name": "Sebastian Bergmann",
  11695. "email": "sebastian@phpunit.de"
  11696. }
  11697. ],
  11698. "description": "Provides the functionality to compare PHP values for equality",
  11699. "homepage": "https://github.com/sebastianbergmann/comparator",
  11700. "keywords": [
  11701. "comparator",
  11702. "compare",
  11703. "equality"
  11704. ],
  11705. "time": "2018-02-01T13:46:46+00:00"
  11706. },
  11707. {
  11708. "name": "sebastian/diff",
  11709. "version": "2.0.1",
  11710. "source": {
  11711. "type": "git",
  11712. "url": "https://github.com/sebastianbergmann/diff.git",
  11713. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  11714. },
  11715. "dist": {
  11716. "type": "zip",
  11717. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  11718. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  11719. "shasum": ""
  11720. },
  11721. "require": {
  11722. "php": "^7.0"
  11723. },
  11724. "require-dev": {
  11725. "phpunit/phpunit": "^6.2"
  11726. },
  11727. "type": "library",
  11728. "extra": {
  11729. "branch-alias": {
  11730. "dev-master": "2.0-dev"
  11731. }
  11732. },
  11733. "autoload": {
  11734. "classmap": [
  11735. "src/"
  11736. ]
  11737. },
  11738. "notification-url": "https://packagist.org/downloads/",
  11739. "license": [
  11740. "BSD-3-Clause"
  11741. ],
  11742. "authors": [
  11743. {
  11744. "name": "Kore Nordmann",
  11745. "email": "mail@kore-nordmann.de"
  11746. },
  11747. {
  11748. "name": "Sebastian Bergmann",
  11749. "email": "sebastian@phpunit.de"
  11750. }
  11751. ],
  11752. "description": "Diff implementation",
  11753. "homepage": "https://github.com/sebastianbergmann/diff",
  11754. "keywords": [
  11755. "diff"
  11756. ],
  11757. "time": "2017-08-03T08:09:46+00:00"
  11758. },
  11759. {
  11760. "name": "sebastian/environment",
  11761. "version": "3.1.0",
  11762. "source": {
  11763. "type": "git",
  11764. "url": "https://github.com/sebastianbergmann/environment.git",
  11765. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  11766. },
  11767. "dist": {
  11768. "type": "zip",
  11769. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  11770. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  11771. "shasum": ""
  11772. },
  11773. "require": {
  11774. "php": "^7.0"
  11775. },
  11776. "require-dev": {
  11777. "phpunit/phpunit": "^6.1"
  11778. },
  11779. "type": "library",
  11780. "extra": {
  11781. "branch-alias": {
  11782. "dev-master": "3.1.x-dev"
  11783. }
  11784. },
  11785. "autoload": {
  11786. "classmap": [
  11787. "src/"
  11788. ]
  11789. },
  11790. "notification-url": "https://packagist.org/downloads/",
  11791. "license": [
  11792. "BSD-3-Clause"
  11793. ],
  11794. "authors": [
  11795. {
  11796. "name": "Sebastian Bergmann",
  11797. "email": "sebastian@phpunit.de"
  11798. }
  11799. ],
  11800. "description": "Provides functionality to handle HHVM/PHP environments",
  11801. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11802. "keywords": [
  11803. "Xdebug",
  11804. "environment",
  11805. "hhvm"
  11806. ],
  11807. "time": "2017-07-01T08:51:00+00:00"
  11808. },
  11809. {
  11810. "name": "sebastian/exporter",
  11811. "version": "3.1.0",
  11812. "source": {
  11813. "type": "git",
  11814. "url": "https://github.com/sebastianbergmann/exporter.git",
  11815. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  11816. },
  11817. "dist": {
  11818. "type": "zip",
  11819. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  11820. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  11821. "shasum": ""
  11822. },
  11823. "require": {
  11824. "php": "^7.0",
  11825. "sebastian/recursion-context": "^3.0"
  11826. },
  11827. "require-dev": {
  11828. "ext-mbstring": "*",
  11829. "phpunit/phpunit": "^6.0"
  11830. },
  11831. "type": "library",
  11832. "extra": {
  11833. "branch-alias": {
  11834. "dev-master": "3.1.x-dev"
  11835. }
  11836. },
  11837. "autoload": {
  11838. "classmap": [
  11839. "src/"
  11840. ]
  11841. },
  11842. "notification-url": "https://packagist.org/downloads/",
  11843. "license": [
  11844. "BSD-3-Clause"
  11845. ],
  11846. "authors": [
  11847. {
  11848. "name": "Jeff Welch",
  11849. "email": "whatthejeff@gmail.com"
  11850. },
  11851. {
  11852. "name": "Volker Dusch",
  11853. "email": "github@wallbash.com"
  11854. },
  11855. {
  11856. "name": "Bernhard Schussek",
  11857. "email": "bschussek@2bepublished.at"
  11858. },
  11859. {
  11860. "name": "Sebastian Bergmann",
  11861. "email": "sebastian@phpunit.de"
  11862. },
  11863. {
  11864. "name": "Adam Harvey",
  11865. "email": "aharvey@php.net"
  11866. }
  11867. ],
  11868. "description": "Provides the functionality to export PHP variables for visualization",
  11869. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  11870. "keywords": [
  11871. "export",
  11872. "exporter"
  11873. ],
  11874. "time": "2017-04-03T13:19:02+00:00"
  11875. },
  11876. {
  11877. "name": "sebastian/global-state",
  11878. "version": "2.0.0",
  11879. "source": {
  11880. "type": "git",
  11881. "url": "https://github.com/sebastianbergmann/global-state.git",
  11882. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  11883. },
  11884. "dist": {
  11885. "type": "zip",
  11886. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11887. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  11888. "shasum": ""
  11889. },
  11890. "require": {
  11891. "php": "^7.0"
  11892. },
  11893. "require-dev": {
  11894. "phpunit/phpunit": "^6.0"
  11895. },
  11896. "suggest": {
  11897. "ext-uopz": "*"
  11898. },
  11899. "type": "library",
  11900. "extra": {
  11901. "branch-alias": {
  11902. "dev-master": "2.0-dev"
  11903. }
  11904. },
  11905. "autoload": {
  11906. "classmap": [
  11907. "src/"
  11908. ]
  11909. },
  11910. "notification-url": "https://packagist.org/downloads/",
  11911. "license": [
  11912. "BSD-3-Clause"
  11913. ],
  11914. "authors": [
  11915. {
  11916. "name": "Sebastian Bergmann",
  11917. "email": "sebastian@phpunit.de"
  11918. }
  11919. ],
  11920. "description": "Snapshotting of global state",
  11921. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  11922. "keywords": [
  11923. "global state"
  11924. ],
  11925. "time": "2017-04-27T15:39:26+00:00"
  11926. },
  11927. {
  11928. "name": "sebastian/object-enumerator",
  11929. "version": "3.0.3",
  11930. "source": {
  11931. "type": "git",
  11932. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11933. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  11934. },
  11935. "dist": {
  11936. "type": "zip",
  11937. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  11938. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  11939. "shasum": ""
  11940. },
  11941. "require": {
  11942. "php": "^7.0",
  11943. "sebastian/object-reflector": "^1.1.1",
  11944. "sebastian/recursion-context": "^3.0"
  11945. },
  11946. "require-dev": {
  11947. "phpunit/phpunit": "^6.0"
  11948. },
  11949. "type": "library",
  11950. "extra": {
  11951. "branch-alias": {
  11952. "dev-master": "3.0.x-dev"
  11953. }
  11954. },
  11955. "autoload": {
  11956. "classmap": [
  11957. "src/"
  11958. ]
  11959. },
  11960. "notification-url": "https://packagist.org/downloads/",
  11961. "license": [
  11962. "BSD-3-Clause"
  11963. ],
  11964. "authors": [
  11965. {
  11966. "name": "Sebastian Bergmann",
  11967. "email": "sebastian@phpunit.de"
  11968. }
  11969. ],
  11970. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11971. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11972. "time": "2017-08-03T12:35:26+00:00"
  11973. },
  11974. {
  11975. "name": "sebastian/object-reflector",
  11976. "version": "1.1.1",
  11977. "source": {
  11978. "type": "git",
  11979. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11980. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  11981. },
  11982. "dist": {
  11983. "type": "zip",
  11984. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  11985. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  11986. "shasum": ""
  11987. },
  11988. "require": {
  11989. "php": "^7.0"
  11990. },
  11991. "require-dev": {
  11992. "phpunit/phpunit": "^6.0"
  11993. },
  11994. "type": "library",
  11995. "extra": {
  11996. "branch-alias": {
  11997. "dev-master": "1.1-dev"
  11998. }
  11999. },
  12000. "autoload": {
  12001. "classmap": [
  12002. "src/"
  12003. ]
  12004. },
  12005. "notification-url": "https://packagist.org/downloads/",
  12006. "license": [
  12007. "BSD-3-Clause"
  12008. ],
  12009. "authors": [
  12010. {
  12011. "name": "Sebastian Bergmann",
  12012. "email": "sebastian@phpunit.de"
  12013. }
  12014. ],
  12015. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12016. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12017. "time": "2017-03-29T09:07:27+00:00"
  12018. },
  12019. {
  12020. "name": "sebastian/recursion-context",
  12021. "version": "3.0.0",
  12022. "source": {
  12023. "type": "git",
  12024. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12025. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  12026. },
  12027. "dist": {
  12028. "type": "zip",
  12029. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12030. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12031. "shasum": ""
  12032. },
  12033. "require": {
  12034. "php": "^7.0"
  12035. },
  12036. "require-dev": {
  12037. "phpunit/phpunit": "^6.0"
  12038. },
  12039. "type": "library",
  12040. "extra": {
  12041. "branch-alias": {
  12042. "dev-master": "3.0.x-dev"
  12043. }
  12044. },
  12045. "autoload": {
  12046. "classmap": [
  12047. "src/"
  12048. ]
  12049. },
  12050. "notification-url": "https://packagist.org/downloads/",
  12051. "license": [
  12052. "BSD-3-Clause"
  12053. ],
  12054. "authors": [
  12055. {
  12056. "name": "Jeff Welch",
  12057. "email": "whatthejeff@gmail.com"
  12058. },
  12059. {
  12060. "name": "Sebastian Bergmann",
  12061. "email": "sebastian@phpunit.de"
  12062. },
  12063. {
  12064. "name": "Adam Harvey",
  12065. "email": "aharvey@php.net"
  12066. }
  12067. ],
  12068. "description": "Provides functionality to recursively process PHP variables",
  12069. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12070. "time": "2017-03-03T06:23:57+00:00"
  12071. },
  12072. {
  12073. "name": "sebastian/resource-operations",
  12074. "version": "1.0.0",
  12075. "source": {
  12076. "type": "git",
  12077. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12078. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  12079. },
  12080. "dist": {
  12081. "type": "zip",
  12082. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12083. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12084. "shasum": ""
  12085. },
  12086. "require": {
  12087. "php": ">=5.6.0"
  12088. },
  12089. "type": "library",
  12090. "extra": {
  12091. "branch-alias": {
  12092. "dev-master": "1.0.x-dev"
  12093. }
  12094. },
  12095. "autoload": {
  12096. "classmap": [
  12097. "src/"
  12098. ]
  12099. },
  12100. "notification-url": "https://packagist.org/downloads/",
  12101. "license": [
  12102. "BSD-3-Clause"
  12103. ],
  12104. "authors": [
  12105. {
  12106. "name": "Sebastian Bergmann",
  12107. "email": "sebastian@phpunit.de"
  12108. }
  12109. ],
  12110. "description": "Provides a list of PHP built-in functions that operate on resources",
  12111. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12112. "time": "2015-07-28T20:34:47+00:00"
  12113. },
  12114. {
  12115. "name": "sebastian/version",
  12116. "version": "2.0.1",
  12117. "source": {
  12118. "type": "git",
  12119. "url": "https://github.com/sebastianbergmann/version.git",
  12120. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  12121. },
  12122. "dist": {
  12123. "type": "zip",
  12124. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  12125. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  12126. "shasum": ""
  12127. },
  12128. "require": {
  12129. "php": ">=5.6"
  12130. },
  12131. "type": "library",
  12132. "extra": {
  12133. "branch-alias": {
  12134. "dev-master": "2.0.x-dev"
  12135. }
  12136. },
  12137. "autoload": {
  12138. "classmap": [
  12139. "src/"
  12140. ]
  12141. },
  12142. "notification-url": "https://packagist.org/downloads/",
  12143. "license": [
  12144. "BSD-3-Clause"
  12145. ],
  12146. "authors": [
  12147. {
  12148. "name": "Sebastian Bergmann",
  12149. "email": "sebastian@phpunit.de",
  12150. "role": "lead"
  12151. }
  12152. ],
  12153. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12154. "homepage": "https://github.com/sebastianbergmann/version",
  12155. "time": "2016-10-03T07:35:21+00:00"
  12156. },
  12157. {
  12158. "name": "squizlabs/php_codesniffer",
  12159. "version": "3.3.2",
  12160. "source": {
  12161. "type": "git",
  12162. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  12163. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e"
  12164. },
  12165. "dist": {
  12166. "type": "zip",
  12167. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  12168. "reference": "6ad28354c04b364c3c71a34e4a18b629cc3b231e",
  12169. "shasum": ""
  12170. },
  12171. "require": {
  12172. "ext-simplexml": "*",
  12173. "ext-tokenizer": "*",
  12174. "ext-xmlwriter": "*",
  12175. "php": ">=5.4.0"
  12176. },
  12177. "require-dev": {
  12178. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  12179. },
  12180. "bin": [
  12181. "bin/phpcs",
  12182. "bin/phpcbf"
  12183. ],
  12184. "type": "library",
  12185. "extra": {
  12186. "branch-alias": {
  12187. "dev-master": "3.x-dev"
  12188. }
  12189. },
  12190. "notification-url": "https://packagist.org/downloads/",
  12191. "license": [
  12192. "BSD-3-Clause"
  12193. ],
  12194. "authors": [
  12195. {
  12196. "name": "Greg Sherwood",
  12197. "role": "lead"
  12198. }
  12199. ],
  12200. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  12201. "homepage": "http://www.squizlabs.com/php-codesniffer",
  12202. "keywords": [
  12203. "phpcs",
  12204. "standards"
  12205. ],
  12206. "time": "2018-09-23T23:08:17+00:00"
  12207. },
  12208. {
  12209. "name": "symfony/browser-kit",
  12210. "version": "v3.4.17",
  12211. "source": {
  12212. "type": "git",
  12213. "url": "https://github.com/symfony/browser-kit.git",
  12214. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0"
  12215. },
  12216. "dist": {
  12217. "type": "zip",
  12218. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  12219. "reference": "f6668d1a6182d5a8dec65a1c863a4c1d963816c0",
  12220. "shasum": ""
  12221. },
  12222. "require": {
  12223. "php": "^5.5.9|>=7.0.8",
  12224. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  12225. },
  12226. "require-dev": {
  12227. "symfony/css-selector": "~2.8|~3.0|~4.0",
  12228. "symfony/process": "~2.8|~3.0|~4.0"
  12229. },
  12230. "suggest": {
  12231. "symfony/process": ""
  12232. },
  12233. "type": "library",
  12234. "extra": {
  12235. "branch-alias": {
  12236. "dev-master": "3.4-dev"
  12237. }
  12238. },
  12239. "autoload": {
  12240. "psr-4": {
  12241. "Symfony\\Component\\BrowserKit\\": ""
  12242. },
  12243. "exclude-from-classmap": [
  12244. "/Tests/"
  12245. ]
  12246. },
  12247. "notification-url": "https://packagist.org/downloads/",
  12248. "license": [
  12249. "MIT"
  12250. ],
  12251. "authors": [
  12252. {
  12253. "name": "Fabien Potencier",
  12254. "email": "fabien@symfony.com"
  12255. },
  12256. {
  12257. "name": "Symfony Community",
  12258. "homepage": "https://symfony.com/contributors"
  12259. }
  12260. ],
  12261. "description": "Symfony BrowserKit Component",
  12262. "homepage": "https://symfony.com",
  12263. "time": "2018-07-26T09:06:28+00:00"
  12264. },
  12265. {
  12266. "name": "symfony/phpunit-bridge",
  12267. "version": "v3.4.17",
  12268. "source": {
  12269. "type": "git",
  12270. "url": "https://github.com/symfony/phpunit-bridge.git",
  12271. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4"
  12272. },
  12273. "dist": {
  12274. "type": "zip",
  12275. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/76e013a98031356604e5a730c9eb22713dc4dda4",
  12276. "reference": "76e013a98031356604e5a730c9eb22713dc4dda4",
  12277. "shasum": ""
  12278. },
  12279. "require": {
  12280. "php": ">=5.3.3"
  12281. },
  12282. "conflict": {
  12283. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  12284. },
  12285. "suggest": {
  12286. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  12287. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  12288. },
  12289. "bin": [
  12290. "bin/simple-phpunit"
  12291. ],
  12292. "type": "symfony-bridge",
  12293. "extra": {
  12294. "branch-alias": {
  12295. "dev-master": "3.4-dev"
  12296. },
  12297. "thanks": {
  12298. "name": "phpunit/phpunit",
  12299. "url": "https://github.com/sebastianbergmann/phpunit"
  12300. }
  12301. },
  12302. "autoload": {
  12303. "files": [
  12304. "bootstrap.php"
  12305. ],
  12306. "psr-4": {
  12307. "Symfony\\Bridge\\PhpUnit\\": ""
  12308. },
  12309. "exclude-from-classmap": [
  12310. "/Tests/"
  12311. ]
  12312. },
  12313. "notification-url": "https://packagist.org/downloads/",
  12314. "license": [
  12315. "MIT"
  12316. ],
  12317. "authors": [
  12318. {
  12319. "name": "Nicolas Grekas",
  12320. "email": "p@tchwork.com"
  12321. },
  12322. {
  12323. "name": "Symfony Community",
  12324. "homepage": "https://symfony.com/contributors"
  12325. }
  12326. ],
  12327. "description": "Symfony PHPUnit Bridge",
  12328. "homepage": "https://symfony.com",
  12329. "time": "2018-10-02T12:28:39+00:00"
  12330. },
  12331. {
  12332. "name": "theseer/tokenizer",
  12333. "version": "1.1.0",
  12334. "source": {
  12335. "type": "git",
  12336. "url": "https://github.com/theseer/tokenizer.git",
  12337. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  12338. },
  12339. "dist": {
  12340. "type": "zip",
  12341. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  12342. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  12343. "shasum": ""
  12344. },
  12345. "require": {
  12346. "ext-dom": "*",
  12347. "ext-tokenizer": "*",
  12348. "ext-xmlwriter": "*",
  12349. "php": "^7.0"
  12350. },
  12351. "type": "library",
  12352. "autoload": {
  12353. "classmap": [
  12354. "src/"
  12355. ]
  12356. },
  12357. "notification-url": "https://packagist.org/downloads/",
  12358. "license": [
  12359. "BSD-3-Clause"
  12360. ],
  12361. "authors": [
  12362. {
  12363. "name": "Arne Blankerts",
  12364. "email": "arne@blankerts.de",
  12365. "role": "Developer"
  12366. }
  12367. ],
  12368. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12369. "time": "2017-04-07T12:08:54+00:00"
  12370. }
  12371. ],
  12372. "aliases": [],
  12373. "minimum-stability": "dev",
  12374. "stability-flags": {
  12375. "drupal/migrate_tools": 20,
  12376. "drupal/examples": 20,
  12377. "drupal/synonyms": 20,
  12378. "drupal/telephone_formatter": 10,
  12379. "drupal/computed_field": 15,
  12380. "drupal/cshs": 20,
  12381. "drupal/views_ef_fieldset": 20,
  12382. "drupal/advanced_text_formatter": 10,
  12383. "drupal/autocomplete_deluxe": 10,
  12384. "drupal/better_exposed_filters": 15,
  12385. "drupal/better_messages": 15,
  12386. "drupal/bulkdelete": 20,
  12387. "drupal/content_lock": 15,
  12388. "drupal/context": 10,
  12389. "drupal/domain": 15,
  12390. "drupal/domain_alias": 15,
  12391. "drupal/domain_config": 15,
  12392. "drupal/email_registration": 5,
  12393. "drupal/entity_browser_enhanced": 5,
  12394. "drupal/entity_clone": 15,
  12395. "drupal/filefield_sources": 20,
  12396. "drupal/filter_perms": 20,
  12397. "drupal/inline_entity_form": 5,
  12398. "drupal/login_destination": 20,
  12399. "drupal/maillog": 20,
  12400. "drupal/maxlength": 10,
  12401. "drupal/menu_position": 20,
  12402. "drupal/path_alias_xt": 20,
  12403. "drupal/pathologic": 15,
  12404. "drupal/profile": 5,
  12405. "drupal/smtp": 10,
  12406. "drupal/translation_views": 15,
  12407. "drupal/toolbar_themes": 15,
  12408. "drupal/ultimate_cron": 15,
  12409. "drupal/workflow": 20,
  12410. "behat/mink": 20,
  12411. "behat/mink-selenium2-driver": 20
  12412. },
  12413. "prefer-stable": true,
  12414. "prefer-lowest": false,
  12415. "platform": {
  12416. "ext-date": "*",
  12417. "ext-dom": "*",
  12418. "ext-filter": "*",
  12419. "ext-gd": "*",
  12420. "ext-hash": "*",
  12421. "ext-json": "*",
  12422. "ext-pcre": "*",
  12423. "ext-pdo": "*",
  12424. "ext-session": "*",
  12425. "ext-simplexml": "*",
  12426. "ext-spl": "*",
  12427. "ext-tokenizer": "*",
  12428. "ext-xml": "*",
  12429. "php": "^5.5.9|>=7.0.8"
  12430. },
  12431. "platform-dev": []
  12432. }