composer.lock 474 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203
  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": "760cceafed650ef4ca099f8605a1efce",
  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.28.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "a43131309b56a4c1874f39a9eaa4f6cb1a9832cd"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/a43131309b56a4c1874f39a9eaa4f6cb1a9832cd",
  136. "reference": "a43131309b56a4c1874f39a9eaa4f6cb1a9832cd",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "ext-json": "*",
  141. "php": ">=5.5.9",
  142. "symfony/console": "^3.4 || ^4.0",
  143. "symfony/filesystem": "^3.4 || ^4.0",
  144. "twig/twig": "^1.35"
  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": "2019-01-30T10:34:16+00:00"
  169. },
  170. {
  171. "name": "commerceguys/addressing",
  172. "version": "v1.0.2",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/commerceguys/addressing.git",
  176. "reference": "f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b",
  181. "reference": "f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b",
  182. "shasum": ""
  183. },
  184. "require": {
  185. "doctrine/collections": "~1.0",
  186. "php": ">=5.5.0"
  187. },
  188. "require-dev": {
  189. "mikey179/vfsstream": "1.*",
  190. "phpunit/phpunit": "~4.0",
  191. "squizlabs/php_codesniffer": "2.*",
  192. "symfony/validator": ">=3.2"
  193. },
  194. "suggest": {
  195. "symfony/validator": "to validate addresses"
  196. },
  197. "type": "library",
  198. "extra": {
  199. "branch-alias": {
  200. "dev-master": "1.x-dev"
  201. }
  202. },
  203. "autoload": {
  204. "psr-4": {
  205. "CommerceGuys\\Addressing\\": "src"
  206. }
  207. },
  208. "notification-url": "https://packagist.org/downloads/",
  209. "license": [
  210. "MIT"
  211. ],
  212. "authors": [
  213. {
  214. "name": "Bojan Zivanovic"
  215. },
  216. {
  217. "name": "Damien Tournoud"
  218. }
  219. ],
  220. "description": "Addressing library powered by CLDR and Google's address data.",
  221. "keywords": [
  222. "address",
  223. "internationalization",
  224. "localization",
  225. "postal"
  226. ],
  227. "time": "2018-10-21T23:38:05+00:00"
  228. },
  229. {
  230. "name": "components/highlightjs",
  231. "version": "9.7.0",
  232. "dist": {
  233. "type": "zip",
  234. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip",
  235. "reference": null,
  236. "shasum": null
  237. },
  238. "type": "drupal-library"
  239. },
  240. {
  241. "name": "composer/installers",
  242. "version": "v1.6.0",
  243. "source": {
  244. "type": "git",
  245. "url": "https://github.com/composer/installers.git",
  246. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  247. },
  248. "dist": {
  249. "type": "zip",
  250. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  251. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  252. "shasum": ""
  253. },
  254. "require": {
  255. "composer-plugin-api": "^1.0"
  256. },
  257. "replace": {
  258. "roundcube/plugin-installer": "*",
  259. "shama/baton": "*"
  260. },
  261. "require-dev": {
  262. "composer/composer": "1.0.*@dev",
  263. "phpunit/phpunit": "^4.8.36"
  264. },
  265. "type": "composer-plugin",
  266. "extra": {
  267. "class": "Composer\\Installers\\Plugin",
  268. "branch-alias": {
  269. "dev-master": "1.0-dev"
  270. }
  271. },
  272. "autoload": {
  273. "psr-4": {
  274. "Composer\\Installers\\": "src/Composer/Installers"
  275. }
  276. },
  277. "notification-url": "https://packagist.org/downloads/",
  278. "license": [
  279. "MIT"
  280. ],
  281. "authors": [
  282. {
  283. "name": "Kyle Robinson Young",
  284. "email": "kyle@dontkry.com",
  285. "homepage": "https://github.com/shama"
  286. }
  287. ],
  288. "description": "A multi-framework Composer library installer",
  289. "homepage": "https://composer.github.io/installers/",
  290. "keywords": [
  291. "Craft",
  292. "Dolibarr",
  293. "Eliasis",
  294. "Hurad",
  295. "ImageCMS",
  296. "Kanboard",
  297. "Lan Management System",
  298. "MODX Evo",
  299. "Mautic",
  300. "Maya",
  301. "OXID",
  302. "Plentymarkets",
  303. "Porto",
  304. "RadPHP",
  305. "SMF",
  306. "Thelia",
  307. "WolfCMS",
  308. "agl",
  309. "aimeos",
  310. "annotatecms",
  311. "attogram",
  312. "bitrix",
  313. "cakephp",
  314. "chef",
  315. "cockpit",
  316. "codeigniter",
  317. "concrete5",
  318. "croogo",
  319. "dokuwiki",
  320. "drupal",
  321. "eZ Platform",
  322. "elgg",
  323. "expressionengine",
  324. "fuelphp",
  325. "grav",
  326. "installer",
  327. "itop",
  328. "joomla",
  329. "kohana",
  330. "laravel",
  331. "lavalite",
  332. "lithium",
  333. "magento",
  334. "majima",
  335. "mako",
  336. "mediawiki",
  337. "modulework",
  338. "modx",
  339. "moodle",
  340. "osclass",
  341. "phpbb",
  342. "piwik",
  343. "ppi",
  344. "puppet",
  345. "pxcms",
  346. "reindex",
  347. "roundcube",
  348. "shopware",
  349. "silverstripe",
  350. "sydes",
  351. "symfony",
  352. "typo3",
  353. "wordpress",
  354. "yawik",
  355. "zend",
  356. "zikula"
  357. ],
  358. "time": "2018-08-27T06:10:37+00:00"
  359. },
  360. {
  361. "name": "composer/semver",
  362. "version": "1.4.2",
  363. "source": {
  364. "type": "git",
  365. "url": "https://github.com/composer/semver.git",
  366. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  367. },
  368. "dist": {
  369. "type": "zip",
  370. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  371. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  372. "shasum": ""
  373. },
  374. "require": {
  375. "php": "^5.3.2 || ^7.0"
  376. },
  377. "require-dev": {
  378. "phpunit/phpunit": "^4.5 || ^5.0.5",
  379. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  380. },
  381. "type": "library",
  382. "extra": {
  383. "branch-alias": {
  384. "dev-master": "1.x-dev"
  385. }
  386. },
  387. "autoload": {
  388. "psr-4": {
  389. "Composer\\Semver\\": "src"
  390. }
  391. },
  392. "notification-url": "https://packagist.org/downloads/",
  393. "license": [
  394. "MIT"
  395. ],
  396. "authors": [
  397. {
  398. "name": "Nils Adermann",
  399. "email": "naderman@naderman.de",
  400. "homepage": "http://www.naderman.de"
  401. },
  402. {
  403. "name": "Jordi Boggiano",
  404. "email": "j.boggiano@seld.be",
  405. "homepage": "http://seld.be"
  406. },
  407. {
  408. "name": "Rob Bast",
  409. "email": "rob.bast@gmail.com",
  410. "homepage": "http://robbast.nl"
  411. }
  412. ],
  413. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  414. "keywords": [
  415. "semantic",
  416. "semver",
  417. "validation",
  418. "versioning"
  419. ],
  420. "time": "2016-08-30T16:08:34+00:00"
  421. },
  422. {
  423. "name": "consolidation/annotated-command",
  424. "version": "2.11.2",
  425. "source": {
  426. "type": "git",
  427. "url": "https://github.com/consolidation/annotated-command.git",
  428. "reference": "004af26391cd7d1cd04b0ac736dc1324d1b4f572"
  429. },
  430. "dist": {
  431. "type": "zip",
  432. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/004af26391cd7d1cd04b0ac736dc1324d1b4f572",
  433. "reference": "004af26391cd7d1cd04b0ac736dc1324d1b4f572",
  434. "shasum": ""
  435. },
  436. "require": {
  437. "consolidation/output-formatters": "^3.4",
  438. "php": ">=5.4.5",
  439. "psr/log": "^1",
  440. "symfony/console": "^2.8|^3|^4",
  441. "symfony/event-dispatcher": "^2.5|^3|^4",
  442. "symfony/finder": "^2.5|^3|^4"
  443. },
  444. "require-dev": {
  445. "g1a/composer-test-scenarios": "^3",
  446. "php-coveralls/php-coveralls": "^1",
  447. "phpunit/phpunit": "^6",
  448. "squizlabs/php_codesniffer": "^2.7"
  449. },
  450. "type": "library",
  451. "extra": {
  452. "scenarios": {
  453. "symfony4": {
  454. "require": {
  455. "symfony/console": "^4.0"
  456. },
  457. "config": {
  458. "platform": {
  459. "php": "7.1.3"
  460. }
  461. }
  462. },
  463. "symfony2": {
  464. "require": {
  465. "symfony/console": "^2.8"
  466. },
  467. "require-dev": {
  468. "phpunit/phpunit": "^4.8.36"
  469. },
  470. "remove": [
  471. "php-coveralls/php-coveralls"
  472. ],
  473. "config": {
  474. "platform": {
  475. "php": "5.4.8"
  476. }
  477. },
  478. "scenario-options": {
  479. "create-lockfile": "false"
  480. }
  481. },
  482. "phpunit4": {
  483. "require-dev": {
  484. "phpunit/phpunit": "^4.8.36"
  485. },
  486. "remove": [
  487. "php-coveralls/php-coveralls"
  488. ],
  489. "config": {
  490. "platform": {
  491. "php": "5.4.8"
  492. }
  493. }
  494. }
  495. },
  496. "branch-alias": {
  497. "dev-master": "2.x-dev"
  498. }
  499. },
  500. "autoload": {
  501. "psr-4": {
  502. "Consolidation\\AnnotatedCommand\\": "src"
  503. }
  504. },
  505. "notification-url": "https://packagist.org/downloads/",
  506. "license": [
  507. "MIT"
  508. ],
  509. "authors": [
  510. {
  511. "name": "Greg Anderson",
  512. "email": "greg.1.anderson@greenknowe.org"
  513. }
  514. ],
  515. "description": "Initialize Symfony Console commands from annotated command class methods.",
  516. "time": "2019-02-02T02:29:53+00:00"
  517. },
  518. {
  519. "name": "consolidation/config",
  520. "version": "1.1.1",
  521. "source": {
  522. "type": "git",
  523. "url": "https://github.com/consolidation/config.git",
  524. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c"
  525. },
  526. "dist": {
  527. "type": "zip",
  528. "url": "https://api.github.com/repos/consolidation/config/zipball/925231dfff32f05b787e1fddb265e789b939cf4c",
  529. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c",
  530. "shasum": ""
  531. },
  532. "require": {
  533. "dflydev/dot-access-data": "^1.1.0",
  534. "grasmash/expander": "^1",
  535. "php": ">=5.4.0"
  536. },
  537. "require-dev": {
  538. "g1a/composer-test-scenarios": "^1",
  539. "phpunit/phpunit": "^5",
  540. "satooshi/php-coveralls": "^1.0",
  541. "squizlabs/php_codesniffer": "2.*",
  542. "symfony/console": "^2.5|^3|^4",
  543. "symfony/yaml": "^2.8.11|^3|^4"
  544. },
  545. "suggest": {
  546. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "branch-alias": {
  551. "dev-master": "1.x-dev"
  552. }
  553. },
  554. "autoload": {
  555. "psr-4": {
  556. "Consolidation\\Config\\": "src"
  557. }
  558. },
  559. "notification-url": "https://packagist.org/downloads/",
  560. "license": [
  561. "MIT"
  562. ],
  563. "authors": [
  564. {
  565. "name": "Greg Anderson",
  566. "email": "greg.1.anderson@greenknowe.org"
  567. }
  568. ],
  569. "description": "Provide configuration services for a commandline tool.",
  570. "time": "2018-10-24T17:55:35+00:00"
  571. },
  572. {
  573. "name": "consolidation/log",
  574. "version": "1.1.1",
  575. "source": {
  576. "type": "git",
  577. "url": "https://github.com/consolidation/log.git",
  578. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  579. },
  580. "dist": {
  581. "type": "zip",
  582. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  583. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  584. "shasum": ""
  585. },
  586. "require": {
  587. "php": ">=5.4.5",
  588. "psr/log": "^1.0",
  589. "symfony/console": "^2.8|^3|^4"
  590. },
  591. "require-dev": {
  592. "g1a/composer-test-scenarios": "^3",
  593. "php-coveralls/php-coveralls": "^1",
  594. "phpunit/phpunit": "^6",
  595. "squizlabs/php_codesniffer": "^2"
  596. },
  597. "type": "library",
  598. "extra": {
  599. "scenarios": {
  600. "symfony4": {
  601. "require": {
  602. "symfony/console": "^4.0"
  603. },
  604. "config": {
  605. "platform": {
  606. "php": "7.1.3"
  607. }
  608. }
  609. },
  610. "symfony2": {
  611. "require": {
  612. "symfony/console": "^2.8"
  613. },
  614. "require-dev": {
  615. "phpunit/phpunit": "^4.8.36"
  616. },
  617. "remove": [
  618. "php-coveralls/php-coveralls"
  619. ],
  620. "config": {
  621. "platform": {
  622. "php": "5.4.8"
  623. }
  624. }
  625. },
  626. "phpunit4": {
  627. "require-dev": {
  628. "phpunit/phpunit": "^4.8.36"
  629. },
  630. "remove": [
  631. "php-coveralls/php-coveralls"
  632. ],
  633. "config": {
  634. "platform": {
  635. "php": "5.4.8"
  636. }
  637. }
  638. }
  639. },
  640. "branch-alias": {
  641. "dev-master": "1.x-dev"
  642. }
  643. },
  644. "autoload": {
  645. "psr-4": {
  646. "Consolidation\\Log\\": "src"
  647. }
  648. },
  649. "notification-url": "https://packagist.org/downloads/",
  650. "license": [
  651. "MIT"
  652. ],
  653. "authors": [
  654. {
  655. "name": "Greg Anderson",
  656. "email": "greg.1.anderson@greenknowe.org"
  657. }
  658. ],
  659. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  660. "time": "2019-01-01T17:30:51+00:00"
  661. },
  662. {
  663. "name": "consolidation/output-formatters",
  664. "version": "3.4.0",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/consolidation/output-formatters.git",
  668. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a942680232094c4a5b21c0b7e54c20cce623ae19",
  673. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19",
  674. "shasum": ""
  675. },
  676. "require": {
  677. "dflydev/dot-access-data": "^1.1.0",
  678. "php": ">=5.4.0",
  679. "symfony/console": "^2.8|^3|^4",
  680. "symfony/finder": "^2.5|^3|^4"
  681. },
  682. "require-dev": {
  683. "g1a/composer-test-scenarios": "^2",
  684. "phpunit/phpunit": "^5.7.27",
  685. "satooshi/php-coveralls": "^2",
  686. "squizlabs/php_codesniffer": "^2.7",
  687. "symfony/console": "3.2.3",
  688. "symfony/var-dumper": "^2.8|^3|^4",
  689. "victorjonsson/markdowndocs": "^1.3"
  690. },
  691. "suggest": {
  692. "symfony/var-dumper": "For using the var_dump formatter"
  693. },
  694. "type": "library",
  695. "extra": {
  696. "branch-alias": {
  697. "dev-master": "3.x-dev"
  698. }
  699. },
  700. "autoload": {
  701. "psr-4": {
  702. "Consolidation\\OutputFormatters\\": "src"
  703. }
  704. },
  705. "notification-url": "https://packagist.org/downloads/",
  706. "license": [
  707. "MIT"
  708. ],
  709. "authors": [
  710. {
  711. "name": "Greg Anderson",
  712. "email": "greg.1.anderson@greenknowe.org"
  713. }
  714. ],
  715. "description": "Format text by applying transformations provided by plug-in formatters.",
  716. "time": "2018-10-19T22:35:38+00:00"
  717. },
  718. {
  719. "name": "consolidation/robo",
  720. "version": "1.4.4",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/consolidation/Robo.git",
  724. "reference": "8bec6a6ea54a7d03d56552a4250c49dec3b3083d"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/consolidation/Robo/zipball/8bec6a6ea54a7d03d56552a4250c49dec3b3083d",
  729. "reference": "8bec6a6ea54a7d03d56552a4250c49dec3b3083d",
  730. "shasum": ""
  731. },
  732. "require": {
  733. "consolidation/annotated-command": "^2.10.2",
  734. "consolidation/config": "^1.0.10",
  735. "consolidation/log": "~1",
  736. "consolidation/output-formatters": "^3.1.13",
  737. "consolidation/self-update": "^1",
  738. "grasmash/yaml-expander": "^1.3",
  739. "league/container": "^2.2",
  740. "php": ">=5.5.0",
  741. "symfony/console": "^2.8|^3|^4",
  742. "symfony/event-dispatcher": "^2.5|^3|^4",
  743. "symfony/filesystem": "^2.5|^3|^4",
  744. "symfony/finder": "^2.5|^3|^4",
  745. "symfony/process": "^2.5|^3|^4"
  746. },
  747. "replace": {
  748. "codegyre/robo": "< 1.0"
  749. },
  750. "require-dev": {
  751. "codeception/aspect-mock": "^1|^2.1.1",
  752. "codeception/base": "^2.3.7",
  753. "codeception/verify": "^0.3.2",
  754. "g1a/composer-test-scenarios": "^3",
  755. "goaop/framework": "~2.1.2",
  756. "goaop/parser-reflection": "^1.1.0",
  757. "natxet/cssmin": "3.0.4",
  758. "nikic/php-parser": "^3.1.5",
  759. "patchwork/jsqueeze": "~2",
  760. "pear/archive_tar": "^1.4.4",
  761. "php-coveralls/php-coveralls": "^1",
  762. "phpunit/php-code-coverage": "~2|~4",
  763. "squizlabs/php_codesniffer": "^2.8"
  764. },
  765. "suggest": {
  766. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  767. "natxet/CssMin": "For minifying CSS files in taskMinify",
  768. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  769. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  770. },
  771. "bin": [
  772. "robo"
  773. ],
  774. "type": "library",
  775. "extra": {
  776. "scenarios": {
  777. "symfony4": {
  778. "require": {
  779. "symfony/console": "^4"
  780. },
  781. "config": {
  782. "platform": {
  783. "php": "7.1.3"
  784. }
  785. }
  786. },
  787. "symfony2": {
  788. "require": {
  789. "symfony/console": "^2.8"
  790. },
  791. "remove": [
  792. "goaop/framework"
  793. ],
  794. "config": {
  795. "platform": {
  796. "php": "5.5.9"
  797. }
  798. },
  799. "scenario-options": {
  800. "create-lockfile": "false"
  801. }
  802. }
  803. },
  804. "branch-alias": {
  805. "dev-master": "2.x-dev"
  806. }
  807. },
  808. "autoload": {
  809. "psr-4": {
  810. "Robo\\": "src"
  811. }
  812. },
  813. "notification-url": "https://packagist.org/downloads/",
  814. "license": [
  815. "MIT"
  816. ],
  817. "authors": [
  818. {
  819. "name": "Davert",
  820. "email": "davert.php@resend.cc"
  821. }
  822. ],
  823. "description": "Modern task runner",
  824. "time": "2019-02-08T20:59:23+00:00"
  825. },
  826. {
  827. "name": "consolidation/self-update",
  828. "version": "1.1.5",
  829. "source": {
  830. "type": "git",
  831. "url": "https://github.com/consolidation/self-update.git",
  832. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  833. },
  834. "dist": {
  835. "type": "zip",
  836. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  837. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  838. "shasum": ""
  839. },
  840. "require": {
  841. "php": ">=5.5.0",
  842. "symfony/console": "^2.8|^3|^4",
  843. "symfony/filesystem": "^2.5|^3|^4"
  844. },
  845. "bin": [
  846. "scripts/release"
  847. ],
  848. "type": "library",
  849. "extra": {
  850. "branch-alias": {
  851. "dev-master": "1.x-dev"
  852. }
  853. },
  854. "autoload": {
  855. "psr-4": {
  856. "SelfUpdate\\": "src"
  857. }
  858. },
  859. "notification-url": "https://packagist.org/downloads/",
  860. "license": [
  861. "MIT"
  862. ],
  863. "authors": [
  864. {
  865. "name": "Greg Anderson",
  866. "email": "greg.1.anderson@greenknowe.org"
  867. },
  868. {
  869. "name": "Alexander Menk",
  870. "email": "menk@mestrona.net"
  871. }
  872. ],
  873. "description": "Provides a self:update command for Symfony Console applications.",
  874. "time": "2018-10-28T01:52:03+00:00"
  875. },
  876. {
  877. "name": "consolidation/site-alias",
  878. "version": "1.1.11",
  879. "source": {
  880. "type": "git",
  881. "url": "https://github.com/consolidation/site-alias.git",
  882. "reference": "54ea74ee7dbd54ef356798028ca9a3548cb8df14"
  883. },
  884. "dist": {
  885. "type": "zip",
  886. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/54ea74ee7dbd54ef356798028ca9a3548cb8df14",
  887. "reference": "54ea74ee7dbd54ef356798028ca9a3548cb8df14",
  888. "shasum": ""
  889. },
  890. "require": {
  891. "php": ">=5.5.0"
  892. },
  893. "require-dev": {
  894. "consolidation/robo": "^1.2.3",
  895. "g1a/composer-test-scenarios": "^2",
  896. "knplabs/github-api": "^2.7",
  897. "php-http/guzzle6-adapter": "^1.1",
  898. "phpunit/phpunit": "^5",
  899. "satooshi/php-coveralls": "^2",
  900. "squizlabs/php_codesniffer": "^2.8",
  901. "symfony/console": "^2.8|^3|^4",
  902. "symfony/yaml": "~2.3|^3"
  903. },
  904. "type": "library",
  905. "extra": {
  906. "branch-alias": {
  907. "dev-master": "1.x-dev"
  908. }
  909. },
  910. "autoload": {
  911. "psr-4": {
  912. "Consolidation\\SiteAlias\\": "src"
  913. }
  914. },
  915. "notification-url": "https://packagist.org/downloads/",
  916. "license": [
  917. "MIT"
  918. ],
  919. "authors": [
  920. {
  921. "name": "Moshe Weitzman",
  922. "email": "weitzman@tejasa.com"
  923. },
  924. {
  925. "name": "Greg Anderson",
  926. "email": "greg.1.anderson@greenknowe.org"
  927. }
  928. ],
  929. "description": "Manage alias records for local and remote sites.",
  930. "time": "2018-11-03T05:07:56+00:00"
  931. },
  932. {
  933. "name": "container-interop/container-interop",
  934. "version": "1.2.0",
  935. "source": {
  936. "type": "git",
  937. "url": "https://github.com/container-interop/container-interop.git",
  938. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  939. },
  940. "dist": {
  941. "type": "zip",
  942. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  943. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  944. "shasum": ""
  945. },
  946. "require": {
  947. "psr/container": "^1.0"
  948. },
  949. "type": "library",
  950. "autoload": {
  951. "psr-4": {
  952. "Interop\\Container\\": "src/Interop/Container/"
  953. }
  954. },
  955. "notification-url": "https://packagist.org/downloads/",
  956. "license": [
  957. "MIT"
  958. ],
  959. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  960. "homepage": "https://github.com/container-interop/container-interop",
  961. "time": "2017-02-14T19:40:03+00:00"
  962. },
  963. {
  964. "name": "cweagans/composer-patches",
  965. "version": "1.6.5",
  966. "source": {
  967. "type": "git",
  968. "url": "https://github.com/cweagans/composer-patches.git",
  969. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  970. },
  971. "dist": {
  972. "type": "zip",
  973. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  974. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  975. "shasum": ""
  976. },
  977. "require": {
  978. "composer-plugin-api": "^1.0",
  979. "php": ">=5.3.0"
  980. },
  981. "require-dev": {
  982. "composer/composer": "~1.0",
  983. "phpunit/phpunit": "~4.6"
  984. },
  985. "type": "composer-plugin",
  986. "extra": {
  987. "class": "cweagans\\Composer\\Patches"
  988. },
  989. "autoload": {
  990. "psr-4": {
  991. "cweagans\\Composer\\": "src"
  992. }
  993. },
  994. "notification-url": "https://packagist.org/downloads/",
  995. "license": [
  996. "BSD-3-Clause"
  997. ],
  998. "authors": [
  999. {
  1000. "name": "Cameron Eagans",
  1001. "email": "me@cweagans.net"
  1002. }
  1003. ],
  1004. "description": "Provides a way to patch Composer packages.",
  1005. "time": "2018-05-11T18:00:16+00:00"
  1006. },
  1007. {
  1008. "name": "d3/d3",
  1009. "version": "v3.5.17",
  1010. "dist": {
  1011. "type": "zip",
  1012. "url": "https://github.com/d3/d3/archive/v3.5.17.zip",
  1013. "reference": null,
  1014. "shasum": null
  1015. },
  1016. "type": "drupal-library"
  1017. },
  1018. {
  1019. "name": "dflydev/dot-access-configuration",
  1020. "version": "v1.0.3",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1024. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1029. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1030. "shasum": ""
  1031. },
  1032. "require": {
  1033. "dflydev/dot-access-data": "1.*",
  1034. "dflydev/placeholder-resolver": "1.*",
  1035. "php": ">=5.3.2"
  1036. },
  1037. "require-dev": {
  1038. "symfony/yaml": "~2.1"
  1039. },
  1040. "suggest": {
  1041. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1042. },
  1043. "type": "library",
  1044. "extra": {
  1045. "branch-alias": {
  1046. "dev-master": "1.0-dev"
  1047. }
  1048. },
  1049. "autoload": {
  1050. "psr-0": {
  1051. "Dflydev\\DotAccessConfiguration": "src"
  1052. }
  1053. },
  1054. "notification-url": "https://packagist.org/downloads/",
  1055. "license": [
  1056. "MIT"
  1057. ],
  1058. "authors": [
  1059. {
  1060. "name": "Dragonfly Development Inc.",
  1061. "email": "info@dflydev.com",
  1062. "homepage": "http://dflydev.com"
  1063. },
  1064. {
  1065. "name": "Beau Simensen",
  1066. "email": "beau@dflydev.com",
  1067. "homepage": "http://beausimensen.com"
  1068. }
  1069. ],
  1070. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1071. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1072. "keywords": [
  1073. "config",
  1074. "configuration"
  1075. ],
  1076. "time": "2018-09-08T23:00:17+00:00"
  1077. },
  1078. {
  1079. "name": "dflydev/dot-access-data",
  1080. "version": "v1.1.0",
  1081. "source": {
  1082. "type": "git",
  1083. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1084. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1085. },
  1086. "dist": {
  1087. "type": "zip",
  1088. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1089. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1090. "shasum": ""
  1091. },
  1092. "require": {
  1093. "php": ">=5.3.2"
  1094. },
  1095. "type": "library",
  1096. "extra": {
  1097. "branch-alias": {
  1098. "dev-master": "1.0-dev"
  1099. }
  1100. },
  1101. "autoload": {
  1102. "psr-0": {
  1103. "Dflydev\\DotAccessData": "src"
  1104. }
  1105. },
  1106. "notification-url": "https://packagist.org/downloads/",
  1107. "license": [
  1108. "MIT"
  1109. ],
  1110. "authors": [
  1111. {
  1112. "name": "Dragonfly Development Inc.",
  1113. "email": "info@dflydev.com",
  1114. "homepage": "http://dflydev.com"
  1115. },
  1116. {
  1117. "name": "Beau Simensen",
  1118. "email": "beau@dflydev.com",
  1119. "homepage": "http://beausimensen.com"
  1120. },
  1121. {
  1122. "name": "Carlos Frutos",
  1123. "email": "carlos@kiwing.it",
  1124. "homepage": "https://github.com/cfrutos"
  1125. }
  1126. ],
  1127. "description": "Given a deep data structure, access data by dot notation.",
  1128. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1129. "keywords": [
  1130. "access",
  1131. "data",
  1132. "dot",
  1133. "notation"
  1134. ],
  1135. "time": "2017-01-20T21:14:22+00:00"
  1136. },
  1137. {
  1138. "name": "dflydev/placeholder-resolver",
  1139. "version": "v1.0.2",
  1140. "source": {
  1141. "type": "git",
  1142. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1143. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1144. },
  1145. "dist": {
  1146. "type": "zip",
  1147. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1148. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1149. "shasum": ""
  1150. },
  1151. "require": {
  1152. "php": ">=5.3.2"
  1153. },
  1154. "type": "library",
  1155. "extra": {
  1156. "branch-alias": {
  1157. "dev-master": "1.0-dev"
  1158. }
  1159. },
  1160. "autoload": {
  1161. "psr-0": {
  1162. "Dflydev\\PlaceholderResolver": "src"
  1163. }
  1164. },
  1165. "notification-url": "https://packagist.org/downloads/",
  1166. "license": [
  1167. "MIT"
  1168. ],
  1169. "authors": [
  1170. {
  1171. "name": "Dragonfly Development Inc.",
  1172. "email": "info@dflydev.com",
  1173. "homepage": "http://dflydev.com"
  1174. },
  1175. {
  1176. "name": "Beau Simensen",
  1177. "email": "beau@dflydev.com",
  1178. "homepage": "http://beausimensen.com"
  1179. }
  1180. ],
  1181. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1182. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1183. "keywords": [
  1184. "placeholder",
  1185. "resolver"
  1186. ],
  1187. "time": "2012-10-28T21:08:28+00:00"
  1188. },
  1189. {
  1190. "name": "dnoegel/php-xdg-base-dir",
  1191. "version": "0.1",
  1192. "source": {
  1193. "type": "git",
  1194. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1195. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1196. },
  1197. "dist": {
  1198. "type": "zip",
  1199. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1200. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1201. "shasum": ""
  1202. },
  1203. "require": {
  1204. "php": ">=5.3.2"
  1205. },
  1206. "require-dev": {
  1207. "phpunit/phpunit": "@stable"
  1208. },
  1209. "type": "project",
  1210. "autoload": {
  1211. "psr-4": {
  1212. "XdgBaseDir\\": "src/"
  1213. }
  1214. },
  1215. "notification-url": "https://packagist.org/downloads/",
  1216. "license": [
  1217. "MIT"
  1218. ],
  1219. "description": "implementation of xdg base directory specification for php",
  1220. "time": "2014-10-24T07:27:01+00:00"
  1221. },
  1222. {
  1223. "name": "doctrine/annotations",
  1224. "version": "v1.4.0",
  1225. "source": {
  1226. "type": "git",
  1227. "url": "https://github.com/doctrine/annotations.git",
  1228. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1229. },
  1230. "dist": {
  1231. "type": "zip",
  1232. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1233. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1234. "shasum": ""
  1235. },
  1236. "require": {
  1237. "doctrine/lexer": "1.*",
  1238. "php": "^5.6 || ^7.0"
  1239. },
  1240. "require-dev": {
  1241. "doctrine/cache": "1.*",
  1242. "phpunit/phpunit": "^5.7"
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "branch-alias": {
  1247. "dev-master": "1.4.x-dev"
  1248. }
  1249. },
  1250. "autoload": {
  1251. "psr-4": {
  1252. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1253. }
  1254. },
  1255. "notification-url": "https://packagist.org/downloads/",
  1256. "license": [
  1257. "MIT"
  1258. ],
  1259. "authors": [
  1260. {
  1261. "name": "Roman Borschel",
  1262. "email": "roman@code-factory.org"
  1263. },
  1264. {
  1265. "name": "Benjamin Eberlei",
  1266. "email": "kontakt@beberlei.de"
  1267. },
  1268. {
  1269. "name": "Guilherme Blanco",
  1270. "email": "guilhermeblanco@gmail.com"
  1271. },
  1272. {
  1273. "name": "Jonathan Wage",
  1274. "email": "jonwage@gmail.com"
  1275. },
  1276. {
  1277. "name": "Johannes Schmitt",
  1278. "email": "schmittjoh@gmail.com"
  1279. }
  1280. ],
  1281. "description": "Docblock Annotations Parser",
  1282. "homepage": "http://www.doctrine-project.org",
  1283. "keywords": [
  1284. "annotations",
  1285. "docblock",
  1286. "parser"
  1287. ],
  1288. "time": "2017-02-24T16:22:25+00:00"
  1289. },
  1290. {
  1291. "name": "doctrine/cache",
  1292. "version": "v1.6.2",
  1293. "source": {
  1294. "type": "git",
  1295. "url": "https://github.com/doctrine/cache.git",
  1296. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1297. },
  1298. "dist": {
  1299. "type": "zip",
  1300. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1301. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1302. "shasum": ""
  1303. },
  1304. "require": {
  1305. "php": "~5.5|~7.0"
  1306. },
  1307. "conflict": {
  1308. "doctrine/common": ">2.2,<2.4"
  1309. },
  1310. "require-dev": {
  1311. "phpunit/phpunit": "~4.8|~5.0",
  1312. "predis/predis": "~1.0",
  1313. "satooshi/php-coveralls": "~0.6"
  1314. },
  1315. "type": "library",
  1316. "extra": {
  1317. "branch-alias": {
  1318. "dev-master": "1.6.x-dev"
  1319. }
  1320. },
  1321. "autoload": {
  1322. "psr-4": {
  1323. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1324. }
  1325. },
  1326. "notification-url": "https://packagist.org/downloads/",
  1327. "license": [
  1328. "MIT"
  1329. ],
  1330. "authors": [
  1331. {
  1332. "name": "Roman Borschel",
  1333. "email": "roman@code-factory.org"
  1334. },
  1335. {
  1336. "name": "Benjamin Eberlei",
  1337. "email": "kontakt@beberlei.de"
  1338. },
  1339. {
  1340. "name": "Guilherme Blanco",
  1341. "email": "guilhermeblanco@gmail.com"
  1342. },
  1343. {
  1344. "name": "Jonathan Wage",
  1345. "email": "jonwage@gmail.com"
  1346. },
  1347. {
  1348. "name": "Johannes Schmitt",
  1349. "email": "schmittjoh@gmail.com"
  1350. }
  1351. ],
  1352. "description": "Caching library offering an object-oriented API for many cache backends",
  1353. "homepage": "http://www.doctrine-project.org",
  1354. "keywords": [
  1355. "cache",
  1356. "caching"
  1357. ],
  1358. "time": "2017-07-22T12:49:21+00:00"
  1359. },
  1360. {
  1361. "name": "doctrine/collections",
  1362. "version": "v1.4.0",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/doctrine/collections.git",
  1366. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1371. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "php": "^5.6 || ^7.0"
  1376. },
  1377. "require-dev": {
  1378. "doctrine/coding-standard": "~0.1@dev",
  1379. "phpunit/phpunit": "^5.7"
  1380. },
  1381. "type": "library",
  1382. "extra": {
  1383. "branch-alias": {
  1384. "dev-master": "1.3.x-dev"
  1385. }
  1386. },
  1387. "autoload": {
  1388. "psr-0": {
  1389. "Doctrine\\Common\\Collections\\": "lib/"
  1390. }
  1391. },
  1392. "notification-url": "https://packagist.org/downloads/",
  1393. "license": [
  1394. "MIT"
  1395. ],
  1396. "authors": [
  1397. {
  1398. "name": "Roman Borschel",
  1399. "email": "roman@code-factory.org"
  1400. },
  1401. {
  1402. "name": "Benjamin Eberlei",
  1403. "email": "kontakt@beberlei.de"
  1404. },
  1405. {
  1406. "name": "Guilherme Blanco",
  1407. "email": "guilhermeblanco@gmail.com"
  1408. },
  1409. {
  1410. "name": "Jonathan Wage",
  1411. "email": "jonwage@gmail.com"
  1412. },
  1413. {
  1414. "name": "Johannes Schmitt",
  1415. "email": "schmittjoh@gmail.com"
  1416. }
  1417. ],
  1418. "description": "Collections Abstraction library",
  1419. "homepage": "http://www.doctrine-project.org",
  1420. "keywords": [
  1421. "array",
  1422. "collections",
  1423. "iterator"
  1424. ],
  1425. "time": "2017-01-03T10:49:41+00:00"
  1426. },
  1427. {
  1428. "name": "doctrine/common",
  1429. "version": "v2.7.3",
  1430. "source": {
  1431. "type": "git",
  1432. "url": "https://github.com/doctrine/common.git",
  1433. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1434. },
  1435. "dist": {
  1436. "type": "zip",
  1437. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1438. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1439. "shasum": ""
  1440. },
  1441. "require": {
  1442. "doctrine/annotations": "1.*",
  1443. "doctrine/cache": "1.*",
  1444. "doctrine/collections": "1.*",
  1445. "doctrine/inflector": "1.*",
  1446. "doctrine/lexer": "1.*",
  1447. "php": "~5.6|~7.0"
  1448. },
  1449. "require-dev": {
  1450. "phpunit/phpunit": "^5.4.6"
  1451. },
  1452. "type": "library",
  1453. "extra": {
  1454. "branch-alias": {
  1455. "dev-master": "2.7.x-dev"
  1456. }
  1457. },
  1458. "autoload": {
  1459. "psr-4": {
  1460. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1461. }
  1462. },
  1463. "notification-url": "https://packagist.org/downloads/",
  1464. "license": [
  1465. "MIT"
  1466. ],
  1467. "authors": [
  1468. {
  1469. "name": "Roman Borschel",
  1470. "email": "roman@code-factory.org"
  1471. },
  1472. {
  1473. "name": "Benjamin Eberlei",
  1474. "email": "kontakt@beberlei.de"
  1475. },
  1476. {
  1477. "name": "Guilherme Blanco",
  1478. "email": "guilhermeblanco@gmail.com"
  1479. },
  1480. {
  1481. "name": "Jonathan Wage",
  1482. "email": "jonwage@gmail.com"
  1483. },
  1484. {
  1485. "name": "Johannes Schmitt",
  1486. "email": "schmittjoh@gmail.com"
  1487. }
  1488. ],
  1489. "description": "Common Library for Doctrine projects",
  1490. "homepage": "http://www.doctrine-project.org",
  1491. "keywords": [
  1492. "annotations",
  1493. "collections",
  1494. "eventmanager",
  1495. "persistence",
  1496. "spl"
  1497. ],
  1498. "time": "2017-07-22T08:35:12+00:00"
  1499. },
  1500. {
  1501. "name": "doctrine/inflector",
  1502. "version": "v1.2.0",
  1503. "source": {
  1504. "type": "git",
  1505. "url": "https://github.com/doctrine/inflector.git",
  1506. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1507. },
  1508. "dist": {
  1509. "type": "zip",
  1510. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1511. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1512. "shasum": ""
  1513. },
  1514. "require": {
  1515. "php": "^7.0"
  1516. },
  1517. "require-dev": {
  1518. "phpunit/phpunit": "^6.2"
  1519. },
  1520. "type": "library",
  1521. "extra": {
  1522. "branch-alias": {
  1523. "dev-master": "1.2.x-dev"
  1524. }
  1525. },
  1526. "autoload": {
  1527. "psr-4": {
  1528. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1529. }
  1530. },
  1531. "notification-url": "https://packagist.org/downloads/",
  1532. "license": [
  1533. "MIT"
  1534. ],
  1535. "authors": [
  1536. {
  1537. "name": "Roman Borschel",
  1538. "email": "roman@code-factory.org"
  1539. },
  1540. {
  1541. "name": "Benjamin Eberlei",
  1542. "email": "kontakt@beberlei.de"
  1543. },
  1544. {
  1545. "name": "Guilherme Blanco",
  1546. "email": "guilhermeblanco@gmail.com"
  1547. },
  1548. {
  1549. "name": "Jonathan Wage",
  1550. "email": "jonwage@gmail.com"
  1551. },
  1552. {
  1553. "name": "Johannes Schmitt",
  1554. "email": "schmittjoh@gmail.com"
  1555. }
  1556. ],
  1557. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1558. "homepage": "http://www.doctrine-project.org",
  1559. "keywords": [
  1560. "inflection",
  1561. "pluralize",
  1562. "singularize",
  1563. "string"
  1564. ],
  1565. "time": "2017-07-22T12:18:28+00:00"
  1566. },
  1567. {
  1568. "name": "doctrine/lexer",
  1569. "version": "v1.0.1",
  1570. "source": {
  1571. "type": "git",
  1572. "url": "https://github.com/doctrine/lexer.git",
  1573. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1574. },
  1575. "dist": {
  1576. "type": "zip",
  1577. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1578. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1579. "shasum": ""
  1580. },
  1581. "require": {
  1582. "php": ">=5.3.2"
  1583. },
  1584. "type": "library",
  1585. "extra": {
  1586. "branch-alias": {
  1587. "dev-master": "1.0.x-dev"
  1588. }
  1589. },
  1590. "autoload": {
  1591. "psr-0": {
  1592. "Doctrine\\Common\\Lexer\\": "lib/"
  1593. }
  1594. },
  1595. "notification-url": "https://packagist.org/downloads/",
  1596. "license": [
  1597. "MIT"
  1598. ],
  1599. "authors": [
  1600. {
  1601. "name": "Roman Borschel",
  1602. "email": "roman@code-factory.org"
  1603. },
  1604. {
  1605. "name": "Guilherme Blanco",
  1606. "email": "guilhermeblanco@gmail.com"
  1607. },
  1608. {
  1609. "name": "Johannes Schmitt",
  1610. "email": "schmittjoh@gmail.com"
  1611. }
  1612. ],
  1613. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1614. "homepage": "http://www.doctrine-project.org",
  1615. "keywords": [
  1616. "lexer",
  1617. "parser"
  1618. ],
  1619. "time": "2014-09-09T13:34:57+00:00"
  1620. },
  1621. {
  1622. "name": "drupal-composer/drupal-scaffold",
  1623. "version": "2.5.4",
  1624. "source": {
  1625. "type": "git",
  1626. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  1627. "reference": "fc6bf4ceecb5d47327f54d48d4d4f67b17da956d"
  1628. },
  1629. "dist": {
  1630. "type": "zip",
  1631. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/fc6bf4ceecb5d47327f54d48d4d4f67b17da956d",
  1632. "reference": "fc6bf4ceecb5d47327f54d48d4d4f67b17da956d",
  1633. "shasum": ""
  1634. },
  1635. "require": {
  1636. "composer-plugin-api": "^1.0.0",
  1637. "composer/semver": "^1.4",
  1638. "php": ">=5.4.5"
  1639. },
  1640. "require-dev": {
  1641. "composer/composer": "dev-master",
  1642. "g1a/composer-test-scenarios": "^2.1.0",
  1643. "phpunit/phpunit": "^6",
  1644. "squizlabs/php_codesniffer": "^2.8"
  1645. },
  1646. "type": "composer-plugin",
  1647. "extra": {
  1648. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  1649. "branch-alias": {
  1650. "dev-master": "2.0.x-dev"
  1651. }
  1652. },
  1653. "autoload": {
  1654. "psr-4": {
  1655. "DrupalComposer\\DrupalScaffold\\": "src/"
  1656. }
  1657. },
  1658. "notification-url": "https://packagist.org/downloads/",
  1659. "license": [
  1660. "GPL-2.0-or-later"
  1661. ],
  1662. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  1663. "time": "2018-07-27T10:07:07+00:00"
  1664. },
  1665. {
  1666. "name": "drupal/actions_permissions",
  1667. "version": "2.4.0",
  1668. "require": {
  1669. "drupal/core": "*",
  1670. "drupal/views_bulk_operations": "self.version"
  1671. },
  1672. "type": "metapackage",
  1673. "extra": {
  1674. "branch-alias": {
  1675. "dev-2.x": "2.x-dev"
  1676. },
  1677. "drupal": {
  1678. "version": "8.x-2.4",
  1679. "datestamp": "1530516821",
  1680. "security-coverage": {
  1681. "status": "covered",
  1682. "message": "Covered by Drupal's security advisory policy"
  1683. }
  1684. }
  1685. },
  1686. "notification-url": "https://packages.drupal.org/8/downloads",
  1687. "license": [
  1688. "GPL-2.0-or-later"
  1689. ],
  1690. "authors": [
  1691. {
  1692. "name": "Graber",
  1693. "homepage": "https://www.drupal.org/user/1599440"
  1694. },
  1695. {
  1696. "name": "Jon Pugh",
  1697. "homepage": "https://www.drupal.org/user/17028"
  1698. },
  1699. {
  1700. "name": "bojanz",
  1701. "homepage": "https://www.drupal.org/user/86106"
  1702. },
  1703. {
  1704. "name": "infojunkie",
  1705. "homepage": "https://www.drupal.org/user/48424"
  1706. },
  1707. {
  1708. "name": "joelpittet",
  1709. "homepage": "https://www.drupal.org/user/160302"
  1710. }
  1711. ],
  1712. "description": "Adds access permissions on all actions allowing admins to restrict access on a per-role basis.",
  1713. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  1714. "support": {
  1715. "source": "http://cgit.drupalcode.org/views_bulk_operations"
  1716. }
  1717. },
  1718. {
  1719. "name": "drupal/address",
  1720. "version": "1.4.0",
  1721. "source": {
  1722. "type": "git",
  1723. "url": "https://git.drupal.org/project/address",
  1724. "reference": "8.x-1.4"
  1725. },
  1726. "dist": {
  1727. "type": "zip",
  1728. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.4.zip",
  1729. "reference": "8.x-1.4",
  1730. "shasum": "143e426be73418c719c6bddd5fb81c610604e860"
  1731. },
  1732. "require": {
  1733. "commerceguys/addressing": "^1.0.0",
  1734. "drupal/core": "*"
  1735. },
  1736. "require-dev": {
  1737. "drupal/token": "*"
  1738. },
  1739. "type": "drupal-module",
  1740. "extra": {
  1741. "branch-alias": {
  1742. "dev-1.x": "1.x-dev"
  1743. },
  1744. "drupal": {
  1745. "version": "8.x-1.4",
  1746. "datestamp": "1527081784",
  1747. "security-coverage": {
  1748. "status": "covered",
  1749. "message": "Covered by Drupal's security advisory policy"
  1750. }
  1751. }
  1752. },
  1753. "notification-url": "https://packages.drupal.org/8/downloads",
  1754. "license": [
  1755. "GPL-2.0+"
  1756. ],
  1757. "authors": [
  1758. {
  1759. "name": "bojanz",
  1760. "homepage": "https://www.drupal.org/user/86106"
  1761. },
  1762. {
  1763. "name": "googletorp",
  1764. "homepage": "https://www.drupal.org/user/386230"
  1765. },
  1766. {
  1767. "name": "rszrama",
  1768. "homepage": "https://www.drupal.org/user/49344"
  1769. }
  1770. ],
  1771. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1772. "homepage": "http://drupal.org/project/address",
  1773. "support": {
  1774. "source": "http://cgit.drupalcode.org/address"
  1775. }
  1776. },
  1777. {
  1778. "name": "drupal/admin_toolbar",
  1779. "version": "1.26.0",
  1780. "source": {
  1781. "type": "git",
  1782. "url": "https://git.drupal.org/project/admin_toolbar",
  1783. "reference": "8.x-1.26"
  1784. },
  1785. "dist": {
  1786. "type": "zip",
  1787. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.26.zip",
  1788. "reference": "8.x-1.26",
  1789. "shasum": "7be9f91008bf17cf49b43d1c8e2211e7a8e40ce4"
  1790. },
  1791. "require": {
  1792. "drupal/core": "*"
  1793. },
  1794. "type": "drupal-module",
  1795. "extra": {
  1796. "branch-alias": {
  1797. "dev-1.x": "1.x-dev"
  1798. },
  1799. "drupal": {
  1800. "version": "8.x-1.26",
  1801. "datestamp": "1549218480",
  1802. "security-coverage": {
  1803. "status": "covered",
  1804. "message": "Covered by Drupal's security advisory policy"
  1805. }
  1806. }
  1807. },
  1808. "notification-url": "https://packages.drupal.org/8/downloads",
  1809. "license": [
  1810. "GPL-2.0+"
  1811. ],
  1812. "authors": [
  1813. {
  1814. "name": "Wilfrid Roze (eme)",
  1815. "homepage": "https://www.drupal.org/u/eme",
  1816. "role": "Maintainer"
  1817. },
  1818. {
  1819. "name": "Romain Jarraud (romainj)",
  1820. "homepage": "https://www.drupal.org/u/romainj",
  1821. "role": "Maintainer"
  1822. },
  1823. {
  1824. "name": "Adrian Cid Almaguer (adriancid)",
  1825. "homepage": "https://www.drupal.org/u/adriancid",
  1826. "email": "adriancid@gmail.com",
  1827. "role": "Maintainer"
  1828. },
  1829. {
  1830. "name": "Mohamed Anis Taktak (matio89)",
  1831. "homepage": "https://www.drupal.org/u/matio89",
  1832. "role": "Maintainer"
  1833. },
  1834. {
  1835. "name": "fethi.krout",
  1836. "homepage": "https://www.drupal.org/user/3206765"
  1837. },
  1838. {
  1839. "name": "matio89",
  1840. "homepage": "https://www.drupal.org/user/2320090"
  1841. },
  1842. {
  1843. "name": "romainj",
  1844. "homepage": "https://www.drupal.org/user/370706"
  1845. }
  1846. ],
  1847. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1848. "homepage": "http://drupal.org/project/admin_toolbar",
  1849. "keywords": [
  1850. "Drupal",
  1851. "Toolbar"
  1852. ],
  1853. "support": {
  1854. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1855. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1856. }
  1857. },
  1858. {
  1859. "name": "drupal/adminimal_theme",
  1860. "version": "1.4.0",
  1861. "source": {
  1862. "type": "git",
  1863. "url": "https://git.drupal.org/project/adminimal_theme",
  1864. "reference": "8.x-1.4"
  1865. },
  1866. "dist": {
  1867. "type": "zip",
  1868. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.4.zip",
  1869. "reference": "8.x-1.4",
  1870. "shasum": "af9cbce473d0bd9590889992200ed175cb7e1159"
  1871. },
  1872. "require": {
  1873. "drupal/core": "~8.0"
  1874. },
  1875. "type": "drupal-theme",
  1876. "extra": {
  1877. "branch-alias": {
  1878. "dev-1.x": "1.x-dev"
  1879. },
  1880. "drupal": {
  1881. "version": "8.x-1.4",
  1882. "datestamp": "1547996580",
  1883. "security-coverage": {
  1884. "status": "covered",
  1885. "message": "Covered by Drupal's security advisory policy"
  1886. }
  1887. }
  1888. },
  1889. "notification-url": "https://packages.drupal.org/8/downloads",
  1890. "license": [
  1891. "GPL-2.0+"
  1892. ],
  1893. "authors": [
  1894. {
  1895. "name": "ANDiTKO",
  1896. "homepage": "https://www.drupal.org/user/1428124"
  1897. },
  1898. {
  1899. "name": "andrey.troeglazov",
  1900. "homepage": "https://www.drupal.org/user/3145389"
  1901. },
  1902. {
  1903. "name": "realityloop",
  1904. "homepage": "https://www.drupal.org/user/139189"
  1905. }
  1906. ],
  1907. "description": "Drupal administration theme with modern minimalist design.",
  1908. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1909. "support": {
  1910. "source": "http://cgit.drupalcode.org/adminimal_theme",
  1911. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1912. }
  1913. },
  1914. {
  1915. "name": "drupal/advanced_text_formatter",
  1916. "version": "1.0.0-beta3",
  1917. "source": {
  1918. "type": "git",
  1919. "url": "https://git.drupal.org/project/advanced_text_formatter",
  1920. "reference": "8.x-1.0-beta3"
  1921. },
  1922. "dist": {
  1923. "type": "zip",
  1924. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-8.x-1.0-beta3.zip",
  1925. "reference": "8.x-1.0-beta3",
  1926. "shasum": "35e0154440ba7836dda70b8627f156872da75302"
  1927. },
  1928. "require": {
  1929. "drupal/core": "*"
  1930. },
  1931. "type": "drupal-module",
  1932. "extra": {
  1933. "branch-alias": {
  1934. "dev-1.x": "1.x-dev"
  1935. },
  1936. "drupal": {
  1937. "version": "8.x-1.0-beta3",
  1938. "datestamp": "1445163539",
  1939. "security-coverage": {
  1940. "status": "not-covered",
  1941. "message": "Beta releases are not covered by Drupal security advisories."
  1942. }
  1943. }
  1944. },
  1945. "notification-url": "https://packages.drupal.org/8/downloads",
  1946. "license": [
  1947. "GPL-2.0-or-later"
  1948. ],
  1949. "authors": [
  1950. {
  1951. "name": "thmnhat",
  1952. "homepage": "https://www.drupal.org/user/998946"
  1953. }
  1954. ],
  1955. "description": "Provides an additional formatter for text field, text area and text format.",
  1956. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1957. "support": {
  1958. "source": "http://cgit.drupalcode.org/advanced_text_formatter"
  1959. }
  1960. },
  1961. {
  1962. "name": "drupal/amswap",
  1963. "version": "2.0.0-beta2",
  1964. "source": {
  1965. "type": "git",
  1966. "url": "https://git.drupal.org/project/amswap",
  1967. "reference": "8.x-2.0-beta2"
  1968. },
  1969. "dist": {
  1970. "type": "zip",
  1971. "url": "https://ftp.drupal.org/files/projects/amswap-8.x-2.0-beta2.zip",
  1972. "reference": "8.x-2.0-beta2",
  1973. "shasum": "5ee4c7ddf6f0417112cd8875c5236540352dc408"
  1974. },
  1975. "require": {
  1976. "drupal/core": "*"
  1977. },
  1978. "type": "drupal-module",
  1979. "extra": {
  1980. "branch-alias": {
  1981. "dev-2.x": "2.x-dev"
  1982. },
  1983. "drupal": {
  1984. "version": "8.x-2.0-beta2",
  1985. "datestamp": "1548515280",
  1986. "security-coverage": {
  1987. "status": "not-covered",
  1988. "message": "Project has not opted into security advisory coverage!"
  1989. }
  1990. }
  1991. },
  1992. "notification-url": "https://packages.drupal.org/8/downloads",
  1993. "license": [
  1994. "GPL-2.0+"
  1995. ],
  1996. "authors": [
  1997. {
  1998. "name": "droces",
  1999. "homepage": "https://www.drupal.org/user/2996575"
  2000. }
  2001. ],
  2002. "description": "Allows the administration menu to be customised per user role.",
  2003. "homepage": "https://www.drupal.org/project/amswap",
  2004. "keywords": [
  2005. "Drupal"
  2006. ],
  2007. "support": {
  2008. "source": "http://cgit.drupalcode.org/amswap",
  2009. "issues": "https://www.drupal.org/project/issues/amswap"
  2010. }
  2011. },
  2012. {
  2013. "name": "drupal/audiofield",
  2014. "version": "1.8.0",
  2015. "source": {
  2016. "type": "git",
  2017. "url": "https://git.drupal.org/project/audiofield",
  2018. "reference": "8.x-1.8"
  2019. },
  2020. "dist": {
  2021. "type": "zip",
  2022. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.8.zip",
  2023. "reference": "8.x-1.8",
  2024. "shasum": "a2e4c5b7f81ec6d3d015b22a63560fd1a8f56682"
  2025. },
  2026. "require": {
  2027. "drupal/core": "~8.0"
  2028. },
  2029. "type": "drupal-module",
  2030. "extra": {
  2031. "branch-alias": {
  2032. "dev-1.x": "1.x-dev"
  2033. },
  2034. "drupal": {
  2035. "version": "8.x-1.8",
  2036. "datestamp": "1543249980",
  2037. "security-coverage": {
  2038. "status": "covered",
  2039. "message": "Covered by Drupal's security advisory policy"
  2040. }
  2041. },
  2042. "drush": {
  2043. "services": {
  2044. "drush.services.yml": "^9"
  2045. }
  2046. }
  2047. },
  2048. "notification-url": "https://packages.drupal.org/8/downloads",
  2049. "license": [
  2050. "GPL-2.0+"
  2051. ],
  2052. "authors": [
  2053. {
  2054. "name": "Daniel Moberly",
  2055. "homepage": "https://www.drupal.org/u/danielmoberly",
  2056. "role": "Maintainer"
  2057. },
  2058. {
  2059. "name": "josipsaric",
  2060. "homepage": "https://www.drupal.org/user/3063287"
  2061. },
  2062. {
  2063. "name": "tamerzg",
  2064. "homepage": "https://www.drupal.org/user/464564"
  2065. }
  2066. ],
  2067. "description": "AudioField Module",
  2068. "homepage": "https://www.drupal.org/project/audiofield",
  2069. "support": {
  2070. "source": "http://cgit.drupalcode.org/audiofield",
  2071. "issues": "https://www.drupal.org/project/issues/audiofield"
  2072. }
  2073. },
  2074. {
  2075. "name": "drupal/autocomplete_deluxe",
  2076. "version": "1.0.0-beta1",
  2077. "source": {
  2078. "type": "git",
  2079. "url": "https://git.drupal.org/project/autocomplete_deluxe",
  2080. "reference": "8.x-1.0-beta1"
  2081. },
  2082. "dist": {
  2083. "type": "zip",
  2084. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-8.x-1.0-beta1.zip",
  2085. "reference": "8.x-1.0-beta1",
  2086. "shasum": "f59d928761a01a055c2240155a84b1d7286fe666"
  2087. },
  2088. "require": {
  2089. "drupal/core": "~8.0"
  2090. },
  2091. "type": "drupal-module",
  2092. "extra": {
  2093. "branch-alias": {
  2094. "dev-1.x": "1.x-dev"
  2095. },
  2096. "drupal": {
  2097. "version": "8.x-1.0-beta1",
  2098. "datestamp": "1502921644",
  2099. "security-coverage": {
  2100. "status": "not-covered",
  2101. "message": "Beta releases are not covered by Drupal security advisories."
  2102. }
  2103. }
  2104. },
  2105. "notification-url": "https://packages.drupal.org/8/downloads",
  2106. "license": [
  2107. "GPL-2.0+"
  2108. ],
  2109. "authors": [
  2110. {
  2111. "name": "Edward Chan",
  2112. "homepage": "https://www.drupal.org/user/1781334"
  2113. },
  2114. {
  2115. "name": "edwardchiapet",
  2116. "homepage": "https://www.drupal.org/user/2354784"
  2117. },
  2118. {
  2119. "name": "mpriscella",
  2120. "homepage": "https://www.drupal.org/user/2354820"
  2121. },
  2122. {
  2123. "name": "sepgil",
  2124. "homepage": "https://www.drupal.org/user/512828"
  2125. }
  2126. ],
  2127. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2128. "homepage": "https://www.drupal.org/sandbox/edwardchan/2888186",
  2129. "support": {
  2130. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2131. "issues": "https://www.drupal.org/project/issues/2888186"
  2132. }
  2133. },
  2134. {
  2135. "name": "drupal/autologout",
  2136. "version": "1.0.0",
  2137. "source": {
  2138. "type": "git",
  2139. "url": "https://git.drupal.org/project/autologout",
  2140. "reference": "8.x-1.0"
  2141. },
  2142. "dist": {
  2143. "type": "zip",
  2144. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2145. "reference": "8.x-1.0",
  2146. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2147. },
  2148. "require": {
  2149. "drupal/core": "~8.0"
  2150. },
  2151. "type": "drupal-module",
  2152. "extra": {
  2153. "branch-alias": {
  2154. "dev-1.x": "1.x-dev"
  2155. },
  2156. "drupal": {
  2157. "version": "8.x-1.0",
  2158. "datestamp": "1494237185",
  2159. "security-coverage": {
  2160. "status": "covered",
  2161. "message": "Covered by Drupal's security advisory policy"
  2162. }
  2163. }
  2164. },
  2165. "notification-url": "https://packages.drupal.org/8/downloads",
  2166. "license": [
  2167. "GPL-2.0+"
  2168. ],
  2169. "authors": [
  2170. {
  2171. "name": "AjK",
  2172. "homepage": "https://www.drupal.org/user/39030"
  2173. },
  2174. {
  2175. "name": "AjitS",
  2176. "homepage": "https://www.drupal.org/user/981944"
  2177. },
  2178. {
  2179. "name": "boshtian",
  2180. "homepage": "https://www.drupal.org/user/1773456"
  2181. },
  2182. {
  2183. "name": "dandrews",
  2184. "homepage": "https://www.drupal.org/user/2014490"
  2185. },
  2186. {
  2187. "name": "darksnow",
  2188. "homepage": "https://www.drupal.org/user/391915"
  2189. },
  2190. {
  2191. "name": "johnennew",
  2192. "homepage": "https://www.drupal.org/user/1150042"
  2193. },
  2194. {
  2195. "name": "jrglasgow",
  2196. "homepage": "https://www.drupal.org/user/36590"
  2197. },
  2198. {
  2199. "name": "kmasood",
  2200. "homepage": "https://www.drupal.org/user/1262860"
  2201. },
  2202. {
  2203. "name": "levelos",
  2204. "homepage": "https://www.drupal.org/user/54135"
  2205. },
  2206. {
  2207. "name": "prabeen.giri",
  2208. "homepage": "https://www.drupal.org/user/913078"
  2209. },
  2210. {
  2211. "name": "str8",
  2212. "homepage": "https://www.drupal.org/user/2865063"
  2213. }
  2214. ],
  2215. "description": "Adds automated timed logout.",
  2216. "homepage": "http://drupal.org/project/autologout",
  2217. "support": {
  2218. "source": "http://cgit.drupalcode.org/autologout"
  2219. }
  2220. },
  2221. {
  2222. "name": "drupal/better_exposed_filters",
  2223. "version": "3.0.0-alpha5",
  2224. "source": {
  2225. "type": "git",
  2226. "url": "https://git.drupal.org/project/better_exposed_filters",
  2227. "reference": "8.x-3.0-alpha5"
  2228. },
  2229. "dist": {
  2230. "type": "zip",
  2231. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-3.0-alpha5.zip",
  2232. "reference": "8.x-3.0-alpha5",
  2233. "shasum": "8dbcff4b3bcd24f753d5d1ba6a523442a3690a76"
  2234. },
  2235. "require": {
  2236. "drupal/core": "*"
  2237. },
  2238. "type": "drupal-module",
  2239. "extra": {
  2240. "branch-alias": {
  2241. "dev-3.x": "3.x-dev"
  2242. },
  2243. "drupal": {
  2244. "version": "8.x-3.0-alpha5",
  2245. "datestamp": "1540513084",
  2246. "security-coverage": {
  2247. "status": "not-covered",
  2248. "message": "Alpha releases are not covered by Drupal security advisories."
  2249. }
  2250. }
  2251. },
  2252. "notification-url": "https://packages.drupal.org/8/downloads",
  2253. "license": [
  2254. "GPL-2.0-or-later"
  2255. ],
  2256. "authors": [
  2257. {
  2258. "name": "chr.fritsch",
  2259. "homepage": "https://www.drupal.org/user/2103716"
  2260. },
  2261. {
  2262. "name": "jkopel",
  2263. "homepage": "https://www.drupal.org/user/66207"
  2264. },
  2265. {
  2266. "name": "mikeker",
  2267. "homepage": "https://www.drupal.org/user/192273"
  2268. },
  2269. {
  2270. "name": "mortona2k",
  2271. "homepage": "https://www.drupal.org/user/1029484"
  2272. },
  2273. {
  2274. "name": "rlhawk",
  2275. "homepage": "https://www.drupal.org/user/352283"
  2276. }
  2277. ],
  2278. "description": "Provides advanced options (such as links, checkboxes, or jQueryUI widgets) for exposed Views elements.",
  2279. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2280. "support": {
  2281. "source": "http://cgit.drupalcode.org/better_exposed_filters"
  2282. }
  2283. },
  2284. {
  2285. "name": "drupal/better_messages",
  2286. "version": "1.0.0-alpha2",
  2287. "source": {
  2288. "type": "git",
  2289. "url": "https://git.drupal.org/project/better_messages",
  2290. "reference": "8.x-1.0-alpha2"
  2291. },
  2292. "dist": {
  2293. "type": "zip",
  2294. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2295. "reference": "8.x-1.0-alpha2",
  2296. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2297. },
  2298. "require": {
  2299. "drupal/core": "~8.0"
  2300. },
  2301. "type": "drupal-module",
  2302. "extra": {
  2303. "branch-alias": {
  2304. "dev-1.x": "1.x-dev"
  2305. },
  2306. "drupal": {
  2307. "version": "8.x-1.0-alpha2",
  2308. "datestamp": "1517663880",
  2309. "security-coverage": {
  2310. "status": "not-covered",
  2311. "message": "Alpha releases are not covered by Drupal security advisories."
  2312. }
  2313. }
  2314. },
  2315. "notification-url": "https://packages.drupal.org/8/downloads",
  2316. "license": [
  2317. "GPL-2.0-or-later"
  2318. ],
  2319. "authors": [
  2320. {
  2321. "name": "Mohammed J. Razem",
  2322. "homepage": "https://www.drupal.org/user/255384"
  2323. },
  2324. {
  2325. "name": "bucefal91",
  2326. "homepage": "https://www.drupal.org/user/504128"
  2327. },
  2328. {
  2329. "name": "le72",
  2330. "homepage": "https://www.drupal.org/user/1866896"
  2331. }
  2332. ],
  2333. "description": "Better Messages module for Drupal 8.",
  2334. "homepage": "https://www.drupal.org/project/better_messages",
  2335. "support": {
  2336. "source": "http://cgit.drupalcode.org/better_messages"
  2337. }
  2338. },
  2339. {
  2340. "name": "drupal/betterlogin",
  2341. "version": "1.2.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://git.drupal.org/project/betterlogin",
  2345. "reference": "8.x-1.2"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.2.zip",
  2350. "reference": "8.x-1.2",
  2351. "shasum": "6b9ab142bf563685346d2b4e2db46ada209ed6ad"
  2352. },
  2353. "require": {
  2354. "drupal/core": "~8.0"
  2355. },
  2356. "type": "drupal-module",
  2357. "extra": {
  2358. "branch-alias": {
  2359. "dev-1.x": "1.x-dev"
  2360. },
  2361. "drupal": {
  2362. "version": "8.x-1.2",
  2363. "datestamp": "1515587585",
  2364. "security-coverage": {
  2365. "status": "covered",
  2366. "message": "Covered by Drupal's security advisory policy"
  2367. }
  2368. }
  2369. },
  2370. "notification-url": "https://packages.drupal.org/8/downloads",
  2371. "license": [
  2372. "GPL-2.0-or-later"
  2373. ],
  2374. "authors": [
  2375. {
  2376. "name": "Yogesh Pawar",
  2377. "homepage": "https://www.drupal.org/user/2922907"
  2378. },
  2379. {
  2380. "name": "theamoeba",
  2381. "homepage": "https://www.drupal.org/user/251700"
  2382. }
  2383. ],
  2384. "description": "Make the login screens better :)",
  2385. "homepage": "https://www.drupal.org/project/betterlogin",
  2386. "support": {
  2387. "source": "http://cgit.drupalcode.org/betterlogin"
  2388. }
  2389. },
  2390. {
  2391. "name": "drupal/block_class",
  2392. "version": "1.0.0",
  2393. "source": {
  2394. "type": "git",
  2395. "url": "https://git.drupal.org/project/block_class",
  2396. "reference": "8.x-1.0"
  2397. },
  2398. "dist": {
  2399. "type": "zip",
  2400. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.0.zip",
  2401. "reference": "8.x-1.0",
  2402. "shasum": "1a691999d051a3c010c2b6f2df73954ee02f424d"
  2403. },
  2404. "require": {
  2405. "drupal/core": "*"
  2406. },
  2407. "type": "drupal-module",
  2408. "extra": {
  2409. "branch-alias": {
  2410. "dev-1.x": "1.x-dev"
  2411. },
  2412. "drupal": {
  2413. "version": "8.x-1.0",
  2414. "datestamp": "1531440821",
  2415. "security-coverage": {
  2416. "status": "covered",
  2417. "message": "Covered by Drupal's security advisory policy"
  2418. }
  2419. }
  2420. },
  2421. "notification-url": "https://packages.drupal.org/8/downloads",
  2422. "license": [
  2423. "GPL-2.0+"
  2424. ],
  2425. "authors": [
  2426. {
  2427. "name": "Todd Nienkerk",
  2428. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2429. "role": "Maintainer"
  2430. },
  2431. {
  2432. "name": "Renato Gonçalves (RenatoG)",
  2433. "homepage": "https://www.drupal.org/u/RenatoG",
  2434. "email": "renatog@ciandt.com",
  2435. "role": "Maintainer"
  2436. },
  2437. {
  2438. "name": "Aaron Stanush",
  2439. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2440. "role": "Maintainer"
  2441. },
  2442. {
  2443. "name": "David Suissa (DYdave)",
  2444. "homepage": "https://www.drupal.org/u/DYdave",
  2445. "role": "Maintainer"
  2446. },
  2447. {
  2448. "name": "Four Kitchens",
  2449. "homepage": "https://www.drupal.org/user/358502",
  2450. "role": "Maintainer"
  2451. },
  2452. {
  2453. "name": "berenddeboer",
  2454. "homepage": "https://www.drupal.org/u/berenddeboer",
  2455. "role": "Maintainer"
  2456. },
  2457. {
  2458. "name": "elliotttf",
  2459. "homepage": "https://www.drupal.org/u/elliotttf",
  2460. "role": "Maintainer"
  2461. },
  2462. {
  2463. "name": "Michal Minecki (mirzu)",
  2464. "homepage": "https://www.drupal.org/u/mirzu",
  2465. "role": "Maintainer"
  2466. },
  2467. {
  2468. "name": "Patrick Coffey (pcoffey)",
  2469. "homepage": "https://www.drupal.org/u/pcoffey",
  2470. "role": "Maintainer"
  2471. },
  2472. {
  2473. "name": "Taylor Smith (tsmith512)",
  2474. "homepage": "https://www.drupal.org/u/tsmith512",
  2475. "role": "Maintainer"
  2476. },
  2477. {
  2478. "name": "tsmith512",
  2479. "homepage": "https://www.drupal.org/user/2031446"
  2480. }
  2481. ],
  2482. "description": "Allows assigning classes to Blocks.",
  2483. "homepage": "https://www.drupal.org/project/block_class",
  2484. "support": {
  2485. "source": "https://cgit.drupalcode.org/block_class",
  2486. "issues": "https://www.drupal.org/project/issues/block_class",
  2487. "irc": "irc://irc.freenode.org/drupal-contribute"
  2488. }
  2489. },
  2490. {
  2491. "name": "drupal/bulkdelete",
  2492. "version": "dev-1.x",
  2493. "source": {
  2494. "type": "git",
  2495. "url": "https://git.drupal.org/project/bulkdelete",
  2496. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2497. },
  2498. "require": {
  2499. "drupal/core": "~8.0"
  2500. },
  2501. "type": "drupal-module",
  2502. "extra": {
  2503. "branch-alias": {
  2504. "dev-1.x": "1.x-dev"
  2505. },
  2506. "drupal": {
  2507. "version": "8.x-1.x-dev",
  2508. "datestamp": "1495565583",
  2509. "security-coverage": {
  2510. "status": "not-covered",
  2511. "message": "Dev releases are not covered by Drupal security advisories."
  2512. }
  2513. }
  2514. },
  2515. "notification-url": "https://packages.drupal.org/8/downloads",
  2516. "license": [
  2517. "GPL-2.0-or-later"
  2518. ],
  2519. "authors": [
  2520. {
  2521. "name": "Kars-T",
  2522. "homepage": "https://www.drupal.org/user/224499"
  2523. },
  2524. {
  2525. "name": "Rahul Seth",
  2526. "homepage": "https://www.drupal.org/user/2694359"
  2527. },
  2528. {
  2529. "name": "adriancid",
  2530. "homepage": "https://www.drupal.org/user/1962106"
  2531. },
  2532. {
  2533. "name": "robertDouglass",
  2534. "homepage": "https://www.drupal.org/user/5449"
  2535. }
  2536. ],
  2537. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2538. "homepage": "https://www.drupal.org/project/bulkdelete",
  2539. "support": {
  2540. "source": "http://cgit.drupalcode.org/bulkdelete"
  2541. },
  2542. "time": "2017-05-23T18:49:48+00:00"
  2543. },
  2544. {
  2545. "name": "drupal/computed_field",
  2546. "version": "2.0.0-beta1",
  2547. "source": {
  2548. "type": "git",
  2549. "url": "https://git.drupal.org/project/computed_field",
  2550. "reference": "8.x-2.0-beta1"
  2551. },
  2552. "dist": {
  2553. "type": "zip",
  2554. "url": "https://ftp.drupal.org/files/projects/computed_field-8.x-2.0-beta1.zip",
  2555. "reference": "8.x-2.0-beta1",
  2556. "shasum": "a918cb85b7865f15cc5a5c327e37964e53545161"
  2557. },
  2558. "require": {
  2559. "drupal/core": "~8.0"
  2560. },
  2561. "type": "drupal-module",
  2562. "extra": {
  2563. "branch-alias": {
  2564. "dev-2.x": "2.x-dev"
  2565. },
  2566. "drupal": {
  2567. "version": "8.x-2.0-beta1",
  2568. "datestamp": "1546032480",
  2569. "security-coverage": {
  2570. "status": "not-covered",
  2571. "message": "Beta releases are not covered by Drupal security advisories."
  2572. }
  2573. }
  2574. },
  2575. "notification-url": "https://packages.drupal.org/8/downloads",
  2576. "license": [
  2577. "GPL-2.0-or-later"
  2578. ],
  2579. "authors": [
  2580. {
  2581. "name": "Agileware",
  2582. "homepage": "https://www.drupal.org/user/89106"
  2583. },
  2584. {
  2585. "name": "Moonshine",
  2586. "homepage": "https://www.drupal.org/user/133705"
  2587. },
  2588. {
  2589. "name": "Pedro Lozano",
  2590. "homepage": "https://www.drupal.org/user/123766"
  2591. },
  2592. {
  2593. "name": "colan",
  2594. "homepage": "https://www.drupal.org/user/58704"
  2595. },
  2596. {
  2597. "name": "dealancer",
  2598. "homepage": "https://www.drupal.org/user/243418"
  2599. },
  2600. {
  2601. "name": "markus_petrux",
  2602. "homepage": "https://www.drupal.org/user/39593"
  2603. },
  2604. {
  2605. "name": "nickcaballero",
  2606. "homepage": "https://www.drupal.org/user/588336"
  2607. },
  2608. {
  2609. "name": "ram4nd",
  2610. "homepage": "https://www.drupal.org/user/601534"
  2611. }
  2612. ],
  2613. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2614. "homepage": "https://www.drupal.org/project/computed_field",
  2615. "support": {
  2616. "source": "http://cgit.drupalcode.org/computed_field"
  2617. }
  2618. },
  2619. {
  2620. "name": "drupal/config_devel",
  2621. "version": "1.2.0",
  2622. "source": {
  2623. "type": "git",
  2624. "url": "https://git.drupal.org/project/config_devel",
  2625. "reference": "8.x-1.2"
  2626. },
  2627. "dist": {
  2628. "type": "zip",
  2629. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2630. "reference": "8.x-1.2",
  2631. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2632. },
  2633. "require": {
  2634. "drupal/core": "~8.0"
  2635. },
  2636. "type": "drupal-module",
  2637. "extra": {
  2638. "branch-alias": {
  2639. "dev-1.x": "1.x-dev"
  2640. },
  2641. "drupal": {
  2642. "version": "8.x-1.2",
  2643. "datestamp": "1510843084",
  2644. "security-coverage": {
  2645. "status": "covered",
  2646. "message": "Covered by Drupal's security advisory policy"
  2647. }
  2648. }
  2649. },
  2650. "notification-url": "https://packages.drupal.org/8/downloads",
  2651. "license": [
  2652. "GPL-2.0+"
  2653. ],
  2654. "authors": [
  2655. {
  2656. "name": "alexpott",
  2657. "homepage": "https://www.drupal.org/user/157725"
  2658. },
  2659. {
  2660. "name": "benjy",
  2661. "homepage": "https://www.drupal.org/user/1852732"
  2662. },
  2663. {
  2664. "name": "chx",
  2665. "homepage": "https://www.drupal.org/user/9446"
  2666. },
  2667. {
  2668. "name": "joachim",
  2669. "homepage": "https://www.drupal.org/user/107701"
  2670. },
  2671. {
  2672. "name": "nedjo",
  2673. "homepage": "https://www.drupal.org/user/4481"
  2674. },
  2675. {
  2676. "name": "tim.plunkett",
  2677. "homepage": "https://www.drupal.org/user/241634"
  2678. },
  2679. {
  2680. "name": "vijaycs85",
  2681. "homepage": "https://www.drupal.org/user/93488"
  2682. }
  2683. ],
  2684. "description": "Helps developers work with configuration.",
  2685. "homepage": "https://www.drupal.org/project/config_devel",
  2686. "support": {
  2687. "source": "http://cgit.drupalcode.org/config_devel"
  2688. }
  2689. },
  2690. {
  2691. "name": "drupal/config_filter",
  2692. "version": "1.4.0",
  2693. "source": {
  2694. "type": "git",
  2695. "url": "https://git.drupal.org/project/config_filter",
  2696. "reference": "8.x-1.4"
  2697. },
  2698. "dist": {
  2699. "type": "zip",
  2700. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.4.zip",
  2701. "reference": "8.x-1.4",
  2702. "shasum": "4b2b7f4dfc8358212f9e25f63dcc77cc2c1dcf6c"
  2703. },
  2704. "require": {
  2705. "drupal/core": "~8.0"
  2706. },
  2707. "suggest": {
  2708. "drupal/config_split": "Split site configuration for different environments."
  2709. },
  2710. "type": "drupal-module",
  2711. "extra": {
  2712. "branch-alias": {
  2713. "dev-1.x": "1.x-dev"
  2714. },
  2715. "drupal": {
  2716. "version": "8.x-1.4",
  2717. "datestamp": "1542184982",
  2718. "security-coverage": {
  2719. "status": "covered",
  2720. "message": "Covered by Drupal's security advisory policy"
  2721. }
  2722. }
  2723. },
  2724. "notification-url": "https://packages.drupal.org/8/downloads",
  2725. "license": [
  2726. "GPL-2.0+"
  2727. ],
  2728. "authors": [
  2729. {
  2730. "name": "Fabian Bircher",
  2731. "homepage": "https://www.drupal.org/u/bircher",
  2732. "email": "opensource@fabianbircher.com",
  2733. "role": "Maintainer"
  2734. },
  2735. {
  2736. "name": "Nuvole Web",
  2737. "homepage": "http://nuvole.org",
  2738. "email": "info@nuvole.org",
  2739. "role": "Maintainer"
  2740. },
  2741. {
  2742. "name": "pescetti",
  2743. "homepage": "https://www.drupal.org/user/436244"
  2744. }
  2745. ],
  2746. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2747. "homepage": "https://www.drupal.org/project/config_filter",
  2748. "keywords": [
  2749. "Drupal",
  2750. "configuration",
  2751. "configuration management"
  2752. ],
  2753. "support": {
  2754. "source": "http://cgit.drupalcode.org/config_filter",
  2755. "issues": "https://www.drupal.org/project/issues/config_filter",
  2756. "irc": "irc://irc.freenode.org/drupal-contribute"
  2757. }
  2758. },
  2759. {
  2760. "name": "drupal/config_ignore",
  2761. "version": "2.1.0",
  2762. "source": {
  2763. "type": "git",
  2764. "url": "https://git.drupal.org/project/config_ignore",
  2765. "reference": "8.x-2.1"
  2766. },
  2767. "dist": {
  2768. "type": "zip",
  2769. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2770. "reference": "8.x-2.1",
  2771. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2772. },
  2773. "require": {
  2774. "drupal/config_filter": "1.*",
  2775. "drupal/core": "~8.0"
  2776. },
  2777. "type": "drupal-module",
  2778. "extra": {
  2779. "branch-alias": {
  2780. "dev-2.x": "2.x-dev"
  2781. },
  2782. "drupal": {
  2783. "version": "8.x-2.1",
  2784. "datestamp": "1507706044",
  2785. "security-coverage": {
  2786. "status": "covered",
  2787. "message": "Covered by Drupal's security advisory policy"
  2788. }
  2789. }
  2790. },
  2791. "notification-url": "https://packages.drupal.org/8/downloads",
  2792. "license": [
  2793. "GPL-2.0+"
  2794. ],
  2795. "authors": [
  2796. {
  2797. "name": "Tommy Lynge Jørgensen",
  2798. "homepage": "https://www.drupal.org/u/tlyngej",
  2799. "email": "tlyngej@gmail.com",
  2800. "role": "Maintainer"
  2801. },
  2802. {
  2803. "name": "Fabian Bircher",
  2804. "homepage": "https://www.drupal.org/u/bircher",
  2805. "role": "Maintainer"
  2806. }
  2807. ],
  2808. "description": "Ignore certain configuration during import.",
  2809. "homepage": "http://drupal.org/project/config_ignore",
  2810. "support": {
  2811. "source": "http://cgit.drupalcode.org/config_ignore",
  2812. "issues": "http://drupal.org/project/config_ignore",
  2813. "irc": "irc://irc.freenode.org/drupal-contribute"
  2814. }
  2815. },
  2816. {
  2817. "name": "drupal/config_split",
  2818. "version": "1.4.0",
  2819. "source": {
  2820. "type": "git",
  2821. "url": "https://git.drupal.org/project/config_split",
  2822. "reference": "8.x-1.4"
  2823. },
  2824. "dist": {
  2825. "type": "zip",
  2826. "url": "https://ftp.drupal.org/files/projects/config_split-8.x-1.4.zip",
  2827. "reference": "8.x-1.4",
  2828. "shasum": "938ea6c88834aa88bb310740758e56c1800e535b"
  2829. },
  2830. "require": {
  2831. "drupal/config_filter": "*",
  2832. "drupal/core": "~8.0"
  2833. },
  2834. "type": "drupal-module",
  2835. "extra": {
  2836. "branch-alias": {
  2837. "dev-1.x": "1.x-dev"
  2838. },
  2839. "drupal": {
  2840. "version": "8.x-1.4",
  2841. "datestamp": "1537971780",
  2842. "security-coverage": {
  2843. "status": "covered",
  2844. "message": "Covered by Drupal's security advisory policy"
  2845. }
  2846. },
  2847. "drush": {
  2848. "services": {
  2849. "drush.services.yml": "^9"
  2850. }
  2851. }
  2852. },
  2853. "notification-url": "https://packages.drupal.org/8/downloads",
  2854. "license": [
  2855. "GPL-2.0+"
  2856. ],
  2857. "authors": [
  2858. {
  2859. "name": "Fabian Bircher",
  2860. "homepage": "https://www.drupal.org/u/bircher",
  2861. "email": "opensource@fabianbircher.com",
  2862. "role": "Maintainer"
  2863. },
  2864. {
  2865. "name": "Nuvole Web",
  2866. "homepage": "http://nuvole.org",
  2867. "email": "info@nuvole.org",
  2868. "role": "Maintainer"
  2869. },
  2870. {
  2871. "name": "pescetti",
  2872. "homepage": "https://www.drupal.org/user/436244"
  2873. }
  2874. ],
  2875. "description": "Configuration filter for importing and exporting extra config",
  2876. "homepage": "https://www.drupal.org/project/config_split",
  2877. "keywords": [
  2878. "Drupal",
  2879. "configuration",
  2880. "configuration management"
  2881. ],
  2882. "support": {
  2883. "source": "http://cgit.drupalcode.org/config_split",
  2884. "issues": "https://www.drupal.org/project/issues/config_split",
  2885. "irc": "irc://irc.freenode.org/drupal-contribute"
  2886. }
  2887. },
  2888. {
  2889. "name": "drupal/config_update",
  2890. "version": "1.6.0",
  2891. "source": {
  2892. "type": "git",
  2893. "url": "https://git.drupal.org/project/config_update",
  2894. "reference": "8.x-1.6"
  2895. },
  2896. "dist": {
  2897. "type": "zip",
  2898. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2899. "reference": "8.x-1.6",
  2900. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2901. },
  2902. "require": {
  2903. "drupal/core": "*"
  2904. },
  2905. "type": "drupal-module",
  2906. "extra": {
  2907. "branch-alias": {
  2908. "dev-1.x": "1.x-dev"
  2909. },
  2910. "drupal": {
  2911. "version": "8.x-1.6",
  2912. "datestamp": "1545090480",
  2913. "security-coverage": {
  2914. "status": "covered",
  2915. "message": "Covered by Drupal's security advisory policy"
  2916. }
  2917. }
  2918. },
  2919. "notification-url": "https://packages.drupal.org/8/downloads",
  2920. "license": [
  2921. "GPL-2.0-or-later"
  2922. ],
  2923. "authors": [
  2924. {
  2925. "name": "jhodgdon",
  2926. "homepage": "https://www.drupal.org/user/155601"
  2927. },
  2928. {
  2929. "name": "nedjo",
  2930. "homepage": "https://www.drupal.org/user/4481"
  2931. }
  2932. ],
  2933. "description": "Provides basic revert and update functionality for other modules",
  2934. "homepage": "https://www.drupal.org/project/config_update",
  2935. "support": {
  2936. "source": "http://cgit.drupalcode.org/config_update"
  2937. }
  2938. },
  2939. {
  2940. "name": "drupal/console",
  2941. "version": "1.8.0",
  2942. "source": {
  2943. "type": "git",
  2944. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2945. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  2946. },
  2947. "dist": {
  2948. "type": "zip",
  2949. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2950. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2951. "shasum": ""
  2952. },
  2953. "require": {
  2954. "alchemy/zippy": "0.4.3",
  2955. "composer/installers": "~1.0",
  2956. "doctrine/annotations": "^1.2",
  2957. "doctrine/collections": "^1.3",
  2958. "drupal/console-core": "1.8.0",
  2959. "drupal/console-extend-plugin": "~0",
  2960. "guzzlehttp/guzzle": "~6.1",
  2961. "php": "^5.5.9 || ^7.0",
  2962. "psy/psysh": "0.6.* || ~0.8",
  2963. "symfony/css-selector": "~2.8|~3.0",
  2964. "symfony/dom-crawler": "~2.8|~3.0",
  2965. "symfony/http-foundation": "~2.8|~3.0"
  2966. },
  2967. "suggest": {
  2968. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  2969. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  2970. },
  2971. "bin": [
  2972. "bin/drupal"
  2973. ],
  2974. "type": "library",
  2975. "autoload": {
  2976. "psr-4": {
  2977. "Drupal\\Console\\": "src"
  2978. }
  2979. },
  2980. "notification-url": "https://packagist.org/downloads/",
  2981. "license": [
  2982. "GPL-2.0-or-later"
  2983. ],
  2984. "authors": [
  2985. {
  2986. "name": "David Flores",
  2987. "email": "dmousex@gmail.com",
  2988. "homepage": "http://dmouse.net"
  2989. },
  2990. {
  2991. "name": "Jesus Manuel Olivas",
  2992. "email": "jesus.olivas@gmail.com",
  2993. "homepage": "http://jmolivas.com"
  2994. },
  2995. {
  2996. "name": "Eduardo Garcia",
  2997. "email": "enzo@enzolutions.com",
  2998. "homepage": "http://enzolutions.com/"
  2999. },
  3000. {
  3001. "name": "Omar Aguirre",
  3002. "email": "omersguchigu@gmail.com"
  3003. },
  3004. {
  3005. "name": "Drupal Console Contributors",
  3006. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3007. }
  3008. ],
  3009. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3010. "homepage": "http://drupalconsole.com/",
  3011. "keywords": [
  3012. "console",
  3013. "development",
  3014. "drupal",
  3015. "symfony"
  3016. ],
  3017. "time": "2018-03-21T20:50:16+00:00"
  3018. },
  3019. {
  3020. "name": "drupal/console-core",
  3021. "version": "1.8.0",
  3022. "source": {
  3023. "type": "git",
  3024. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3025. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  3026. },
  3027. "dist": {
  3028. "type": "zip",
  3029. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  3030. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  3031. "shasum": ""
  3032. },
  3033. "require": {
  3034. "dflydev/dot-access-configuration": "^1.0",
  3035. "drupal/console-en": "1.8.0",
  3036. "php": "^5.5.9 || ^7.0",
  3037. "stecman/symfony-console-completion": "~0.7",
  3038. "symfony/config": "~2.8|~3.0",
  3039. "symfony/console": "~2.8|~3.0",
  3040. "symfony/debug": "~2.8|~3.0",
  3041. "symfony/dependency-injection": "~2.8|~3.0",
  3042. "symfony/event-dispatcher": "~2.8|~3.0",
  3043. "symfony/filesystem": "~2.8|~3.0",
  3044. "symfony/finder": "~2.8|~3.0",
  3045. "symfony/process": "~2.8|~3.0",
  3046. "symfony/translation": "~2.8|~3.0",
  3047. "symfony/yaml": "~2.8|~3.0",
  3048. "twig/twig": "^1.23.1",
  3049. "webflo/drupal-finder": "^1.0",
  3050. "webmozart/path-util": "^2.3"
  3051. },
  3052. "type": "library",
  3053. "autoload": {
  3054. "files": [
  3055. "src/functions.php"
  3056. ],
  3057. "psr-4": {
  3058. "Drupal\\Console\\Core\\": "src"
  3059. }
  3060. },
  3061. "notification-url": "https://packagist.org/downloads/",
  3062. "license": [
  3063. "GPL-2.0-or-later"
  3064. ],
  3065. "authors": [
  3066. {
  3067. "name": "David Flores",
  3068. "email": "dmousex@gmail.com",
  3069. "homepage": "http://dmouse.net"
  3070. },
  3071. {
  3072. "name": "Jesus Manuel Olivas",
  3073. "email": "jesus.olivas@gmail.com",
  3074. "homepage": "http://jmolivas.com"
  3075. },
  3076. {
  3077. "name": "Drupal Console Contributors",
  3078. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3079. },
  3080. {
  3081. "name": "Eduardo Garcia",
  3082. "email": "enzo@enzolutions.com",
  3083. "homepage": "http://enzolutions.com/"
  3084. },
  3085. {
  3086. "name": "Omar Aguirre",
  3087. "email": "omersguchigu@gmail.com"
  3088. }
  3089. ],
  3090. "description": "Drupal Console Core",
  3091. "homepage": "http://drupalconsole.com/",
  3092. "keywords": [
  3093. "console",
  3094. "development",
  3095. "drupal",
  3096. "symfony"
  3097. ],
  3098. "time": "2018-03-21T19:33:23+00:00"
  3099. },
  3100. {
  3101. "name": "drupal/console-en",
  3102. "version": "1.8.0",
  3103. "source": {
  3104. "type": "git",
  3105. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3106. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  3107. },
  3108. "dist": {
  3109. "type": "zip",
  3110. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  3111. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  3112. "shasum": ""
  3113. },
  3114. "type": "drupal-console-language",
  3115. "notification-url": "https://packagist.org/downloads/",
  3116. "license": [
  3117. "GPL-2.0-or-later"
  3118. ],
  3119. "authors": [
  3120. {
  3121. "name": "David Flores",
  3122. "email": "dmousex@gmail.com",
  3123. "homepage": "http://dmouse.net"
  3124. },
  3125. {
  3126. "name": "Jesus Manuel Olivas",
  3127. "email": "jesus.olivas@gmail.com",
  3128. "homepage": "http://jmolivas.com"
  3129. },
  3130. {
  3131. "name": "Drupal Console Contributors",
  3132. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3133. },
  3134. {
  3135. "name": "Eduardo Garcia",
  3136. "email": "enzo@enzolutions.com",
  3137. "homepage": "http://enzolutions.com/"
  3138. },
  3139. {
  3140. "name": "Omar Aguirre",
  3141. "email": "omersguchigu@gmail.com"
  3142. }
  3143. ],
  3144. "description": "Drupal Console English Language",
  3145. "homepage": "http://drupalconsole.com/",
  3146. "keywords": [
  3147. "console",
  3148. "development",
  3149. "drupal",
  3150. "symfony"
  3151. ],
  3152. "time": "2018-03-21T19:16:27+00:00"
  3153. },
  3154. {
  3155. "name": "drupal/console-extend-plugin",
  3156. "version": "0.9.2",
  3157. "source": {
  3158. "type": "git",
  3159. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3160. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  3161. },
  3162. "dist": {
  3163. "type": "zip",
  3164. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  3165. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  3166. "shasum": ""
  3167. },
  3168. "require": {
  3169. "composer-plugin-api": "^1.0",
  3170. "symfony/finder": "~2.7|~3.0",
  3171. "symfony/yaml": "~2.7|~3.0"
  3172. },
  3173. "type": "composer-plugin",
  3174. "extra": {
  3175. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3176. },
  3177. "autoload": {
  3178. "psr-4": {
  3179. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3180. }
  3181. },
  3182. "notification-url": "https://packagist.org/downloads/",
  3183. "license": [
  3184. "GPL-2.0+"
  3185. ],
  3186. "authors": [
  3187. {
  3188. "name": "Jesus Manuel Olivas",
  3189. "email": "jesus.olivas@gmail.com"
  3190. }
  3191. ],
  3192. "description": "Drupal Console Extend Plugin",
  3193. "time": "2017-07-28T17:11:54+00:00"
  3194. },
  3195. {
  3196. "name": "drupal/content_lock",
  3197. "version": "1.0.0-alpha8",
  3198. "source": {
  3199. "type": "git",
  3200. "url": "https://git.drupal.org/project/content_lock",
  3201. "reference": "8.x-1.0-alpha8"
  3202. },
  3203. "dist": {
  3204. "type": "zip",
  3205. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-1.0-alpha8.zip",
  3206. "reference": "8.x-1.0-alpha8",
  3207. "shasum": "dbb5986dbfbe325eb869a4ac42b88b266dc089c6"
  3208. },
  3209. "require": {
  3210. "drupal/core": "~8"
  3211. },
  3212. "require-dev": {
  3213. "drupal/conflict": "dev-2.x",
  3214. "drupal/prefetch_cache": "dev-1.x"
  3215. },
  3216. "type": "drupal-module",
  3217. "extra": {
  3218. "branch-alias": {
  3219. "dev-1.x": "1.x-dev"
  3220. },
  3221. "drupal": {
  3222. "version": "8.x-1.0-alpha8",
  3223. "datestamp": "1520356080",
  3224. "security-coverage": {
  3225. "status": "not-covered",
  3226. "message": "Alpha releases are not covered by Drupal security advisories."
  3227. }
  3228. }
  3229. },
  3230. "notification-url": "https://packages.drupal.org/8/downloads",
  3231. "license": [
  3232. "GPL-2.0-or-later"
  3233. ],
  3234. "authors": [
  3235. {
  3236. "name": "Joseph Zhao",
  3237. "homepage": "https://www.drupal.org/user/1987218"
  3238. },
  3239. {
  3240. "name": "chr.fritsch",
  3241. "homepage": "https://www.drupal.org/user/2103716"
  3242. },
  3243. {
  3244. "name": "ergonlogic",
  3245. "homepage": "https://www.drupal.org/user/368613"
  3246. }
  3247. ],
  3248. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3249. "homepage": "https://www.drupal.org/project/content_lock",
  3250. "support": {
  3251. "source": "http://cgit.drupalcode.org/content_lock"
  3252. }
  3253. },
  3254. {
  3255. "name": "drupal/context",
  3256. "version": "4.0.0-beta2",
  3257. "source": {
  3258. "type": "git",
  3259. "url": "https://git.drupal.org/project/context",
  3260. "reference": "8.x-4.0-beta2"
  3261. },
  3262. "dist": {
  3263. "type": "zip",
  3264. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  3265. "reference": "8.x-4.0-beta2",
  3266. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  3267. },
  3268. "require": {
  3269. "drupal/core": "~8.0"
  3270. },
  3271. "type": "drupal-module",
  3272. "extra": {
  3273. "branch-alias": {
  3274. "dev-4.x": "4.x-dev"
  3275. },
  3276. "drupal": {
  3277. "version": "8.x-4.0-beta2",
  3278. "datestamp": "1505378944",
  3279. "security-coverage": {
  3280. "status": "not-covered",
  3281. "message": "Beta releases are not covered by Drupal security advisories."
  3282. }
  3283. }
  3284. },
  3285. "notification-url": "https://packages.drupal.org/8/downloads",
  3286. "license": [
  3287. "MIT"
  3288. ],
  3289. "authors": [
  3290. {
  3291. "name": "Christoffer Palm",
  3292. "homepage": "http://www.oddhill.se/",
  3293. "email": "christoffer.palm@oddhill.se",
  3294. "role": "Developer"
  3295. },
  3296. {
  3297. "name": "Steven Jones",
  3298. "homepage": "https://www.drupal.org/user/99644"
  3299. },
  3300. {
  3301. "name": "alex_b",
  3302. "homepage": "https://www.drupal.org/user/53995"
  3303. },
  3304. {
  3305. "name": "boshtian",
  3306. "homepage": "https://www.drupal.org/user/1773456"
  3307. },
  3308. {
  3309. "name": "colan",
  3310. "homepage": "https://www.drupal.org/user/58704"
  3311. },
  3312. {
  3313. "name": "emanaton",
  3314. "homepage": "https://www.drupal.org/user/120853"
  3315. },
  3316. {
  3317. "name": "febbraro",
  3318. "homepage": "https://www.drupal.org/user/43670"
  3319. },
  3320. {
  3321. "name": "fizk",
  3322. "homepage": "https://www.drupal.org/user/473174"
  3323. },
  3324. {
  3325. "name": "hass",
  3326. "homepage": "https://www.drupal.org/user/85918"
  3327. },
  3328. {
  3329. "name": "hefox",
  3330. "homepage": "https://www.drupal.org/user/426416"
  3331. },
  3332. {
  3333. "name": "hyrcan",
  3334. "homepage": "https://www.drupal.org/user/26618"
  3335. },
  3336. {
  3337. "name": "jmiccolis",
  3338. "homepage": "https://www.drupal.org/user/31731"
  3339. },
  3340. {
  3341. "name": "nedjo",
  3342. "homepage": "https://www.drupal.org/user/4481"
  3343. },
  3344. {
  3345. "name": "tekante",
  3346. "homepage": "https://www.drupal.org/user/640024"
  3347. },
  3348. {
  3349. "name": "yhahn",
  3350. "homepage": "https://www.drupal.org/user/264833"
  3351. }
  3352. ],
  3353. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3354. "homepage": "https://github.com/oddhill/context",
  3355. "keywords": [
  3356. "Drupal",
  3357. "block",
  3358. "conditions",
  3359. "context",
  3360. "visibility"
  3361. ],
  3362. "support": {
  3363. "source": "https://github.com/oddhill/context",
  3364. "issues": "https://github.com/oddhill/context/issues",
  3365. "docs": "https://github.com/oddhill/context"
  3366. }
  3367. },
  3368. {
  3369. "name": "drupal/core",
  3370. "version": "8.6.9",
  3371. "source": {
  3372. "type": "git",
  3373. "url": "https://github.com/drupal/core.git",
  3374. "reference": "cac12e0ec19d5c6fa53778522b3ff4c542f86c8d"
  3375. },
  3376. "dist": {
  3377. "type": "zip",
  3378. "url": "https://api.github.com/repos/drupal/core/zipball/cac12e0ec19d5c6fa53778522b3ff4c542f86c8d",
  3379. "reference": "cac12e0ec19d5c6fa53778522b3ff4c542f86c8d",
  3380. "shasum": ""
  3381. },
  3382. "require": {
  3383. "asm89/stack-cors": "^1.1",
  3384. "composer/semver": "^1.0",
  3385. "doctrine/annotations": "^1.2",
  3386. "doctrine/common": "^2.5",
  3387. "easyrdf/easyrdf": "^0.9",
  3388. "egulias/email-validator": "^1.2",
  3389. "ext-date": "*",
  3390. "ext-dom": "*",
  3391. "ext-filter": "*",
  3392. "ext-gd": "*",
  3393. "ext-hash": "*",
  3394. "ext-json": "*",
  3395. "ext-pcre": "*",
  3396. "ext-pdo": "*",
  3397. "ext-session": "*",
  3398. "ext-simplexml": "*",
  3399. "ext-spl": "*",
  3400. "ext-tokenizer": "*",
  3401. "ext-xml": "*",
  3402. "guzzlehttp/guzzle": "^6.2.1",
  3403. "masterminds/html5": "^2.1",
  3404. "paragonie/random_compat": "^1.0|^2.0",
  3405. "php": "^5.5.9|>=7.0.8",
  3406. "stack/builder": "^1.0",
  3407. "symfony-cmf/routing": "^1.4",
  3408. "symfony/class-loader": "~3.4.0",
  3409. "symfony/console": "~3.4.0",
  3410. "symfony/dependency-injection": "~3.4.0",
  3411. "symfony/event-dispatcher": "~3.4.0",
  3412. "symfony/http-foundation": "~3.4.14",
  3413. "symfony/http-kernel": "~3.4.14",
  3414. "symfony/polyfill-iconv": "^1.0",
  3415. "symfony/process": "~3.4.0",
  3416. "symfony/psr-http-message-bridge": "^1.0",
  3417. "symfony/routing": "~3.4.0",
  3418. "symfony/serializer": "~3.4.0",
  3419. "symfony/translation": "~3.4.0",
  3420. "symfony/validator": "~3.4.0",
  3421. "symfony/yaml": "~3.4.5",
  3422. "twig/twig": "^1.35.0",
  3423. "typo3/phar-stream-wrapper": "^2.0.1",
  3424. "zendframework/zend-diactoros": "^1.1",
  3425. "zendframework/zend-feed": "^2.4"
  3426. },
  3427. "conflict": {
  3428. "drush/drush": "<8.1.10"
  3429. },
  3430. "replace": {
  3431. "drupal/action": "self.version",
  3432. "drupal/aggregator": "self.version",
  3433. "drupal/automated_cron": "self.version",
  3434. "drupal/ban": "self.version",
  3435. "drupal/bartik": "self.version",
  3436. "drupal/basic_auth": "self.version",
  3437. "drupal/big_pipe": "self.version",
  3438. "drupal/block": "self.version",
  3439. "drupal/block_content": "self.version",
  3440. "drupal/block_place": "self.version",
  3441. "drupal/book": "self.version",
  3442. "drupal/breakpoint": "self.version",
  3443. "drupal/ckeditor": "self.version",
  3444. "drupal/classy": "self.version",
  3445. "drupal/color": "self.version",
  3446. "drupal/comment": "self.version",
  3447. "drupal/config": "self.version",
  3448. "drupal/config_translation": "self.version",
  3449. "drupal/contact": "self.version",
  3450. "drupal/content_moderation": "self.version",
  3451. "drupal/content_translation": "self.version",
  3452. "drupal/contextual": "self.version",
  3453. "drupal/core-annotation": "self.version",
  3454. "drupal/core-assertion": "self.version",
  3455. "drupal/core-bridge": "self.version",
  3456. "drupal/core-class-finder": "self.version",
  3457. "drupal/core-datetime": "self.version",
  3458. "drupal/core-dependency-injection": "self.version",
  3459. "drupal/core-diff": "self.version",
  3460. "drupal/core-discovery": "self.version",
  3461. "drupal/core-event-dispatcher": "self.version",
  3462. "drupal/core-file-cache": "self.version",
  3463. "drupal/core-filesystem": "self.version",
  3464. "drupal/core-gettext": "self.version",
  3465. "drupal/core-graph": "self.version",
  3466. "drupal/core-http-foundation": "self.version",
  3467. "drupal/core-php-storage": "self.version",
  3468. "drupal/core-plugin": "self.version",
  3469. "drupal/core-proxy-builder": "self.version",
  3470. "drupal/core-render": "self.version",
  3471. "drupal/core-serialization": "self.version",
  3472. "drupal/core-transliteration": "self.version",
  3473. "drupal/core-utility": "self.version",
  3474. "drupal/core-uuid": "self.version",
  3475. "drupal/datetime": "self.version",
  3476. "drupal/datetime_range": "self.version",
  3477. "drupal/dblog": "self.version",
  3478. "drupal/dynamic_page_cache": "self.version",
  3479. "drupal/editor": "self.version",
  3480. "drupal/entity_reference": "self.version",
  3481. "drupal/field": "self.version",
  3482. "drupal/field_layout": "self.version",
  3483. "drupal/field_ui": "self.version",
  3484. "drupal/file": "self.version",
  3485. "drupal/filter": "self.version",
  3486. "drupal/forum": "self.version",
  3487. "drupal/hal": "self.version",
  3488. "drupal/help": "self.version",
  3489. "drupal/history": "self.version",
  3490. "drupal/image": "self.version",
  3491. "drupal/inline_form_errors": "self.version",
  3492. "drupal/language": "self.version",
  3493. "drupal/layout_builder": "self.version",
  3494. "drupal/layout_discovery": "self.version",
  3495. "drupal/link": "self.version",
  3496. "drupal/locale": "self.version",
  3497. "drupal/media": "self.version",
  3498. "drupal/media_library": "self.version",
  3499. "drupal/menu_link_content": "self.version",
  3500. "drupal/menu_ui": "self.version",
  3501. "drupal/migrate": "self.version",
  3502. "drupal/migrate_drupal": "self.version",
  3503. "drupal/migrate_drupal_multilingual": "self.version",
  3504. "drupal/migrate_drupal_ui": "self.version",
  3505. "drupal/minimal": "self.version",
  3506. "drupal/node": "self.version",
  3507. "drupal/options": "self.version",
  3508. "drupal/page_cache": "self.version",
  3509. "drupal/path": "self.version",
  3510. "drupal/quickedit": "self.version",
  3511. "drupal/rdf": "self.version",
  3512. "drupal/responsive_image": "self.version",
  3513. "drupal/rest": "self.version",
  3514. "drupal/search": "self.version",
  3515. "drupal/serialization": "self.version",
  3516. "drupal/settings_tray": "self.version",
  3517. "drupal/seven": "self.version",
  3518. "drupal/shortcut": "self.version",
  3519. "drupal/simpletest": "self.version",
  3520. "drupal/standard": "self.version",
  3521. "drupal/stark": "self.version",
  3522. "drupal/statistics": "self.version",
  3523. "drupal/syslog": "self.version",
  3524. "drupal/system": "self.version",
  3525. "drupal/taxonomy": "self.version",
  3526. "drupal/telephone": "self.version",
  3527. "drupal/text": "self.version",
  3528. "drupal/toolbar": "self.version",
  3529. "drupal/tour": "self.version",
  3530. "drupal/tracker": "self.version",
  3531. "drupal/update": "self.version",
  3532. "drupal/user": "self.version",
  3533. "drupal/views": "self.version",
  3534. "drupal/views_ui": "self.version",
  3535. "drupal/workflows": "self.version",
  3536. "drupal/workspaces": "self.version"
  3537. },
  3538. "require-dev": {
  3539. "behat/mink": "1.7.x-dev",
  3540. "behat/mink-goutte-driver": "^1.2",
  3541. "behat/mink-selenium2-driver": "1.3.x-dev",
  3542. "drupal/coder": "^8.2.12",
  3543. "jcalderonzumba/gastonjs": "^1.0.2",
  3544. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3545. "mikey179/vfsstream": "^1.2",
  3546. "phpspec/prophecy": "^1.7",
  3547. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3548. "symfony/css-selector": "^3.4.0",
  3549. "symfony/debug": "^3.4.0",
  3550. "symfony/phpunit-bridge": "^3.4.3"
  3551. },
  3552. "type": "drupal-core",
  3553. "extra": {
  3554. "merge-plugin": {
  3555. "require": [
  3556. "core/lib/Drupal/Component/Annotation/composer.json",
  3557. "core/lib/Drupal/Component/Assertion/composer.json",
  3558. "core/lib/Drupal/Component/Bridge/composer.json",
  3559. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3560. "core/lib/Drupal/Component/Datetime/composer.json",
  3561. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3562. "core/lib/Drupal/Component/Diff/composer.json",
  3563. "core/lib/Drupal/Component/Discovery/composer.json",
  3564. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3565. "core/lib/Drupal/Component/FileCache/composer.json",
  3566. "core/lib/Drupal/Component/FileSystem/composer.json",
  3567. "core/lib/Drupal/Component/Gettext/composer.json",
  3568. "core/lib/Drupal/Component/Graph/composer.json",
  3569. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3570. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3571. "core/lib/Drupal/Component/Plugin/composer.json",
  3572. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3573. "core/lib/Drupal/Component/Render/composer.json",
  3574. "core/lib/Drupal/Component/Serialization/composer.json",
  3575. "core/lib/Drupal/Component/Transliteration/composer.json",
  3576. "core/lib/Drupal/Component/Utility/composer.json",
  3577. "core/lib/Drupal/Component/Uuid/composer.json"
  3578. ],
  3579. "recurse": false,
  3580. "replace": false,
  3581. "merge-extra": false
  3582. },
  3583. "patches_applied": {
  3584. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  3585. }
  3586. },
  3587. "autoload": {
  3588. "psr-4": {
  3589. "Drupal\\Core\\": "lib/Drupal/Core",
  3590. "Drupal\\Component\\": "lib/Drupal/Component",
  3591. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3592. },
  3593. "classmap": [
  3594. "lib/Drupal.php",
  3595. "lib/Drupal/Component/Utility/Timer.php",
  3596. "lib/Drupal/Component/Utility/Unicode.php",
  3597. "lib/Drupal/Core/Database/Database.php",
  3598. "lib/Drupal/Core/DrupalKernel.php",
  3599. "lib/Drupal/Core/DrupalKernelInterface.php",
  3600. "lib/Drupal/Core/Site/Settings.php"
  3601. ]
  3602. },
  3603. "notification-url": "https://packagist.org/downloads/",
  3604. "license": [
  3605. "GPL-2.0-or-later"
  3606. ],
  3607. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3608. "time": "2019-02-08T12:21:40+00:00"
  3609. },
  3610. {
  3611. "name": "drupal/cshs",
  3612. "version": "dev-1.x",
  3613. "source": {
  3614. "type": "git",
  3615. "url": "https://git.drupal.org/project/cshs",
  3616. "reference": "c4a2deff253e24c83b14f960ce9dce49fa115f60"
  3617. },
  3618. "require": {
  3619. "drupal/core": "*"
  3620. },
  3621. "type": "drupal-module",
  3622. "extra": {
  3623. "branch-alias": {
  3624. "dev-1.x": "1.x-dev"
  3625. },
  3626. "drupal": {
  3627. "version": "8.x-1.0-beta4+4-dev",
  3628. "datestamp": "1512800285",
  3629. "security-coverage": {
  3630. "status": "not-covered",
  3631. "message": "Dev releases are not covered by Drupal security advisories."
  3632. }
  3633. }
  3634. },
  3635. "notification-url": "https://packages.drupal.org/8/downloads",
  3636. "license": [
  3637. "GPL-2.0-or-later"
  3638. ],
  3639. "authors": [
  3640. {
  3641. "name": "BR0kEN",
  3642. "homepage": "https://www.drupal.org/user/2802285"
  3643. },
  3644. {
  3645. "name": "purushotam.rai",
  3646. "homepage": "https://www.drupal.org/user/3193859"
  3647. },
  3648. {
  3649. "name": "valderama",
  3650. "homepage": "https://www.drupal.org/user/103634"
  3651. }
  3652. ],
  3653. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3654. "homepage": "https://www.drupal.org/project/cshs",
  3655. "support": {
  3656. "source": "http://cgit.drupalcode.org/cshs"
  3657. },
  3658. "time": "2018-06-24T13:39:17+00:00"
  3659. },
  3660. {
  3661. "name": "drupal/ctools",
  3662. "version": "3.1.0",
  3663. "source": {
  3664. "type": "git",
  3665. "url": "https://git.drupal.org/project/ctools",
  3666. "reference": "8.x-3.1"
  3667. },
  3668. "dist": {
  3669. "type": "zip",
  3670. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.1.zip",
  3671. "reference": "8.x-3.1",
  3672. "shasum": "7056df469624ec3943c62ebe613dbfcb3171dcd1"
  3673. },
  3674. "require": {
  3675. "drupal/core": "^8.5"
  3676. },
  3677. "type": "drupal-module",
  3678. "extra": {
  3679. "branch-alias": {
  3680. "dev-3.x": "3.x-dev"
  3681. },
  3682. "drupal": {
  3683. "version": "8.x-3.1",
  3684. "datestamp": "1549603381",
  3685. "security-coverage": {
  3686. "status": "covered",
  3687. "message": "Covered by Drupal's security advisory policy"
  3688. }
  3689. }
  3690. },
  3691. "notification-url": "https://packages.drupal.org/8/downloads",
  3692. "license": [
  3693. "GPL-2.0+"
  3694. ],
  3695. "authors": [
  3696. {
  3697. "name": "Kris Vanderwater (EclipseGc)",
  3698. "homepage": "https://www.drupal.org/u/eclipsegc",
  3699. "role": "Maintainer"
  3700. },
  3701. {
  3702. "name": "Jakob Perry (japerry)",
  3703. "homepage": "https://www.drupal.org/u/japerry",
  3704. "role": "Maintainer"
  3705. },
  3706. {
  3707. "name": "Tim Plunkett (tim.plunkett)",
  3708. "homepage": "https://www.drupal.org/u/timplunkett",
  3709. "role": "Maintainer"
  3710. },
  3711. {
  3712. "name": "James Gilliland (neclimdul)",
  3713. "homepage": "https://www.drupal.org/u/neclimdul",
  3714. "role": "Maintainer"
  3715. },
  3716. {
  3717. "name": "Daniel Wehner (dawehner)",
  3718. "homepage": "https://www.drupal.org/u/dawehner",
  3719. "role": "Maintainer"
  3720. },
  3721. {
  3722. "name": "joelpittet",
  3723. "homepage": "https://www.drupal.org/user/160302"
  3724. },
  3725. {
  3726. "name": "merlinofchaos",
  3727. "homepage": "https://www.drupal.org/user/26979"
  3728. },
  3729. {
  3730. "name": "neclimdul",
  3731. "homepage": "https://www.drupal.org/user/48673"
  3732. },
  3733. {
  3734. "name": "sdboyer",
  3735. "homepage": "https://www.drupal.org/user/146719"
  3736. },
  3737. {
  3738. "name": "sun",
  3739. "homepage": "https://www.drupal.org/user/54136"
  3740. },
  3741. {
  3742. "name": "tim.plunkett",
  3743. "homepage": "https://www.drupal.org/user/241634"
  3744. }
  3745. ],
  3746. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3747. "homepage": "https://www.drupal.org/project/ctools",
  3748. "support": {
  3749. "source": "http://cgit.drupalcode.org/ctools",
  3750. "issues": "https://www.drupal.org/project/issues/ctools"
  3751. }
  3752. },
  3753. {
  3754. "name": "drupal/date_range_formatter",
  3755. "version": "3.1.0",
  3756. "source": {
  3757. "type": "git",
  3758. "url": "https://git.drupal.org/project/date_range_formatter",
  3759. "reference": "8.x-3.1"
  3760. },
  3761. "dist": {
  3762. "type": "zip",
  3763. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3764. "reference": "8.x-3.1",
  3765. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3766. },
  3767. "require": {
  3768. "drupal/core": "*"
  3769. },
  3770. "type": "drupal-module",
  3771. "extra": {
  3772. "branch-alias": {
  3773. "dev-3.x": "3.x-dev"
  3774. },
  3775. "drupal": {
  3776. "version": "8.x-3.1",
  3777. "datestamp": "1502454544",
  3778. "security-coverage": {
  3779. "status": "covered",
  3780. "message": "Covered by Drupal's security advisory policy"
  3781. }
  3782. }
  3783. },
  3784. "notification-url": "https://packages.drupal.org/8/downloads",
  3785. "license": [
  3786. "GPL-2.0-or-later"
  3787. ],
  3788. "authors": [
  3789. {
  3790. "name": "Sudishth",
  3791. "homepage": "https://www.drupal.org/user/1440562"
  3792. },
  3793. {
  3794. "name": "maximpodorov",
  3795. "homepage": "https://www.drupal.org/user/515310"
  3796. }
  3797. ],
  3798. "description": "Formats date ranges.",
  3799. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3800. "support": {
  3801. "source": "http://cgit.drupalcode.org/date_range_formatter"
  3802. }
  3803. },
  3804. {
  3805. "name": "drupal/devel",
  3806. "version": "2.0.0",
  3807. "source": {
  3808. "type": "git",
  3809. "url": "https://git.drupal.org/project/devel",
  3810. "reference": "8.x-2.0"
  3811. },
  3812. "dist": {
  3813. "type": "zip",
  3814. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.0.zip",
  3815. "reference": "8.x-2.0",
  3816. "shasum": "cf5fb816f767f3cac4f2e170ab39e982d5e0698b"
  3817. },
  3818. "require": {
  3819. "drupal/core": "~8.0",
  3820. "symfony/var-dumper": "~2.7|^3"
  3821. },
  3822. "type": "drupal-module",
  3823. "extra": {
  3824. "branch-alias": {
  3825. "dev-2.x": "2.x-dev"
  3826. },
  3827. "drupal": {
  3828. "version": "8.x-2.0",
  3829. "datestamp": "1548799380",
  3830. "security-coverage": {
  3831. "status": "covered",
  3832. "message": "Covered by Drupal's security advisory policy"
  3833. }
  3834. },
  3835. "drush": {
  3836. "services": {
  3837. "drush.services.yml": "^9"
  3838. }
  3839. }
  3840. },
  3841. "notification-url": "https://packages.drupal.org/8/downloads",
  3842. "license": [
  3843. "GPL-2.0+"
  3844. ],
  3845. "authors": [
  3846. {
  3847. "name": "Moshe Weitzman",
  3848. "homepage": "https://github.com/weitzman",
  3849. "email": "weitzman@tejasa.com",
  3850. "role": "Maintainer"
  3851. },
  3852. {
  3853. "name": "Hans Salvisberg",
  3854. "homepage": "https://www.drupal.org/u/salvis",
  3855. "email": "drupal@salvisberg.com",
  3856. "role": "Maintainer"
  3857. },
  3858. {
  3859. "name": "Luca Lusso",
  3860. "homepage": "https://www.drupal.org/u/lussoluca",
  3861. "role": "Maintainer"
  3862. },
  3863. {
  3864. "name": "Marco (willzyx)",
  3865. "homepage": "https://www.drupal.org/u/willzyx",
  3866. "role": "Maintainer"
  3867. },
  3868. {
  3869. "name": "See contributors",
  3870. "homepage": "https://www.drupal.org/node/3236/committers"
  3871. },
  3872. {
  3873. "name": "salvis",
  3874. "homepage": "https://www.drupal.org/user/82964"
  3875. },
  3876. {
  3877. "name": "willzyx",
  3878. "homepage": "https://www.drupal.org/user/1043862"
  3879. }
  3880. ],
  3881. "description": "Various blocks, pages, and functions for developers.",
  3882. "homepage": "http://drupal.org/project/devel",
  3883. "support": {
  3884. "source": "http://cgit.drupalcode.org/devel",
  3885. "issues": "http://drupal.org/project/devel",
  3886. "irc": "irc://irc.freenode.org/drupal-contribute"
  3887. }
  3888. },
  3889. {
  3890. "name": "drupal/devel_generate",
  3891. "version": "2.0.0",
  3892. "require": {
  3893. "drupal/core": "~8.0",
  3894. "drupal/devel": "self.version"
  3895. },
  3896. "type": "metapackage",
  3897. "extra": {
  3898. "branch-alias": {
  3899. "dev-2.x": "2.x-dev"
  3900. },
  3901. "drupal": {
  3902. "version": "8.x-2.0",
  3903. "datestamp": "1548799380",
  3904. "security-coverage": {
  3905. "status": "covered",
  3906. "message": "Covered by Drupal's security advisory policy"
  3907. }
  3908. },
  3909. "drush": {
  3910. "services": {
  3911. "drush.services.yml": "^9"
  3912. }
  3913. }
  3914. },
  3915. "notification-url": "https://packages.drupal.org/8/downloads",
  3916. "license": [
  3917. "GPL-2.0+"
  3918. ],
  3919. "authors": [
  3920. {
  3921. "name": "Moshe Weitzman",
  3922. "homepage": "https://github.com/weitzman",
  3923. "email": "weitzman@tejasa.com",
  3924. "role": "Maintainer"
  3925. },
  3926. {
  3927. "name": "Hans Salvisberg",
  3928. "homepage": "https://www.drupal.org/u/salvis",
  3929. "email": "drupal@salvisberg.com",
  3930. "role": "Maintainer"
  3931. },
  3932. {
  3933. "name": "Luca Lusso",
  3934. "homepage": "https://www.drupal.org/u/lussoluca",
  3935. "role": "Maintainer"
  3936. },
  3937. {
  3938. "name": "Marco (willzyx)",
  3939. "homepage": "https://www.drupal.org/u/willzyx",
  3940. "role": "Maintainer"
  3941. },
  3942. {
  3943. "name": "See contributors",
  3944. "homepage": "https://www.drupal.org/node/3236/committers"
  3945. },
  3946. {
  3947. "name": "salvis",
  3948. "homepage": "https://www.drupal.org/user/82964"
  3949. },
  3950. {
  3951. "name": "willzyx",
  3952. "homepage": "https://www.drupal.org/user/1043862"
  3953. }
  3954. ],
  3955. "description": "Generate dummy users, nodes, menus, taxonomy terms...",
  3956. "homepage": "http://drupal.org/project/devel",
  3957. "support": {
  3958. "source": "http://cgit.drupalcode.org/devel",
  3959. "issues": "http://drupal.org/project/devel",
  3960. "irc": "irc://irc.freenode.org/drupal-contribute"
  3961. }
  3962. },
  3963. {
  3964. "name": "drupal/domain",
  3965. "version": "dev-1.x",
  3966. "source": {
  3967. "type": "git",
  3968. "url": "https://git.drupal.org/project/domain",
  3969. "reference": "b8519b2a8201e7636efced1fb9945f8ce94f4bc8"
  3970. },
  3971. "require": {
  3972. "drupal/core": "^8.5"
  3973. },
  3974. "require-dev": {
  3975. "drupal/domain_access": "*"
  3976. },
  3977. "type": "drupal-module",
  3978. "extra": {
  3979. "branch-alias": {
  3980. "dev-1.x": "1.x-dev"
  3981. },
  3982. "drupal": {
  3983. "version": "8.x-1.0-alpha14+80-dev",
  3984. "datestamp": "1549396080",
  3985. "security-coverage": {
  3986. "status": "not-covered",
  3987. "message": "Dev releases are not covered by Drupal security advisories."
  3988. }
  3989. }
  3990. },
  3991. "notification-url": "https://packages.drupal.org/8/downloads",
  3992. "license": [
  3993. "GPL-2.0-or-later"
  3994. ],
  3995. "authors": [
  3996. {
  3997. "name": "agentrickard",
  3998. "homepage": "https://www.drupal.org/user/20975"
  3999. },
  4000. {
  4001. "name": "nonsie",
  4002. "homepage": "https://www.drupal.org/user/29899"
  4003. }
  4004. ],
  4005. "description": "Creates domain records within a Drupal installation.",
  4006. "homepage": "https://www.drupal.org/project/domain",
  4007. "support": {
  4008. "source": "http://cgit.drupalcode.org/domain"
  4009. },
  4010. "time": "2019-02-11T16:25:59+00:00"
  4011. },
  4012. {
  4013. "name": "drupal/domain_alias",
  4014. "version": "dev-1.x",
  4015. "require": {
  4016. "drupal/core": "~8.0",
  4017. "drupal/domain": "self.version"
  4018. },
  4019. "type": "metapackage",
  4020. "extra": {
  4021. "branch-alias": {
  4022. "dev-1.x": "1.x-dev"
  4023. },
  4024. "drupal": {
  4025. "version": "8.x-1.0-alpha14+23-dev",
  4026. "datestamp": "1543354380",
  4027. "security-coverage": {
  4028. "status": "not-covered",
  4029. "message": "Dev releases are not covered by Drupal security advisories."
  4030. }
  4031. }
  4032. },
  4033. "notification-url": "https://packages.drupal.org/8/downloads",
  4034. "license": [
  4035. "GPL-2.0-or-later"
  4036. ],
  4037. "authors": [
  4038. {
  4039. "name": "agentrickard",
  4040. "homepage": "https://www.drupal.org/user/20975"
  4041. },
  4042. {
  4043. "name": "nonsie",
  4044. "homepage": "https://www.drupal.org/user/29899"
  4045. }
  4046. ],
  4047. "description": "Maps multiple host requests to a single domain record.",
  4048. "homepage": "https://www.drupal.org/project/domain",
  4049. "support": {
  4050. "source": "http://cgit.drupalcode.org/domain"
  4051. }
  4052. },
  4053. {
  4054. "name": "drupal/domain_config",
  4055. "version": "dev-1.x",
  4056. "require": {
  4057. "drupal/core": "~8.0",
  4058. "drupal/domain": "self.version"
  4059. },
  4060. "type": "metapackage",
  4061. "extra": {
  4062. "branch-alias": {
  4063. "dev-1.x": "1.x-dev"
  4064. },
  4065. "drupal": {
  4066. "version": "8.x-1.0-alpha14+23-dev",
  4067. "datestamp": "1543354380",
  4068. "security-coverage": {
  4069. "status": "not-covered",
  4070. "message": "Dev releases are not covered by Drupal security advisories."
  4071. }
  4072. }
  4073. },
  4074. "notification-url": "https://packages.drupal.org/8/downloads",
  4075. "license": [
  4076. "GPL-2.0-or-later"
  4077. ],
  4078. "authors": [
  4079. {
  4080. "name": "agentrickard",
  4081. "homepage": "https://www.drupal.org/user/20975"
  4082. },
  4083. {
  4084. "name": "nonsie",
  4085. "homepage": "https://www.drupal.org/user/29899"
  4086. }
  4087. ],
  4088. "description": "Allows domain specific configuration.",
  4089. "homepage": "https://www.drupal.org/project/domain",
  4090. "support": {
  4091. "source": "http://cgit.drupalcode.org/domain"
  4092. }
  4093. },
  4094. {
  4095. "name": "drupal/domain_site_settings",
  4096. "version": "1.3.0",
  4097. "source": {
  4098. "type": "git",
  4099. "url": "https://git.drupal.org/project/domain_site_settings",
  4100. "reference": "8.x-1.3"
  4101. },
  4102. "dist": {
  4103. "type": "zip",
  4104. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  4105. "reference": "8.x-1.3",
  4106. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  4107. },
  4108. "require": {
  4109. "drupal/core": "~8.0",
  4110. "drupal/domain": "*",
  4111. "drupal/domain_config": "*"
  4112. },
  4113. "type": "drupal-module",
  4114. "extra": {
  4115. "branch-alias": {
  4116. "dev-1.x": "1.x-dev"
  4117. },
  4118. "drupal": {
  4119. "version": "8.x-1.3",
  4120. "datestamp": "1537684980",
  4121. "security-coverage": {
  4122. "status": "covered",
  4123. "message": "Covered by Drupal's security advisory policy"
  4124. }
  4125. }
  4126. },
  4127. "notification-url": "https://packages.drupal.org/8/downloads",
  4128. "license": [
  4129. "GPL-2.0+"
  4130. ],
  4131. "authors": [
  4132. {
  4133. "name": "aloknarwaria",
  4134. "homepage": "https://www.drupal.org/user/906640"
  4135. }
  4136. ],
  4137. "description": "Basic Site Setting for Domains.",
  4138. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4139. "keywords": [
  4140. "Drupal"
  4141. ],
  4142. "support": {
  4143. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4144. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4145. }
  4146. },
  4147. {
  4148. "name": "drupal/email_registration",
  4149. "version": "1.0.0-rc6",
  4150. "source": {
  4151. "type": "git",
  4152. "url": "https://git.drupal.org/project/email_registration",
  4153. "reference": "8.x-1.0-rc6"
  4154. },
  4155. "dist": {
  4156. "type": "zip",
  4157. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc6.zip",
  4158. "reference": "8.x-1.0-rc6",
  4159. "shasum": "b004bc24b79faaa9e8b2fe59a04eaab02f44c363"
  4160. },
  4161. "require": {
  4162. "drupal/core": "*"
  4163. },
  4164. "type": "drupal-module",
  4165. "extra": {
  4166. "branch-alias": {
  4167. "dev-1.x": "1.x-dev"
  4168. },
  4169. "drupal": {
  4170. "version": "8.x-1.0-rc6",
  4171. "datestamp": "1545350880",
  4172. "security-coverage": {
  4173. "status": "not-covered",
  4174. "message": "RC releases are not covered by Drupal security advisories."
  4175. }
  4176. }
  4177. },
  4178. "notification-url": "https://packages.drupal.org/8/downloads",
  4179. "license": [
  4180. "GPL-2.0+"
  4181. ],
  4182. "authors": [
  4183. {
  4184. "name": "Greg Knaddison (greggles)",
  4185. "homepage": "https://www.drupal.org/u/greggles",
  4186. "role": "Maintainer"
  4187. },
  4188. {
  4189. "name": "Andrey Postnikov (andypost)",
  4190. "homepage": "https://www.drupal.org/u/andypost",
  4191. "role": "Maintainer"
  4192. },
  4193. {
  4194. "name": "Chris Herberte",
  4195. "homepage": "https://www.drupal.org/u/chris-herberte",
  4196. "role": "Maintainer"
  4197. },
  4198. {
  4199. "name": "Moshe Weitzman (moshe weitzman)",
  4200. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4201. "role": "Maintainer"
  4202. }
  4203. ],
  4204. "description": "Allows users to register with an email address as their username.",
  4205. "homepage": "https://www.drupal.org/project/email_registration",
  4206. "support": {
  4207. "source": "http://cgit.drupalcode.org/email_registration",
  4208. "issues": "http://drupal.org/project/issues/email_registration"
  4209. }
  4210. },
  4211. {
  4212. "name": "drupal/embed",
  4213. "version": "1.0.0",
  4214. "source": {
  4215. "type": "git",
  4216. "url": "https://git.drupal.org/project/embed",
  4217. "reference": "8.x-1.0"
  4218. },
  4219. "dist": {
  4220. "type": "zip",
  4221. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip",
  4222. "reference": "8.x-1.0",
  4223. "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a"
  4224. },
  4225. "require": {
  4226. "drupal/core": "~8.0"
  4227. },
  4228. "type": "drupal-module",
  4229. "extra": {
  4230. "branch-alias": {
  4231. "dev-1.x": "1.x-dev"
  4232. },
  4233. "drupal": {
  4234. "version": "8.x-1.0",
  4235. "datestamp": "1490755685",
  4236. "security-coverage": {
  4237. "status": "covered",
  4238. "message": "Covered by Drupal's security advisory policy"
  4239. }
  4240. }
  4241. },
  4242. "notification-url": "https://packages.drupal.org/8/downloads",
  4243. "license": [
  4244. "GPL-2.0+"
  4245. ],
  4246. "authors": [
  4247. {
  4248. "name": "Dave Reid",
  4249. "homepage": "https://www.drupal.org/user/53892"
  4250. },
  4251. {
  4252. "name": "Devin Carlson",
  4253. "homepage": "https://www.drupal.org/user/290182"
  4254. },
  4255. {
  4256. "name": "Drupal Media Team",
  4257. "homepage": "https://www.drupal.org/user/3260690"
  4258. },
  4259. {
  4260. "name": "cs_shadow",
  4261. "homepage": "https://www.drupal.org/user/2828287"
  4262. },
  4263. {
  4264. "name": "slashrsm",
  4265. "homepage": "https://www.drupal.org/user/744628"
  4266. }
  4267. ],
  4268. "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.",
  4269. "homepage": "https://www.drupal.org/project/embed",
  4270. "support": {
  4271. "source": "http://cgit.drupalcode.org/embed",
  4272. "issues": "https://www.drupal.org/project/issues/embed",
  4273. "irc": "irc://irc.freenode.org/drupal-media"
  4274. }
  4275. },
  4276. {
  4277. "name": "drupal/entity",
  4278. "version": "1.0.0-rc1",
  4279. "source": {
  4280. "type": "git",
  4281. "url": "https://git.drupal.org/project/entity",
  4282. "reference": "8.x-1.0-rc1"
  4283. },
  4284. "dist": {
  4285. "type": "zip",
  4286. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc1.zip",
  4287. "reference": "8.x-1.0-rc1",
  4288. "shasum": "f2dcd7afd0d36b6f261b10a204057a5c801ad20b"
  4289. },
  4290. "require": {
  4291. "drupal/core": "^8.6"
  4292. },
  4293. "type": "drupal-module",
  4294. "extra": {
  4295. "branch-alias": {
  4296. "dev-1.x": "1.x-dev"
  4297. },
  4298. "drupal": {
  4299. "version": "8.x-1.0-rc1",
  4300. "datestamp": "1539272769",
  4301. "security-coverage": {
  4302. "status": "not-covered",
  4303. "message": "RC releases are not covered by Drupal security advisories."
  4304. }
  4305. }
  4306. },
  4307. "notification-url": "https://packages.drupal.org/8/downloads",
  4308. "license": [
  4309. "GPL-2.0+"
  4310. ],
  4311. "authors": [
  4312. {
  4313. "name": "Berdir",
  4314. "homepage": "https://www.drupal.org/user/214652"
  4315. },
  4316. {
  4317. "name": "bojanz",
  4318. "homepage": "https://www.drupal.org/user/86106"
  4319. },
  4320. {
  4321. "name": "dawehner",
  4322. "homepage": "https://www.drupal.org/user/99340"
  4323. },
  4324. {
  4325. "name": "dixon_",
  4326. "homepage": "https://www.drupal.org/user/239911"
  4327. },
  4328. {
  4329. "name": "fago",
  4330. "homepage": "https://www.drupal.org/user/16747"
  4331. }
  4332. ],
  4333. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4334. "homepage": "http://drupal.org/project/entity",
  4335. "support": {
  4336. "source": "http://cgit.drupalcode.org/entity"
  4337. }
  4338. },
  4339. {
  4340. "name": "drupal/entity_browser",
  4341. "version": "2.0.0",
  4342. "source": {
  4343. "type": "git",
  4344. "url": "https://git.drupal.org/project/entity_browser",
  4345. "reference": "8.x-2.0"
  4346. },
  4347. "dist": {
  4348. "type": "zip",
  4349. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0.zip",
  4350. "reference": "8.x-2.0",
  4351. "shasum": "683a7a252c947433c7b78bb838d6d8973c13cf77"
  4352. },
  4353. "require": {
  4354. "drupal/core": "~8.0"
  4355. },
  4356. "require-dev": {
  4357. "drupal/ctools": "*",
  4358. "drupal/inline_entity_form": "*",
  4359. "drupal/paragraphs": "*",
  4360. "drupal/token": "*"
  4361. },
  4362. "type": "drupal-module",
  4363. "extra": {
  4364. "branch-alias": {
  4365. "dev-2.x": "2.x-dev",
  4366. "dev-8.x-1.x": "8.1.x-dev"
  4367. },
  4368. "drupal": {
  4369. "version": "8.x-2.0",
  4370. "datestamp": "1536328684",
  4371. "security-coverage": {
  4372. "status": "covered",
  4373. "message": "Covered by Drupal's security advisory policy"
  4374. }
  4375. }
  4376. },
  4377. "notification-url": "https://packages.drupal.org/8/downloads",
  4378. "license": [
  4379. "GPL-2.0+"
  4380. ],
  4381. "authors": [
  4382. {
  4383. "name": "Janez Urevc",
  4384. "homepage": "https://github.com/slashrsm",
  4385. "role": "Maintainer"
  4386. },
  4387. {
  4388. "name": "Primoz Hmeljak",
  4389. "homepage": "https://github.com/primsi",
  4390. "role": "Maintainer"
  4391. },
  4392. {
  4393. "name": "See other contributors",
  4394. "homepage": "https://www.drupal.org/node/1943336/committers",
  4395. "role": "contributor"
  4396. },
  4397. {
  4398. "name": "Primsi",
  4399. "homepage": "https://www.drupal.org/user/282629"
  4400. },
  4401. {
  4402. "name": "marcingy",
  4403. "homepage": "https://www.drupal.org/user/77320"
  4404. },
  4405. {
  4406. "name": "samuel.mortenson",
  4407. "homepage": "https://www.drupal.org/user/2582268"
  4408. },
  4409. {
  4410. "name": "slashrsm",
  4411. "homepage": "https://www.drupal.org/user/744628"
  4412. }
  4413. ],
  4414. "description": "Entity browsing and selecting component.",
  4415. "homepage": "http://drupal.org/project/entity_browser",
  4416. "support": {
  4417. "source": "http://cgit.drupalcode.org/entity_browser",
  4418. "issues": "http://drupal.org/project/issues/entity_browser",
  4419. "irc": "irc://irc.freenode.org/drupal-contribute"
  4420. }
  4421. },
  4422. {
  4423. "name": "drupal/entity_browser_enhanced",
  4424. "version": "1.0.0-rc3",
  4425. "source": {
  4426. "type": "git",
  4427. "url": "https://git.drupal.org/project/entity_browser_enhanced",
  4428. "reference": "8.x-1.0-rc3"
  4429. },
  4430. "dist": {
  4431. "type": "zip",
  4432. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0-rc3.zip",
  4433. "reference": "8.x-1.0-rc3",
  4434. "shasum": "041a93dac5ec9f74a8834faee60995c4db7d1e65"
  4435. },
  4436. "require": {
  4437. "drupal/core": "~8.0",
  4438. "drupal/entity_browser": "*"
  4439. },
  4440. "type": "drupal-module",
  4441. "extra": {
  4442. "branch-alias": {
  4443. "dev-1.x": "1.x-dev",
  4444. "dev-8.x-1.x": "8.1.x-dev"
  4445. },
  4446. "drupal": {
  4447. "version": "8.x-1.0-rc3",
  4448. "datestamp": "1528884525",
  4449. "security-coverage": {
  4450. "status": "not-covered",
  4451. "message": "RC releases are not covered by Drupal security advisories."
  4452. }
  4453. }
  4454. },
  4455. "notification-url": "https://packages.drupal.org/8/downloads",
  4456. "license": [
  4457. "GPL-2.0-or-later"
  4458. ],
  4459. "authors": [
  4460. {
  4461. "name": "Vardot",
  4462. "homepage": "https://www.drupal.org/vardot",
  4463. "role": "Maintainer"
  4464. },
  4465. {
  4466. "name": "RajabNatshah",
  4467. "homepage": "https://www.drupal.org/user/1414312"
  4468. }
  4469. ],
  4470. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4471. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4472. "support": {
  4473. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4474. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4475. }
  4476. },
  4477. {
  4478. "name": "drupal/entity_clone",
  4479. "version": "1.0.0-beta1",
  4480. "source": {
  4481. "type": "git",
  4482. "url": "https://git.drupal.org/project/entity_clone",
  4483. "reference": "8.x-1.0-beta1"
  4484. },
  4485. "dist": {
  4486. "type": "zip",
  4487. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta1.zip",
  4488. "reference": "8.x-1.0-beta1",
  4489. "shasum": "d0ace20bbe1672fbe6d0cdd6da8f5b80cd156643"
  4490. },
  4491. "require": {
  4492. "drupal/core": "~8.0"
  4493. },
  4494. "type": "drupal-module",
  4495. "extra": {
  4496. "branch-alias": {
  4497. "dev-1.x": "1.x-dev"
  4498. },
  4499. "drupal": {
  4500. "version": "8.x-1.0-beta1",
  4501. "datestamp": "1546583284",
  4502. "security-coverage": {
  4503. "status": "not-covered",
  4504. "message": "Beta releases are not covered by Drupal security advisories."
  4505. }
  4506. }
  4507. },
  4508. "notification-url": "https://packages.drupal.org/8/downloads",
  4509. "license": [
  4510. "GPL-2.0-or-later"
  4511. ],
  4512. "authors": [
  4513. {
  4514. "name": "vpeltot",
  4515. "homepage": "https://www.drupal.org/user/1361586"
  4516. }
  4517. ],
  4518. "description": "Add a clone action for all entities",
  4519. "homepage": "https://www.drupal.org/project/entity_clone",
  4520. "support": {
  4521. "source": "http://cgit.drupalcode.org/entity_clone"
  4522. }
  4523. },
  4524. {
  4525. "name": "drupal/extlink",
  4526. "version": "1.1.0",
  4527. "source": {
  4528. "type": "git",
  4529. "url": "https://git.drupal.org/project/extlink",
  4530. "reference": "8.x-1.1"
  4531. },
  4532. "dist": {
  4533. "type": "zip",
  4534. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.1.zip",
  4535. "reference": "8.x-1.1",
  4536. "shasum": "0894f1cd12e2e1aa6b00ea4a6dd5e7234eb2b2b2"
  4537. },
  4538. "require": {
  4539. "drupal/core": "~8.0"
  4540. },
  4541. "type": "drupal-module",
  4542. "extra": {
  4543. "branch-alias": {
  4544. "dev-1.x": "1.x-dev"
  4545. },
  4546. "drupal": {
  4547. "version": "8.x-1.1",
  4548. "datestamp": "1524232684",
  4549. "security-coverage": {
  4550. "status": "covered",
  4551. "message": "Covered by Drupal's security advisory policy"
  4552. }
  4553. }
  4554. },
  4555. "notification-url": "https://packages.drupal.org/8/downloads",
  4556. "license": [
  4557. "GPL-2.0-or-later"
  4558. ],
  4559. "authors": [
  4560. {
  4561. "name": "elachlan",
  4562. "homepage": "https://www.drupal.org/user/1021502"
  4563. },
  4564. {
  4565. "name": "jjeff",
  4566. "homepage": "https://www.drupal.org/user/17190"
  4567. },
  4568. {
  4569. "name": "quicksketch",
  4570. "homepage": "https://www.drupal.org/user/35821"
  4571. }
  4572. ],
  4573. "description": "Modify behavior and appearance of external links.",
  4574. "homepage": "https://www.drupal.org/project/extlink",
  4575. "support": {
  4576. "source": "http://cgit.drupalcode.org/extlink"
  4577. }
  4578. },
  4579. {
  4580. "name": "drupal/field_group",
  4581. "version": "1.0.0",
  4582. "source": {
  4583. "type": "git",
  4584. "url": "https://git.drupal.org/project/field_group",
  4585. "reference": "8.x-1.0"
  4586. },
  4587. "dist": {
  4588. "type": "zip",
  4589. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-1.0.zip",
  4590. "reference": "8.x-1.0",
  4591. "shasum": "e8aa3fae5c3c5dec84644bb577996938d638a611"
  4592. },
  4593. "require": {
  4594. "drupal/core": "*"
  4595. },
  4596. "type": "drupal-module",
  4597. "extra": {
  4598. "branch-alias": {
  4599. "dev-1.x": "1.x-dev"
  4600. },
  4601. "drupal": {
  4602. "version": "8.x-1.0",
  4603. "datestamp": "1510352885",
  4604. "security-coverage": {
  4605. "status": "covered",
  4606. "message": "Covered by Drupal's security advisory policy"
  4607. }
  4608. }
  4609. },
  4610. "notification-url": "https://packages.drupal.org/8/downloads",
  4611. "license": [
  4612. "GPL-2.0+"
  4613. ],
  4614. "authors": [
  4615. {
  4616. "name": "Hydra",
  4617. "homepage": "https://www.drupal.org/user/647364"
  4618. },
  4619. {
  4620. "name": "Stalski",
  4621. "homepage": "https://www.drupal.org/user/322618"
  4622. },
  4623. {
  4624. "name": "jyve",
  4625. "homepage": "https://www.drupal.org/user/591438"
  4626. },
  4627. {
  4628. "name": "swentel",
  4629. "homepage": "https://www.drupal.org/user/107403"
  4630. },
  4631. {
  4632. "name": "zuuperman",
  4633. "homepage": "https://www.drupal.org/user/361625"
  4634. }
  4635. ],
  4636. "description": "Provides the field_group module.",
  4637. "homepage": "https://www.drupal.org/project/field_group",
  4638. "support": {
  4639. "source": "http://cgit.drupalcode.org/field_group"
  4640. }
  4641. },
  4642. {
  4643. "name": "drupal/file_mdm",
  4644. "version": "1.1.0",
  4645. "source": {
  4646. "type": "git",
  4647. "url": "https://git.drupal.org/project/file_mdm",
  4648. "reference": "8.x-1.1"
  4649. },
  4650. "dist": {
  4651. "type": "zip",
  4652. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-1.1.zip",
  4653. "reference": "8.x-1.1",
  4654. "shasum": "7f354aec6f89e3141c2aa1fb3747ad5d4578c13f"
  4655. },
  4656. "require": {
  4657. "drupal/core": "~8.0",
  4658. "lsolesen/pel": "0.9.6",
  4659. "phenx/php-font-lib": "0.5",
  4660. "php": ">=5.6"
  4661. },
  4662. "require-dev": {
  4663. "drupal/image_effects": "*"
  4664. },
  4665. "type": "drupal-module",
  4666. "extra": {
  4667. "branch-alias": {
  4668. "dev-1.x": "1.x-dev"
  4669. },
  4670. "drupal": {
  4671. "version": "8.x-1.1",
  4672. "datestamp": "1488273785",
  4673. "security-coverage": {
  4674. "status": "covered",
  4675. "message": "Covered by Drupal's security advisory policy"
  4676. }
  4677. }
  4678. },
  4679. "notification-url": "https://packages.drupal.org/8/downloads",
  4680. "license": [
  4681. "GPL-2.0-or-later"
  4682. ],
  4683. "authors": [
  4684. {
  4685. "name": "mondrake",
  4686. "homepage": "https://www.drupal.org/user/1307444"
  4687. }
  4688. ],
  4689. "description": "Provides a service to manage file metadata.",
  4690. "homepage": "https://www.drupal.org/project/file_mdm",
  4691. "support": {
  4692. "source": "http://cgit.drupalcode.org/file_mdm"
  4693. }
  4694. },
  4695. {
  4696. "name": "drupal/file_mdm_exif",
  4697. "version": "1.1.0",
  4698. "require": {
  4699. "drupal/core": "~8.0",
  4700. "drupal/file_mdm": "self.version"
  4701. },
  4702. "require-dev": {
  4703. "drupal/image_effects": "*"
  4704. },
  4705. "type": "metapackage",
  4706. "extra": {
  4707. "branch-alias": {
  4708. "dev-1.x": "1.x-dev"
  4709. },
  4710. "drupal": {
  4711. "version": "8.x-1.1",
  4712. "datestamp": "1488273785",
  4713. "security-coverage": {
  4714. "status": "covered",
  4715. "message": "Covered by Drupal's security advisory policy"
  4716. }
  4717. }
  4718. },
  4719. "notification-url": "https://packages.drupal.org/8/downloads",
  4720. "license": [
  4721. "GPL-2.0-or-later"
  4722. ],
  4723. "authors": [
  4724. {
  4725. "name": "mondrake",
  4726. "homepage": "https://www.drupal.org/user/1307444"
  4727. }
  4728. ],
  4729. "description": "Provides a file metadata plugin for EXIF image information.",
  4730. "homepage": "https://www.drupal.org/project/file_mdm",
  4731. "support": {
  4732. "source": "http://cgit.drupalcode.org/file_mdm"
  4733. }
  4734. },
  4735. {
  4736. "name": "drupal/filefield_sources",
  4737. "version": "dev-1.x",
  4738. "source": {
  4739. "type": "git",
  4740. "url": "https://git.drupal.org/project/filefield_sources",
  4741. "reference": "b19c6a839804f47587828d4a50e29e0720fa4c08"
  4742. },
  4743. "require": {
  4744. "drupal/core": "*"
  4745. },
  4746. "type": "drupal-module",
  4747. "extra": {
  4748. "branch-alias": {
  4749. "dev-1.x": "1.x-dev"
  4750. },
  4751. "drupal": {
  4752. "version": "8.x-1.x-dev",
  4753. "datestamp": "1487711283",
  4754. "security-coverage": {
  4755. "status": "not-covered",
  4756. "message": "Dev releases are not covered by Drupal security advisories."
  4757. }
  4758. }
  4759. },
  4760. "notification-url": "https://packages.drupal.org/8/downloads",
  4761. "license": [
  4762. "GPL-2.0-or-later"
  4763. ],
  4764. "authors": [
  4765. {
  4766. "name": "profak",
  4767. "homepage": "https://www.drupal.org/user/782534"
  4768. },
  4769. {
  4770. "name": "quicksketch",
  4771. "homepage": "https://www.drupal.org/user/35821"
  4772. }
  4773. ],
  4774. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4775. "homepage": "https://www.drupal.org/project/filefield_sources",
  4776. "support": {
  4777. "source": "http://cgit.drupalcode.org/filefield_sources"
  4778. },
  4779. "time": "2017-02-21T21:07:00+00:00"
  4780. },
  4781. {
  4782. "name": "drupal/filter_perms",
  4783. "version": "dev-1.x",
  4784. "source": {
  4785. "type": "git",
  4786. "url": "https://git.drupal.org/project/filter_perms",
  4787. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4788. },
  4789. "require": {
  4790. "drupal/core": "*"
  4791. },
  4792. "type": "drupal-module",
  4793. "extra": {
  4794. "branch-alias": {
  4795. "dev-1.x": "1.x-dev"
  4796. },
  4797. "drupal": {
  4798. "version": "8.x-1.x-dev",
  4799. "datestamp": "1469645939",
  4800. "security-coverage": {
  4801. "status": "not-covered",
  4802. "message": "Dev releases are not covered by Drupal security advisories."
  4803. }
  4804. }
  4805. },
  4806. "notification-url": "https://packages.drupal.org/8/downloads",
  4807. "license": [
  4808. "GPL-2.0-or-later"
  4809. ],
  4810. "authors": [
  4811. {
  4812. "name": "cYu",
  4813. "homepage": "https://www.drupal.org/user/202205"
  4814. },
  4815. {
  4816. "name": "deekayen",
  4817. "homepage": "https://www.drupal.org/user/972"
  4818. },
  4819. {
  4820. "name": "willzyx",
  4821. "homepage": "https://www.drupal.org/user/1043862"
  4822. }
  4823. ],
  4824. "description": "Provides role and module filters to simplify the user permissions page.",
  4825. "homepage": "https://www.drupal.org/project/filter_perms",
  4826. "support": {
  4827. "source": "http://cgit.drupalcode.org/filter_perms"
  4828. },
  4829. "time": "2016-07-27T19:01:11+00:00"
  4830. },
  4831. {
  4832. "name": "drupal/honeypot",
  4833. "version": "1.29.0",
  4834. "source": {
  4835. "type": "git",
  4836. "url": "https://git.drupal.org/project/honeypot",
  4837. "reference": "8.x-1.29"
  4838. },
  4839. "dist": {
  4840. "type": "zip",
  4841. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4842. "reference": "8.x-1.29",
  4843. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4844. },
  4845. "require": {
  4846. "drupal/core": "~8.0"
  4847. },
  4848. "type": "drupal-module",
  4849. "extra": {
  4850. "branch-alias": {
  4851. "dev-1.x": "1.x-dev"
  4852. },
  4853. "drupal": {
  4854. "version": "8.x-1.29",
  4855. "datestamp": "1536179280",
  4856. "security-coverage": {
  4857. "status": "covered",
  4858. "message": "Covered by Drupal's security advisory policy"
  4859. }
  4860. }
  4861. },
  4862. "notification-url": "https://packages.drupal.org/8/downloads",
  4863. "license": [
  4864. "GPL-2.0+"
  4865. ],
  4866. "authors": [
  4867. {
  4868. "name": "Jeff Geerling",
  4869. "homepage": "https://www.drupal.org/user/389011",
  4870. "email": "geerlingguy@mac.com"
  4871. }
  4872. ],
  4873. "description": "Mitigates spam form submissions using the honeypot method.",
  4874. "homepage": "https://www.drupal.org/project/honeypot",
  4875. "keywords": [
  4876. "deterrent",
  4877. "form",
  4878. "honeypot",
  4879. "honeytrap",
  4880. "php",
  4881. "spam"
  4882. ],
  4883. "support": {
  4884. "source": "http://cgit.drupalcode.org/honeypot"
  4885. }
  4886. },
  4887. {
  4888. "name": "drupal/imagemagick",
  4889. "version": "2.3.0",
  4890. "source": {
  4891. "type": "git",
  4892. "url": "https://git.drupal.org/project/imagemagick",
  4893. "reference": "8.x-2.3"
  4894. },
  4895. "dist": {
  4896. "type": "zip",
  4897. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-2.3.zip",
  4898. "reference": "8.x-2.3",
  4899. "shasum": "8359921d4700e954364c2633332c20579bb75a34"
  4900. },
  4901. "require": {
  4902. "drupal/core": "^8.3",
  4903. "drupal/file_mdm": "^1.1",
  4904. "drupal/file_mdm_exif": "^1.1"
  4905. },
  4906. "type": "drupal-module",
  4907. "extra": {
  4908. "branch-alias": {
  4909. "dev-2.x": "2.x-dev"
  4910. },
  4911. "drupal": {
  4912. "version": "8.x-2.3",
  4913. "datestamp": "1520958305",
  4914. "security-coverage": {
  4915. "status": "covered",
  4916. "message": "Covered by Drupal's security advisory policy"
  4917. }
  4918. }
  4919. },
  4920. "notification-url": "https://packages.drupal.org/8/downloads",
  4921. "license": [
  4922. "GPL-2.0-or-later"
  4923. ],
  4924. "authors": [
  4925. {
  4926. "name": "Chris Charlton",
  4927. "homepage": "https://www.drupal.org/user/17089"
  4928. },
  4929. {
  4930. "name": "chx",
  4931. "homepage": "https://www.drupal.org/user/9446"
  4932. },
  4933. {
  4934. "name": "claudiu.cristea",
  4935. "homepage": "https://www.drupal.org/user/56348"
  4936. },
  4937. {
  4938. "name": "dman",
  4939. "homepage": "https://www.drupal.org/user/33240"
  4940. },
  4941. {
  4942. "name": "dopry",
  4943. "homepage": "https://www.drupal.org/user/22202"
  4944. },
  4945. {
  4946. "name": "drewish",
  4947. "homepage": "https://www.drupal.org/user/34869"
  4948. },
  4949. {
  4950. "name": "gdl",
  4951. "homepage": "https://www.drupal.org/user/507326"
  4952. },
  4953. {
  4954. "name": "mondrake",
  4955. "homepage": "https://www.drupal.org/user/1307444"
  4956. },
  4957. {
  4958. "name": "quicksketch",
  4959. "homepage": "https://www.drupal.org/user/35821"
  4960. },
  4961. {
  4962. "name": "sun",
  4963. "homepage": "https://www.drupal.org/user/54136"
  4964. },
  4965. {
  4966. "name": "walkah",
  4967. "homepage": "https://www.drupal.org/user/1531"
  4968. }
  4969. ],
  4970. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4971. "homepage": "https://www.drupal.org/project/imagemagick",
  4972. "support": {
  4973. "source": "http://cgit.drupalcode.org/imagemagick"
  4974. }
  4975. },
  4976. {
  4977. "name": "drupal/inline_entity_form",
  4978. "version": "1.0.0-rc1",
  4979. "source": {
  4980. "type": "git",
  4981. "url": "https://git.drupal.org/project/inline_entity_form",
  4982. "reference": "8.x-1.0-rc1"
  4983. },
  4984. "dist": {
  4985. "type": "zip",
  4986. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc1.zip",
  4987. "reference": "8.x-1.0-rc1",
  4988. "shasum": "898789fb6a0662fc2572b87f8d0654a0241473f9"
  4989. },
  4990. "require": {
  4991. "drupal/core": "~8.0"
  4992. },
  4993. "require-dev": {
  4994. "drupal/entity_reference_revisions": "*"
  4995. },
  4996. "type": "drupal-module",
  4997. "extra": {
  4998. "branch-alias": {
  4999. "dev-1.x": "1.x-dev"
  5000. },
  5001. "drupal": {
  5002. "version": "8.x-1.0-rc1",
  5003. "datestamp": "1527030784",
  5004. "security-coverage": {
  5005. "status": "not-covered",
  5006. "message": "RC releases are not covered by Drupal security advisories."
  5007. }
  5008. }
  5009. },
  5010. "notification-url": "https://packages.drupal.org/8/downloads",
  5011. "license": [
  5012. "GPL-2.0+"
  5013. ],
  5014. "authors": [
  5015. {
  5016. "name": "bojanz",
  5017. "homepage": "https://www.drupal.org/user/86106"
  5018. },
  5019. {
  5020. "name": "dawehner",
  5021. "homepage": "https://www.drupal.org/user/99340"
  5022. },
  5023. {
  5024. "name": "rszrama",
  5025. "homepage": "https://www.drupal.org/user/49344"
  5026. },
  5027. {
  5028. "name": "slashrsm",
  5029. "homepage": "https://www.drupal.org/user/744628"
  5030. },
  5031. {
  5032. "name": "webflo",
  5033. "homepage": "https://www.drupal.org/user/254778"
  5034. }
  5035. ],
  5036. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5037. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5038. "support": {
  5039. "source": "http://cgit.drupalcode.org/inline_entity_form"
  5040. }
  5041. },
  5042. {
  5043. "name": "drupal/kint",
  5044. "version": "2.0.0",
  5045. "require": {
  5046. "drupal/core": "~8.0",
  5047. "drupal/devel": "self.version"
  5048. },
  5049. "type": "metapackage",
  5050. "extra": {
  5051. "branch-alias": {
  5052. "dev-2.x": "2.x-dev"
  5053. },
  5054. "drupal": {
  5055. "version": "8.x-2.0",
  5056. "datestamp": "1548799380",
  5057. "security-coverage": {
  5058. "status": "covered",
  5059. "message": "Covered by Drupal's security advisory policy"
  5060. }
  5061. }
  5062. },
  5063. "notification-url": "https://packages.drupal.org/8/downloads",
  5064. "license": [
  5065. "GPL-2.0-or-later"
  5066. ],
  5067. "authors": [
  5068. {
  5069. "name": "catch",
  5070. "homepage": "https://www.drupal.org/user/35733"
  5071. },
  5072. {
  5073. "name": "juampynr",
  5074. "homepage": "https://www.drupal.org/user/682736"
  5075. },
  5076. {
  5077. "name": "lussoluca",
  5078. "homepage": "https://www.drupal.org/user/138068"
  5079. },
  5080. {
  5081. "name": "moshe weitzman",
  5082. "homepage": "https://www.drupal.org/user/23"
  5083. },
  5084. {
  5085. "name": "pcambra",
  5086. "homepage": "https://www.drupal.org/user/122101"
  5087. },
  5088. {
  5089. "name": "salvis",
  5090. "homepage": "https://www.drupal.org/user/82964"
  5091. },
  5092. {
  5093. "name": "willzyx",
  5094. "homepage": "https://www.drupal.org/user/1043862"
  5095. }
  5096. ],
  5097. "description": "Wrapper for Kint debugging tool",
  5098. "homepage": "https://www.drupal.org/project/devel",
  5099. "support": {
  5100. "source": "http://cgit.drupalcode.org/devel"
  5101. }
  5102. },
  5103. {
  5104. "name": "drupal/link_attributes",
  5105. "version": "1.5.0",
  5106. "source": {
  5107. "type": "git",
  5108. "url": "https://git.drupal.org/project/link_attributes",
  5109. "reference": "8.x-1.5"
  5110. },
  5111. "dist": {
  5112. "type": "zip",
  5113. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.5.zip",
  5114. "reference": "8.x-1.5",
  5115. "shasum": "48c0e6ac2c3f4843372abb394c1aabe380dfa604"
  5116. },
  5117. "require": {
  5118. "drupal/core": "*"
  5119. },
  5120. "type": "drupal-module",
  5121. "extra": {
  5122. "branch-alias": {
  5123. "dev-1.x": "1.x-dev"
  5124. },
  5125. "drupal": {
  5126. "version": "8.x-1.5",
  5127. "datestamp": "1537173781",
  5128. "security-coverage": {
  5129. "status": "covered",
  5130. "message": "Covered by Drupal's security advisory policy"
  5131. }
  5132. }
  5133. },
  5134. "notification-url": "https://packages.drupal.org/8/downloads",
  5135. "license": [
  5136. "GPL-2.0-or-later"
  5137. ],
  5138. "authors": [
  5139. {
  5140. "name": "larowlan",
  5141. "homepage": "https://www.drupal.org/user/395439"
  5142. }
  5143. ],
  5144. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5145. "homepage": "https://www.drupal.org/project/link_attributes",
  5146. "support": {
  5147. "source": "http://cgit.drupalcode.org/link_attributes"
  5148. }
  5149. },
  5150. {
  5151. "name": "drupal/linkit",
  5152. "version": "4.3.0",
  5153. "source": {
  5154. "type": "git",
  5155. "url": "https://git.drupal.org/project/linkit",
  5156. "reference": "8.x-4.3"
  5157. },
  5158. "dist": {
  5159. "type": "zip",
  5160. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  5161. "reference": "8.x-4.3",
  5162. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  5163. },
  5164. "require": {
  5165. "drupal/core": "~8.0"
  5166. },
  5167. "type": "drupal-module",
  5168. "extra": {
  5169. "branch-alias": {
  5170. "dev-4.x": "4.x-dev"
  5171. },
  5172. "drupal": {
  5173. "version": "8.x-4.3",
  5174. "datestamp": "1490205830",
  5175. "security-coverage": {
  5176. "status": "covered",
  5177. "message": "Covered by Drupal's security advisory policy"
  5178. }
  5179. }
  5180. },
  5181. "notification-url": "https://packages.drupal.org/8/downloads",
  5182. "license": [
  5183. "GPL-2.0+"
  5184. ],
  5185. "authors": [
  5186. {
  5187. "name": "Emil Stjerneman",
  5188. "homepage": "https://stjerneman.com",
  5189. "email": "emil@stjerneman.com",
  5190. "role": "Maintainer"
  5191. }
  5192. ],
  5193. "description": "Linkit - Enriched linking experience",
  5194. "homepage": "http://drupal.org/project/linkit",
  5195. "support": {
  5196. "source": "http://cgit.drupalcode.org/linkit",
  5197. "issues": "http://drupal.org/project/linkit"
  5198. }
  5199. },
  5200. {
  5201. "name": "drupal/login_destination",
  5202. "version": "dev-1.x",
  5203. "source": {
  5204. "type": "git",
  5205. "url": "https://git.drupal.org/project/login_destination",
  5206. "reference": "54be8b89fdc073ca40af6b9b2eeb050e0aeb7908"
  5207. },
  5208. "require": {
  5209. "drupal/core": "~8.0"
  5210. },
  5211. "type": "drupal-module",
  5212. "extra": {
  5213. "branch-alias": {
  5214. "dev-1.x": "1.x-dev"
  5215. },
  5216. "drupal": {
  5217. "version": "8.x-1.x-dev",
  5218. "datestamp": "1514805485",
  5219. "security-coverage": {
  5220. "status": "not-covered",
  5221. "message": "Dev releases are not covered by Drupal security advisories."
  5222. }
  5223. }
  5224. },
  5225. "notification-url": "https://packages.drupal.org/8/downloads",
  5226. "license": [
  5227. "GPL-2.0-or-later"
  5228. ],
  5229. "authors": [
  5230. {
  5231. "name": "Oliver Huynh",
  5232. "homepage": "https://www.drupal.org/user/243730"
  5233. },
  5234. {
  5235. "name": "akashjain132",
  5236. "homepage": "https://www.drupal.org/user/2622667"
  5237. },
  5238. {
  5239. "name": "beautifulmind",
  5240. "homepage": "https://www.drupal.org/user/219482"
  5241. },
  5242. {
  5243. "name": "ddrozdik",
  5244. "homepage": "https://www.drupal.org/user/574124"
  5245. },
  5246. {
  5247. "name": "jng12",
  5248. "homepage": "https://www.drupal.org/user/204316"
  5249. },
  5250. {
  5251. "name": "marcp",
  5252. "homepage": "https://www.drupal.org/user/20885"
  5253. },
  5254. {
  5255. "name": "mithy",
  5256. "homepage": "https://www.drupal.org/user/258911"
  5257. },
  5258. {
  5259. "name": "moshe weitzman",
  5260. "homepage": "https://www.drupal.org/user/23"
  5261. },
  5262. {
  5263. "name": "quantumized",
  5264. "homepage": "https://www.drupal.org/user/61221"
  5265. },
  5266. {
  5267. "name": "rsvelko",
  5268. "homepage": "https://www.drupal.org/user/337401"
  5269. }
  5270. ],
  5271. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  5272. "homepage": "https://www.drupal.org/project/login_destination",
  5273. "support": {
  5274. "source": "http://cgit.drupalcode.org/login_destination"
  5275. },
  5276. "time": "2018-01-01T11:13:09+00:00"
  5277. },
  5278. {
  5279. "name": "drupal/maillog",
  5280. "version": "dev-1.x",
  5281. "source": {
  5282. "type": "git",
  5283. "url": "https://git.drupal.org/project/maillog",
  5284. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  5285. },
  5286. "require": {
  5287. "drupal/core": "*"
  5288. },
  5289. "type": "drupal-module",
  5290. "extra": {
  5291. "branch-alias": {
  5292. "dev-1.x": "1.x-dev"
  5293. },
  5294. "drupal": {
  5295. "version": "8.x-1.x-dev",
  5296. "datestamp": "1470431939",
  5297. "security-coverage": {
  5298. "status": "not-covered",
  5299. "message": "Project has not opted into security advisory coverage!"
  5300. }
  5301. }
  5302. },
  5303. "notification-url": "https://packages.drupal.org/8/downloads",
  5304. "license": [
  5305. "GPL-2.0-or-later"
  5306. ],
  5307. "authors": [
  5308. {
  5309. "name": "Berdir",
  5310. "homepage": "https://www.drupal.org/user/214652"
  5311. },
  5312. {
  5313. "name": "DamienMcKenna",
  5314. "homepage": "https://www.drupal.org/user/108450"
  5315. },
  5316. {
  5317. "name": "miro_dietiker",
  5318. "homepage": "https://www.drupal.org/user/227761"
  5319. },
  5320. {
  5321. "name": "pluess",
  5322. "homepage": "https://www.drupal.org/user/84659"
  5323. }
  5324. ],
  5325. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5326. "homepage": "https://www.drupal.org/project/maillog",
  5327. "support": {
  5328. "source": "http://cgit.drupalcode.org/maillog"
  5329. },
  5330. "time": "2016-08-05T21:18:07+00:00"
  5331. },
  5332. {
  5333. "name": "drupal/mailsystem",
  5334. "version": "4.1.0",
  5335. "source": {
  5336. "type": "git",
  5337. "url": "https://git.drupal.org/project/mailsystem",
  5338. "reference": "8.x-4.1"
  5339. },
  5340. "dist": {
  5341. "type": "zip",
  5342. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.1.zip",
  5343. "reference": "8.x-4.1",
  5344. "shasum": "318b87f1fdf96e6db30b04a98108af02a0fc3dcc"
  5345. },
  5346. "require": {
  5347. "drupal/core": "^8.0.5"
  5348. },
  5349. "type": "drupal-module",
  5350. "extra": {
  5351. "branch-alias": {
  5352. "dev-4.x": "4.x-dev"
  5353. },
  5354. "drupal": {
  5355. "version": "8.x-4.1",
  5356. "datestamp": "1467993646",
  5357. "security-coverage": {
  5358. "status": "covered",
  5359. "message": "Covered by Drupal's security advisory policy"
  5360. }
  5361. }
  5362. },
  5363. "notification-url": "https://packages.drupal.org/8/downloads",
  5364. "license": [
  5365. "GPL-2.0+"
  5366. ],
  5367. "authors": [
  5368. {
  5369. "name": "Berdir",
  5370. "homepage": "https://www.drupal.org/user/214652"
  5371. },
  5372. {
  5373. "name": "Les Lim",
  5374. "homepage": "https://www.drupal.org/user/84263"
  5375. },
  5376. {
  5377. "name": "Nafes",
  5378. "homepage": "https://www.drupal.org/user/2489926"
  5379. },
  5380. {
  5381. "name": "miro_dietiker",
  5382. "homepage": "https://www.drupal.org/user/227761"
  5383. },
  5384. {
  5385. "name": "pillarsdotnet",
  5386. "homepage": "https://www.drupal.org/user/36148"
  5387. }
  5388. ],
  5389. "description": "Mail System",
  5390. "homepage": "https://www.drupal.org/project/mailsystem",
  5391. "support": {
  5392. "source": "http://cgit.drupalcode.org/mailsystem"
  5393. }
  5394. },
  5395. {
  5396. "name": "drupal/matomo",
  5397. "version": "1.9.0",
  5398. "source": {
  5399. "type": "git",
  5400. "url": "https://git.drupal.org/project/matomo",
  5401. "reference": "8.x-1.9"
  5402. },
  5403. "dist": {
  5404. "type": "zip",
  5405. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  5406. "reference": "8.x-1.9",
  5407. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  5408. },
  5409. "require": {
  5410. "drupal/core": "~8.5"
  5411. },
  5412. "require-dev": {
  5413. "drupal/php": "*",
  5414. "drupal/token": "*"
  5415. },
  5416. "type": "drupal-module",
  5417. "extra": {
  5418. "branch-alias": {
  5419. "dev-1.x": "1.x-dev"
  5420. },
  5421. "drupal": {
  5422. "version": "8.x-1.9",
  5423. "datestamp": "1549615080",
  5424. "security-coverage": {
  5425. "status": "covered",
  5426. "message": "Covered by Drupal's security advisory policy"
  5427. }
  5428. }
  5429. },
  5430. "notification-url": "https://packages.drupal.org/8/downloads",
  5431. "license": [
  5432. "GPL-2.0+"
  5433. ],
  5434. "authors": [
  5435. {
  5436. "name": "hass",
  5437. "homepage": "https://www.drupal.org/u/hass"
  5438. },
  5439. {
  5440. "name": "See other contributors",
  5441. "homepage": "https://www.drupal.org/node/247808/committers"
  5442. }
  5443. ],
  5444. "description": "Adds Matomo javascript tracking code to all your site's pages",
  5445. "homepage": "https://www.drupal.org/project/matomo",
  5446. "support": {
  5447. "source": "https://git.drupal.org/project/matomo.git",
  5448. "issues": "https://www.drupal.org/project/issues/matomo"
  5449. }
  5450. },
  5451. {
  5452. "name": "drupal/maxlength",
  5453. "version": "1.0.0-beta2",
  5454. "source": {
  5455. "type": "git",
  5456. "url": "https://git.drupal.org/project/maxlength",
  5457. "reference": "8.x-1.0-beta2"
  5458. },
  5459. "dist": {
  5460. "type": "zip",
  5461. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-beta2.zip",
  5462. "reference": "8.x-1.0-beta2",
  5463. "shasum": "27f7374e55ebdcc696d22d98be8cf4cf9bf58204"
  5464. },
  5465. "require": {
  5466. "drupal/core": "~8.0"
  5467. },
  5468. "type": "drupal-module",
  5469. "extra": {
  5470. "branch-alias": {
  5471. "dev-1.x": "1.x-dev"
  5472. },
  5473. "drupal": {
  5474. "version": "8.x-1.0-beta2",
  5475. "datestamp": "1527856384",
  5476. "security-coverage": {
  5477. "status": "not-covered",
  5478. "message": "Beta releases are not covered by Drupal security advisories."
  5479. }
  5480. }
  5481. },
  5482. "notification-url": "https://packages.drupal.org/8/downloads",
  5483. "license": [
  5484. "GPL-2.0-or-later"
  5485. ],
  5486. "authors": [
  5487. {
  5488. "name": "Aron Novak",
  5489. "homepage": "https://www.drupal.org/user/61864"
  5490. },
  5491. {
  5492. "name": "Schnitzel",
  5493. "homepage": "https://www.drupal.org/user/643820"
  5494. },
  5495. {
  5496. "name": "a_c_m",
  5497. "homepage": "https://www.drupal.org/user/195063"
  5498. },
  5499. {
  5500. "name": "artur.thiessen",
  5501. "homepage": "https://www.drupal.org/user/2390554"
  5502. },
  5503. {
  5504. "name": "barneytech",
  5505. "homepage": "https://www.drupal.org/user/669922"
  5506. },
  5507. {
  5508. "name": "claudiu_cristea",
  5509. "homepage": "https://www.drupal.org/user/2623935"
  5510. },
  5511. {
  5512. "name": "dawehner",
  5513. "homepage": "https://www.drupal.org/user/99340"
  5514. },
  5515. {
  5516. "name": "derhasi",
  5517. "homepage": "https://www.drupal.org/user/83474"
  5518. },
  5519. {
  5520. "name": "frjo",
  5521. "homepage": "https://www.drupal.org/user/5546"
  5522. },
  5523. {
  5524. "name": "hefox",
  5525. "homepage": "https://www.drupal.org/user/426416"
  5526. },
  5527. {
  5528. "name": "jm.federico",
  5529. "homepage": "https://www.drupal.org/user/509892"
  5530. },
  5531. {
  5532. "name": "k4v",
  5533. "homepage": "https://www.drupal.org/user/744246"
  5534. },
  5535. {
  5536. "name": "mariano73",
  5537. "homepage": "https://www.drupal.org/user/1324866"
  5538. },
  5539. {
  5540. "name": "mariuss",
  5541. "homepage": "https://www.drupal.org/user/28539"
  5542. },
  5543. {
  5544. "name": "sanduhrs",
  5545. "homepage": "https://www.drupal.org/user/28074"
  5546. },
  5547. {
  5548. "name": "vasi1186",
  5549. "homepage": "https://www.drupal.org/user/342104"
  5550. }
  5551. ],
  5552. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  5553. "homepage": "https://www.drupal.org/project/maxlength",
  5554. "support": {
  5555. "source": "http://cgit.drupalcode.org/maxlength"
  5556. }
  5557. },
  5558. {
  5559. "name": "drupal/menu_admin_per_menu",
  5560. "version": "1.0.0",
  5561. "source": {
  5562. "type": "git",
  5563. "url": "https://git.drupal.org/project/menu_admin_per_menu",
  5564. "reference": "8.x-1.0"
  5565. },
  5566. "dist": {
  5567. "type": "zip",
  5568. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  5569. "reference": "8.x-1.0",
  5570. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  5571. },
  5572. "require": {
  5573. "drupal/core": "*"
  5574. },
  5575. "type": "drupal-module",
  5576. "extra": {
  5577. "branch-alias": {
  5578. "dev-1.x": "1.x-dev"
  5579. },
  5580. "drupal": {
  5581. "version": "8.x-1.0",
  5582. "datestamp": "1507184944",
  5583. "security-coverage": {
  5584. "status": "covered",
  5585. "message": "Covered by Drupal's security advisory policy"
  5586. }
  5587. }
  5588. },
  5589. "notification-url": "https://packages.drupal.org/8/downloads",
  5590. "license": [
  5591. "GPL-2.0-or-later"
  5592. ],
  5593. "authors": [
  5594. {
  5595. "name": "anrikun",
  5596. "homepage": "https://www.drupal.org/user/410199"
  5597. },
  5598. {
  5599. "name": "mkdok",
  5600. "homepage": "https://www.drupal.org/user/3308753"
  5601. }
  5602. ],
  5603. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5604. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5605. "support": {
  5606. "source": "http://cgit.drupalcode.org/menu_admin_per_menu"
  5607. }
  5608. },
  5609. {
  5610. "name": "drupal/menu_block",
  5611. "version": "1.5.0",
  5612. "source": {
  5613. "type": "git",
  5614. "url": "https://git.drupal.org/project/menu_block",
  5615. "reference": "8.x-1.5"
  5616. },
  5617. "dist": {
  5618. "type": "zip",
  5619. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip",
  5620. "reference": "8.x-1.5",
  5621. "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b"
  5622. },
  5623. "require": {
  5624. "drupal/core": "*"
  5625. },
  5626. "type": "drupal-module",
  5627. "extra": {
  5628. "branch-alias": {
  5629. "dev-1.x": "1.x-dev"
  5630. },
  5631. "drupal": {
  5632. "version": "8.x-1.5",
  5633. "datestamp": "1525200184",
  5634. "security-coverage": {
  5635. "status": "covered",
  5636. "message": "Covered by Drupal's security advisory policy"
  5637. }
  5638. }
  5639. },
  5640. "notification-url": "https://packages.drupal.org/8/downloads",
  5641. "license": [
  5642. "GPL-2.0-or-later"
  5643. ],
  5644. "authors": [
  5645. {
  5646. "name": "Dave Reid",
  5647. "homepage": "https://www.drupal.org/user/53892"
  5648. },
  5649. {
  5650. "name": "JohnAlbin",
  5651. "homepage": "https://www.drupal.org/user/32095"
  5652. },
  5653. {
  5654. "name": "joelpittet",
  5655. "homepage": "https://www.drupal.org/user/160302"
  5656. },
  5657. {
  5658. "name": "kim.pepper",
  5659. "homepage": "https://www.drupal.org/user/370574"
  5660. },
  5661. {
  5662. "name": "rrrob",
  5663. "homepage": "https://www.drupal.org/user/273533"
  5664. }
  5665. ],
  5666. "description": "Provides configurable blocks of menu links.",
  5667. "homepage": "https://www.drupal.org/project/menu_block",
  5668. "support": {
  5669. "source": "http://cgit.drupalcode.org/menu_block"
  5670. }
  5671. },
  5672. {
  5673. "name": "drupal/menu_position",
  5674. "version": "dev-1.x",
  5675. "source": {
  5676. "type": "git",
  5677. "url": "https://git.drupal.org/project/menu_position",
  5678. "reference": "552e5b1fc5baaec4d0496dd1c67df710093beccb"
  5679. },
  5680. "require": {
  5681. "drupal/core": "~8.0"
  5682. },
  5683. "type": "drupal-module",
  5684. "extra": {
  5685. "branch-alias": {
  5686. "dev-1.x": "1.x-dev"
  5687. },
  5688. "drupal": {
  5689. "version": "8.x-1.x-dev",
  5690. "datestamp": "1546518480",
  5691. "security-coverage": {
  5692. "status": "not-covered",
  5693. "message": "Dev releases are not covered by Drupal security advisories."
  5694. }
  5695. }
  5696. },
  5697. "notification-url": "https://packages.drupal.org/8/downloads",
  5698. "license": [
  5699. "GPL-2.0+"
  5700. ],
  5701. "authors": [
  5702. {
  5703. "name": "BarisW",
  5704. "homepage": "https://www.drupal.org/user/107229"
  5705. },
  5706. {
  5707. "name": "JohnAlbin",
  5708. "homepage": "https://www.drupal.org/user/32095"
  5709. },
  5710. {
  5711. "name": "lbainbridge",
  5712. "homepage": "https://www.drupal.org/user/2406996"
  5713. }
  5714. ],
  5715. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5716. "homepage": "https://www.drupal.org/project/menu_position",
  5717. "support": {
  5718. "source": "http://cgit.drupalcode.org/menu_position",
  5719. "issues": "https://www.drupal.org/project/issues/menu_position"
  5720. },
  5721. "time": "2019-01-03T12:23:26+00:00"
  5722. },
  5723. {
  5724. "name": "drupal/migrate_plus",
  5725. "version": "dev-4.x",
  5726. "source": {
  5727. "type": "git",
  5728. "url": "https://git.drupal.org/project/migrate_plus",
  5729. "reference": "022baac45c5b1d630b18cd90e1648d0932cc3478"
  5730. },
  5731. "require": {
  5732. "drupal/core": "^8.3"
  5733. },
  5734. "require-dev": {
  5735. "drupal/migrate_example_advanced_setup": "*",
  5736. "drupal/migrate_example_setup": "*",
  5737. "drupal/migrate_tools": "*"
  5738. },
  5739. "suggest": {
  5740. "ext-soap": "*",
  5741. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  5742. },
  5743. "type": "drupal-module",
  5744. "extra": {
  5745. "branch-alias": {
  5746. "dev-4.x": "4.x-dev"
  5747. },
  5748. "drupal": {
  5749. "version": "8.x-4.0+17-dev",
  5750. "datestamp": "1546539780",
  5751. "security-coverage": {
  5752. "status": "not-covered",
  5753. "message": "Dev releases are not covered by Drupal security advisories."
  5754. }
  5755. }
  5756. },
  5757. "notification-url": "https://packages.drupal.org/8/downloads",
  5758. "license": [
  5759. "GPL-2.0+"
  5760. ],
  5761. "authors": [
  5762. {
  5763. "name": "Mike Ryan",
  5764. "homepage": "https://www.drupal.org/u/mikeryan",
  5765. "role": "Maintainer"
  5766. },
  5767. {
  5768. "name": "mikeryan",
  5769. "homepage": "https://www.drupal.org/user/4420"
  5770. }
  5771. ],
  5772. "description": "Enhancements to core migration support.",
  5773. "homepage": "https://www.drupal.org/project/migrate_plus",
  5774. "support": {
  5775. "source": "https://cgit.drupalcode.org/migrate_plus",
  5776. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  5777. "irc": "irc://irc.freenode.org/drupal-migrate"
  5778. },
  5779. "time": "2019-01-03T18:20:23+00:00"
  5780. },
  5781. {
  5782. "name": "drupal/migrate_tools",
  5783. "version": "dev-4.x",
  5784. "source": {
  5785. "type": "git",
  5786. "url": "https://git.drupal.org/project/migrate_tools",
  5787. "reference": "853604c682a28b7d6960fa3d55eba36a443182bb"
  5788. },
  5789. "require": {
  5790. "drupal/core": "^8.3",
  5791. "drupal/migrate_plus": "^4"
  5792. },
  5793. "require-dev": {
  5794. "drupal/migrate_plus": "4.x-dev",
  5795. "drupal/migrate_source_csv": "^2.2",
  5796. "drush/drush": "^9"
  5797. },
  5798. "type": "drupal-module",
  5799. "extra": {
  5800. "branch-alias": {
  5801. "dev-4.x": "4.x-dev"
  5802. },
  5803. "drupal": {
  5804. "version": "8.x-4.0+14-dev",
  5805. "datestamp": "1545344880",
  5806. "security-coverage": {
  5807. "status": "not-covered",
  5808. "message": "Dev releases are not covered by Drupal security advisories."
  5809. }
  5810. },
  5811. "drush": {
  5812. "services": {
  5813. "drush.services.yml": "^9"
  5814. }
  5815. },
  5816. "patches_applied": {
  5817. "The --limit option does not accept a value.": "https://www.drupal.org/files/issues/2019-02-05/migrate-tools_fix-drush-options_3024399-23.patch"
  5818. }
  5819. },
  5820. "notification-url": "https://packages.drupal.org/8/downloads",
  5821. "license": [
  5822. "GPL-2.0-or-later"
  5823. ],
  5824. "authors": [
  5825. {
  5826. "name": "heddn",
  5827. "homepage": "https://www.drupal.org/user/1463982"
  5828. },
  5829. {
  5830. "name": "mikeryan",
  5831. "homepage": "https://www.drupal.org/user/4420"
  5832. },
  5833. {
  5834. "name": "moshe weitzman",
  5835. "homepage": "https://www.drupal.org/user/23"
  5836. }
  5837. ],
  5838. "description": "Tools to assist in developing and running migrations.",
  5839. "homepage": "http://drupal.org/project/migrate_tools",
  5840. "support": {
  5841. "source": "http://cgit.drupalcode.org/migrate_tools",
  5842. "issues": "http://drupal.org/project/migrate_tools",
  5843. "irc": "irc://irc.freenode.org/drupal-migrate"
  5844. },
  5845. "time": "2018-12-20T22:27:32+00:00"
  5846. },
  5847. {
  5848. "name": "drupal/pagerer",
  5849. "version": "1.4.0",
  5850. "source": {
  5851. "type": "git",
  5852. "url": "https://git.drupal.org/project/pagerer",
  5853. "reference": "8.x-1.4"
  5854. },
  5855. "dist": {
  5856. "type": "zip",
  5857. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-1.4.zip",
  5858. "reference": "8.x-1.4",
  5859. "shasum": "9b4eb6899b0927859e7d5198f1fd814a10a66ddb"
  5860. },
  5861. "require": {
  5862. "drupal/core": "^8.1"
  5863. },
  5864. "type": "drupal-module",
  5865. "extra": {
  5866. "branch-alias": {
  5867. "dev-1.x": "1.x-dev"
  5868. },
  5869. "drupal": {
  5870. "version": "8.x-1.4",
  5871. "datestamp": "1522851484",
  5872. "security-coverage": {
  5873. "status": "covered",
  5874. "message": "Covered by Drupal's security advisory policy"
  5875. }
  5876. }
  5877. },
  5878. "notification-url": "https://packages.drupal.org/8/downloads",
  5879. "license": [
  5880. "GPL-2.0-or-later"
  5881. ],
  5882. "authors": [
  5883. {
  5884. "name": "mondrake",
  5885. "homepage": "https://www.drupal.org/user/1307444"
  5886. }
  5887. ],
  5888. "description": "Configurable pager styles.",
  5889. "homepage": "https://www.drupal.org/project/pagerer",
  5890. "support": {
  5891. "source": "http://cgit.drupalcode.org/pagerer"
  5892. }
  5893. },
  5894. {
  5895. "name": "drupal/path_alias_xt",
  5896. "version": "dev-1.x",
  5897. "source": {
  5898. "type": "git",
  5899. "url": "https://git.drupal.org/project/path_alias_xt",
  5900. "reference": "2a79ac72191dc59ef656d1edd85e651538c6a389"
  5901. },
  5902. "require": {
  5903. "drupal/core": "*"
  5904. },
  5905. "type": "drupal-module",
  5906. "extra": {
  5907. "branch-alias": {
  5908. "dev-1.x": "1.x-dev"
  5909. },
  5910. "drupal": {
  5911. "version": "8.x-1.x-dev",
  5912. "datestamp": "1542641280",
  5913. "security-coverage": {
  5914. "status": "not-covered",
  5915. "message": "Dev releases are not covered by Drupal security advisories."
  5916. }
  5917. }
  5918. },
  5919. "notification-url": "https://packages.drupal.org/8/downloads",
  5920. "license": [
  5921. "GPL-2.0-or-later"
  5922. ],
  5923. "authors": [
  5924. {
  5925. "name": "RdeBoer",
  5926. "homepage": "https://www.drupal.org/user/404007"
  5927. },
  5928. {
  5929. "name": "adriancid",
  5930. "homepage": "https://www.drupal.org/user/1962106"
  5931. },
  5932. {
  5933. "name": "sdstyles",
  5934. "homepage": "https://www.drupal.org/user/1420228"
  5935. }
  5936. ],
  5937. "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.",
  5938. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5939. "support": {
  5940. "source": "http://cgit.drupalcode.org/path_alias_xt"
  5941. },
  5942. "time": "2019-01-30T19:27:58+00:00"
  5943. },
  5944. {
  5945. "name": "drupal/pathauto",
  5946. "version": "1.3.0",
  5947. "source": {
  5948. "type": "git",
  5949. "url": "https://git.drupal.org/project/pathauto",
  5950. "reference": "8.x-1.3"
  5951. },
  5952. "dist": {
  5953. "type": "zip",
  5954. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip",
  5955. "reference": "8.x-1.3",
  5956. "shasum": "115d5998d7636a03e26c7ce34261b65809d53965"
  5957. },
  5958. "require": {
  5959. "drupal/core": "^8.5",
  5960. "drupal/ctools": "*",
  5961. "drupal/token": "*"
  5962. },
  5963. "type": "drupal-module",
  5964. "extra": {
  5965. "branch-alias": {
  5966. "dev-1.x": "1.x-dev"
  5967. },
  5968. "drupal": {
  5969. "version": "8.x-1.3",
  5970. "datestamp": "1536407884",
  5971. "security-coverage": {
  5972. "status": "covered",
  5973. "message": "Covered by Drupal's security advisory policy"
  5974. }
  5975. }
  5976. },
  5977. "notification-url": "https://packages.drupal.org/8/downloads",
  5978. "license": [
  5979. "GPL-2.0-or-later"
  5980. ],
  5981. "authors": [
  5982. {
  5983. "name": "Berdir",
  5984. "homepage": "https://www.drupal.org/user/214652"
  5985. },
  5986. {
  5987. "name": "Dave Reid",
  5988. "homepage": "https://www.drupal.org/user/53892"
  5989. },
  5990. {
  5991. "name": "Freso",
  5992. "homepage": "https://www.drupal.org/user/27504"
  5993. },
  5994. {
  5995. "name": "greggles",
  5996. "homepage": "https://www.drupal.org/user/36762"
  5997. }
  5998. ],
  5999. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6000. "homepage": "https://www.drupal.org/project/pathauto",
  6001. "support": {
  6002. "source": "http://cgit.drupalcode.org/pathauto"
  6003. }
  6004. },
  6005. {
  6006. "name": "drupal/pathologic",
  6007. "version": "1.0.0-alpha1",
  6008. "source": {
  6009. "type": "git",
  6010. "url": "https://git.drupal.org/project/pathologic",
  6011. "reference": "8.x-1.0-alpha1"
  6012. },
  6013. "dist": {
  6014. "type": "zip",
  6015. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha1.zip",
  6016. "reference": "8.x-1.0-alpha1",
  6017. "shasum": "51c699cc001969baa00cca60cf2302a32e578090"
  6018. },
  6019. "require": {
  6020. "drupal/core": "*"
  6021. },
  6022. "type": "drupal-module",
  6023. "extra": {
  6024. "branch-alias": {
  6025. "dev-1.x": "1.x-dev"
  6026. },
  6027. "drupal": {
  6028. "version": "8.x-1.0-alpha1",
  6029. "datestamp": "1525211884",
  6030. "security-coverage": {
  6031. "status": "not-covered",
  6032. "message": "Alpha releases are not covered by Drupal security advisories."
  6033. }
  6034. }
  6035. },
  6036. "notification-url": "https://packages.drupal.org/8/downloads",
  6037. "license": [
  6038. "GPL-2.0-or-later"
  6039. ],
  6040. "authors": [
  6041. {
  6042. "name": "Berdir",
  6043. "homepage": "https://www.drupal.org/user/214652"
  6044. },
  6045. {
  6046. "name": "Garrett Albright",
  6047. "homepage": "https://www.drupal.org/user/191212"
  6048. },
  6049. {
  6050. "name": "dww",
  6051. "homepage": "https://www.drupal.org/user/46549"
  6052. }
  6053. ],
  6054. "description": "Helps avoid broken links and incorrect paths in content.",
  6055. "homepage": "https://www.drupal.org/project/pathologic",
  6056. "support": {
  6057. "source": "http://cgit.drupalcode.org/pathologic"
  6058. }
  6059. },
  6060. {
  6061. "name": "drupal/persistent_login",
  6062. "version": "1.1.0",
  6063. "source": {
  6064. "type": "git",
  6065. "url": "https://git.drupal.org/project/persistent_login",
  6066. "reference": "8.x-1.1"
  6067. },
  6068. "dist": {
  6069. "type": "zip",
  6070. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.1.zip",
  6071. "reference": "8.x-1.1",
  6072. "shasum": "b1e8f725662ab915767f339e00d7b185ac9097b2"
  6073. },
  6074. "require": {
  6075. "drupal/core": "^8.3"
  6076. },
  6077. "type": "drupal-module",
  6078. "extra": {
  6079. "branch-alias": {
  6080. "dev-1.x": "1.x-dev"
  6081. },
  6082. "drupal": {
  6083. "version": "8.x-1.1",
  6084. "datestamp": "1539379980",
  6085. "security-coverage": {
  6086. "status": "covered",
  6087. "message": "Covered by Drupal's security advisory policy"
  6088. }
  6089. }
  6090. },
  6091. "notification-url": "https://packages.drupal.org/8/downloads",
  6092. "license": [
  6093. "GPL-2.0+"
  6094. ],
  6095. "authors": [
  6096. {
  6097. "name": "gapple",
  6098. "homepage": "https://www.drupal.org/user/490940"
  6099. }
  6100. ],
  6101. "description": "Provides a \"Remember Me\" feature on the login form.",
  6102. "homepage": "https://www.drupal.org/project/persistent_login",
  6103. "keywords": [
  6104. "Drupal"
  6105. ],
  6106. "support": {
  6107. "source": "http://cgit.drupalcode.org/persistent_login",
  6108. "issues": "http://drupal.org/project/issues/persistent_login"
  6109. }
  6110. },
  6111. {
  6112. "name": "drupal/profile",
  6113. "version": "1.0.0-rc1",
  6114. "source": {
  6115. "type": "git",
  6116. "url": "https://git.drupal.org/project/profile",
  6117. "reference": "8.x-1.0-rc1"
  6118. },
  6119. "dist": {
  6120. "type": "zip",
  6121. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc1.zip",
  6122. "reference": "8.x-1.0-rc1",
  6123. "shasum": "cc537ca25412adc4fa601ff42cf2fb5cbc6e7b6b"
  6124. },
  6125. "require": {
  6126. "drupal/core": "~8.1",
  6127. "drupal/entity": "*"
  6128. },
  6129. "type": "drupal-module",
  6130. "extra": {
  6131. "branch-alias": {
  6132. "dev-1.x": "1.x-dev"
  6133. },
  6134. "drupal": {
  6135. "version": "8.x-1.0-rc1",
  6136. "datestamp": "1505830324",
  6137. "security-coverage": {
  6138. "status": "not-covered",
  6139. "message": "RC releases are not covered by Drupal security advisories."
  6140. }
  6141. }
  6142. },
  6143. "notification-url": "https://packages.drupal.org/8/downloads",
  6144. "license": [
  6145. "GPL-2.0+"
  6146. ],
  6147. "authors": [
  6148. {
  6149. "name": "bojanz",
  6150. "homepage": "https://www.drupal.org/user/86106"
  6151. },
  6152. {
  6153. "name": "daggerhart",
  6154. "homepage": "https://www.drupal.org/user/167806"
  6155. },
  6156. {
  6157. "name": "dakala",
  6158. "homepage": "https://www.drupal.org/user/53175"
  6159. },
  6160. {
  6161. "name": "fago",
  6162. "homepage": "https://www.drupal.org/user/16747"
  6163. },
  6164. {
  6165. "name": "mglaman",
  6166. "homepage": "https://www.drupal.org/user/2416470"
  6167. },
  6168. {
  6169. "name": "pcambra",
  6170. "homepage": "https://www.drupal.org/user/122101"
  6171. }
  6172. ],
  6173. "description": "Provides configurable user profiles.",
  6174. "homepage": "http://drupal.org/project/profile",
  6175. "support": {
  6176. "source": "http://cgit.drupalcode.org/profile"
  6177. }
  6178. },
  6179. {
  6180. "name": "drupal/redirect",
  6181. "version": "1.3.0",
  6182. "source": {
  6183. "type": "git",
  6184. "url": "https://git.drupal.org/project/redirect",
  6185. "reference": "8.x-1.3"
  6186. },
  6187. "dist": {
  6188. "type": "zip",
  6189. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  6190. "reference": "8.x-1.3",
  6191. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  6192. },
  6193. "require": {
  6194. "drupal/core": "~8"
  6195. },
  6196. "type": "drupal-module",
  6197. "extra": {
  6198. "branch-alias": {
  6199. "dev-1.x": "1.x-dev"
  6200. },
  6201. "drupal": {
  6202. "version": "8.x-1.3",
  6203. "datestamp": "1539682684",
  6204. "security-coverage": {
  6205. "status": "covered",
  6206. "message": "Covered by Drupal's security advisory policy"
  6207. }
  6208. }
  6209. },
  6210. "notification-url": "https://packages.drupal.org/8/downloads",
  6211. "license": [
  6212. "GPL-2.0+"
  6213. ],
  6214. "authors": [
  6215. {
  6216. "name": "Berdir",
  6217. "homepage": "https://www.drupal.org/user/214652"
  6218. },
  6219. {
  6220. "name": "Dave Reid",
  6221. "homepage": "https://www.drupal.org/user/53892"
  6222. },
  6223. {
  6224. "name": "pifagor",
  6225. "homepage": "https://www.drupal.org/user/2375692"
  6226. }
  6227. ],
  6228. "description": "Allows users to redirect from old URLs to new URLs.",
  6229. "homepage": "https://www.drupal.org/project/redirect",
  6230. "support": {
  6231. "source": "http://cgit.drupalcode.org/redirect"
  6232. }
  6233. },
  6234. {
  6235. "name": "drupal/redis",
  6236. "version": "1.1.0",
  6237. "source": {
  6238. "type": "git",
  6239. "url": "https://git.drupal.org/project/redis",
  6240. "reference": "8.x-1.1"
  6241. },
  6242. "dist": {
  6243. "type": "zip",
  6244. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.1.zip",
  6245. "reference": "8.x-1.1",
  6246. "shasum": "33337fe1cbd2824797e87533b30e4886b48ecd77"
  6247. },
  6248. "require": {
  6249. "drupal/core": "~8.0"
  6250. },
  6251. "suggest": {
  6252. "predis/predis": "^1.1.1"
  6253. },
  6254. "type": "drupal-module",
  6255. "extra": {
  6256. "branch-alias": {
  6257. "dev-1.x": "1.x-dev"
  6258. },
  6259. "drupal": {
  6260. "version": "8.x-1.1",
  6261. "datestamp": "1541600580",
  6262. "security-coverage": {
  6263. "status": "covered",
  6264. "message": "Covered by Drupal's security advisory policy"
  6265. }
  6266. }
  6267. },
  6268. "autoload": {
  6269. "psr-4": {
  6270. "Drupal\\redis\\": "src"
  6271. }
  6272. },
  6273. "notification-url": "https://packages.drupal.org/8/downloads",
  6274. "license": [
  6275. "GPL-2.0"
  6276. ],
  6277. "authors": [
  6278. {
  6279. "name": "Berdir",
  6280. "homepage": "https://www.drupal.org/user/214652"
  6281. },
  6282. {
  6283. "name": "pounard",
  6284. "homepage": "https://www.drupal.org/user/240164"
  6285. }
  6286. ],
  6287. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  6288. "homepage": "https://www.drupal.org/project/redis",
  6289. "support": {
  6290. "source": "http://cgit.drupalcode.org/redis"
  6291. }
  6292. },
  6293. {
  6294. "name": "drupal/search_api",
  6295. "version": "1.11.0",
  6296. "source": {
  6297. "type": "git",
  6298. "url": "https://git.drupal.org/project/search_api",
  6299. "reference": "8.x-1.11"
  6300. },
  6301. "dist": {
  6302. "type": "zip",
  6303. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.11.zip",
  6304. "reference": "8.x-1.11",
  6305. "shasum": "d2bf92afa2ee760977dde1fadcb5bb64a4c2d7c1"
  6306. },
  6307. "require": {
  6308. "drupal/core": "^8.5"
  6309. },
  6310. "require-dev": {
  6311. "drupal/search_api_autocomplete": "@dev",
  6312. "drupal/search_api_db": "*"
  6313. },
  6314. "suggest": {
  6315. "drupal/facets": "Adds the ability to create faceted searches.",
  6316. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6317. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6318. },
  6319. "type": "drupal-module",
  6320. "extra": {
  6321. "branch-alias": {
  6322. "dev-1.x": "1.x-dev"
  6323. },
  6324. "drupal": {
  6325. "version": "8.x-1.11",
  6326. "datestamp": "1542564480",
  6327. "security-coverage": {
  6328. "status": "covered",
  6329. "message": "Covered by Drupal's security advisory policy"
  6330. }
  6331. },
  6332. "drush": {
  6333. "services": {
  6334. "drush.services.yml": "^9"
  6335. }
  6336. }
  6337. },
  6338. "notification-url": "https://packages.drupal.org/8/downloads",
  6339. "license": [
  6340. "GPL-2.0+"
  6341. ],
  6342. "authors": [
  6343. {
  6344. "name": "Thomas Seidl",
  6345. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6346. },
  6347. {
  6348. "name": "Nick Veenhof",
  6349. "homepage": "https://www.drupal.org/u/nick_vh"
  6350. },
  6351. {
  6352. "name": "See other contributors",
  6353. "homepage": "https://www.drupal.org/node/790418/committers"
  6354. }
  6355. ],
  6356. "description": "Provides a generic framework for modules offering search capabilities.",
  6357. "homepage": "https://www.drupal.org/project/search_api",
  6358. "support": {
  6359. "source": "http://git.drupal.org/project/search_api.git",
  6360. "issues": "https://www.drupal.org/project/issues/search_api",
  6361. "irc": "irc://irc.freenode.org/drupal-search-api"
  6362. }
  6363. },
  6364. {
  6365. "name": "drupal/search_api_db",
  6366. "version": "1.11.0",
  6367. "require": {
  6368. "drupal/core": "~8.0",
  6369. "drupal/search_api": "self.version"
  6370. },
  6371. "type": "metapackage",
  6372. "extra": {
  6373. "branch-alias": {
  6374. "dev-1.x": "1.x-dev"
  6375. },
  6376. "drupal": {
  6377. "version": "8.x-1.11",
  6378. "datestamp": "1542564480",
  6379. "security-coverage": {
  6380. "status": "covered",
  6381. "message": "Covered by Drupal's security advisory policy"
  6382. }
  6383. }
  6384. },
  6385. "notification-url": "https://packages.drupal.org/8/downloads",
  6386. "license": [
  6387. "GPL-2.0-or-later"
  6388. ],
  6389. "authors": [
  6390. {
  6391. "name": "Nick_vh",
  6392. "homepage": "https://www.drupal.org/user/122682"
  6393. },
  6394. {
  6395. "name": "drunken monkey",
  6396. "homepage": "https://www.drupal.org/user/205582"
  6397. }
  6398. ],
  6399. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6400. "homepage": "https://www.drupal.org/project/search_api",
  6401. "support": {
  6402. "source": "http://cgit.drupalcode.org/search_api"
  6403. }
  6404. },
  6405. {
  6406. "name": "drupal/select_translation",
  6407. "version": "dev-1.x",
  6408. "source": {
  6409. "type": "git",
  6410. "url": "https://git.drupal.org/project/select_translation",
  6411. "reference": "2efacaa519fff91593276a15fc4ef14ba665d4c2"
  6412. },
  6413. "require": {
  6414. "drupal/core": "*"
  6415. },
  6416. "type": "drupal-module",
  6417. "extra": {
  6418. "branch-alias": {
  6419. "dev-1.x": "1.x-dev"
  6420. },
  6421. "drupal": {
  6422. "version": "8.x-1.0+1-dev",
  6423. "datestamp": "1496930042",
  6424. "security-coverage": {
  6425. "status": "not-covered",
  6426. "message": "Dev releases are not covered by Drupal security advisories."
  6427. }
  6428. }
  6429. },
  6430. "notification-url": "https://packages.drupal.org/8/downloads",
  6431. "license": [
  6432. "GPL-2.0-or-later"
  6433. ],
  6434. "authors": [
  6435. {
  6436. "name": "Alice Heaton",
  6437. "homepage": "https://www.drupal.org/user/60899"
  6438. },
  6439. {
  6440. "name": "alcroito",
  6441. "homepage": "https://www.drupal.org/user/176134"
  6442. },
  6443. {
  6444. "name": "ao2",
  6445. "homepage": "https://www.drupal.org/user/234884"
  6446. }
  6447. ],
  6448. "description": "Provides a Views filter to select which translation of a node should be displayed.",
  6449. "homepage": "https://www.drupal.org/project/select_translation",
  6450. "support": {
  6451. "source": "http://cgit.drupalcode.org/select_translation"
  6452. },
  6453. "time": "2018-11-20T15:20:53+00:00"
  6454. },
  6455. {
  6456. "name": "drupal/smart_trim",
  6457. "version": "1.1.0",
  6458. "source": {
  6459. "type": "git",
  6460. "url": "https://git.drupal.org/project/smart_trim",
  6461. "reference": "8.x-1.1"
  6462. },
  6463. "dist": {
  6464. "type": "zip",
  6465. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.1.zip",
  6466. "reference": "8.x-1.1",
  6467. "shasum": "5f1c0f15914208e0ad2ec5cce1d6419040596fc0"
  6468. },
  6469. "require": {
  6470. "drupal/core": "*"
  6471. },
  6472. "type": "drupal-module",
  6473. "extra": {
  6474. "branch-alias": {
  6475. "dev-1.x": "1.x-dev"
  6476. },
  6477. "drupal": {
  6478. "version": "8.x-1.1",
  6479. "datestamp": "1516301286",
  6480. "security-coverage": {
  6481. "status": "covered",
  6482. "message": "Covered by Drupal's security advisory policy"
  6483. }
  6484. }
  6485. },
  6486. "notification-url": "https://packages.drupal.org/8/downloads",
  6487. "license": [
  6488. "GPL-2.0+"
  6489. ],
  6490. "authors": [
  6491. {
  6492. "name": "Mark Casias (markie)",
  6493. "homepage": "https://www.drupal.org/u/markie",
  6494. "role": "Maintainer"
  6495. },
  6496. {
  6497. "name": "chrisjlee",
  6498. "homepage": "https://www.drupal.org/user/760600"
  6499. },
  6500. {
  6501. "name": "drywall",
  6502. "homepage": "https://www.drupal.org/user/192591"
  6503. },
  6504. {
  6505. "name": "jsenich",
  6506. "homepage": "https://www.drupal.org/user/58871"
  6507. },
  6508. {
  6509. "name": "markie",
  6510. "homepage": "https://www.drupal.org/user/206687"
  6511. },
  6512. {
  6513. "name": "newsignature",
  6514. "homepage": "https://www.drupal.org/user/765518"
  6515. }
  6516. ],
  6517. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6518. "homepage": "https://drupal.org/project/smart_trim",
  6519. "support": {
  6520. "source": "https://cgit.drupalcode.org/smart_trim",
  6521. "issues": "https://drupal.org/project/issues/smart_trim"
  6522. }
  6523. },
  6524. {
  6525. "name": "drupal/smtp",
  6526. "version": "1.0.0-beta4",
  6527. "source": {
  6528. "type": "git",
  6529. "url": "https://git.drupal.org/project/smtp",
  6530. "reference": "8.x-1.0-beta4"
  6531. },
  6532. "dist": {
  6533. "type": "zip",
  6534. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0-beta4.zip",
  6535. "reference": "8.x-1.0-beta4",
  6536. "shasum": "80a4df4b2fd2d1b2dc653552d232ce98cb54bb9d"
  6537. },
  6538. "require": {
  6539. "drupal/core": "~8.0"
  6540. },
  6541. "type": "drupal-module",
  6542. "extra": {
  6543. "branch-alias": {
  6544. "dev-1.x": "1.x-dev"
  6545. },
  6546. "drupal": {
  6547. "version": "8.x-1.0-beta4",
  6548. "datestamp": "1527598380",
  6549. "security-coverage": {
  6550. "status": "not-covered",
  6551. "message": "Beta releases are not covered by Drupal security advisories."
  6552. }
  6553. }
  6554. },
  6555. "notification-url": "https://packages.drupal.org/8/downloads",
  6556. "license": [
  6557. "GPL-2.0"
  6558. ],
  6559. "authors": [
  6560. {
  6561. "name": "LukeLast",
  6562. "homepage": "https://www.drupal.org/user/30151"
  6563. },
  6564. {
  6565. "name": "japerry",
  6566. "homepage": "https://www.drupal.org/user/45640"
  6567. },
  6568. {
  6569. "name": "josesanmartin",
  6570. "homepage": "https://www.drupal.org/user/72012"
  6571. },
  6572. {
  6573. "name": "oadaeh",
  6574. "homepage": "https://www.drupal.org/user/4649"
  6575. },
  6576. {
  6577. "name": "wundo",
  6578. "homepage": "https://www.drupal.org/user/25523"
  6579. },
  6580. {
  6581. "name": "yettyn",
  6582. "homepage": "https://www.drupal.org/user/93281"
  6583. }
  6584. ],
  6585. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6586. "homepage": "https://www.drupal.org/project/smtp",
  6587. "support": {
  6588. "source": "http://cgit.drupalcode.org/smtp",
  6589. "issues": "https://www.drupal.org/project/issues/smtp"
  6590. }
  6591. },
  6592. {
  6593. "name": "drupal/synonyms",
  6594. "version": "1.0.0-alpha1",
  6595. "source": {
  6596. "type": "git",
  6597. "url": "https://git.drupal.org/project/synonyms",
  6598. "reference": "8.x-1.0-alpha1"
  6599. },
  6600. "dist": {
  6601. "type": "zip",
  6602. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha1.zip",
  6603. "reference": "8.x-1.0-alpha1",
  6604. "shasum": "98d39b5b0a26c7b5f9e6dfc4f72285ad014d14f4"
  6605. },
  6606. "require": {
  6607. "drupal/core": "~8.0"
  6608. },
  6609. "type": "drupal-module",
  6610. "extra": {
  6611. "branch-alias": {
  6612. "dev-1.x": "1.x-dev"
  6613. },
  6614. "drupal": {
  6615. "version": "8.x-1.0-alpha1",
  6616. "datestamp": "1477604941",
  6617. "security-coverage": {
  6618. "status": "not-covered",
  6619. "message": "Alpha releases are not covered by Drupal security advisories."
  6620. }
  6621. }
  6622. },
  6623. "notification-url": "https://packages.drupal.org/8/downloads",
  6624. "license": [
  6625. "GPL-2.0-or-later"
  6626. ],
  6627. "authors": [
  6628. {
  6629. "name": "Zen",
  6630. "homepage": "https://www.drupal.org/user/21209"
  6631. },
  6632. {
  6633. "name": "bojanz",
  6634. "homepage": "https://www.drupal.org/user/86106"
  6635. },
  6636. {
  6637. "name": "bucefal91",
  6638. "homepage": "https://www.drupal.org/user/504128"
  6639. }
  6640. ],
  6641. "description": "Provides synonyms feature for content entities.",
  6642. "homepage": "https://www.drupal.org/project/synonyms",
  6643. "support": {
  6644. "source": "http://cgit.drupalcode.org/synonyms"
  6645. }
  6646. },
  6647. {
  6648. "name": "drupal/telephone_formatter",
  6649. "version": "1.0.0",
  6650. "source": {
  6651. "type": "git",
  6652. "url": "https://git.drupal.org/project/telephone_formatter",
  6653. "reference": "8.x-1.0"
  6654. },
  6655. "dist": {
  6656. "type": "zip",
  6657. "url": "https://ftp.drupal.org/files/projects/telephone_formatter-8.x-1.0.zip",
  6658. "reference": "8.x-1.0",
  6659. "shasum": "a666215b950e8ec2c83d3882008db8a59c1caf39"
  6660. },
  6661. "require": {
  6662. "drupal/core": "*",
  6663. "giggsey/libphonenumber-for-php": "^8.0"
  6664. },
  6665. "suggest": {
  6666. "drupal/telephone_validation": "Unsure data quality"
  6667. },
  6668. "type": "drupal-module",
  6669. "extra": {
  6670. "branch-alias": {
  6671. "dev-1.x": "1.x-dev"
  6672. },
  6673. "drupal": {
  6674. "version": "8.x-1.0",
  6675. "datestamp": "1549031580",
  6676. "security-coverage": {
  6677. "status": "covered",
  6678. "message": "Covered by Drupal's security advisory policy"
  6679. }
  6680. }
  6681. },
  6682. "notification-url": "https://packages.drupal.org/8/downloads",
  6683. "license": [
  6684. "GPL-2.0+"
  6685. ],
  6686. "authors": [
  6687. {
  6688. "name": "Jakub Piasecki",
  6689. "homepage": "https://www.drupal.org/user/1532844",
  6690. "email": "jakub@piaseccy.pl"
  6691. }
  6692. ],
  6693. "description": "Additional formatters to Telephone field.",
  6694. "homepage": "https://www.drupal.org/project/telephone_formatter",
  6695. "support": {
  6696. "source": "http://cgit.drupalcode.org/telephone_formatter",
  6697. "issues": "http://drupal.org/project/issues/telephone_formatter"
  6698. }
  6699. },
  6700. {
  6701. "name": "drupal/telephone_validation",
  6702. "version": "2.2.0",
  6703. "source": {
  6704. "type": "git",
  6705. "url": "https://git.drupal.org/project/telephone_validation",
  6706. "reference": "8.x-2.2"
  6707. },
  6708. "dist": {
  6709. "type": "zip",
  6710. "url": "https://ftp.drupal.org/files/projects/telephone_validation-8.x-2.2.zip",
  6711. "reference": "8.x-2.2",
  6712. "shasum": "5f79cd8890cbc70a7c234f88a4f37a5d42354443"
  6713. },
  6714. "require": {
  6715. "drupal/core": "^8.0",
  6716. "drupal/telephone": "*",
  6717. "giggsey/libphonenumber-for-php": "~8.0"
  6718. },
  6719. "type": "drupal-module",
  6720. "extra": {
  6721. "branch-alias": {
  6722. "dev-2.x": "2.x-dev"
  6723. },
  6724. "drupal": {
  6725. "version": "8.x-2.2",
  6726. "datestamp": "1549289280",
  6727. "security-coverage": {
  6728. "status": "covered",
  6729. "message": "Covered by Drupal's security advisory policy"
  6730. }
  6731. }
  6732. },
  6733. "notification-url": "https://packages.drupal.org/8/downloads",
  6734. "license": [
  6735. "GPL-2.0+"
  6736. ],
  6737. "authors": [
  6738. {
  6739. "name": "zaporylie",
  6740. "homepage": "https://www.drupal.org/user/1532844"
  6741. }
  6742. ],
  6743. "description": "Use 3rd party library to validate telephone field.",
  6744. "homepage": "http://drupal.org/project/telephone_validation",
  6745. "support": {
  6746. "source": "http://cgit.drupalcode.org/telephone_validation",
  6747. "issues": "http://drupal.org/project/issues/telephone_validation"
  6748. }
  6749. },
  6750. {
  6751. "name": "drupal/token",
  6752. "version": "1.5.0",
  6753. "source": {
  6754. "type": "git",
  6755. "url": "https://git.drupal.org/project/token",
  6756. "reference": "8.x-1.5"
  6757. },
  6758. "dist": {
  6759. "type": "zip",
  6760. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  6761. "reference": "8.x-1.5",
  6762. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  6763. },
  6764. "require": {
  6765. "drupal/core": "^8.5"
  6766. },
  6767. "type": "drupal-module",
  6768. "extra": {
  6769. "branch-alias": {
  6770. "dev-1.x": "1.x-dev"
  6771. },
  6772. "drupal": {
  6773. "version": "8.x-1.5",
  6774. "datestamp": "1537557481",
  6775. "security-coverage": {
  6776. "status": "covered",
  6777. "message": "Covered by Drupal's security advisory policy"
  6778. }
  6779. }
  6780. },
  6781. "notification-url": "https://packages.drupal.org/8/downloads",
  6782. "license": [
  6783. "GPL-2.0-or-later"
  6784. ],
  6785. "authors": [
  6786. {
  6787. "name": "Berdir",
  6788. "homepage": "https://www.drupal.org/user/214652"
  6789. },
  6790. {
  6791. "name": "Dave Reid",
  6792. "homepage": "https://www.drupal.org/user/53892"
  6793. },
  6794. {
  6795. "name": "eaton",
  6796. "homepage": "https://www.drupal.org/user/16496"
  6797. },
  6798. {
  6799. "name": "fago",
  6800. "homepage": "https://www.drupal.org/user/16747"
  6801. },
  6802. {
  6803. "name": "greggles",
  6804. "homepage": "https://www.drupal.org/user/36762"
  6805. },
  6806. {
  6807. "name": "mikeryan",
  6808. "homepage": "https://www.drupal.org/user/4420"
  6809. }
  6810. ],
  6811. "description": "Provides a user interface for the Token API and some missing core tokens.",
  6812. "homepage": "https://www.drupal.org/project/token",
  6813. "support": {
  6814. "source": "http://cgit.drupalcode.org/token"
  6815. }
  6816. },
  6817. {
  6818. "name": "drupal/toolbar_themes",
  6819. "version": "1.0.0-alpha4",
  6820. "source": {
  6821. "type": "git",
  6822. "url": "https://git.drupal.org/project/toolbar_themes",
  6823. "reference": "8.x-1.0-alpha4"
  6824. },
  6825. "dist": {
  6826. "type": "zip",
  6827. "url": "https://ftp.drupal.org/files/projects/toolbar_themes-8.x-1.0-alpha4.zip",
  6828. "reference": "8.x-1.0-alpha4",
  6829. "shasum": "15c38da8bfd5a44e47e436d8f432a0aaf6b2cd70"
  6830. },
  6831. "require": {
  6832. "drupal/core": "*"
  6833. },
  6834. "type": "drupal-module",
  6835. "extra": {
  6836. "branch-alias": {
  6837. "dev-1.x": "1.x-dev"
  6838. },
  6839. "drupal": {
  6840. "version": "8.x-1.0-alpha4",
  6841. "datestamp": "1474198439",
  6842. "security-coverage": {
  6843. "status": "not-covered",
  6844. "message": "Project has not opted into security advisory coverage!"
  6845. }
  6846. }
  6847. },
  6848. "notification-url": "https://packages.drupal.org/8/downloads",
  6849. "license": [
  6850. "GPL-2.0-or-later"
  6851. ],
  6852. "authors": [
  6853. {
  6854. "name": "Jeff Burnz",
  6855. "homepage": "https://www.drupal.org/user/61393"
  6856. }
  6857. ],
  6858. "description": "Apply themes to the toolbar.",
  6859. "homepage": "https://www.drupal.org/project/toolbar_themes",
  6860. "support": {
  6861. "source": "http://cgit.drupalcode.org/toolbar_themes"
  6862. }
  6863. },
  6864. {
  6865. "name": "drupal/translation_views",
  6866. "version": "1.0.0-alpha5",
  6867. "source": {
  6868. "type": "git",
  6869. "url": "https://git.drupal.org/project/translation_views",
  6870. "reference": "8.x-1.0-alpha5"
  6871. },
  6872. "dist": {
  6873. "type": "zip",
  6874. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha5.zip",
  6875. "reference": "8.x-1.0-alpha5",
  6876. "shasum": "f1fc54c4648bca5194c0bdcb6df02dae1e8fefd9"
  6877. },
  6878. "require": {
  6879. "drupal/core": "*"
  6880. },
  6881. "require-dev": {
  6882. "drupal/local_translation": "*"
  6883. },
  6884. "type": "drupal-module",
  6885. "extra": {
  6886. "branch-alias": {
  6887. "dev-1.x": "1.x-dev"
  6888. },
  6889. "drupal": {
  6890. "version": "8.x-1.0-alpha5",
  6891. "datestamp": "1549581180",
  6892. "security-coverage": {
  6893. "status": "not-covered",
  6894. "message": "Project has not opted into security advisory coverage!"
  6895. }
  6896. }
  6897. },
  6898. "notification-url": "https://packages.drupal.org/8/downloads",
  6899. "license": [
  6900. "GPL-2.0-or-later"
  6901. ],
  6902. "authors": [
  6903. {
  6904. "name": "matsbla",
  6905. "homepage": "https://www.drupal.org/user/2325394"
  6906. },
  6907. {
  6908. "name": "vlad.dancer",
  6909. "homepage": "https://www.drupal.org/user/903844"
  6910. }
  6911. ],
  6912. "description": "Create customized lists and queries of translations from your database.",
  6913. "homepage": "https://www.drupal.org/project/translation_views",
  6914. "support": {
  6915. "source": "http://cgit.drupalcode.org/translation_views"
  6916. }
  6917. },
  6918. {
  6919. "name": "drupal/ultimate_cron",
  6920. "version": "2.0.0-alpha4",
  6921. "source": {
  6922. "type": "git",
  6923. "url": "https://git.drupal.org/project/ultimate_cron",
  6924. "reference": "8.x-2.0-alpha4"
  6925. },
  6926. "dist": {
  6927. "type": "zip",
  6928. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha4.zip",
  6929. "reference": "8.x-2.0-alpha4",
  6930. "shasum": "50cdadd061f1f6fadb961b04ed04348bcc4719d3"
  6931. },
  6932. "require": {
  6933. "drupal/core": "~8.0"
  6934. },
  6935. "type": "drupal-module",
  6936. "extra": {
  6937. "branch-alias": {
  6938. "dev-2.x": "2.x-dev"
  6939. },
  6940. "drupal": {
  6941. "version": "8.x-2.0-alpha4",
  6942. "datestamp": "1527925385",
  6943. "security-coverage": {
  6944. "status": "not-covered",
  6945. "message": "Alpha releases are not covered by Drupal security advisories."
  6946. }
  6947. }
  6948. },
  6949. "notification-url": "https://packages.drupal.org/8/downloads",
  6950. "license": [
  6951. "GPL-2.0-or-later"
  6952. ],
  6953. "authors": [
  6954. {
  6955. "name": "Berdir",
  6956. "homepage": "https://www.drupal.org/user/214652"
  6957. },
  6958. {
  6959. "name": "Dane Powell",
  6960. "homepage": "https://www.drupal.org/user/339326"
  6961. },
  6962. {
  6963. "name": "arnested",
  6964. "homepage": "https://www.drupal.org/user/245635"
  6965. },
  6966. {
  6967. "name": "gielfeldt",
  6968. "homepage": "https://www.drupal.org/user/366993"
  6969. },
  6970. {
  6971. "name": "miro_dietiker",
  6972. "homepage": "https://www.drupal.org/user/227761"
  6973. }
  6974. ],
  6975. "description": "Cron",
  6976. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6977. "support": {
  6978. "source": "http://cgit.drupalcode.org/ultimate_cron"
  6979. }
  6980. },
  6981. {
  6982. "name": "drupal/url_to_video_filter",
  6983. "version": "1.3.0",
  6984. "source": {
  6985. "type": "git",
  6986. "url": "https://git.drupal.org/project/url_to_video_filter",
  6987. "reference": "8.x-1.3"
  6988. },
  6989. "dist": {
  6990. "type": "zip",
  6991. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  6992. "reference": "8.x-1.3",
  6993. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  6994. },
  6995. "require": {
  6996. "drupal/core": "~8.0"
  6997. },
  6998. "type": "drupal-module",
  6999. "extra": {
  7000. "branch-alias": {
  7001. "dev-1.x": "1.x-dev"
  7002. },
  7003. "drupal": {
  7004. "version": "8.x-1.3",
  7005. "datestamp": "1532695981",
  7006. "security-coverage": {
  7007. "status": "covered",
  7008. "message": "Covered by Drupal's security advisory policy"
  7009. }
  7010. }
  7011. },
  7012. "notification-url": "https://packages.drupal.org/8/downloads",
  7013. "license": [
  7014. "GPL-2.0-or-later"
  7015. ],
  7016. "authors": [
  7017. {
  7018. "name": "Jaypan",
  7019. "homepage": "https://www.drupal.org/user/324696"
  7020. }
  7021. ],
  7022. "description": "Text filter to convert URLs to embedded videos",
  7023. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  7024. "support": {
  7025. "source": "http://cgit.drupalcode.org/url_to_video_filter"
  7026. }
  7027. },
  7028. {
  7029. "name": "drupal/video_embed_field",
  7030. "version": "2.0.0",
  7031. "source": {
  7032. "type": "git",
  7033. "url": "https://git.drupal.org/project/video_embed_field",
  7034. "reference": "8.x-2.0"
  7035. },
  7036. "dist": {
  7037. "type": "zip",
  7038. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.0.zip",
  7039. "reference": "8.x-2.0",
  7040. "shasum": "e864f090b3cb9405376ca324d81ace83613e2019"
  7041. },
  7042. "require": {
  7043. "drupal/core": "*"
  7044. },
  7045. "require-dev": {
  7046. "drupal/colorbox": "*",
  7047. "drupal/media_entity": "*",
  7048. "drupal/media_entity_embeddable_video": "*"
  7049. },
  7050. "type": "drupal-module",
  7051. "extra": {
  7052. "branch-alias": {
  7053. "dev-2.x": "2.x-dev"
  7054. },
  7055. "drupal": {
  7056. "version": "8.x-1.x",
  7057. "datestamp": "1523338084",
  7058. "security-coverage": {
  7059. "status": "covered",
  7060. "message": "Covered by Drupal's security advisory policy"
  7061. },
  7062. "package": "Field types"
  7063. }
  7064. },
  7065. "notification-url": "https://packages.drupal.org/8/downloads",
  7066. "license": [
  7067. "GPL-2.0+"
  7068. ],
  7069. "authors": [
  7070. {
  7071. "name": "Sam152",
  7072. "homepage": "https://www.drupal.org/user/1485048"
  7073. },
  7074. {
  7075. "name": "jec006",
  7076. "homepage": "https://www.drupal.org/user/855980"
  7077. },
  7078. {
  7079. "name": "plopesc",
  7080. "homepage": "https://www.drupal.org/user/282415"
  7081. }
  7082. ],
  7083. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7084. "homepage": "https://www.drupal.org/project/video_embed_field",
  7085. "support": {
  7086. "source": "http://cgit.drupalcode.org/video_embed_field"
  7087. }
  7088. },
  7089. {
  7090. "name": "drupal/views_bulk_edit",
  7091. "version": "2.2.0",
  7092. "source": {
  7093. "type": "git",
  7094. "url": "https://git.drupal.org/project/views_bulk_edit",
  7095. "reference": "8.x-2.2"
  7096. },
  7097. "dist": {
  7098. "type": "zip",
  7099. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  7100. "reference": "8.x-2.2",
  7101. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  7102. },
  7103. "require": {
  7104. "drupal/core": "*",
  7105. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  7106. },
  7107. "type": "drupal-module",
  7108. "extra": {
  7109. "branch-alias": {
  7110. "dev-2.x": "2.x-dev"
  7111. },
  7112. "drupal": {
  7113. "version": "8.x-2.2",
  7114. "datestamp": "1532689085",
  7115. "security-coverage": {
  7116. "status": "covered",
  7117. "message": "Covered by Drupal's security advisory policy"
  7118. }
  7119. }
  7120. },
  7121. "notification-url": "https://packages.drupal.org/8/downloads",
  7122. "license": [
  7123. "GPL-2.0+"
  7124. ],
  7125. "authors": [
  7126. {
  7127. "name": "Marcin Grabias",
  7128. "homepage": "https://www.drupal.org/u/graber"
  7129. },
  7130. {
  7131. "name": "benjy",
  7132. "homepage": "https://www.drupal.org/user/1852732"
  7133. }
  7134. ],
  7135. "description": "Allows bulk edition of entity field values.",
  7136. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7137. "support": {
  7138. "source": "http://cgit.drupalcode.org/views_bulk_edit",
  7139. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7140. }
  7141. },
  7142. {
  7143. "name": "drupal/views_bulk_operations",
  7144. "version": "2.4.0",
  7145. "source": {
  7146. "type": "git",
  7147. "url": "https://git.drupal.org/project/views_bulk_operations",
  7148. "reference": "8.x-2.4"
  7149. },
  7150. "dist": {
  7151. "type": "zip",
  7152. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.4.zip",
  7153. "reference": "8.x-2.4",
  7154. "shasum": "50c5778770f3a92e38ecf664301b77146e3cc931"
  7155. },
  7156. "require": {
  7157. "drupal/core": "^8.4"
  7158. },
  7159. "type": "drupal-module",
  7160. "extra": {
  7161. "branch-alias": {
  7162. "dev-2.x": "2.x-dev"
  7163. },
  7164. "drupal": {
  7165. "version": "8.x-2.4",
  7166. "datestamp": "1530516821",
  7167. "security-coverage": {
  7168. "status": "covered",
  7169. "message": "Covered by Drupal's security advisory policy"
  7170. }
  7171. },
  7172. "drush": {
  7173. "services": {
  7174. "drush.services.yml": "^9"
  7175. }
  7176. }
  7177. },
  7178. "notification-url": "https://packages.drupal.org/8/downloads",
  7179. "license": [
  7180. "GPL-2.0+"
  7181. ],
  7182. "authors": [
  7183. {
  7184. "name": "Marcin Grabias",
  7185. "homepage": "https://www.drupal.org/u/graber"
  7186. },
  7187. {
  7188. "name": "Jon Pugh",
  7189. "homepage": "https://www.drupal.org/user/17028"
  7190. },
  7191. {
  7192. "name": "bojanz",
  7193. "homepage": "https://www.drupal.org/user/86106"
  7194. },
  7195. {
  7196. "name": "infojunkie",
  7197. "homepage": "https://www.drupal.org/user/48424"
  7198. },
  7199. {
  7200. "name": "joelpittet",
  7201. "homepage": "https://www.drupal.org/user/160302"
  7202. }
  7203. ],
  7204. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7205. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7206. "support": {
  7207. "source": "http://cgit.drupalcode.org/views_bulk_operations",
  7208. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7209. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7210. }
  7211. },
  7212. {
  7213. "name": "drupal/views_conditional",
  7214. "version": "dev-1.x",
  7215. "source": {
  7216. "type": "git",
  7217. "url": "https://git.drupal.org/project/views_conditional",
  7218. "reference": "414f27d55ab8d25ce8236dbd9fc359bc454fe9c8"
  7219. },
  7220. "require": {
  7221. "drupal/core": "*"
  7222. },
  7223. "type": "drupal-module",
  7224. "extra": {
  7225. "branch-alias": {
  7226. "dev-1.x": "1.x-dev"
  7227. },
  7228. "drupal": {
  7229. "version": "8.x-1.x-dev",
  7230. "datestamp": "1514538185",
  7231. "security-coverage": {
  7232. "status": "not-covered",
  7233. "message": "Dev releases are not covered by Drupal security advisories."
  7234. }
  7235. }
  7236. },
  7237. "notification-url": "https://packages.drupal.org/8/downloads",
  7238. "license": [
  7239. "GPL-2.0-or-later"
  7240. ],
  7241. "authors": [
  7242. {
  7243. "name": "MChittenden",
  7244. "homepage": "https://www.drupal.org/user/2288348"
  7245. },
  7246. {
  7247. "name": "anand.toshniwal93",
  7248. "homepage": "https://www.drupal.org/user/3345088"
  7249. },
  7250. {
  7251. "name": "ofry",
  7252. "homepage": "https://www.drupal.org/user/2740599"
  7253. }
  7254. ],
  7255. "description": "Allows conditional views output.",
  7256. "homepage": "https://www.drupal.org/project/views_conditional",
  7257. "support": {
  7258. "source": "http://cgit.drupalcode.org/views_conditional"
  7259. },
  7260. "time": "2019-02-05T19:20:00+00:00"
  7261. },
  7262. {
  7263. "name": "drupal/views_ef_fieldset",
  7264. "version": "dev-1.x",
  7265. "source": {
  7266. "type": "git",
  7267. "url": "https://git.drupal.org/project/views_ef_fieldset",
  7268. "reference": "d8005b76baa0c9d03553ad75f1aaddae5fb8f0a8"
  7269. },
  7270. "require": {
  7271. "drupal/core": "*",
  7272. "php": ">=7"
  7273. },
  7274. "require-dev": {
  7275. "drupol/drupal-conventions": "^1"
  7276. },
  7277. "type": "drupal-module",
  7278. "extra": {
  7279. "branch-alias": {
  7280. "dev-1.x": "1.x-dev"
  7281. },
  7282. "drupal": {
  7283. "version": "8.x-1.2+1-dev",
  7284. "datestamp": "1549467480",
  7285. "security-coverage": {
  7286. "status": "not-covered",
  7287. "message": "Dev releases are not covered by Drupal security advisories."
  7288. }
  7289. },
  7290. "grumphp": {
  7291. "config-default-path": "vendor/drupol/drupal-conventions/config/drupal8/grumphp.yml"
  7292. },
  7293. "composer-exit-on-patch-failure": true,
  7294. "enable-patching": true,
  7295. "patches": {
  7296. "drupal/core": {
  7297. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  7298. }
  7299. }
  7300. },
  7301. "autoload-dev": {
  7302. "psr-4": {
  7303. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  7304. }
  7305. },
  7306. "notification-url": "https://packages.drupal.org/8/downloads",
  7307. "scripts": {
  7308. "grumphp": [
  7309. "./vendor/bin/grumphp run"
  7310. ]
  7311. },
  7312. "license": [
  7313. "GPL-2.0+"
  7314. ],
  7315. "authors": [
  7316. {
  7317. "name": "Pol Dellaiera",
  7318. "homepage": "https://www.drupal.org/user/47194",
  7319. "email": "pol.dellaiera@protonmail.com"
  7320. },
  7321. {
  7322. "name": "ciss",
  7323. "homepage": "https://www.drupal.org/user/1632364"
  7324. }
  7325. ],
  7326. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  7327. "homepage": "https://drupal.org/project/views_field_formatter",
  7328. "support": {
  7329. "source": "http://cgit.drupalcode.org/views_ef_fieldset"
  7330. },
  7331. "time": "2019-02-06T21:02:32+00:00"
  7332. },
  7333. {
  7334. "name": "drupal/workflow",
  7335. "version": "dev-1.x",
  7336. "source": {
  7337. "type": "git",
  7338. "url": "https://git.drupal.org/project/workflow",
  7339. "reference": "19030d5b4dd9523153a7af6e2df44cd9a03109b2"
  7340. },
  7341. "require": {
  7342. "drupal/core": "*"
  7343. },
  7344. "type": "drupal-module",
  7345. "extra": {
  7346. "branch-alias": {
  7347. "dev-1.x": "1.x-dev"
  7348. },
  7349. "drupal": {
  7350. "version": "8.x-1.1+34-dev",
  7351. "datestamp": "1548775680",
  7352. "security-coverage": {
  7353. "status": "not-covered",
  7354. "message": "Dev releases are not covered by Drupal security advisories."
  7355. }
  7356. }
  7357. },
  7358. "notification-url": "https://packages.drupal.org/8/downloads",
  7359. "license": [
  7360. "GPL-2.0-or-later"
  7361. ],
  7362. "authors": [
  7363. {
  7364. "name": "Bastlynn",
  7365. "homepage": "https://www.drupal.org/user/275249"
  7366. },
  7367. {
  7368. "name": "Heine",
  7369. "homepage": "https://www.drupal.org/user/17943"
  7370. },
  7371. {
  7372. "name": "JacobSingh",
  7373. "homepage": "https://www.drupal.org/user/68912"
  7374. },
  7375. {
  7376. "name": "NancyDru",
  7377. "homepage": "https://www.drupal.org/user/101412"
  7378. },
  7379. {
  7380. "name": "eaton",
  7381. "homepage": "https://www.drupal.org/user/16496"
  7382. },
  7383. {
  7384. "name": "johnv",
  7385. "homepage": "https://www.drupal.org/user/591042"
  7386. },
  7387. {
  7388. "name": "jvandyk",
  7389. "homepage": "https://www.drupal.org/user/2375"
  7390. },
  7391. {
  7392. "name": "mfredrickson",
  7393. "homepage": "https://www.drupal.org/user/31994"
  7394. },
  7395. {
  7396. "name": "q0rban",
  7397. "homepage": "https://www.drupal.org/user/31022"
  7398. }
  7399. ],
  7400. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  7401. "homepage": "https://www.drupal.org/project/workflow",
  7402. "support": {
  7403. "source": "http://cgit.drupalcode.org/workflow"
  7404. },
  7405. "time": "2019-01-29T22:35:30+00:00"
  7406. },
  7407. {
  7408. "name": "drush/drush",
  7409. "version": "9.5.2",
  7410. "source": {
  7411. "type": "git",
  7412. "url": "https://github.com/drush-ops/drush.git",
  7413. "reference": "17f0106706391675a281c6d212850853bdbe90f9"
  7414. },
  7415. "dist": {
  7416. "type": "zip",
  7417. "url": "https://api.github.com/repos/drush-ops/drush/zipball/17f0106706391675a281c6d212850853bdbe90f9",
  7418. "reference": "17f0106706391675a281c6d212850853bdbe90f9",
  7419. "shasum": ""
  7420. },
  7421. "require": {
  7422. "chi-teck/drupal-code-generator": "^1.27.0",
  7423. "composer/semver": "^1.4",
  7424. "consolidation/annotated-command": "^2.9.1",
  7425. "consolidation/config": "^1.1.0",
  7426. "consolidation/output-formatters": "^3.1.12",
  7427. "consolidation/robo": "^1.1.5",
  7428. "consolidation/site-alias": "^1.1.5",
  7429. "ext-dom": "*",
  7430. "grasmash/yaml-expander": "^1.1.1",
  7431. "league/container": "~2",
  7432. "php": ">=5.6.0",
  7433. "psr/log": "~1.0",
  7434. "psy/psysh": "~0.6",
  7435. "symfony/config": "^3.4",
  7436. "symfony/console": "^3.4",
  7437. "symfony/event-dispatcher": "^3.4",
  7438. "symfony/finder": "^3.4",
  7439. "symfony/process": "^3.4",
  7440. "symfony/var-dumper": "^3.4",
  7441. "symfony/yaml": "^3.4",
  7442. "webflo/drupal-finder": "^1.1",
  7443. "webmozart/path-util": "^2.1.0"
  7444. },
  7445. "require-dev": {
  7446. "composer/installers": "^1.2",
  7447. "cweagans/composer-patches": "~1.0",
  7448. "drupal/alinks": "1.0.0",
  7449. "drupal/devel": "^1.0@RC",
  7450. "drupal/empty_theme": "1.0",
  7451. "g1a/composer-test-scenarios": "^2.2.0",
  7452. "lox/xhprof": "dev-master",
  7453. "phpunit/phpunit": "^4.8.36 || ^6.1",
  7454. "squizlabs/php_codesniffer": "^2.7",
  7455. "vlucas/phpdotenv": "^2.4",
  7456. "webflo/drupal-core-strict": "8.6.x-dev"
  7457. },
  7458. "bin": [
  7459. "drush"
  7460. ],
  7461. "type": "library",
  7462. "extra": {
  7463. "installer-paths": {
  7464. "sut/core": [
  7465. "type:drupal-core"
  7466. ],
  7467. "sut/libraries/{$name}": [
  7468. "type:drupal-library"
  7469. ],
  7470. "sut/modules/unish/{$name}": [
  7471. "drupal/devel"
  7472. ],
  7473. "sut/themes/unish/{$name}": [
  7474. "drupal/empty_theme"
  7475. ],
  7476. "sut/modules/contrib/{$name}": [
  7477. "type:drupal-module"
  7478. ],
  7479. "sut/profiles/contrib/{$name}": [
  7480. "type:drupal-profile"
  7481. ],
  7482. "sut/themes/contrib/{$name}": [
  7483. "type:drupal-theme"
  7484. ],
  7485. "sut/drush/contrib/{$name}": [
  7486. "type:drupal-drush"
  7487. ]
  7488. },
  7489. "branch-alias": {
  7490. "dev-master": "9.x-dev"
  7491. }
  7492. },
  7493. "autoload": {
  7494. "psr-4": {
  7495. "Drush\\": "src/",
  7496. "Drush\\Internal\\": "internal-copy/",
  7497. "Unish\\": "tests/"
  7498. }
  7499. },
  7500. "notification-url": "https://packagist.org/downloads/",
  7501. "license": [
  7502. "GPL-2.0-or-later"
  7503. ],
  7504. "authors": [
  7505. {
  7506. "name": "Moshe Weitzman",
  7507. "email": "weitzman@tejasa.com"
  7508. },
  7509. {
  7510. "name": "Owen Barton",
  7511. "email": "drupal@owenbarton.com"
  7512. },
  7513. {
  7514. "name": "Greg Anderson",
  7515. "email": "greg.1.anderson@greenknowe.org"
  7516. },
  7517. {
  7518. "name": "Jonathan Araña Cruz",
  7519. "email": "jonhattan@faita.net"
  7520. },
  7521. {
  7522. "name": "Jonathan Hedstrom",
  7523. "email": "jhedstrom@gmail.com"
  7524. },
  7525. {
  7526. "name": "Christopher Gervais",
  7527. "email": "chris@ergonlogic.com"
  7528. },
  7529. {
  7530. "name": "Dave Reid",
  7531. "email": "dave@davereid.net"
  7532. },
  7533. {
  7534. "name": "Damian Lee",
  7535. "email": "damiankloip@googlemail.com"
  7536. }
  7537. ],
  7538. "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.",
  7539. "homepage": "http://www.drush.org",
  7540. "time": "2018-10-17T18:37:53+00:00"
  7541. },
  7542. {
  7543. "name": "easyrdf/easyrdf",
  7544. "version": "0.9.1",
  7545. "source": {
  7546. "type": "git",
  7547. "url": "https://github.com/njh/easyrdf.git",
  7548. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  7549. },
  7550. "dist": {
  7551. "type": "zip",
  7552. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  7553. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  7554. "shasum": ""
  7555. },
  7556. "require": {
  7557. "ext-mbstring": "*",
  7558. "ext-pcre": "*",
  7559. "php": ">=5.2.8"
  7560. },
  7561. "require-dev": {
  7562. "phpunit/phpunit": "~3.5",
  7563. "sami/sami": "~1.4",
  7564. "squizlabs/php_codesniffer": "~1.4.3"
  7565. },
  7566. "suggest": {
  7567. "ml/json-ld": "~1.0"
  7568. },
  7569. "type": "library",
  7570. "autoload": {
  7571. "psr-0": {
  7572. "EasyRdf_": "lib/"
  7573. }
  7574. },
  7575. "notification-url": "https://packagist.org/downloads/",
  7576. "license": [
  7577. "BSD-3-Clause"
  7578. ],
  7579. "authors": [
  7580. {
  7581. "name": "Nicholas Humfrey",
  7582. "email": "njh@aelius.com",
  7583. "homepage": "http://www.aelius.com/njh/",
  7584. "role": "Developer"
  7585. },
  7586. {
  7587. "name": "Alexey Zakhlestin",
  7588. "email": "indeyets@gmail.com",
  7589. "role": "Developer"
  7590. }
  7591. ],
  7592. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  7593. "homepage": "http://www.easyrdf.org/",
  7594. "keywords": [
  7595. "Linked Data",
  7596. "RDF",
  7597. "Semantic Web",
  7598. "Turtle",
  7599. "rdfa",
  7600. "sparql"
  7601. ],
  7602. "time": "2015-02-27T09:45:49+00:00"
  7603. },
  7604. {
  7605. "name": "egulias/email-validator",
  7606. "version": "1.2.15",
  7607. "source": {
  7608. "type": "git",
  7609. "url": "https://github.com/egulias/EmailValidator.git",
  7610. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  7611. },
  7612. "dist": {
  7613. "type": "zip",
  7614. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7615. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7616. "shasum": ""
  7617. },
  7618. "require": {
  7619. "doctrine/lexer": "^1.0.1",
  7620. "php": ">= 5.3.3"
  7621. },
  7622. "require-dev": {
  7623. "phpunit/phpunit": "^4.8.24"
  7624. },
  7625. "type": "library",
  7626. "extra": {
  7627. "branch-alias": {
  7628. "dev-master": "2.0.x-dev"
  7629. }
  7630. },
  7631. "autoload": {
  7632. "psr-0": {
  7633. "Egulias\\": "src/"
  7634. }
  7635. },
  7636. "notification-url": "https://packagist.org/downloads/",
  7637. "license": [
  7638. "MIT"
  7639. ],
  7640. "authors": [
  7641. {
  7642. "name": "Eduardo Gulias Davis"
  7643. }
  7644. ],
  7645. "description": "A library for validating emails",
  7646. "homepage": "https://github.com/egulias/EmailValidator",
  7647. "keywords": [
  7648. "email",
  7649. "emailvalidation",
  7650. "emailvalidator",
  7651. "validation",
  7652. "validator"
  7653. ],
  7654. "time": "2018-09-25T20:59:41+00:00"
  7655. },
  7656. {
  7657. "name": "giggsey/libphonenumber-for-php",
  7658. "version": "8.10.5",
  7659. "source": {
  7660. "type": "git",
  7661. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  7662. "reference": "667a1fe292561b7c64c4fc457a9f1ecc41d67185"
  7663. },
  7664. "dist": {
  7665. "type": "zip",
  7666. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/667a1fe292561b7c64c4fc457a9f1ecc41d67185",
  7667. "reference": "667a1fe292561b7c64c4fc457a9f1ecc41d67185",
  7668. "shasum": ""
  7669. },
  7670. "require": {
  7671. "ext-mbstring": "*",
  7672. "giggsey/locale": "^1.2",
  7673. "php": ">=5.3.2"
  7674. },
  7675. "require-dev": {
  7676. "pear/pear-core-minimal": "^1.9",
  7677. "pear/pear_exception": "^1.0",
  7678. "pear/versioncontrol_git": "^0.5",
  7679. "phing/phing": "^2.7",
  7680. "php-coveralls/php-coveralls": "^1.0|^2.0",
  7681. "phpunit/phpunit": "^4.8.36|^5.0",
  7682. "symfony/console": "^2.8|^3.0"
  7683. },
  7684. "type": "library",
  7685. "extra": {
  7686. "branch-alias": {
  7687. "dev-master": "8.x-dev"
  7688. }
  7689. },
  7690. "autoload": {
  7691. "psr-4": {
  7692. "libphonenumber\\": "src/"
  7693. },
  7694. "exclude-from-classmap": [
  7695. "/src/data/",
  7696. "/src/carrier/data/",
  7697. "/src/geocoding/data/",
  7698. "/src/timezone/data/"
  7699. ]
  7700. },
  7701. "notification-url": "https://packagist.org/downloads/",
  7702. "license": [
  7703. "Apache-2.0"
  7704. ],
  7705. "authors": [
  7706. {
  7707. "name": "Joshua Gigg",
  7708. "email": "giggsey@gmail.com",
  7709. "homepage": "https://giggsey.com/"
  7710. }
  7711. ],
  7712. "description": "PHP Port of Google's libphonenumber",
  7713. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  7714. "keywords": [
  7715. "geocoding",
  7716. "geolocation",
  7717. "libphonenumber",
  7718. "mobile",
  7719. "phonenumber",
  7720. "validation"
  7721. ],
  7722. "time": "2019-02-08T08:31:08+00:00"
  7723. },
  7724. {
  7725. "name": "giggsey/locale",
  7726. "version": "1.6",
  7727. "source": {
  7728. "type": "git",
  7729. "url": "https://github.com/giggsey/Locale.git",
  7730. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5"
  7731. },
  7732. "dist": {
  7733. "type": "zip",
  7734. "url": "https://api.github.com/repos/giggsey/Locale/zipball/da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7735. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7736. "shasum": ""
  7737. },
  7738. "require": {
  7739. "php": ">=5.3.2"
  7740. },
  7741. "require-dev": {
  7742. "pear/pear-core-minimal": "^1.9",
  7743. "pear/pear_exception": "^1.0",
  7744. "pear/versioncontrol_git": "^0.5",
  7745. "phing/phing": "~2.7",
  7746. "phpunit/phpunit": "^4.8|^5.0",
  7747. "satooshi/php-coveralls": "^1.0",
  7748. "symfony/console": "^2.8|^3.0|^4.0",
  7749. "symfony/filesystem": "^2.8|^3.0|^4.0",
  7750. "symfony/finder": "^2.8|^3.0|^4.0",
  7751. "symfony/process": "^2.8|^3.0|^4.0"
  7752. },
  7753. "type": "library",
  7754. "autoload": {
  7755. "psr-4": {
  7756. "Giggsey\\Locale\\": "src/"
  7757. }
  7758. },
  7759. "notification-url": "https://packagist.org/downloads/",
  7760. "license": [
  7761. "MIT"
  7762. ],
  7763. "authors": [
  7764. {
  7765. "name": "Joshua Gigg",
  7766. "email": "giggsey@gmail.com",
  7767. "homepage": "http://giggsey.com/"
  7768. }
  7769. ],
  7770. "description": "Locale functions required by libphonenumber-for-php",
  7771. "time": "2018-10-18T07:17:52+00:00"
  7772. },
  7773. {
  7774. "name": "grasmash/expander",
  7775. "version": "1.0.0",
  7776. "source": {
  7777. "type": "git",
  7778. "url": "https://github.com/grasmash/expander.git",
  7779. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  7780. },
  7781. "dist": {
  7782. "type": "zip",
  7783. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7784. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7785. "shasum": ""
  7786. },
  7787. "require": {
  7788. "dflydev/dot-access-data": "^1.1.0",
  7789. "php": ">=5.4"
  7790. },
  7791. "require-dev": {
  7792. "greg-1-anderson/composer-test-scenarios": "^1",
  7793. "phpunit/phpunit": "^4|^5.5.4",
  7794. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7795. "squizlabs/php_codesniffer": "^2.7"
  7796. },
  7797. "type": "library",
  7798. "extra": {
  7799. "branch-alias": {
  7800. "dev-master": "1.x-dev"
  7801. }
  7802. },
  7803. "autoload": {
  7804. "psr-4": {
  7805. "Grasmash\\Expander\\": "src/"
  7806. }
  7807. },
  7808. "notification-url": "https://packagist.org/downloads/",
  7809. "license": [
  7810. "MIT"
  7811. ],
  7812. "authors": [
  7813. {
  7814. "name": "Matthew Grasmick"
  7815. }
  7816. ],
  7817. "description": "Expands internal property references in PHP arrays file.",
  7818. "time": "2017-12-21T22:14:55+00:00"
  7819. },
  7820. {
  7821. "name": "grasmash/yaml-expander",
  7822. "version": "1.4.0",
  7823. "source": {
  7824. "type": "git",
  7825. "url": "https://github.com/grasmash/yaml-expander.git",
  7826. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  7827. },
  7828. "dist": {
  7829. "type": "zip",
  7830. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7831. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7832. "shasum": ""
  7833. },
  7834. "require": {
  7835. "dflydev/dot-access-data": "^1.1.0",
  7836. "php": ">=5.4",
  7837. "symfony/yaml": "^2.8.11|^3|^4"
  7838. },
  7839. "require-dev": {
  7840. "greg-1-anderson/composer-test-scenarios": "^1",
  7841. "phpunit/phpunit": "^4.8|^5.5.4",
  7842. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7843. "squizlabs/php_codesniffer": "^2.7"
  7844. },
  7845. "type": "library",
  7846. "extra": {
  7847. "branch-alias": {
  7848. "dev-master": "1.x-dev"
  7849. }
  7850. },
  7851. "autoload": {
  7852. "psr-4": {
  7853. "Grasmash\\YamlExpander\\": "src/"
  7854. }
  7855. },
  7856. "notification-url": "https://packagist.org/downloads/",
  7857. "license": [
  7858. "MIT"
  7859. ],
  7860. "authors": [
  7861. {
  7862. "name": "Matthew Grasmick"
  7863. }
  7864. ],
  7865. "description": "Expands internal property references in a yaml file.",
  7866. "time": "2017-12-16T16:06:03+00:00"
  7867. },
  7868. {
  7869. "name": "guzzlehttp/guzzle",
  7870. "version": "6.3.3",
  7871. "source": {
  7872. "type": "git",
  7873. "url": "https://github.com/guzzle/guzzle.git",
  7874. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  7875. },
  7876. "dist": {
  7877. "type": "zip",
  7878. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7879. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7880. "shasum": ""
  7881. },
  7882. "require": {
  7883. "guzzlehttp/promises": "^1.0",
  7884. "guzzlehttp/psr7": "^1.4",
  7885. "php": ">=5.5"
  7886. },
  7887. "require-dev": {
  7888. "ext-curl": "*",
  7889. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  7890. "psr/log": "^1.0"
  7891. },
  7892. "suggest": {
  7893. "psr/log": "Required for using the Log middleware"
  7894. },
  7895. "type": "library",
  7896. "extra": {
  7897. "branch-alias": {
  7898. "dev-master": "6.3-dev"
  7899. }
  7900. },
  7901. "autoload": {
  7902. "files": [
  7903. "src/functions_include.php"
  7904. ],
  7905. "psr-4": {
  7906. "GuzzleHttp\\": "src/"
  7907. }
  7908. },
  7909. "notification-url": "https://packagist.org/downloads/",
  7910. "license": [
  7911. "MIT"
  7912. ],
  7913. "authors": [
  7914. {
  7915. "name": "Michael Dowling",
  7916. "email": "mtdowling@gmail.com",
  7917. "homepage": "https://github.com/mtdowling"
  7918. }
  7919. ],
  7920. "description": "Guzzle is a PHP HTTP client library",
  7921. "homepage": "http://guzzlephp.org/",
  7922. "keywords": [
  7923. "client",
  7924. "curl",
  7925. "framework",
  7926. "http",
  7927. "http client",
  7928. "rest",
  7929. "web service"
  7930. ],
  7931. "time": "2018-04-22T15:46:56+00:00"
  7932. },
  7933. {
  7934. "name": "guzzlehttp/promises",
  7935. "version": "v1.3.1",
  7936. "source": {
  7937. "type": "git",
  7938. "url": "https://github.com/guzzle/promises.git",
  7939. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  7940. },
  7941. "dist": {
  7942. "type": "zip",
  7943. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7944. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7945. "shasum": ""
  7946. },
  7947. "require": {
  7948. "php": ">=5.5.0"
  7949. },
  7950. "require-dev": {
  7951. "phpunit/phpunit": "^4.0"
  7952. },
  7953. "type": "library",
  7954. "extra": {
  7955. "branch-alias": {
  7956. "dev-master": "1.4-dev"
  7957. }
  7958. },
  7959. "autoload": {
  7960. "psr-4": {
  7961. "GuzzleHttp\\Promise\\": "src/"
  7962. },
  7963. "files": [
  7964. "src/functions_include.php"
  7965. ]
  7966. },
  7967. "notification-url": "https://packagist.org/downloads/",
  7968. "license": [
  7969. "MIT"
  7970. ],
  7971. "authors": [
  7972. {
  7973. "name": "Michael Dowling",
  7974. "email": "mtdowling@gmail.com",
  7975. "homepage": "https://github.com/mtdowling"
  7976. }
  7977. ],
  7978. "description": "Guzzle promises library",
  7979. "keywords": [
  7980. "promise"
  7981. ],
  7982. "time": "2016-12-20T10:07:11+00:00"
  7983. },
  7984. {
  7985. "name": "guzzlehttp/psr7",
  7986. "version": "1.5.2",
  7987. "source": {
  7988. "type": "git",
  7989. "url": "https://github.com/guzzle/psr7.git",
  7990. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  7991. },
  7992. "dist": {
  7993. "type": "zip",
  7994. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  7995. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  7996. "shasum": ""
  7997. },
  7998. "require": {
  7999. "php": ">=5.4.0",
  8000. "psr/http-message": "~1.0",
  8001. "ralouphie/getallheaders": "^2.0.5"
  8002. },
  8003. "provide": {
  8004. "psr/http-message-implementation": "1.0"
  8005. },
  8006. "require-dev": {
  8007. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  8008. },
  8009. "type": "library",
  8010. "extra": {
  8011. "branch-alias": {
  8012. "dev-master": "1.5-dev"
  8013. }
  8014. },
  8015. "autoload": {
  8016. "psr-4": {
  8017. "GuzzleHttp\\Psr7\\": "src/"
  8018. },
  8019. "files": [
  8020. "src/functions_include.php"
  8021. ]
  8022. },
  8023. "notification-url": "https://packagist.org/downloads/",
  8024. "license": [
  8025. "MIT"
  8026. ],
  8027. "authors": [
  8028. {
  8029. "name": "Michael Dowling",
  8030. "email": "mtdowling@gmail.com",
  8031. "homepage": "https://github.com/mtdowling"
  8032. },
  8033. {
  8034. "name": "Tobias Schultze",
  8035. "homepage": "https://github.com/Tobion"
  8036. }
  8037. ],
  8038. "description": "PSR-7 message implementation that also provides common utility methods",
  8039. "keywords": [
  8040. "http",
  8041. "message",
  8042. "psr-7",
  8043. "request",
  8044. "response",
  8045. "stream",
  8046. "uri",
  8047. "url"
  8048. ],
  8049. "time": "2018-12-04T20:46:45+00:00"
  8050. },
  8051. {
  8052. "name": "jakub-onderka/php-console-color",
  8053. "version": "v0.2",
  8054. "source": {
  8055. "type": "git",
  8056. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  8057. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  8058. },
  8059. "dist": {
  8060. "type": "zip",
  8061. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  8062. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  8063. "shasum": ""
  8064. },
  8065. "require": {
  8066. "php": ">=5.4.0"
  8067. },
  8068. "require-dev": {
  8069. "jakub-onderka/php-code-style": "1.0",
  8070. "jakub-onderka/php-parallel-lint": "1.0",
  8071. "jakub-onderka/php-var-dump-check": "0.*",
  8072. "phpunit/phpunit": "~4.3",
  8073. "squizlabs/php_codesniffer": "1.*"
  8074. },
  8075. "type": "library",
  8076. "autoload": {
  8077. "psr-4": {
  8078. "JakubOnderka\\PhpConsoleColor\\": "src/"
  8079. }
  8080. },
  8081. "notification-url": "https://packagist.org/downloads/",
  8082. "license": [
  8083. "BSD-2-Clause"
  8084. ],
  8085. "authors": [
  8086. {
  8087. "name": "Jakub Onderka",
  8088. "email": "jakub.onderka@gmail.com"
  8089. }
  8090. ],
  8091. "time": "2018-09-29T17:23:10+00:00"
  8092. },
  8093. {
  8094. "name": "jakub-onderka/php-console-highlighter",
  8095. "version": "v0.4",
  8096. "source": {
  8097. "type": "git",
  8098. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  8099. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  8100. },
  8101. "dist": {
  8102. "type": "zip",
  8103. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  8104. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  8105. "shasum": ""
  8106. },
  8107. "require": {
  8108. "ext-tokenizer": "*",
  8109. "jakub-onderka/php-console-color": "~0.2",
  8110. "php": ">=5.4.0"
  8111. },
  8112. "require-dev": {
  8113. "jakub-onderka/php-code-style": "~1.0",
  8114. "jakub-onderka/php-parallel-lint": "~1.0",
  8115. "jakub-onderka/php-var-dump-check": "~0.1",
  8116. "phpunit/phpunit": "~4.0",
  8117. "squizlabs/php_codesniffer": "~1.5"
  8118. },
  8119. "type": "library",
  8120. "autoload": {
  8121. "psr-4": {
  8122. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  8123. }
  8124. },
  8125. "notification-url": "https://packagist.org/downloads/",
  8126. "license": [
  8127. "MIT"
  8128. ],
  8129. "authors": [
  8130. {
  8131. "name": "Jakub Onderka",
  8132. "email": "acci@acci.cz",
  8133. "homepage": "http://www.acci.cz/"
  8134. }
  8135. ],
  8136. "description": "Highlight PHP code in terminal",
  8137. "time": "2018-09-29T18:48:56+00:00"
  8138. },
  8139. {
  8140. "name": "league/container",
  8141. "version": "2.4.1",
  8142. "source": {
  8143. "type": "git",
  8144. "url": "https://github.com/thephpleague/container.git",
  8145. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  8146. },
  8147. "dist": {
  8148. "type": "zip",
  8149. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  8150. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  8151. "shasum": ""
  8152. },
  8153. "require": {
  8154. "container-interop/container-interop": "^1.2",
  8155. "php": "^5.4.0 || ^7.0"
  8156. },
  8157. "provide": {
  8158. "container-interop/container-interop-implementation": "^1.2",
  8159. "psr/container-implementation": "^1.0"
  8160. },
  8161. "replace": {
  8162. "orno/di": "~2.0"
  8163. },
  8164. "require-dev": {
  8165. "phpunit/phpunit": "4.*"
  8166. },
  8167. "type": "library",
  8168. "extra": {
  8169. "branch-alias": {
  8170. "dev-2.x": "2.x-dev",
  8171. "dev-1.x": "1.x-dev"
  8172. }
  8173. },
  8174. "autoload": {
  8175. "psr-4": {
  8176. "League\\Container\\": "src"
  8177. }
  8178. },
  8179. "notification-url": "https://packagist.org/downloads/",
  8180. "license": [
  8181. "MIT"
  8182. ],
  8183. "authors": [
  8184. {
  8185. "name": "Phil Bennett",
  8186. "email": "philipobenito@gmail.com",
  8187. "homepage": "http://www.philipobenito.com",
  8188. "role": "Developer"
  8189. }
  8190. ],
  8191. "description": "A fast and intuitive dependency injection container.",
  8192. "homepage": "https://github.com/thephpleague/container",
  8193. "keywords": [
  8194. "container",
  8195. "dependency",
  8196. "di",
  8197. "injection",
  8198. "league",
  8199. "provider",
  8200. "service"
  8201. ],
  8202. "time": "2017-05-10T09:20:27+00:00"
  8203. },
  8204. {
  8205. "name": "lsolesen/pel",
  8206. "version": "0.9.6",
  8207. "source": {
  8208. "type": "git",
  8209. "url": "https://github.com/lsolesen/pel.git",
  8210. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23"
  8211. },
  8212. "dist": {
  8213. "type": "zip",
  8214. "url": "https://api.github.com/repos/lsolesen/pel/zipball/c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  8215. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  8216. "shasum": ""
  8217. },
  8218. "require": {
  8219. "php": ">=5.0.0"
  8220. },
  8221. "require-dev": {
  8222. "ext-gd": "*",
  8223. "phpunit/phpunit": "5.7.*",
  8224. "satooshi/php-coveralls": "1.0.*",
  8225. "squizlabs/php_codesniffer": "3.0.0RC3"
  8226. },
  8227. "type": "library",
  8228. "autoload": {
  8229. "psr-4": {
  8230. "lsolesen\\pel\\": "src/"
  8231. }
  8232. },
  8233. "notification-url": "https://packagist.org/downloads/",
  8234. "license": [
  8235. "GPL-2.0"
  8236. ],
  8237. "authors": [
  8238. {
  8239. "name": "Lars Olesen",
  8240. "email": "lars@intraface.dk",
  8241. "homepage": "http://intraface.dk",
  8242. "role": "Developer"
  8243. },
  8244. {
  8245. "name": "Martin Geisler",
  8246. "email": "martin@geisler.net",
  8247. "homepage": "http://geisler.net",
  8248. "role": "Developer"
  8249. }
  8250. ],
  8251. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  8252. "homepage": "http://lsolesen.github.com/pel/",
  8253. "keywords": [
  8254. "exif",
  8255. "image"
  8256. ],
  8257. "time": "2017-02-03T11:58:58+00:00"
  8258. },
  8259. {
  8260. "name": "masterminds/html5",
  8261. "version": "2.5.0",
  8262. "source": {
  8263. "type": "git",
  8264. "url": "https://github.com/Masterminds/html5-php.git",
  8265. "reference": "b5d892a4bd058d61f736935d32a9c248f11ccc93"
  8266. },
  8267. "dist": {
  8268. "type": "zip",
  8269. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/b5d892a4bd058d61f736935d32a9c248f11ccc93",
  8270. "reference": "b5d892a4bd058d61f736935d32a9c248f11ccc93",
  8271. "shasum": ""
  8272. },
  8273. "require": {
  8274. "ext-ctype": "*",
  8275. "ext-dom": "*",
  8276. "ext-libxml": "*",
  8277. "php": ">=5.3.0"
  8278. },
  8279. "require-dev": {
  8280. "phpunit/phpunit": "^4.8.35",
  8281. "sami/sami": "~2.0",
  8282. "satooshi/php-coveralls": "1.0.*"
  8283. },
  8284. "type": "library",
  8285. "extra": {
  8286. "branch-alias": {
  8287. "dev-master": "2.4-dev"
  8288. }
  8289. },
  8290. "autoload": {
  8291. "psr-4": {
  8292. "Masterminds\\": "src"
  8293. }
  8294. },
  8295. "notification-url": "https://packagist.org/downloads/",
  8296. "license": [
  8297. "MIT"
  8298. ],
  8299. "authors": [
  8300. {
  8301. "name": "Matt Butcher",
  8302. "email": "technosophos@gmail.com"
  8303. },
  8304. {
  8305. "name": "Asmir Mustafic",
  8306. "email": "goetas@gmail.com"
  8307. },
  8308. {
  8309. "name": "Matt Farina",
  8310. "email": "matt@mattfarina.com"
  8311. }
  8312. ],
  8313. "description": "An HTML5 parser and serializer.",
  8314. "homepage": "http://masterminds.github.io/html5-php",
  8315. "keywords": [
  8316. "HTML5",
  8317. "dom",
  8318. "html",
  8319. "parser",
  8320. "querypath",
  8321. "serializer",
  8322. "xml"
  8323. ],
  8324. "time": "2018-12-27T22:03:43+00:00"
  8325. },
  8326. {
  8327. "name": "nikic/php-parser",
  8328. "version": "v4.2.0",
  8329. "source": {
  8330. "type": "git",
  8331. "url": "https://github.com/nikic/PHP-Parser.git",
  8332. "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a"
  8333. },
  8334. "dist": {
  8335. "type": "zip",
  8336. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/594bcae1fc0bccd3993d2f0d61a018e26ac2865a",
  8337. "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a",
  8338. "shasum": ""
  8339. },
  8340. "require": {
  8341. "ext-tokenizer": "*",
  8342. "php": ">=7.0"
  8343. },
  8344. "require-dev": {
  8345. "phpunit/phpunit": "^6.5 || ^7.0"
  8346. },
  8347. "bin": [
  8348. "bin/php-parse"
  8349. ],
  8350. "type": "library",
  8351. "extra": {
  8352. "branch-alias": {
  8353. "dev-master": "4.2-dev"
  8354. }
  8355. },
  8356. "autoload": {
  8357. "psr-4": {
  8358. "PhpParser\\": "lib/PhpParser"
  8359. }
  8360. },
  8361. "notification-url": "https://packagist.org/downloads/",
  8362. "license": [
  8363. "BSD-3-Clause"
  8364. ],
  8365. "authors": [
  8366. {
  8367. "name": "Nikita Popov"
  8368. }
  8369. ],
  8370. "description": "A PHP parser written in PHP",
  8371. "keywords": [
  8372. "parser",
  8373. "php"
  8374. ],
  8375. "time": "2019-01-12T16:31:37+00:00"
  8376. },
  8377. {
  8378. "name": "paragonie/random_compat",
  8379. "version": "v2.0.18",
  8380. "source": {
  8381. "type": "git",
  8382. "url": "https://github.com/paragonie/random_compat.git",
  8383. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  8384. },
  8385. "dist": {
  8386. "type": "zip",
  8387. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  8388. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  8389. "shasum": ""
  8390. },
  8391. "require": {
  8392. "php": ">=5.2.0"
  8393. },
  8394. "require-dev": {
  8395. "phpunit/phpunit": "4.*|5.*"
  8396. },
  8397. "suggest": {
  8398. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  8399. },
  8400. "type": "library",
  8401. "autoload": {
  8402. "files": [
  8403. "lib/random.php"
  8404. ]
  8405. },
  8406. "notification-url": "https://packagist.org/downloads/",
  8407. "license": [
  8408. "MIT"
  8409. ],
  8410. "authors": [
  8411. {
  8412. "name": "Paragon Initiative Enterprises",
  8413. "email": "security@paragonie.com",
  8414. "homepage": "https://paragonie.com"
  8415. }
  8416. ],
  8417. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  8418. "keywords": [
  8419. "csprng",
  8420. "polyfill",
  8421. "pseudorandom",
  8422. "random"
  8423. ],
  8424. "time": "2019-01-03T20:59:08+00:00"
  8425. },
  8426. {
  8427. "name": "phenx/php-font-lib",
  8428. "version": "0.5",
  8429. "source": {
  8430. "type": "git",
  8431. "url": "https://github.com/PhenX/php-font-lib.git",
  8432. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962"
  8433. },
  8434. "dist": {
  8435. "type": "zip",
  8436. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/19ad2bebc35be028fcc0221025fcbf3d436a3962",
  8437. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962",
  8438. "shasum": ""
  8439. },
  8440. "require-dev": {
  8441. "phpunit/phpunit": "^4.8"
  8442. },
  8443. "type": "library",
  8444. "autoload": {
  8445. "psr-4": {
  8446. "FontLib\\": "src/FontLib"
  8447. }
  8448. },
  8449. "notification-url": "https://packagist.org/downloads/",
  8450. "license": [
  8451. "LGPL-3.0"
  8452. ],
  8453. "authors": [
  8454. {
  8455. "name": "Fabien Ménager",
  8456. "email": "fabien.menager@gmail.com"
  8457. }
  8458. ],
  8459. "description": "A library to read, parse, export and make subsets of different types of font files.",
  8460. "homepage": "https://github.com/PhenX/php-font-lib",
  8461. "time": "2017-02-11T10:58:43+00:00"
  8462. },
  8463. {
  8464. "name": "psr/container",
  8465. "version": "1.0.0",
  8466. "source": {
  8467. "type": "git",
  8468. "url": "https://github.com/php-fig/container.git",
  8469. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  8470. },
  8471. "dist": {
  8472. "type": "zip",
  8473. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8474. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8475. "shasum": ""
  8476. },
  8477. "require": {
  8478. "php": ">=5.3.0"
  8479. },
  8480. "type": "library",
  8481. "extra": {
  8482. "branch-alias": {
  8483. "dev-master": "1.0.x-dev"
  8484. }
  8485. },
  8486. "autoload": {
  8487. "psr-4": {
  8488. "Psr\\Container\\": "src/"
  8489. }
  8490. },
  8491. "notification-url": "https://packagist.org/downloads/",
  8492. "license": [
  8493. "MIT"
  8494. ],
  8495. "authors": [
  8496. {
  8497. "name": "PHP-FIG",
  8498. "homepage": "http://www.php-fig.org/"
  8499. }
  8500. ],
  8501. "description": "Common Container Interface (PHP FIG PSR-11)",
  8502. "homepage": "https://github.com/php-fig/container",
  8503. "keywords": [
  8504. "PSR-11",
  8505. "container",
  8506. "container-interface",
  8507. "container-interop",
  8508. "psr"
  8509. ],
  8510. "time": "2017-02-14T16:28:37+00:00"
  8511. },
  8512. {
  8513. "name": "psr/http-message",
  8514. "version": "1.0.1",
  8515. "source": {
  8516. "type": "git",
  8517. "url": "https://github.com/php-fig/http-message.git",
  8518. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  8519. },
  8520. "dist": {
  8521. "type": "zip",
  8522. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  8523. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  8524. "shasum": ""
  8525. },
  8526. "require": {
  8527. "php": ">=5.3.0"
  8528. },
  8529. "type": "library",
  8530. "extra": {
  8531. "branch-alias": {
  8532. "dev-master": "1.0.x-dev"
  8533. }
  8534. },
  8535. "autoload": {
  8536. "psr-4": {
  8537. "Psr\\Http\\Message\\": "src/"
  8538. }
  8539. },
  8540. "notification-url": "https://packagist.org/downloads/",
  8541. "license": [
  8542. "MIT"
  8543. ],
  8544. "authors": [
  8545. {
  8546. "name": "PHP-FIG",
  8547. "homepage": "http://www.php-fig.org/"
  8548. }
  8549. ],
  8550. "description": "Common interface for HTTP messages",
  8551. "homepage": "https://github.com/php-fig/http-message",
  8552. "keywords": [
  8553. "http",
  8554. "http-message",
  8555. "psr",
  8556. "psr-7",
  8557. "request",
  8558. "response"
  8559. ],
  8560. "time": "2016-08-06T14:39:51+00:00"
  8561. },
  8562. {
  8563. "name": "psr/log",
  8564. "version": "1.1.0",
  8565. "source": {
  8566. "type": "git",
  8567. "url": "https://github.com/php-fig/log.git",
  8568. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  8569. },
  8570. "dist": {
  8571. "type": "zip",
  8572. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  8573. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  8574. "shasum": ""
  8575. },
  8576. "require": {
  8577. "php": ">=5.3.0"
  8578. },
  8579. "type": "library",
  8580. "extra": {
  8581. "branch-alias": {
  8582. "dev-master": "1.0.x-dev"
  8583. }
  8584. },
  8585. "autoload": {
  8586. "psr-4": {
  8587. "Psr\\Log\\": "Psr/Log/"
  8588. }
  8589. },
  8590. "notification-url": "https://packagist.org/downloads/",
  8591. "license": [
  8592. "MIT"
  8593. ],
  8594. "authors": [
  8595. {
  8596. "name": "PHP-FIG",
  8597. "homepage": "http://www.php-fig.org/"
  8598. }
  8599. ],
  8600. "description": "Common interface for logging libraries",
  8601. "homepage": "https://github.com/php-fig/log",
  8602. "keywords": [
  8603. "log",
  8604. "psr",
  8605. "psr-3"
  8606. ],
  8607. "time": "2018-11-20T15:27:04+00:00"
  8608. },
  8609. {
  8610. "name": "psy/psysh",
  8611. "version": "v0.9.9",
  8612. "source": {
  8613. "type": "git",
  8614. "url": "https://github.com/bobthecow/psysh.git",
  8615. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  8616. },
  8617. "dist": {
  8618. "type": "zip",
  8619. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8620. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8621. "shasum": ""
  8622. },
  8623. "require": {
  8624. "dnoegel/php-xdg-base-dir": "0.1",
  8625. "ext-json": "*",
  8626. "ext-tokenizer": "*",
  8627. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8628. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8629. "php": ">=5.4.0",
  8630. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8631. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8632. },
  8633. "require-dev": {
  8634. "bamarni/composer-bin-plugin": "^1.2",
  8635. "hoa/console": "~2.15|~3.16",
  8636. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8637. },
  8638. "suggest": {
  8639. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8640. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8641. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8642. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8643. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8644. },
  8645. "bin": [
  8646. "bin/psysh"
  8647. ],
  8648. "type": "library",
  8649. "extra": {
  8650. "branch-alias": {
  8651. "dev-develop": "0.9.x-dev"
  8652. }
  8653. },
  8654. "autoload": {
  8655. "files": [
  8656. "src/functions.php"
  8657. ],
  8658. "psr-4": {
  8659. "Psy\\": "src/"
  8660. }
  8661. },
  8662. "notification-url": "https://packagist.org/downloads/",
  8663. "license": [
  8664. "MIT"
  8665. ],
  8666. "authors": [
  8667. {
  8668. "name": "Justin Hileman",
  8669. "email": "justin@justinhileman.info",
  8670. "homepage": "http://justinhileman.com"
  8671. }
  8672. ],
  8673. "description": "An interactive shell for modern PHP.",
  8674. "homepage": "http://psysh.org",
  8675. "keywords": [
  8676. "REPL",
  8677. "console",
  8678. "interactive",
  8679. "shell"
  8680. ],
  8681. "time": "2018-10-13T15:16:03+00:00"
  8682. },
  8683. {
  8684. "name": "ralouphie/getallheaders",
  8685. "version": "2.0.5",
  8686. "source": {
  8687. "type": "git",
  8688. "url": "https://github.com/ralouphie/getallheaders.git",
  8689. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  8690. },
  8691. "dist": {
  8692. "type": "zip",
  8693. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  8694. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  8695. "shasum": ""
  8696. },
  8697. "require": {
  8698. "php": ">=5.3"
  8699. },
  8700. "require-dev": {
  8701. "phpunit/phpunit": "~3.7.0",
  8702. "satooshi/php-coveralls": ">=1.0"
  8703. },
  8704. "type": "library",
  8705. "autoload": {
  8706. "files": [
  8707. "src/getallheaders.php"
  8708. ]
  8709. },
  8710. "notification-url": "https://packagist.org/downloads/",
  8711. "license": [
  8712. "MIT"
  8713. ],
  8714. "authors": [
  8715. {
  8716. "name": "Ralph Khattar",
  8717. "email": "ralph.khattar@gmail.com"
  8718. }
  8719. ],
  8720. "description": "A polyfill for getallheaders.",
  8721. "time": "2016-02-11T07:05:27+00:00"
  8722. },
  8723. {
  8724. "name": "stack/builder",
  8725. "version": "v1.0.5",
  8726. "source": {
  8727. "type": "git",
  8728. "url": "https://github.com/stackphp/builder.git",
  8729. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  8730. },
  8731. "dist": {
  8732. "type": "zip",
  8733. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8734. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8735. "shasum": ""
  8736. },
  8737. "require": {
  8738. "php": ">=5.3.0",
  8739. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  8740. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  8741. },
  8742. "require-dev": {
  8743. "silex/silex": "~1.0"
  8744. },
  8745. "type": "library",
  8746. "extra": {
  8747. "branch-alias": {
  8748. "dev-master": "1.0-dev"
  8749. }
  8750. },
  8751. "autoload": {
  8752. "psr-0": {
  8753. "Stack": "src"
  8754. }
  8755. },
  8756. "notification-url": "https://packagist.org/downloads/",
  8757. "license": [
  8758. "MIT"
  8759. ],
  8760. "authors": [
  8761. {
  8762. "name": "Igor Wiedler",
  8763. "email": "igor@wiedler.ch"
  8764. }
  8765. ],
  8766. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  8767. "keywords": [
  8768. "stack"
  8769. ],
  8770. "time": "2017-11-18T14:57:29+00:00"
  8771. },
  8772. {
  8773. "name": "stecman/symfony-console-completion",
  8774. "version": "0.9.0",
  8775. "source": {
  8776. "type": "git",
  8777. "url": "https://github.com/stecman/symfony-console-completion.git",
  8778. "reference": "bd07a24190541de2828c1d6469a8ddce599d3c5a"
  8779. },
  8780. "dist": {
  8781. "type": "zip",
  8782. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/bd07a24190541de2828c1d6469a8ddce599d3c5a",
  8783. "reference": "bd07a24190541de2828c1d6469a8ddce599d3c5a",
  8784. "shasum": ""
  8785. },
  8786. "require": {
  8787. "php": ">=5.3.2",
  8788. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  8789. },
  8790. "require-dev": {
  8791. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  8792. },
  8793. "type": "library",
  8794. "extra": {
  8795. "branch-alias": {
  8796. "dev-master": "0.6.x-dev"
  8797. }
  8798. },
  8799. "autoload": {
  8800. "psr-4": {
  8801. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  8802. }
  8803. },
  8804. "notification-url": "https://packagist.org/downloads/",
  8805. "license": [
  8806. "MIT"
  8807. ],
  8808. "authors": [
  8809. {
  8810. "name": "Stephen Holdaway",
  8811. "email": "stephen@stecman.co.nz"
  8812. }
  8813. ],
  8814. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  8815. "time": "2019-01-19T21:25:25+00:00"
  8816. },
  8817. {
  8818. "name": "symfony-cmf/routing",
  8819. "version": "1.4.1",
  8820. "source": {
  8821. "type": "git",
  8822. "url": "https://github.com/symfony-cmf/routing.git",
  8823. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  8824. },
  8825. "dist": {
  8826. "type": "zip",
  8827. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8828. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8829. "shasum": ""
  8830. },
  8831. "require": {
  8832. "php": "^5.3.9|^7.0",
  8833. "psr/log": "1.*",
  8834. "symfony/http-kernel": "^2.2|3.*",
  8835. "symfony/routing": "^2.2|3.*"
  8836. },
  8837. "require-dev": {
  8838. "friendsofsymfony/jsrouting-bundle": "^1.1",
  8839. "symfony-cmf/testing": "^1.3",
  8840. "symfony/config": "^2.2|3.*",
  8841. "symfony/dependency-injection": "^2.0.5|3.*",
  8842. "symfony/event-dispatcher": "^2.1|3.*"
  8843. },
  8844. "suggest": {
  8845. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  8846. },
  8847. "type": "library",
  8848. "extra": {
  8849. "branch-alias": {
  8850. "dev-master": "1.4-dev"
  8851. }
  8852. },
  8853. "autoload": {
  8854. "psr-4": {
  8855. "Symfony\\Cmf\\Component\\Routing\\": ""
  8856. }
  8857. },
  8858. "notification-url": "https://packagist.org/downloads/",
  8859. "license": [
  8860. "MIT"
  8861. ],
  8862. "authors": [
  8863. {
  8864. "name": "Symfony CMF Community",
  8865. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  8866. }
  8867. ],
  8868. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  8869. "homepage": "http://cmf.symfony.com",
  8870. "keywords": [
  8871. "database",
  8872. "routing"
  8873. ],
  8874. "time": "2017-05-09T08:10:41+00:00"
  8875. },
  8876. {
  8877. "name": "symfony/class-loader",
  8878. "version": "v3.4.22",
  8879. "source": {
  8880. "type": "git",
  8881. "url": "https://github.com/symfony/class-loader.git",
  8882. "reference": "4459eef5298dedfb69f771186a580062b8516497"
  8883. },
  8884. "dist": {
  8885. "type": "zip",
  8886. "url": "https://api.github.com/repos/symfony/class-loader/zipball/4459eef5298dedfb69f771186a580062b8516497",
  8887. "reference": "4459eef5298dedfb69f771186a580062b8516497",
  8888. "shasum": ""
  8889. },
  8890. "require": {
  8891. "php": "^5.5.9|>=7.0.8"
  8892. },
  8893. "require-dev": {
  8894. "symfony/finder": "~2.8|~3.0|~4.0",
  8895. "symfony/polyfill-apcu": "~1.1"
  8896. },
  8897. "suggest": {
  8898. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  8899. },
  8900. "type": "library",
  8901. "extra": {
  8902. "branch-alias": {
  8903. "dev-master": "3.4-dev"
  8904. }
  8905. },
  8906. "autoload": {
  8907. "psr-4": {
  8908. "Symfony\\Component\\ClassLoader\\": ""
  8909. },
  8910. "exclude-from-classmap": [
  8911. "/Tests/"
  8912. ]
  8913. },
  8914. "notification-url": "https://packagist.org/downloads/",
  8915. "license": [
  8916. "MIT"
  8917. ],
  8918. "authors": [
  8919. {
  8920. "name": "Fabien Potencier",
  8921. "email": "fabien@symfony.com"
  8922. },
  8923. {
  8924. "name": "Symfony Community",
  8925. "homepage": "https://symfony.com/contributors"
  8926. }
  8927. ],
  8928. "description": "Symfony ClassLoader Component",
  8929. "homepage": "https://symfony.com",
  8930. "time": "2019-01-16T09:39:14+00:00"
  8931. },
  8932. {
  8933. "name": "symfony/config",
  8934. "version": "v3.4.22",
  8935. "source": {
  8936. "type": "git",
  8937. "url": "https://github.com/symfony/config.git",
  8938. "reference": "c9bc510c217075d42d4a927e285917d0c2001cf4"
  8939. },
  8940. "dist": {
  8941. "type": "zip",
  8942. "url": "https://api.github.com/repos/symfony/config/zipball/c9bc510c217075d42d4a927e285917d0c2001cf4",
  8943. "reference": "c9bc510c217075d42d4a927e285917d0c2001cf4",
  8944. "shasum": ""
  8945. },
  8946. "require": {
  8947. "php": "^5.5.9|>=7.0.8",
  8948. "symfony/filesystem": "~2.8|~3.0|~4.0",
  8949. "symfony/polyfill-ctype": "~1.8"
  8950. },
  8951. "conflict": {
  8952. "symfony/dependency-injection": "<3.3",
  8953. "symfony/finder": "<3.3"
  8954. },
  8955. "require-dev": {
  8956. "symfony/dependency-injection": "~3.3|~4.0",
  8957. "symfony/event-dispatcher": "~3.3|~4.0",
  8958. "symfony/finder": "~3.3|~4.0",
  8959. "symfony/yaml": "~3.0|~4.0"
  8960. },
  8961. "suggest": {
  8962. "symfony/yaml": "To use the yaml reference dumper"
  8963. },
  8964. "type": "library",
  8965. "extra": {
  8966. "branch-alias": {
  8967. "dev-master": "3.4-dev"
  8968. }
  8969. },
  8970. "autoload": {
  8971. "psr-4": {
  8972. "Symfony\\Component\\Config\\": ""
  8973. },
  8974. "exclude-from-classmap": [
  8975. "/Tests/"
  8976. ]
  8977. },
  8978. "notification-url": "https://packagist.org/downloads/",
  8979. "license": [
  8980. "MIT"
  8981. ],
  8982. "authors": [
  8983. {
  8984. "name": "Fabien Potencier",
  8985. "email": "fabien@symfony.com"
  8986. },
  8987. {
  8988. "name": "Symfony Community",
  8989. "homepage": "https://symfony.com/contributors"
  8990. }
  8991. ],
  8992. "description": "Symfony Config Component",
  8993. "homepage": "https://symfony.com",
  8994. "time": "2019-01-30T11:33:42+00:00"
  8995. },
  8996. {
  8997. "name": "symfony/console",
  8998. "version": "v3.4.22",
  8999. "source": {
  9000. "type": "git",
  9001. "url": "https://github.com/symfony/console.git",
  9002. "reference": "069bf3f0e8f871a2169a06e43d9f3f03f355e9be"
  9003. },
  9004. "dist": {
  9005. "type": "zip",
  9006. "url": "https://api.github.com/repos/symfony/console/zipball/069bf3f0e8f871a2169a06e43d9f3f03f355e9be",
  9007. "reference": "069bf3f0e8f871a2169a06e43d9f3f03f355e9be",
  9008. "shasum": ""
  9009. },
  9010. "require": {
  9011. "php": "^5.5.9|>=7.0.8",
  9012. "symfony/debug": "~2.8|~3.0|~4.0",
  9013. "symfony/polyfill-mbstring": "~1.0"
  9014. },
  9015. "conflict": {
  9016. "symfony/dependency-injection": "<3.4",
  9017. "symfony/process": "<3.3"
  9018. },
  9019. "provide": {
  9020. "psr/log-implementation": "1.0"
  9021. },
  9022. "require-dev": {
  9023. "psr/log": "~1.0",
  9024. "symfony/config": "~3.3|~4.0",
  9025. "symfony/dependency-injection": "~3.4|~4.0",
  9026. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9027. "symfony/lock": "~3.4|~4.0",
  9028. "symfony/process": "~3.3|~4.0"
  9029. },
  9030. "suggest": {
  9031. "psr/log": "For using the console logger",
  9032. "symfony/event-dispatcher": "",
  9033. "symfony/lock": "",
  9034. "symfony/process": ""
  9035. },
  9036. "type": "library",
  9037. "extra": {
  9038. "branch-alias": {
  9039. "dev-master": "3.4-dev"
  9040. }
  9041. },
  9042. "autoload": {
  9043. "psr-4": {
  9044. "Symfony\\Component\\Console\\": ""
  9045. },
  9046. "exclude-from-classmap": [
  9047. "/Tests/"
  9048. ]
  9049. },
  9050. "notification-url": "https://packagist.org/downloads/",
  9051. "license": [
  9052. "MIT"
  9053. ],
  9054. "authors": [
  9055. {
  9056. "name": "Fabien Potencier",
  9057. "email": "fabien@symfony.com"
  9058. },
  9059. {
  9060. "name": "Symfony Community",
  9061. "homepage": "https://symfony.com/contributors"
  9062. }
  9063. ],
  9064. "description": "Symfony Console Component",
  9065. "homepage": "https://symfony.com",
  9066. "time": "2019-01-25T10:42:12+00:00"
  9067. },
  9068. {
  9069. "name": "symfony/css-selector",
  9070. "version": "v3.4.22",
  9071. "source": {
  9072. "type": "git",
  9073. "url": "https://github.com/symfony/css-selector.git",
  9074. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf"
  9075. },
  9076. "dist": {
  9077. "type": "zip",
  9078. "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  9079. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  9080. "shasum": ""
  9081. },
  9082. "require": {
  9083. "php": "^5.5.9|>=7.0.8"
  9084. },
  9085. "type": "library",
  9086. "extra": {
  9087. "branch-alias": {
  9088. "dev-master": "3.4-dev"
  9089. }
  9090. },
  9091. "autoload": {
  9092. "psr-4": {
  9093. "Symfony\\Component\\CssSelector\\": ""
  9094. },
  9095. "exclude-from-classmap": [
  9096. "/Tests/"
  9097. ]
  9098. },
  9099. "notification-url": "https://packagist.org/downloads/",
  9100. "license": [
  9101. "MIT"
  9102. ],
  9103. "authors": [
  9104. {
  9105. "name": "Jean-François Simon",
  9106. "email": "jeanfrancois.simon@sensiolabs.com"
  9107. },
  9108. {
  9109. "name": "Fabien Potencier",
  9110. "email": "fabien@symfony.com"
  9111. },
  9112. {
  9113. "name": "Symfony Community",
  9114. "homepage": "https://symfony.com/contributors"
  9115. }
  9116. ],
  9117. "description": "Symfony CssSelector Component",
  9118. "homepage": "https://symfony.com",
  9119. "time": "2019-01-16T09:39:14+00:00"
  9120. },
  9121. {
  9122. "name": "symfony/debug",
  9123. "version": "v3.4.22",
  9124. "source": {
  9125. "type": "git",
  9126. "url": "https://github.com/symfony/debug.git",
  9127. "reference": "667a26c4dd6bc75c67f06bc9bcd015bdecc7cbb8"
  9128. },
  9129. "dist": {
  9130. "type": "zip",
  9131. "url": "https://api.github.com/repos/symfony/debug/zipball/667a26c4dd6bc75c67f06bc9bcd015bdecc7cbb8",
  9132. "reference": "667a26c4dd6bc75c67f06bc9bcd015bdecc7cbb8",
  9133. "shasum": ""
  9134. },
  9135. "require": {
  9136. "php": "^5.5.9|>=7.0.8",
  9137. "psr/log": "~1.0"
  9138. },
  9139. "conflict": {
  9140. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  9141. },
  9142. "require-dev": {
  9143. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  9144. },
  9145. "type": "library",
  9146. "extra": {
  9147. "branch-alias": {
  9148. "dev-master": "3.4-dev"
  9149. }
  9150. },
  9151. "autoload": {
  9152. "psr-4": {
  9153. "Symfony\\Component\\Debug\\": ""
  9154. },
  9155. "exclude-from-classmap": [
  9156. "/Tests/"
  9157. ]
  9158. },
  9159. "notification-url": "https://packagist.org/downloads/",
  9160. "license": [
  9161. "MIT"
  9162. ],
  9163. "authors": [
  9164. {
  9165. "name": "Fabien Potencier",
  9166. "email": "fabien@symfony.com"
  9167. },
  9168. {
  9169. "name": "Symfony Community",
  9170. "homepage": "https://symfony.com/contributors"
  9171. }
  9172. ],
  9173. "description": "Symfony Debug Component",
  9174. "homepage": "https://symfony.com",
  9175. "time": "2019-01-25T10:19:25+00:00"
  9176. },
  9177. {
  9178. "name": "symfony/dependency-injection",
  9179. "version": "v3.4.22",
  9180. "source": {
  9181. "type": "git",
  9182. "url": "https://github.com/symfony/dependency-injection.git",
  9183. "reference": "b514f5b765cf3e4a56e9d8ebacf14b117f7a0ee1"
  9184. },
  9185. "dist": {
  9186. "type": "zip",
  9187. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/b514f5b765cf3e4a56e9d8ebacf14b117f7a0ee1",
  9188. "reference": "b514f5b765cf3e4a56e9d8ebacf14b117f7a0ee1",
  9189. "shasum": ""
  9190. },
  9191. "require": {
  9192. "php": "^5.5.9|>=7.0.8",
  9193. "psr/container": "^1.0"
  9194. },
  9195. "conflict": {
  9196. "symfony/config": "<3.3.7",
  9197. "symfony/finder": "<3.3",
  9198. "symfony/proxy-manager-bridge": "<3.4",
  9199. "symfony/yaml": "<3.4"
  9200. },
  9201. "provide": {
  9202. "psr/container-implementation": "1.0"
  9203. },
  9204. "require-dev": {
  9205. "symfony/config": "~3.3|~4.0",
  9206. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9207. "symfony/yaml": "~3.4|~4.0"
  9208. },
  9209. "suggest": {
  9210. "symfony/config": "",
  9211. "symfony/expression-language": "For using expressions in service container configuration",
  9212. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9213. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9214. "symfony/yaml": ""
  9215. },
  9216. "type": "library",
  9217. "extra": {
  9218. "branch-alias": {
  9219. "dev-master": "3.4-dev"
  9220. }
  9221. },
  9222. "autoload": {
  9223. "psr-4": {
  9224. "Symfony\\Component\\DependencyInjection\\": ""
  9225. },
  9226. "exclude-from-classmap": [
  9227. "/Tests/"
  9228. ]
  9229. },
  9230. "notification-url": "https://packagist.org/downloads/",
  9231. "license": [
  9232. "MIT"
  9233. ],
  9234. "authors": [
  9235. {
  9236. "name": "Fabien Potencier",
  9237. "email": "fabien@symfony.com"
  9238. },
  9239. {
  9240. "name": "Symfony Community",
  9241. "homepage": "https://symfony.com/contributors"
  9242. }
  9243. ],
  9244. "description": "Symfony DependencyInjection Component",
  9245. "homepage": "https://symfony.com",
  9246. "time": "2019-01-30T17:48:51+00:00"
  9247. },
  9248. {
  9249. "name": "symfony/dom-crawler",
  9250. "version": "v3.4.22",
  9251. "source": {
  9252. "type": "git",
  9253. "url": "https://github.com/symfony/dom-crawler.git",
  9254. "reference": "32cb577c07bd900ee883a9d4b55d4098aa02e422"
  9255. },
  9256. "dist": {
  9257. "type": "zip",
  9258. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/32cb577c07bd900ee883a9d4b55d4098aa02e422",
  9259. "reference": "32cb577c07bd900ee883a9d4b55d4098aa02e422",
  9260. "shasum": ""
  9261. },
  9262. "require": {
  9263. "php": "^5.5.9|>=7.0.8",
  9264. "symfony/polyfill-ctype": "~1.8",
  9265. "symfony/polyfill-mbstring": "~1.0"
  9266. },
  9267. "require-dev": {
  9268. "symfony/css-selector": "~2.8|~3.0|~4.0"
  9269. },
  9270. "suggest": {
  9271. "symfony/css-selector": ""
  9272. },
  9273. "type": "library",
  9274. "extra": {
  9275. "branch-alias": {
  9276. "dev-master": "3.4-dev"
  9277. }
  9278. },
  9279. "autoload": {
  9280. "psr-4": {
  9281. "Symfony\\Component\\DomCrawler\\": ""
  9282. },
  9283. "exclude-from-classmap": [
  9284. "/Tests/"
  9285. ]
  9286. },
  9287. "notification-url": "https://packagist.org/downloads/",
  9288. "license": [
  9289. "MIT"
  9290. ],
  9291. "authors": [
  9292. {
  9293. "name": "Fabien Potencier",
  9294. "email": "fabien@symfony.com"
  9295. },
  9296. {
  9297. "name": "Symfony Community",
  9298. "homepage": "https://symfony.com/contributors"
  9299. }
  9300. ],
  9301. "description": "Symfony DomCrawler Component",
  9302. "homepage": "https://symfony.com",
  9303. "time": "2019-01-16T13:27:11+00:00"
  9304. },
  9305. {
  9306. "name": "symfony/event-dispatcher",
  9307. "version": "v3.4.22",
  9308. "source": {
  9309. "type": "git",
  9310. "url": "https://github.com/symfony/event-dispatcher.git",
  9311. "reference": "ed5be1663fa66623b3a7004d5d51a14c4045399b"
  9312. },
  9313. "dist": {
  9314. "type": "zip",
  9315. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ed5be1663fa66623b3a7004d5d51a14c4045399b",
  9316. "reference": "ed5be1663fa66623b3a7004d5d51a14c4045399b",
  9317. "shasum": ""
  9318. },
  9319. "require": {
  9320. "php": "^5.5.9|>=7.0.8"
  9321. },
  9322. "conflict": {
  9323. "symfony/dependency-injection": "<3.3"
  9324. },
  9325. "require-dev": {
  9326. "psr/log": "~1.0",
  9327. "symfony/config": "~2.8|~3.0|~4.0",
  9328. "symfony/dependency-injection": "~3.3|~4.0",
  9329. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9330. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  9331. },
  9332. "suggest": {
  9333. "symfony/dependency-injection": "",
  9334. "symfony/http-kernel": ""
  9335. },
  9336. "type": "library",
  9337. "extra": {
  9338. "branch-alias": {
  9339. "dev-master": "3.4-dev"
  9340. }
  9341. },
  9342. "autoload": {
  9343. "psr-4": {
  9344. "Symfony\\Component\\EventDispatcher\\": ""
  9345. },
  9346. "exclude-from-classmap": [
  9347. "/Tests/"
  9348. ]
  9349. },
  9350. "notification-url": "https://packagist.org/downloads/",
  9351. "license": [
  9352. "MIT"
  9353. ],
  9354. "authors": [
  9355. {
  9356. "name": "Fabien Potencier",
  9357. "email": "fabien@symfony.com"
  9358. },
  9359. {
  9360. "name": "Symfony Community",
  9361. "homepage": "https://symfony.com/contributors"
  9362. }
  9363. ],
  9364. "description": "Symfony EventDispatcher Component",
  9365. "homepage": "https://symfony.com",
  9366. "time": "2019-01-16T13:27:11+00:00"
  9367. },
  9368. {
  9369. "name": "symfony/filesystem",
  9370. "version": "v3.4.22",
  9371. "source": {
  9372. "type": "git",
  9373. "url": "https://github.com/symfony/filesystem.git",
  9374. "reference": "b52454ec66fe5082b7a66a491339d1f1da9a5a0d"
  9375. },
  9376. "dist": {
  9377. "type": "zip",
  9378. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b52454ec66fe5082b7a66a491339d1f1da9a5a0d",
  9379. "reference": "b52454ec66fe5082b7a66a491339d1f1da9a5a0d",
  9380. "shasum": ""
  9381. },
  9382. "require": {
  9383. "php": "^5.5.9|>=7.0.8",
  9384. "symfony/polyfill-ctype": "~1.8"
  9385. },
  9386. "type": "library",
  9387. "extra": {
  9388. "branch-alias": {
  9389. "dev-master": "3.4-dev"
  9390. }
  9391. },
  9392. "autoload": {
  9393. "psr-4": {
  9394. "Symfony\\Component\\Filesystem\\": ""
  9395. },
  9396. "exclude-from-classmap": [
  9397. "/Tests/"
  9398. ]
  9399. },
  9400. "notification-url": "https://packagist.org/downloads/",
  9401. "license": [
  9402. "MIT"
  9403. ],
  9404. "authors": [
  9405. {
  9406. "name": "Fabien Potencier",
  9407. "email": "fabien@symfony.com"
  9408. },
  9409. {
  9410. "name": "Symfony Community",
  9411. "homepage": "https://symfony.com/contributors"
  9412. }
  9413. ],
  9414. "description": "Symfony Filesystem Component",
  9415. "homepage": "https://symfony.com",
  9416. "time": "2019-01-16T13:27:11+00:00"
  9417. },
  9418. {
  9419. "name": "symfony/finder",
  9420. "version": "v3.4.22",
  9421. "source": {
  9422. "type": "git",
  9423. "url": "https://github.com/symfony/finder.git",
  9424. "reference": "7c0c627220308928e958a87c293108e5891cde1d"
  9425. },
  9426. "dist": {
  9427. "type": "zip",
  9428. "url": "https://api.github.com/repos/symfony/finder/zipball/7c0c627220308928e958a87c293108e5891cde1d",
  9429. "reference": "7c0c627220308928e958a87c293108e5891cde1d",
  9430. "shasum": ""
  9431. },
  9432. "require": {
  9433. "php": "^5.5.9|>=7.0.8"
  9434. },
  9435. "type": "library",
  9436. "extra": {
  9437. "branch-alias": {
  9438. "dev-master": "3.4-dev"
  9439. }
  9440. },
  9441. "autoload": {
  9442. "psr-4": {
  9443. "Symfony\\Component\\Finder\\": ""
  9444. },
  9445. "exclude-from-classmap": [
  9446. "/Tests/"
  9447. ]
  9448. },
  9449. "notification-url": "https://packagist.org/downloads/",
  9450. "license": [
  9451. "MIT"
  9452. ],
  9453. "authors": [
  9454. {
  9455. "name": "Fabien Potencier",
  9456. "email": "fabien@symfony.com"
  9457. },
  9458. {
  9459. "name": "Symfony Community",
  9460. "homepage": "https://symfony.com/contributors"
  9461. }
  9462. ],
  9463. "description": "Symfony Finder Component",
  9464. "homepage": "https://symfony.com",
  9465. "time": "2019-01-16T13:43:35+00:00"
  9466. },
  9467. {
  9468. "name": "symfony/http-foundation",
  9469. "version": "v3.4.22",
  9470. "source": {
  9471. "type": "git",
  9472. "url": "https://github.com/symfony/http-foundation.git",
  9473. "reference": "9a81d2330ea255ded06a69b4f7fb7804836e7a05"
  9474. },
  9475. "dist": {
  9476. "type": "zip",
  9477. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9a81d2330ea255ded06a69b4f7fb7804836e7a05",
  9478. "reference": "9a81d2330ea255ded06a69b4f7fb7804836e7a05",
  9479. "shasum": ""
  9480. },
  9481. "require": {
  9482. "php": "^5.5.9|>=7.0.8",
  9483. "symfony/polyfill-mbstring": "~1.1",
  9484. "symfony/polyfill-php70": "~1.6"
  9485. },
  9486. "require-dev": {
  9487. "symfony/expression-language": "~2.8|~3.0|~4.0"
  9488. },
  9489. "type": "library",
  9490. "extra": {
  9491. "branch-alias": {
  9492. "dev-master": "3.4-dev"
  9493. }
  9494. },
  9495. "autoload": {
  9496. "psr-4": {
  9497. "Symfony\\Component\\HttpFoundation\\": ""
  9498. },
  9499. "exclude-from-classmap": [
  9500. "/Tests/"
  9501. ]
  9502. },
  9503. "notification-url": "https://packagist.org/downloads/",
  9504. "license": [
  9505. "MIT"
  9506. ],
  9507. "authors": [
  9508. {
  9509. "name": "Fabien Potencier",
  9510. "email": "fabien@symfony.com"
  9511. },
  9512. {
  9513. "name": "Symfony Community",
  9514. "homepage": "https://symfony.com/contributors"
  9515. }
  9516. ],
  9517. "description": "Symfony HttpFoundation Component",
  9518. "homepage": "https://symfony.com",
  9519. "time": "2019-01-27T09:04:14+00:00"
  9520. },
  9521. {
  9522. "name": "symfony/http-kernel",
  9523. "version": "v3.4.22",
  9524. "source": {
  9525. "type": "git",
  9526. "url": "https://github.com/symfony/http-kernel.git",
  9527. "reference": "dc6bf17684b7120f7bf74fae85c9155506041002"
  9528. },
  9529. "dist": {
  9530. "type": "zip",
  9531. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/dc6bf17684b7120f7bf74fae85c9155506041002",
  9532. "reference": "dc6bf17684b7120f7bf74fae85c9155506041002",
  9533. "shasum": ""
  9534. },
  9535. "require": {
  9536. "php": "^5.5.9|>=7.0.8",
  9537. "psr/log": "~1.0",
  9538. "symfony/debug": "^3.3.3|~4.0",
  9539. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9540. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  9541. "symfony/polyfill-ctype": "~1.8"
  9542. },
  9543. "conflict": {
  9544. "symfony/config": "<2.8",
  9545. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  9546. "symfony/var-dumper": "<3.3",
  9547. "twig/twig": "<1.34|<2.4,>=2"
  9548. },
  9549. "provide": {
  9550. "psr/log-implementation": "1.0"
  9551. },
  9552. "require-dev": {
  9553. "psr/cache": "~1.0",
  9554. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  9555. "symfony/class-loader": "~2.8|~3.0",
  9556. "symfony/config": "~2.8|~3.0|~4.0",
  9557. "symfony/console": "~2.8|~3.0|~4.0",
  9558. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9559. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  9560. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  9561. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9562. "symfony/finder": "~2.8|~3.0|~4.0",
  9563. "symfony/process": "~2.8|~3.0|~4.0",
  9564. "symfony/routing": "~3.4|~4.0",
  9565. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  9566. "symfony/templating": "~2.8|~3.0|~4.0",
  9567. "symfony/translation": "~2.8|~3.0|~4.0",
  9568. "symfony/var-dumper": "~3.3|~4.0"
  9569. },
  9570. "suggest": {
  9571. "symfony/browser-kit": "",
  9572. "symfony/config": "",
  9573. "symfony/console": "",
  9574. "symfony/dependency-injection": "",
  9575. "symfony/finder": "",
  9576. "symfony/var-dumper": ""
  9577. },
  9578. "type": "library",
  9579. "extra": {
  9580. "branch-alias": {
  9581. "dev-master": "3.4-dev"
  9582. }
  9583. },
  9584. "autoload": {
  9585. "psr-4": {
  9586. "Symfony\\Component\\HttpKernel\\": ""
  9587. },
  9588. "exclude-from-classmap": [
  9589. "/Tests/"
  9590. ]
  9591. },
  9592. "notification-url": "https://packagist.org/downloads/",
  9593. "license": [
  9594. "MIT"
  9595. ],
  9596. "authors": [
  9597. {
  9598. "name": "Fabien Potencier",
  9599. "email": "fabien@symfony.com"
  9600. },
  9601. {
  9602. "name": "Symfony Community",
  9603. "homepage": "https://symfony.com/contributors"
  9604. }
  9605. ],
  9606. "description": "Symfony HttpKernel Component",
  9607. "homepage": "https://symfony.com",
  9608. "time": "2019-02-03T12:22:50+00:00"
  9609. },
  9610. {
  9611. "name": "symfony/polyfill-ctype",
  9612. "version": "v1.10.0",
  9613. "source": {
  9614. "type": "git",
  9615. "url": "https://github.com/symfony/polyfill-ctype.git",
  9616. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  9617. },
  9618. "dist": {
  9619. "type": "zip",
  9620. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  9621. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  9622. "shasum": ""
  9623. },
  9624. "require": {
  9625. "php": ">=5.3.3"
  9626. },
  9627. "suggest": {
  9628. "ext-ctype": "For best performance"
  9629. },
  9630. "type": "library",
  9631. "extra": {
  9632. "branch-alias": {
  9633. "dev-master": "1.9-dev"
  9634. }
  9635. },
  9636. "autoload": {
  9637. "psr-4": {
  9638. "Symfony\\Polyfill\\Ctype\\": ""
  9639. },
  9640. "files": [
  9641. "bootstrap.php"
  9642. ]
  9643. },
  9644. "notification-url": "https://packagist.org/downloads/",
  9645. "license": [
  9646. "MIT"
  9647. ],
  9648. "authors": [
  9649. {
  9650. "name": "Symfony Community",
  9651. "homepage": "https://symfony.com/contributors"
  9652. },
  9653. {
  9654. "name": "Gert de Pagter",
  9655. "email": "backendtea@gmail.com"
  9656. }
  9657. ],
  9658. "description": "Symfony polyfill for ctype functions",
  9659. "homepage": "https://symfony.com",
  9660. "keywords": [
  9661. "compatibility",
  9662. "ctype",
  9663. "polyfill",
  9664. "portable"
  9665. ],
  9666. "time": "2018-08-06T14:22:27+00:00"
  9667. },
  9668. {
  9669. "name": "symfony/polyfill-iconv",
  9670. "version": "v1.10.0",
  9671. "source": {
  9672. "type": "git",
  9673. "url": "https://github.com/symfony/polyfill-iconv.git",
  9674. "reference": "97001cfc283484c9691769f51cdf25259037eba2"
  9675. },
  9676. "dist": {
  9677. "type": "zip",
  9678. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/97001cfc283484c9691769f51cdf25259037eba2",
  9679. "reference": "97001cfc283484c9691769f51cdf25259037eba2",
  9680. "shasum": ""
  9681. },
  9682. "require": {
  9683. "php": ">=5.3.3"
  9684. },
  9685. "suggest": {
  9686. "ext-iconv": "For best performance"
  9687. },
  9688. "type": "library",
  9689. "extra": {
  9690. "branch-alias": {
  9691. "dev-master": "1.9-dev"
  9692. }
  9693. },
  9694. "autoload": {
  9695. "psr-4": {
  9696. "Symfony\\Polyfill\\Iconv\\": ""
  9697. },
  9698. "files": [
  9699. "bootstrap.php"
  9700. ]
  9701. },
  9702. "notification-url": "https://packagist.org/downloads/",
  9703. "license": [
  9704. "MIT"
  9705. ],
  9706. "authors": [
  9707. {
  9708. "name": "Nicolas Grekas",
  9709. "email": "p@tchwork.com"
  9710. },
  9711. {
  9712. "name": "Symfony Community",
  9713. "homepage": "https://symfony.com/contributors"
  9714. }
  9715. ],
  9716. "description": "Symfony polyfill for the Iconv extension",
  9717. "homepage": "https://symfony.com",
  9718. "keywords": [
  9719. "compatibility",
  9720. "iconv",
  9721. "polyfill",
  9722. "portable",
  9723. "shim"
  9724. ],
  9725. "time": "2018-09-21T06:26:08+00:00"
  9726. },
  9727. {
  9728. "name": "symfony/polyfill-mbstring",
  9729. "version": "v1.10.0",
  9730. "source": {
  9731. "type": "git",
  9732. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9733. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  9734. },
  9735. "dist": {
  9736. "type": "zip",
  9737. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  9738. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  9739. "shasum": ""
  9740. },
  9741. "require": {
  9742. "php": ">=5.3.3"
  9743. },
  9744. "suggest": {
  9745. "ext-mbstring": "For best performance"
  9746. },
  9747. "type": "library",
  9748. "extra": {
  9749. "branch-alias": {
  9750. "dev-master": "1.9-dev"
  9751. }
  9752. },
  9753. "autoload": {
  9754. "psr-4": {
  9755. "Symfony\\Polyfill\\Mbstring\\": ""
  9756. },
  9757. "files": [
  9758. "bootstrap.php"
  9759. ]
  9760. },
  9761. "notification-url": "https://packagist.org/downloads/",
  9762. "license": [
  9763. "MIT"
  9764. ],
  9765. "authors": [
  9766. {
  9767. "name": "Nicolas Grekas",
  9768. "email": "p@tchwork.com"
  9769. },
  9770. {
  9771. "name": "Symfony Community",
  9772. "homepage": "https://symfony.com/contributors"
  9773. }
  9774. ],
  9775. "description": "Symfony polyfill for the Mbstring extension",
  9776. "homepage": "https://symfony.com",
  9777. "keywords": [
  9778. "compatibility",
  9779. "mbstring",
  9780. "polyfill",
  9781. "portable",
  9782. "shim"
  9783. ],
  9784. "time": "2018-09-21T13:07:52+00:00"
  9785. },
  9786. {
  9787. "name": "symfony/polyfill-php70",
  9788. "version": "v1.10.0",
  9789. "source": {
  9790. "type": "git",
  9791. "url": "https://github.com/symfony/polyfill-php70.git",
  9792. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  9793. },
  9794. "dist": {
  9795. "type": "zip",
  9796. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  9797. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  9798. "shasum": ""
  9799. },
  9800. "require": {
  9801. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  9802. "php": ">=5.3.3"
  9803. },
  9804. "type": "library",
  9805. "extra": {
  9806. "branch-alias": {
  9807. "dev-master": "1.9-dev"
  9808. }
  9809. },
  9810. "autoload": {
  9811. "psr-4": {
  9812. "Symfony\\Polyfill\\Php70\\": ""
  9813. },
  9814. "files": [
  9815. "bootstrap.php"
  9816. ],
  9817. "classmap": [
  9818. "Resources/stubs"
  9819. ]
  9820. },
  9821. "notification-url": "https://packagist.org/downloads/",
  9822. "license": [
  9823. "MIT"
  9824. ],
  9825. "authors": [
  9826. {
  9827. "name": "Nicolas Grekas",
  9828. "email": "p@tchwork.com"
  9829. },
  9830. {
  9831. "name": "Symfony Community",
  9832. "homepage": "https://symfony.com/contributors"
  9833. }
  9834. ],
  9835. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9836. "homepage": "https://symfony.com",
  9837. "keywords": [
  9838. "compatibility",
  9839. "polyfill",
  9840. "portable",
  9841. "shim"
  9842. ],
  9843. "time": "2018-09-21T06:26:08+00:00"
  9844. },
  9845. {
  9846. "name": "symfony/process",
  9847. "version": "v3.4.22",
  9848. "source": {
  9849. "type": "git",
  9850. "url": "https://github.com/symfony/process.git",
  9851. "reference": "009f8dda80930e89e8344a4e310b08f9ff07dd2e"
  9852. },
  9853. "dist": {
  9854. "type": "zip",
  9855. "url": "https://api.github.com/repos/symfony/process/zipball/009f8dda80930e89e8344a4e310b08f9ff07dd2e",
  9856. "reference": "009f8dda80930e89e8344a4e310b08f9ff07dd2e",
  9857. "shasum": ""
  9858. },
  9859. "require": {
  9860. "php": "^5.5.9|>=7.0.8"
  9861. },
  9862. "type": "library",
  9863. "extra": {
  9864. "branch-alias": {
  9865. "dev-master": "3.4-dev"
  9866. }
  9867. },
  9868. "autoload": {
  9869. "psr-4": {
  9870. "Symfony\\Component\\Process\\": ""
  9871. },
  9872. "exclude-from-classmap": [
  9873. "/Tests/"
  9874. ]
  9875. },
  9876. "notification-url": "https://packagist.org/downloads/",
  9877. "license": [
  9878. "MIT"
  9879. ],
  9880. "authors": [
  9881. {
  9882. "name": "Fabien Potencier",
  9883. "email": "fabien@symfony.com"
  9884. },
  9885. {
  9886. "name": "Symfony Community",
  9887. "homepage": "https://symfony.com/contributors"
  9888. }
  9889. ],
  9890. "description": "Symfony Process Component",
  9891. "homepage": "https://symfony.com",
  9892. "time": "2019-01-16T13:27:11+00:00"
  9893. },
  9894. {
  9895. "name": "symfony/psr-http-message-bridge",
  9896. "version": "v1.1.0",
  9897. "source": {
  9898. "type": "git",
  9899. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9900. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  9901. },
  9902. "dist": {
  9903. "type": "zip",
  9904. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9905. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9906. "shasum": ""
  9907. },
  9908. "require": {
  9909. "php": "^5.3.3 || ^7.0",
  9910. "psr/http-message": "^1.0",
  9911. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9912. },
  9913. "require-dev": {
  9914. "symfony/phpunit-bridge": "^3.4 || 4.0"
  9915. },
  9916. "suggest": {
  9917. "psr/http-factory-implementation": "To use the PSR-17 factory",
  9918. "psr/http-message-implementation": "To use the HttpFoundation factory",
  9919. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  9920. },
  9921. "type": "symfony-bridge",
  9922. "extra": {
  9923. "branch-alias": {
  9924. "dev-master": "1.1-dev"
  9925. }
  9926. },
  9927. "autoload": {
  9928. "psr-4": {
  9929. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9930. }
  9931. },
  9932. "notification-url": "https://packagist.org/downloads/",
  9933. "license": [
  9934. "MIT"
  9935. ],
  9936. "authors": [
  9937. {
  9938. "name": "Symfony Community",
  9939. "homepage": "http://symfony.com/contributors"
  9940. },
  9941. {
  9942. "name": "Fabien Potencier",
  9943. "email": "fabien@symfony.com"
  9944. }
  9945. ],
  9946. "description": "PSR HTTP message bridge",
  9947. "homepage": "http://symfony.com",
  9948. "keywords": [
  9949. "http",
  9950. "http-message",
  9951. "psr-7"
  9952. ],
  9953. "time": "2018-08-30T16:28:28+00:00"
  9954. },
  9955. {
  9956. "name": "symfony/routing",
  9957. "version": "v3.4.22",
  9958. "source": {
  9959. "type": "git",
  9960. "url": "https://github.com/symfony/routing.git",
  9961. "reference": "62f0b8d8cd2cd359c3caa5a9f5253a4a6d480646"
  9962. },
  9963. "dist": {
  9964. "type": "zip",
  9965. "url": "https://api.github.com/repos/symfony/routing/zipball/62f0b8d8cd2cd359c3caa5a9f5253a4a6d480646",
  9966. "reference": "62f0b8d8cd2cd359c3caa5a9f5253a4a6d480646",
  9967. "shasum": ""
  9968. },
  9969. "require": {
  9970. "php": "^5.5.9|>=7.0.8"
  9971. },
  9972. "conflict": {
  9973. "symfony/config": "<3.3.1",
  9974. "symfony/dependency-injection": "<3.3",
  9975. "symfony/yaml": "<3.4"
  9976. },
  9977. "require-dev": {
  9978. "doctrine/annotations": "~1.0",
  9979. "psr/log": "~1.0",
  9980. "symfony/config": "^3.3.1|~4.0",
  9981. "symfony/dependency-injection": "~3.3|~4.0",
  9982. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9983. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9984. "symfony/yaml": "~3.4|~4.0"
  9985. },
  9986. "suggest": {
  9987. "doctrine/annotations": "For using the annotation loader",
  9988. "symfony/config": "For using the all-in-one router or any loader",
  9989. "symfony/dependency-injection": "For loading routes from a service",
  9990. "symfony/expression-language": "For using expression matching",
  9991. "symfony/http-foundation": "For using a Symfony Request object",
  9992. "symfony/yaml": "For using the YAML loader"
  9993. },
  9994. "type": "library",
  9995. "extra": {
  9996. "branch-alias": {
  9997. "dev-master": "3.4-dev"
  9998. }
  9999. },
  10000. "autoload": {
  10001. "psr-4": {
  10002. "Symfony\\Component\\Routing\\": ""
  10003. },
  10004. "exclude-from-classmap": [
  10005. "/Tests/"
  10006. ]
  10007. },
  10008. "notification-url": "https://packagist.org/downloads/",
  10009. "license": [
  10010. "MIT"
  10011. ],
  10012. "authors": [
  10013. {
  10014. "name": "Fabien Potencier",
  10015. "email": "fabien@symfony.com"
  10016. },
  10017. {
  10018. "name": "Symfony Community",
  10019. "homepage": "https://symfony.com/contributors"
  10020. }
  10021. ],
  10022. "description": "Symfony Routing Component",
  10023. "homepage": "https://symfony.com",
  10024. "keywords": [
  10025. "router",
  10026. "routing",
  10027. "uri",
  10028. "url"
  10029. ],
  10030. "time": "2019-01-29T08:47:12+00:00"
  10031. },
  10032. {
  10033. "name": "symfony/serializer",
  10034. "version": "v3.4.22",
  10035. "source": {
  10036. "type": "git",
  10037. "url": "https://github.com/symfony/serializer.git",
  10038. "reference": "a897373b86489ddecacc665d15ab32983a519907"
  10039. },
  10040. "dist": {
  10041. "type": "zip",
  10042. "url": "https://api.github.com/repos/symfony/serializer/zipball/a897373b86489ddecacc665d15ab32983a519907",
  10043. "reference": "a897373b86489ddecacc665d15ab32983a519907",
  10044. "shasum": ""
  10045. },
  10046. "require": {
  10047. "php": "^5.5.9|>=7.0.8",
  10048. "symfony/polyfill-ctype": "~1.8"
  10049. },
  10050. "conflict": {
  10051. "phpdocumentor/type-resolver": "<0.2.1",
  10052. "symfony/dependency-injection": "<3.2",
  10053. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  10054. "symfony/property-info": "<3.1",
  10055. "symfony/yaml": "<3.4"
  10056. },
  10057. "require-dev": {
  10058. "doctrine/annotations": "~1.0",
  10059. "doctrine/cache": "~1.0",
  10060. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  10061. "symfony/cache": "~3.1|~4.0",
  10062. "symfony/config": "~2.8|~3.0|~4.0",
  10063. "symfony/dependency-injection": "~3.2|~4.0",
  10064. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10065. "symfony/property-access": "~2.8|~3.0|~4.0",
  10066. "symfony/property-info": "~3.1|~4.0",
  10067. "symfony/yaml": "~3.4|~4.0"
  10068. },
  10069. "suggest": {
  10070. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10071. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10072. "psr/cache-implementation": "For using the metadata cache.",
  10073. "symfony/config": "For using the XML mapping loader.",
  10074. "symfony/http-foundation": "To use the DataUriNormalizer.",
  10075. "symfony/property-access": "For using the ObjectNormalizer.",
  10076. "symfony/property-info": "To deserialize relations.",
  10077. "symfony/yaml": "For using the default YAML mapping loader."
  10078. },
  10079. "type": "library",
  10080. "extra": {
  10081. "branch-alias": {
  10082. "dev-master": "3.4-dev"
  10083. }
  10084. },
  10085. "autoload": {
  10086. "psr-4": {
  10087. "Symfony\\Component\\Serializer\\": ""
  10088. },
  10089. "exclude-from-classmap": [
  10090. "/Tests/"
  10091. ]
  10092. },
  10093. "notification-url": "https://packagist.org/downloads/",
  10094. "license": [
  10095. "MIT"
  10096. ],
  10097. "authors": [
  10098. {
  10099. "name": "Fabien Potencier",
  10100. "email": "fabien@symfony.com"
  10101. },
  10102. {
  10103. "name": "Symfony Community",
  10104. "homepage": "https://symfony.com/contributors"
  10105. }
  10106. ],
  10107. "description": "Symfony Serializer Component",
  10108. "homepage": "https://symfony.com",
  10109. "time": "2019-01-26T19:55:54+00:00"
  10110. },
  10111. {
  10112. "name": "symfony/translation",
  10113. "version": "v3.4.22",
  10114. "source": {
  10115. "type": "git",
  10116. "url": "https://github.com/symfony/translation.git",
  10117. "reference": "81cfcd6935cb7505640153576c1f9155b2a179c1"
  10118. },
  10119. "dist": {
  10120. "type": "zip",
  10121. "url": "https://api.github.com/repos/symfony/translation/zipball/81cfcd6935cb7505640153576c1f9155b2a179c1",
  10122. "reference": "81cfcd6935cb7505640153576c1f9155b2a179c1",
  10123. "shasum": ""
  10124. },
  10125. "require": {
  10126. "php": "^5.5.9|>=7.0.8",
  10127. "symfony/polyfill-mbstring": "~1.0"
  10128. },
  10129. "conflict": {
  10130. "symfony/config": "<2.8",
  10131. "symfony/dependency-injection": "<3.4",
  10132. "symfony/yaml": "<3.4"
  10133. },
  10134. "require-dev": {
  10135. "psr/log": "~1.0",
  10136. "symfony/config": "~2.8|~3.0|~4.0",
  10137. "symfony/dependency-injection": "~3.4|~4.0",
  10138. "symfony/finder": "~2.8|~3.0|~4.0",
  10139. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10140. "symfony/yaml": "~3.4|~4.0"
  10141. },
  10142. "suggest": {
  10143. "psr/log-implementation": "To use logging capability in translator",
  10144. "symfony/config": "",
  10145. "symfony/yaml": ""
  10146. },
  10147. "type": "library",
  10148. "extra": {
  10149. "branch-alias": {
  10150. "dev-master": "3.4-dev"
  10151. }
  10152. },
  10153. "autoload": {
  10154. "psr-4": {
  10155. "Symfony\\Component\\Translation\\": ""
  10156. },
  10157. "exclude-from-classmap": [
  10158. "/Tests/"
  10159. ]
  10160. },
  10161. "notification-url": "https://packagist.org/downloads/",
  10162. "license": [
  10163. "MIT"
  10164. ],
  10165. "authors": [
  10166. {
  10167. "name": "Fabien Potencier",
  10168. "email": "fabien@symfony.com"
  10169. },
  10170. {
  10171. "name": "Symfony Community",
  10172. "homepage": "https://symfony.com/contributors"
  10173. }
  10174. ],
  10175. "description": "Symfony Translation Component",
  10176. "homepage": "https://symfony.com",
  10177. "time": "2019-01-25T10:00:44+00:00"
  10178. },
  10179. {
  10180. "name": "symfony/validator",
  10181. "version": "v3.4.22",
  10182. "source": {
  10183. "type": "git",
  10184. "url": "https://github.com/symfony/validator.git",
  10185. "reference": "06af494d8634df6ad9655ec7d80cb61983253912"
  10186. },
  10187. "dist": {
  10188. "type": "zip",
  10189. "url": "https://api.github.com/repos/symfony/validator/zipball/06af494d8634df6ad9655ec7d80cb61983253912",
  10190. "reference": "06af494d8634df6ad9655ec7d80cb61983253912",
  10191. "shasum": ""
  10192. },
  10193. "require": {
  10194. "php": "^5.5.9|>=7.0.8",
  10195. "symfony/polyfill-ctype": "~1.8",
  10196. "symfony/polyfill-mbstring": "~1.0",
  10197. "symfony/translation": "~2.8|~3.0|~4.0"
  10198. },
  10199. "conflict": {
  10200. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10201. "symfony/dependency-injection": "<3.3",
  10202. "symfony/http-kernel": "<3.3.5",
  10203. "symfony/yaml": "<3.4"
  10204. },
  10205. "require-dev": {
  10206. "doctrine/annotations": "~1.0",
  10207. "doctrine/cache": "~1.0",
  10208. "egulias/email-validator": "^1.2.8|~2.0",
  10209. "symfony/cache": "~3.1|~4.0",
  10210. "symfony/config": "~2.8|~3.0|~4.0",
  10211. "symfony/dependency-injection": "~3.3|~4.0",
  10212. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10213. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10214. "symfony/http-kernel": "^3.3.5|~4.0",
  10215. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10216. "symfony/property-access": "~2.8|~3.0|~4.0",
  10217. "symfony/var-dumper": "~3.3|~4.0",
  10218. "symfony/yaml": "~3.4|~4.0"
  10219. },
  10220. "suggest": {
  10221. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10222. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10223. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10224. "psr/cache-implementation": "For using the metadata cache.",
  10225. "symfony/config": "",
  10226. "symfony/expression-language": "For using the Expression validator",
  10227. "symfony/http-foundation": "",
  10228. "symfony/intl": "",
  10229. "symfony/property-access": "For accessing properties within comparison constraints",
  10230. "symfony/yaml": ""
  10231. },
  10232. "type": "library",
  10233. "extra": {
  10234. "branch-alias": {
  10235. "dev-master": "3.4-dev"
  10236. }
  10237. },
  10238. "autoload": {
  10239. "psr-4": {
  10240. "Symfony\\Component\\Validator\\": ""
  10241. },
  10242. "exclude-from-classmap": [
  10243. "/Tests/"
  10244. ]
  10245. },
  10246. "notification-url": "https://packagist.org/downloads/",
  10247. "license": [
  10248. "MIT"
  10249. ],
  10250. "authors": [
  10251. {
  10252. "name": "Fabien Potencier",
  10253. "email": "fabien@symfony.com"
  10254. },
  10255. {
  10256. "name": "Symfony Community",
  10257. "homepage": "https://symfony.com/contributors"
  10258. }
  10259. ],
  10260. "description": "Symfony Validator Component",
  10261. "homepage": "https://symfony.com",
  10262. "time": "2019-01-30T09:03:33+00:00"
  10263. },
  10264. {
  10265. "name": "symfony/var-dumper",
  10266. "version": "v3.4.22",
  10267. "source": {
  10268. "type": "git",
  10269. "url": "https://github.com/symfony/var-dumper.git",
  10270. "reference": "2159335b452d929cbb9921fc4eb7d1bfed32d0be"
  10271. },
  10272. "dist": {
  10273. "type": "zip",
  10274. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2159335b452d929cbb9921fc4eb7d1bfed32d0be",
  10275. "reference": "2159335b452d929cbb9921fc4eb7d1bfed32d0be",
  10276. "shasum": ""
  10277. },
  10278. "require": {
  10279. "php": "^5.5.9|>=7.0.8",
  10280. "symfony/polyfill-mbstring": "~1.0"
  10281. },
  10282. "conflict": {
  10283. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  10284. },
  10285. "require-dev": {
  10286. "ext-iconv": "*",
  10287. "twig/twig": "~1.34|~2.4"
  10288. },
  10289. "suggest": {
  10290. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10291. "ext-intl": "To show region name in time zone dump",
  10292. "ext-symfony_debug": ""
  10293. },
  10294. "type": "library",
  10295. "extra": {
  10296. "branch-alias": {
  10297. "dev-master": "3.4-dev"
  10298. }
  10299. },
  10300. "autoload": {
  10301. "files": [
  10302. "Resources/functions/dump.php"
  10303. ],
  10304. "psr-4": {
  10305. "Symfony\\Component\\VarDumper\\": ""
  10306. },
  10307. "exclude-from-classmap": [
  10308. "/Tests/"
  10309. ]
  10310. },
  10311. "notification-url": "https://packagist.org/downloads/",
  10312. "license": [
  10313. "MIT"
  10314. ],
  10315. "authors": [
  10316. {
  10317. "name": "Nicolas Grekas",
  10318. "email": "p@tchwork.com"
  10319. },
  10320. {
  10321. "name": "Symfony Community",
  10322. "homepage": "https://symfony.com/contributors"
  10323. }
  10324. ],
  10325. "description": "Symfony mechanism for exploring and dumping PHP variables",
  10326. "homepage": "https://symfony.com",
  10327. "keywords": [
  10328. "debug",
  10329. "dump"
  10330. ],
  10331. "time": "2019-01-29T16:19:17+00:00"
  10332. },
  10333. {
  10334. "name": "symfony/yaml",
  10335. "version": "v3.4.22",
  10336. "source": {
  10337. "type": "git",
  10338. "url": "https://github.com/symfony/yaml.git",
  10339. "reference": "ba11776e9e6c15ad5759a07bffb15899bac75c2d"
  10340. },
  10341. "dist": {
  10342. "type": "zip",
  10343. "url": "https://api.github.com/repos/symfony/yaml/zipball/ba11776e9e6c15ad5759a07bffb15899bac75c2d",
  10344. "reference": "ba11776e9e6c15ad5759a07bffb15899bac75c2d",
  10345. "shasum": ""
  10346. },
  10347. "require": {
  10348. "php": "^5.5.9|>=7.0.8",
  10349. "symfony/polyfill-ctype": "~1.8"
  10350. },
  10351. "conflict": {
  10352. "symfony/console": "<3.4"
  10353. },
  10354. "require-dev": {
  10355. "symfony/console": "~3.4|~4.0"
  10356. },
  10357. "suggest": {
  10358. "symfony/console": "For validating YAML files using the lint command"
  10359. },
  10360. "type": "library",
  10361. "extra": {
  10362. "branch-alias": {
  10363. "dev-master": "3.4-dev"
  10364. }
  10365. },
  10366. "autoload": {
  10367. "psr-4": {
  10368. "Symfony\\Component\\Yaml\\": ""
  10369. },
  10370. "exclude-from-classmap": [
  10371. "/Tests/"
  10372. ]
  10373. },
  10374. "notification-url": "https://packagist.org/downloads/",
  10375. "license": [
  10376. "MIT"
  10377. ],
  10378. "authors": [
  10379. {
  10380. "name": "Fabien Potencier",
  10381. "email": "fabien@symfony.com"
  10382. },
  10383. {
  10384. "name": "Symfony Community",
  10385. "homepage": "https://symfony.com/contributors"
  10386. }
  10387. ],
  10388. "description": "Symfony Yaml Component",
  10389. "homepage": "https://symfony.com",
  10390. "time": "2019-01-16T10:59:17+00:00"
  10391. },
  10392. {
  10393. "name": "twig/twig",
  10394. "version": "v1.37.1",
  10395. "source": {
  10396. "type": "git",
  10397. "url": "https://github.com/twigphp/Twig.git",
  10398. "reference": "66be9366c76cbf23e82e7171d47cbfa54a057a62"
  10399. },
  10400. "dist": {
  10401. "type": "zip",
  10402. "url": "https://api.github.com/repos/twigphp/Twig/zipball/66be9366c76cbf23e82e7171d47cbfa54a057a62",
  10403. "reference": "66be9366c76cbf23e82e7171d47cbfa54a057a62",
  10404. "shasum": ""
  10405. },
  10406. "require": {
  10407. "php": ">=5.4.0",
  10408. "symfony/polyfill-ctype": "^1.8"
  10409. },
  10410. "require-dev": {
  10411. "psr/container": "^1.0",
  10412. "symfony/debug": "^2.7",
  10413. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  10414. },
  10415. "type": "library",
  10416. "extra": {
  10417. "branch-alias": {
  10418. "dev-master": "1.37-dev"
  10419. }
  10420. },
  10421. "autoload": {
  10422. "psr-0": {
  10423. "Twig_": "lib/"
  10424. },
  10425. "psr-4": {
  10426. "Twig\\": "src/"
  10427. }
  10428. },
  10429. "notification-url": "https://packagist.org/downloads/",
  10430. "license": [
  10431. "BSD-3-Clause"
  10432. ],
  10433. "authors": [
  10434. {
  10435. "name": "Fabien Potencier",
  10436. "email": "fabien@symfony.com",
  10437. "homepage": "http://fabien.potencier.org",
  10438. "role": "Lead Developer"
  10439. },
  10440. {
  10441. "name": "Armin Ronacher",
  10442. "email": "armin.ronacher@active-4.com",
  10443. "role": "Project Founder"
  10444. },
  10445. {
  10446. "name": "Twig Team",
  10447. "homepage": "https://twig.symfony.com/contributors",
  10448. "role": "Contributors"
  10449. }
  10450. ],
  10451. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10452. "homepage": "https://twig.symfony.com",
  10453. "keywords": [
  10454. "templating"
  10455. ],
  10456. "time": "2019-01-14T14:59:29+00:00"
  10457. },
  10458. {
  10459. "name": "typo3/phar-stream-wrapper",
  10460. "version": "v2.0.1",
  10461. "source": {
  10462. "type": "git",
  10463. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10464. "reference": "0469d9fefa0146ea4299d3b11cfbb76faa7045bf"
  10465. },
  10466. "dist": {
  10467. "type": "zip",
  10468. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/0469d9fefa0146ea4299d3b11cfbb76faa7045bf",
  10469. "reference": "0469d9fefa0146ea4299d3b11cfbb76faa7045bf",
  10470. "shasum": ""
  10471. },
  10472. "require": {
  10473. "php": "^5.3.3|^7.0"
  10474. },
  10475. "require-dev": {
  10476. "phpunit/phpunit": "^4.8.36"
  10477. },
  10478. "type": "library",
  10479. "autoload": {
  10480. "psr-4": {
  10481. "TYPO3\\PharStreamWrapper\\": "src/"
  10482. }
  10483. },
  10484. "notification-url": "https://packagist.org/downloads/",
  10485. "license": [
  10486. "MIT"
  10487. ],
  10488. "description": "Interceptors for PHP's native phar:// stream handling",
  10489. "homepage": "https://typo3.org/",
  10490. "keywords": [
  10491. "phar",
  10492. "php",
  10493. "security",
  10494. "stream-wrapper"
  10495. ],
  10496. "time": "2018-10-18T08:46:28+00:00"
  10497. },
  10498. {
  10499. "name": "vlucas/phpdotenv",
  10500. "version": "v2.6.1",
  10501. "source": {
  10502. "type": "git",
  10503. "url": "https://github.com/vlucas/phpdotenv.git",
  10504. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  10505. },
  10506. "dist": {
  10507. "type": "zip",
  10508. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10509. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10510. "shasum": ""
  10511. },
  10512. "require": {
  10513. "php": ">=5.3.9",
  10514. "symfony/polyfill-ctype": "^1.9"
  10515. },
  10516. "require-dev": {
  10517. "phpunit/phpunit": "^4.8.35 || ^5.0"
  10518. },
  10519. "type": "library",
  10520. "extra": {
  10521. "branch-alias": {
  10522. "dev-master": "2.6-dev"
  10523. }
  10524. },
  10525. "autoload": {
  10526. "psr-4": {
  10527. "Dotenv\\": "src/"
  10528. }
  10529. },
  10530. "notification-url": "https://packagist.org/downloads/",
  10531. "license": [
  10532. "BSD-3-Clause"
  10533. ],
  10534. "authors": [
  10535. {
  10536. "name": "Vance Lucas",
  10537. "email": "vance@vancelucas.com",
  10538. "homepage": "http://www.vancelucas.com"
  10539. }
  10540. ],
  10541. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10542. "keywords": [
  10543. "dotenv",
  10544. "env",
  10545. "environment"
  10546. ],
  10547. "time": "2019-01-29T11:11:52+00:00"
  10548. },
  10549. {
  10550. "name": "webflo/drupal-finder",
  10551. "version": "1.1.0",
  10552. "source": {
  10553. "type": "git",
  10554. "url": "https://github.com/webflo/drupal-finder.git",
  10555. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  10556. },
  10557. "dist": {
  10558. "type": "zip",
  10559. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  10560. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  10561. "shasum": ""
  10562. },
  10563. "require-dev": {
  10564. "mikey179/vfsstream": "^1.6",
  10565. "phpunit/phpunit": "^4.8"
  10566. },
  10567. "type": "library",
  10568. "autoload": {
  10569. "classmap": [
  10570. "src/DrupalFinder.php"
  10571. ]
  10572. },
  10573. "notification-url": "https://packagist.org/downloads/",
  10574. "license": [
  10575. "GPL-2.0+"
  10576. ],
  10577. "authors": [
  10578. {
  10579. "name": "Florian Weber",
  10580. "email": "florian@webflo.org"
  10581. }
  10582. ],
  10583. "description": "Helper class to locate a Drupal installation from a given path.",
  10584. "time": "2017-10-24T08:12:11+00:00"
  10585. },
  10586. {
  10587. "name": "webmozart/assert",
  10588. "version": "1.4.0",
  10589. "source": {
  10590. "type": "git",
  10591. "url": "https://github.com/webmozart/assert.git",
  10592. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  10593. },
  10594. "dist": {
  10595. "type": "zip",
  10596. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  10597. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  10598. "shasum": ""
  10599. },
  10600. "require": {
  10601. "php": "^5.3.3 || ^7.0",
  10602. "symfony/polyfill-ctype": "^1.8"
  10603. },
  10604. "require-dev": {
  10605. "phpunit/phpunit": "^4.6",
  10606. "sebastian/version": "^1.0.1"
  10607. },
  10608. "type": "library",
  10609. "extra": {
  10610. "branch-alias": {
  10611. "dev-master": "1.3-dev"
  10612. }
  10613. },
  10614. "autoload": {
  10615. "psr-4": {
  10616. "Webmozart\\Assert\\": "src/"
  10617. }
  10618. },
  10619. "notification-url": "https://packagist.org/downloads/",
  10620. "license": [
  10621. "MIT"
  10622. ],
  10623. "authors": [
  10624. {
  10625. "name": "Bernhard Schussek",
  10626. "email": "bschussek@gmail.com"
  10627. }
  10628. ],
  10629. "description": "Assertions to validate method input/output with nice error messages.",
  10630. "keywords": [
  10631. "assert",
  10632. "check",
  10633. "validate"
  10634. ],
  10635. "time": "2018-12-25T11:19:39+00:00"
  10636. },
  10637. {
  10638. "name": "webmozart/path-util",
  10639. "version": "2.3.0",
  10640. "source": {
  10641. "type": "git",
  10642. "url": "https://github.com/webmozart/path-util.git",
  10643. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10644. },
  10645. "dist": {
  10646. "type": "zip",
  10647. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10648. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10649. "shasum": ""
  10650. },
  10651. "require": {
  10652. "php": ">=5.3.3",
  10653. "webmozart/assert": "~1.0"
  10654. },
  10655. "require-dev": {
  10656. "phpunit/phpunit": "^4.6",
  10657. "sebastian/version": "^1.0.1"
  10658. },
  10659. "type": "library",
  10660. "extra": {
  10661. "branch-alias": {
  10662. "dev-master": "2.3-dev"
  10663. }
  10664. },
  10665. "autoload": {
  10666. "psr-4": {
  10667. "Webmozart\\PathUtil\\": "src/"
  10668. }
  10669. },
  10670. "notification-url": "https://packagist.org/downloads/",
  10671. "license": [
  10672. "MIT"
  10673. ],
  10674. "authors": [
  10675. {
  10676. "name": "Bernhard Schussek",
  10677. "email": "bschussek@gmail.com"
  10678. }
  10679. ],
  10680. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10681. "time": "2015-12-17T08:42:14+00:00"
  10682. },
  10683. {
  10684. "name": "wikimedia/composer-merge-plugin",
  10685. "version": "v1.4.1",
  10686. "source": {
  10687. "type": "git",
  10688. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  10689. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  10690. },
  10691. "dist": {
  10692. "type": "zip",
  10693. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  10694. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  10695. "shasum": ""
  10696. },
  10697. "require": {
  10698. "composer-plugin-api": "^1.0",
  10699. "php": ">=5.3.2"
  10700. },
  10701. "require-dev": {
  10702. "composer/composer": "~1.0.0",
  10703. "jakub-onderka/php-parallel-lint": "~0.8",
  10704. "phpunit/phpunit": "~4.8|~5.0",
  10705. "squizlabs/php_codesniffer": "~2.1.0"
  10706. },
  10707. "type": "composer-plugin",
  10708. "extra": {
  10709. "branch-alias": {
  10710. "dev-master": "1.3.x-dev"
  10711. },
  10712. "class": "Wikimedia\\Composer\\MergePlugin"
  10713. },
  10714. "autoload": {
  10715. "psr-4": {
  10716. "Wikimedia\\Composer\\": "src/"
  10717. }
  10718. },
  10719. "notification-url": "https://packagist.org/downloads/",
  10720. "license": [
  10721. "MIT"
  10722. ],
  10723. "authors": [
  10724. {
  10725. "name": "Bryan Davis",
  10726. "email": "bd808@wikimedia.org"
  10727. }
  10728. ],
  10729. "description": "Composer plugin to merge multiple composer.json files",
  10730. "time": "2017-04-25T02:31:25+00:00"
  10731. },
  10732. {
  10733. "name": "zaporylie/composer-drupal-optimizations",
  10734. "version": "1.0.2",
  10735. "source": {
  10736. "type": "git",
  10737. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  10738. "reference": "cc5eb9f0b5fa664885765748ce5190c1de7d2571"
  10739. },
  10740. "dist": {
  10741. "type": "zip",
  10742. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/cc5eb9f0b5fa664885765748ce5190c1de7d2571",
  10743. "reference": "cc5eb9f0b5fa664885765748ce5190c1de7d2571",
  10744. "shasum": ""
  10745. },
  10746. "require": {
  10747. "composer-plugin-api": "^1.1",
  10748. "drupal/core": "^8.5"
  10749. },
  10750. "require-dev": {
  10751. "composer/composer": "^1.6"
  10752. },
  10753. "type": "composer-plugin",
  10754. "extra": {
  10755. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  10756. },
  10757. "autoload": {
  10758. "psr-4": {
  10759. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  10760. }
  10761. },
  10762. "notification-url": "https://packagist.org/downloads/",
  10763. "license": [
  10764. "GPL-2.0-or-later"
  10765. ],
  10766. "authors": [
  10767. {
  10768. "name": "Jakub Piasecki",
  10769. "email": "jakub@piaseccy.pl"
  10770. }
  10771. ],
  10772. "description": "Composer plugin to improve composer performance for Drupal projects",
  10773. "time": "2018-07-15T18:04:58+00:00"
  10774. },
  10775. {
  10776. "name": "zendframework/zend-diactoros",
  10777. "version": "1.8.6",
  10778. "source": {
  10779. "type": "git",
  10780. "url": "https://github.com/zendframework/zend-diactoros.git",
  10781. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  10782. },
  10783. "dist": {
  10784. "type": "zip",
  10785. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  10786. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  10787. "shasum": ""
  10788. },
  10789. "require": {
  10790. "php": "^5.6 || ^7.0",
  10791. "psr/http-message": "^1.0"
  10792. },
  10793. "provide": {
  10794. "psr/http-message-implementation": "1.0"
  10795. },
  10796. "require-dev": {
  10797. "ext-dom": "*",
  10798. "ext-libxml": "*",
  10799. "php-http/psr7-integration-tests": "dev-master",
  10800. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  10801. "zendframework/zend-coding-standard": "~1.0"
  10802. },
  10803. "type": "library",
  10804. "extra": {
  10805. "branch-alias": {
  10806. "dev-master": "1.8.x-dev",
  10807. "dev-develop": "1.9.x-dev",
  10808. "dev-release-2.0": "2.0.x-dev"
  10809. }
  10810. },
  10811. "autoload": {
  10812. "files": [
  10813. "src/functions/create_uploaded_file.php",
  10814. "src/functions/marshal_headers_from_sapi.php",
  10815. "src/functions/marshal_method_from_sapi.php",
  10816. "src/functions/marshal_protocol_version_from_sapi.php",
  10817. "src/functions/marshal_uri_from_sapi.php",
  10818. "src/functions/normalize_server.php",
  10819. "src/functions/normalize_uploaded_files.php",
  10820. "src/functions/parse_cookie_header.php"
  10821. ],
  10822. "psr-4": {
  10823. "Zend\\Diactoros\\": "src/"
  10824. }
  10825. },
  10826. "notification-url": "https://packagist.org/downloads/",
  10827. "license": [
  10828. "BSD-2-Clause"
  10829. ],
  10830. "description": "PSR HTTP Message implementations",
  10831. "homepage": "https://github.com/zendframework/zend-diactoros",
  10832. "keywords": [
  10833. "http",
  10834. "psr",
  10835. "psr-7"
  10836. ],
  10837. "time": "2018-09-05T19:29:37+00:00"
  10838. },
  10839. {
  10840. "name": "zendframework/zend-escaper",
  10841. "version": "2.6.0",
  10842. "source": {
  10843. "type": "git",
  10844. "url": "https://github.com/zendframework/zend-escaper.git",
  10845. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  10846. },
  10847. "dist": {
  10848. "type": "zip",
  10849. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  10850. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  10851. "shasum": ""
  10852. },
  10853. "require": {
  10854. "php": "^5.6 || ^7.0"
  10855. },
  10856. "require-dev": {
  10857. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10858. "zendframework/zend-coding-standard": "~1.0.0"
  10859. },
  10860. "type": "library",
  10861. "extra": {
  10862. "branch-alias": {
  10863. "dev-master": "2.6.x-dev",
  10864. "dev-develop": "2.7.x-dev"
  10865. }
  10866. },
  10867. "autoload": {
  10868. "psr-4": {
  10869. "Zend\\Escaper\\": "src/"
  10870. }
  10871. },
  10872. "notification-url": "https://packagist.org/downloads/",
  10873. "license": [
  10874. "BSD-3-Clause"
  10875. ],
  10876. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  10877. "keywords": [
  10878. "ZendFramework",
  10879. "escaper",
  10880. "zf"
  10881. ],
  10882. "time": "2018-04-25T15:48:53+00:00"
  10883. },
  10884. {
  10885. "name": "zendframework/zend-feed",
  10886. "version": "2.11.0",
  10887. "source": {
  10888. "type": "git",
  10889. "url": "https://github.com/zendframework/zend-feed.git",
  10890. "reference": "5248e9fffa760e5c36092aeff02c3797e4a8a690"
  10891. },
  10892. "dist": {
  10893. "type": "zip",
  10894. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/5248e9fffa760e5c36092aeff02c3797e4a8a690",
  10895. "reference": "5248e9fffa760e5c36092aeff02c3797e4a8a690",
  10896. "shasum": ""
  10897. },
  10898. "require": {
  10899. "ext-dom": "*",
  10900. "ext-libxml": "*",
  10901. "php": "^5.6 || ^7.0",
  10902. "zendframework/zend-escaper": "^2.5.2",
  10903. "zendframework/zend-stdlib": "^3.2.1"
  10904. },
  10905. "require-dev": {
  10906. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  10907. "psr/http-message": "^1.0.1",
  10908. "zendframework/zend-cache": "^2.7.2",
  10909. "zendframework/zend-coding-standard": "~1.0.0",
  10910. "zendframework/zend-db": "^2.8.2",
  10911. "zendframework/zend-http": "^2.7",
  10912. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  10913. "zendframework/zend-validator": "^2.10.1"
  10914. },
  10915. "suggest": {
  10916. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  10917. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  10918. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  10919. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  10920. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  10921. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  10922. },
  10923. "type": "library",
  10924. "extra": {
  10925. "branch-alias": {
  10926. "dev-master": "2.11.x-dev",
  10927. "dev-develop": "2.12.x-dev"
  10928. }
  10929. },
  10930. "autoload": {
  10931. "psr-4": {
  10932. "Zend\\Feed\\": "src/"
  10933. }
  10934. },
  10935. "notification-url": "https://packagist.org/downloads/",
  10936. "license": [
  10937. "BSD-3-Clause"
  10938. ],
  10939. "description": "provides functionality for consuming RSS and Atom feeds",
  10940. "keywords": [
  10941. "ZendFramework",
  10942. "feed",
  10943. "zf"
  10944. ],
  10945. "time": "2019-01-29T21:37:15+00:00"
  10946. },
  10947. {
  10948. "name": "zendframework/zend-stdlib",
  10949. "version": "3.2.1",
  10950. "source": {
  10951. "type": "git",
  10952. "url": "https://github.com/zendframework/zend-stdlib.git",
  10953. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  10954. },
  10955. "dist": {
  10956. "type": "zip",
  10957. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  10958. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  10959. "shasum": ""
  10960. },
  10961. "require": {
  10962. "php": "^5.6 || ^7.0"
  10963. },
  10964. "require-dev": {
  10965. "phpbench/phpbench": "^0.13",
  10966. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10967. "zendframework/zend-coding-standard": "~1.0.0"
  10968. },
  10969. "type": "library",
  10970. "extra": {
  10971. "branch-alias": {
  10972. "dev-master": "3.2.x-dev",
  10973. "dev-develop": "3.3.x-dev"
  10974. }
  10975. },
  10976. "autoload": {
  10977. "psr-4": {
  10978. "Zend\\Stdlib\\": "src/"
  10979. }
  10980. },
  10981. "notification-url": "https://packagist.org/downloads/",
  10982. "license": [
  10983. "BSD-3-Clause"
  10984. ],
  10985. "description": "SPL extensions, array utilities, error handlers, and more",
  10986. "keywords": [
  10987. "ZendFramework",
  10988. "stdlib",
  10989. "zf"
  10990. ],
  10991. "time": "2018-08-28T21:34:05+00:00"
  10992. }
  10993. ],
  10994. "packages-dev": [
  10995. {
  10996. "name": "behat/mink",
  10997. "version": "dev-master",
  10998. "source": {
  10999. "type": "git",
  11000. "url": "https://github.com/minkphp/Mink.git",
  11001. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  11002. },
  11003. "dist": {
  11004. "type": "zip",
  11005. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  11006. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  11007. "shasum": ""
  11008. },
  11009. "require": {
  11010. "php": ">=5.3.1",
  11011. "symfony/css-selector": "^2.7|^3.0|^4.0"
  11012. },
  11013. "require-dev": {
  11014. "symfony/phpunit-bridge": "^3.3|^4.0"
  11015. },
  11016. "suggest": {
  11017. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  11018. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  11019. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  11020. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  11021. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  11022. },
  11023. "type": "library",
  11024. "extra": {
  11025. "branch-alias": {
  11026. "dev-master": "1.7.x-dev"
  11027. }
  11028. },
  11029. "autoload": {
  11030. "psr-4": {
  11031. "Behat\\Mink\\": "src/"
  11032. }
  11033. },
  11034. "notification-url": "https://packagist.org/downloads/",
  11035. "license": [
  11036. "MIT"
  11037. ],
  11038. "authors": [
  11039. {
  11040. "name": "Konstantin Kudryashov",
  11041. "email": "ever.zet@gmail.com",
  11042. "homepage": "http://everzet.com"
  11043. }
  11044. ],
  11045. "description": "Browser controller/emulator abstraction for PHP",
  11046. "homepage": "http://mink.behat.org/",
  11047. "keywords": [
  11048. "browser",
  11049. "testing",
  11050. "web"
  11051. ],
  11052. "time": "2018-06-24T20:08:51+00:00"
  11053. },
  11054. {
  11055. "name": "behat/mink-browserkit-driver",
  11056. "version": "1.3.3",
  11057. "source": {
  11058. "type": "git",
  11059. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  11060. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  11061. },
  11062. "dist": {
  11063. "type": "zip",
  11064. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  11065. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  11066. "shasum": ""
  11067. },
  11068. "require": {
  11069. "behat/mink": "^1.7.1@dev",
  11070. "php": ">=5.3.6",
  11071. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  11072. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  11073. },
  11074. "require-dev": {
  11075. "mink/driver-testsuite": "dev-master",
  11076. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  11077. },
  11078. "type": "mink-driver",
  11079. "extra": {
  11080. "branch-alias": {
  11081. "dev-master": "1.3.x-dev"
  11082. }
  11083. },
  11084. "autoload": {
  11085. "psr-4": {
  11086. "Behat\\Mink\\Driver\\": "src/"
  11087. }
  11088. },
  11089. "notification-url": "https://packagist.org/downloads/",
  11090. "license": [
  11091. "MIT"
  11092. ],
  11093. "authors": [
  11094. {
  11095. "name": "Konstantin Kudryashov",
  11096. "email": "ever.zet@gmail.com",
  11097. "homepage": "http://everzet.com"
  11098. }
  11099. ],
  11100. "description": "Symfony2 BrowserKit driver for Mink framework",
  11101. "homepage": "http://mink.behat.org/",
  11102. "keywords": [
  11103. "Mink",
  11104. "Symfony2",
  11105. "browser",
  11106. "testing"
  11107. ],
  11108. "time": "2018-05-02T09:25:31+00:00"
  11109. },
  11110. {
  11111. "name": "behat/mink-goutte-driver",
  11112. "version": "v1.2.1",
  11113. "source": {
  11114. "type": "git",
  11115. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  11116. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  11117. },
  11118. "dist": {
  11119. "type": "zip",
  11120. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  11121. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  11122. "shasum": ""
  11123. },
  11124. "require": {
  11125. "behat/mink": "~1.6@dev",
  11126. "behat/mink-browserkit-driver": "~1.2@dev",
  11127. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  11128. "php": ">=5.3.1"
  11129. },
  11130. "require-dev": {
  11131. "symfony/phpunit-bridge": "~2.7|~3.0"
  11132. },
  11133. "type": "mink-driver",
  11134. "extra": {
  11135. "branch-alias": {
  11136. "dev-master": "1.2.x-dev"
  11137. }
  11138. },
  11139. "autoload": {
  11140. "psr-4": {
  11141. "Behat\\Mink\\Driver\\": "src/"
  11142. }
  11143. },
  11144. "notification-url": "https://packagist.org/downloads/",
  11145. "license": [
  11146. "MIT"
  11147. ],
  11148. "authors": [
  11149. {
  11150. "name": "Konstantin Kudryashov",
  11151. "email": "ever.zet@gmail.com",
  11152. "homepage": "http://everzet.com"
  11153. }
  11154. ],
  11155. "description": "Goutte driver for Mink framework",
  11156. "homepage": "http://mink.behat.org/",
  11157. "keywords": [
  11158. "browser",
  11159. "goutte",
  11160. "headless",
  11161. "testing"
  11162. ],
  11163. "time": "2016-03-05T09:04:22+00:00"
  11164. },
  11165. {
  11166. "name": "behat/mink-selenium2-driver",
  11167. "version": "dev-master",
  11168. "source": {
  11169. "type": "git",
  11170. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  11171. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  11172. },
  11173. "dist": {
  11174. "type": "zip",
  11175. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  11176. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  11177. "shasum": ""
  11178. },
  11179. "require": {
  11180. "behat/mink": "~1.7@dev",
  11181. "instaclick/php-webdriver": "~1.1",
  11182. "php": ">=5.3.1"
  11183. },
  11184. "require-dev": {
  11185. "mink/driver-testsuite": "dev-master"
  11186. },
  11187. "type": "mink-driver",
  11188. "extra": {
  11189. "branch-alias": {
  11190. "dev-master": "1.3.x-dev"
  11191. }
  11192. },
  11193. "autoload": {
  11194. "psr-4": {
  11195. "Behat\\Mink\\Driver\\": "src/"
  11196. }
  11197. },
  11198. "notification-url": "https://packagist.org/downloads/",
  11199. "license": [
  11200. "MIT"
  11201. ],
  11202. "authors": [
  11203. {
  11204. "name": "Konstantin Kudryashov",
  11205. "email": "ever.zet@gmail.com",
  11206. "homepage": "http://everzet.com"
  11207. },
  11208. {
  11209. "name": "Pete Otaqui",
  11210. "email": "pete@otaqui.com",
  11211. "homepage": "https://github.com/pete-otaqui"
  11212. }
  11213. ],
  11214. "description": "Selenium2 (WebDriver) driver for Mink framework",
  11215. "homepage": "http://mink.behat.org/",
  11216. "keywords": [
  11217. "ajax",
  11218. "browser",
  11219. "javascript",
  11220. "selenium",
  11221. "testing",
  11222. "webdriver"
  11223. ],
  11224. "time": "2018-10-10T12:39:06+00:00"
  11225. },
  11226. {
  11227. "name": "doctrine/instantiator",
  11228. "version": "1.0.5",
  11229. "source": {
  11230. "type": "git",
  11231. "url": "https://github.com/doctrine/instantiator.git",
  11232. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  11233. },
  11234. "dist": {
  11235. "type": "zip",
  11236. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  11237. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  11238. "shasum": ""
  11239. },
  11240. "require": {
  11241. "php": ">=5.3,<8.0-DEV"
  11242. },
  11243. "require-dev": {
  11244. "athletic/athletic": "~0.1.8",
  11245. "ext-pdo": "*",
  11246. "ext-phar": "*",
  11247. "phpunit/phpunit": "~4.0",
  11248. "squizlabs/php_codesniffer": "~2.0"
  11249. },
  11250. "type": "library",
  11251. "extra": {
  11252. "branch-alias": {
  11253. "dev-master": "1.0.x-dev"
  11254. }
  11255. },
  11256. "autoload": {
  11257. "psr-4": {
  11258. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  11259. }
  11260. },
  11261. "notification-url": "https://packagist.org/downloads/",
  11262. "license": [
  11263. "MIT"
  11264. ],
  11265. "authors": [
  11266. {
  11267. "name": "Marco Pivetta",
  11268. "email": "ocramius@gmail.com",
  11269. "homepage": "http://ocramius.github.com/"
  11270. }
  11271. ],
  11272. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  11273. "homepage": "https://github.com/doctrine/instantiator",
  11274. "keywords": [
  11275. "constructor",
  11276. "instantiate"
  11277. ],
  11278. "time": "2015-06-14T21:17:01+00:00"
  11279. },
  11280. {
  11281. "name": "drupal/coder",
  11282. "version": "8.3.1",
  11283. "source": {
  11284. "type": "git",
  11285. "url": "https://git.drupal.org/project/coder.git",
  11286. "reference": "29a25627e7148b3119c84f18e087fc3b8c85b959"
  11287. },
  11288. "require": {
  11289. "ext-mbstring": "*",
  11290. "php": ">=5.4.0",
  11291. "squizlabs/php_codesniffer": "^3.0.1",
  11292. "symfony/yaml": ">=2.0.0"
  11293. },
  11294. "require-dev": {
  11295. "phpunit/phpunit": ">=3.7 <6"
  11296. },
  11297. "type": "phpcodesniffer-standard",
  11298. "autoload": {
  11299. "psr-0": {
  11300. "Drupal\\": "coder_sniffer/Drupal/",
  11301. "DrupalPractice\\": "coder_sniffer/Drupal/"
  11302. }
  11303. },
  11304. "notification-url": "https://packagist.org/downloads/",
  11305. "license": [
  11306. "GPL-2.0+"
  11307. ],
  11308. "description": "Coder is a library to review Drupal code.",
  11309. "homepage": "https://www.drupal.org/project/coder",
  11310. "keywords": [
  11311. "code review",
  11312. "phpcs",
  11313. "standards"
  11314. ],
  11315. "time": "2018-09-21T14:22:49+00:00"
  11316. },
  11317. {
  11318. "name": "fabpot/goutte",
  11319. "version": "v3.2.3",
  11320. "source": {
  11321. "type": "git",
  11322. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  11323. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  11324. },
  11325. "dist": {
  11326. "type": "zip",
  11327. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  11328. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  11329. "shasum": ""
  11330. },
  11331. "require": {
  11332. "guzzlehttp/guzzle": "^6.0",
  11333. "php": ">=5.5.0",
  11334. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  11335. "symfony/css-selector": "~2.1|~3.0|~4.0",
  11336. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  11337. },
  11338. "require-dev": {
  11339. "symfony/phpunit-bridge": "^3.3 || ^4"
  11340. },
  11341. "type": "application",
  11342. "extra": {
  11343. "branch-alias": {
  11344. "dev-master": "3.2-dev"
  11345. }
  11346. },
  11347. "autoload": {
  11348. "psr-4": {
  11349. "Goutte\\": "Goutte"
  11350. },
  11351. "exclude-from-classmap": [
  11352. "Goutte/Tests"
  11353. ]
  11354. },
  11355. "notification-url": "https://packagist.org/downloads/",
  11356. "license": [
  11357. "MIT"
  11358. ],
  11359. "authors": [
  11360. {
  11361. "name": "Fabien Potencier",
  11362. "email": "fabien@symfony.com"
  11363. }
  11364. ],
  11365. "description": "A simple PHP Web Scraper",
  11366. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  11367. "keywords": [
  11368. "scraper"
  11369. ],
  11370. "time": "2018-06-29T15:13:57+00:00"
  11371. },
  11372. {
  11373. "name": "instaclick/php-webdriver",
  11374. "version": "1.4.5",
  11375. "source": {
  11376. "type": "git",
  11377. "url": "https://github.com/instaclick/php-webdriver.git",
  11378. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  11379. },
  11380. "dist": {
  11381. "type": "zip",
  11382. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  11383. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  11384. "shasum": ""
  11385. },
  11386. "require": {
  11387. "ext-curl": "*",
  11388. "php": ">=5.3.2"
  11389. },
  11390. "require-dev": {
  11391. "phpunit/phpunit": "^4.8",
  11392. "satooshi/php-coveralls": "^1.0||^2.0"
  11393. },
  11394. "type": "library",
  11395. "extra": {
  11396. "branch-alias": {
  11397. "dev-master": "1.4.x-dev"
  11398. }
  11399. },
  11400. "autoload": {
  11401. "psr-0": {
  11402. "WebDriver": "lib/"
  11403. }
  11404. },
  11405. "notification-url": "https://packagist.org/downloads/",
  11406. "license": [
  11407. "Apache-2.0"
  11408. ],
  11409. "authors": [
  11410. {
  11411. "name": "Justin Bishop",
  11412. "email": "jubishop@gmail.com",
  11413. "role": "Developer"
  11414. },
  11415. {
  11416. "name": "Anthon Pang",
  11417. "email": "apang@softwaredevelopment.ca",
  11418. "role": "Fork Maintainer"
  11419. }
  11420. ],
  11421. "description": "PHP WebDriver for Selenium 2",
  11422. "homepage": "http://instaclick.com/",
  11423. "keywords": [
  11424. "browser",
  11425. "selenium",
  11426. "webdriver",
  11427. "webtest"
  11428. ],
  11429. "time": "2017-06-30T04:02:48+00:00"
  11430. },
  11431. {
  11432. "name": "jcalderonzumba/gastonjs",
  11433. "version": "v1.2.0",
  11434. "source": {
  11435. "type": "git",
  11436. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  11437. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  11438. },
  11439. "dist": {
  11440. "type": "zip",
  11441. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  11442. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  11443. "shasum": ""
  11444. },
  11445. "require": {
  11446. "guzzlehttp/guzzle": "~5.0|~6.0",
  11447. "php": ">=5.4"
  11448. },
  11449. "require-dev": {
  11450. "phpunit/phpunit": "~4.6",
  11451. "silex/silex": "~1.2",
  11452. "symfony/phpunit-bridge": "~2.7",
  11453. "symfony/process": "~2.1"
  11454. },
  11455. "type": "phantomjs-api",
  11456. "extra": {
  11457. "branch-alias": {
  11458. "dev-master": "1.1.x-dev"
  11459. }
  11460. },
  11461. "autoload": {
  11462. "psr-4": {
  11463. "Zumba\\GastonJS\\": "src"
  11464. }
  11465. },
  11466. "notification-url": "https://packagist.org/downloads/",
  11467. "license": [
  11468. "MIT"
  11469. ],
  11470. "authors": [
  11471. {
  11472. "name": "Juan Francisco Calderón Zumba",
  11473. "email": "juanfcz@gmail.com",
  11474. "homepage": "http://github.com/jcalderonzumba"
  11475. }
  11476. ],
  11477. "description": "PhantomJS API based server for webpage automation",
  11478. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  11479. "keywords": [
  11480. "api",
  11481. "automation",
  11482. "browser",
  11483. "headless",
  11484. "phantomjs"
  11485. ],
  11486. "time": "2017-03-31T07:31:47+00:00"
  11487. },
  11488. {
  11489. "name": "jcalderonzumba/mink-phantomjs-driver",
  11490. "version": "v0.3.3",
  11491. "source": {
  11492. "type": "git",
  11493. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  11494. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  11495. },
  11496. "dist": {
  11497. "type": "zip",
  11498. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  11499. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  11500. "shasum": ""
  11501. },
  11502. "require": {
  11503. "behat/mink": "~1.7",
  11504. "jcalderonzumba/gastonjs": "~1.0",
  11505. "php": ">=5.4",
  11506. "twig/twig": "~1.20|~2.0"
  11507. },
  11508. "require-dev": {
  11509. "mink/driver-testsuite": "dev-master",
  11510. "phpunit/phpunit": "~4.6"
  11511. },
  11512. "type": "mink-driver",
  11513. "extra": {
  11514. "branch-alias": {
  11515. "dev-master": "0.4.x-dev"
  11516. }
  11517. },
  11518. "autoload": {
  11519. "psr-4": {
  11520. "Zumba\\Mink\\Driver\\": "src"
  11521. }
  11522. },
  11523. "notification-url": "https://packagist.org/downloads/",
  11524. "license": [
  11525. "MIT"
  11526. ],
  11527. "authors": [
  11528. {
  11529. "name": "Juan Francisco Calderón Zumba",
  11530. "email": "juanfcz@gmail.com",
  11531. "homepage": "http://github.com/jcalderonzumba"
  11532. }
  11533. ],
  11534. "description": "PhantomJS driver for Mink framework",
  11535. "homepage": "http://mink.behat.org/",
  11536. "keywords": [
  11537. "ajax",
  11538. "browser",
  11539. "headless",
  11540. "javascript",
  11541. "phantomjs",
  11542. "testing"
  11543. ],
  11544. "time": "2016-12-01T10:57:30+00:00"
  11545. },
  11546. {
  11547. "name": "mikey179/vfsStream",
  11548. "version": "v1.6.5",
  11549. "source": {
  11550. "type": "git",
  11551. "url": "https://github.com/mikey179/vfsStream.git",
  11552. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  11553. },
  11554. "dist": {
  11555. "type": "zip",
  11556. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  11557. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  11558. "shasum": ""
  11559. },
  11560. "require": {
  11561. "php": ">=5.3.0"
  11562. },
  11563. "require-dev": {
  11564. "phpunit/phpunit": "~4.5"
  11565. },
  11566. "type": "library",
  11567. "extra": {
  11568. "branch-alias": {
  11569. "dev-master": "1.6.x-dev"
  11570. }
  11571. },
  11572. "autoload": {
  11573. "psr-0": {
  11574. "org\\bovigo\\vfs\\": "src/main/php"
  11575. }
  11576. },
  11577. "notification-url": "https://packagist.org/downloads/",
  11578. "license": [
  11579. "BSD-3-Clause"
  11580. ],
  11581. "authors": [
  11582. {
  11583. "name": "Frank Kleine",
  11584. "homepage": "http://frankkleine.de/",
  11585. "role": "Developer"
  11586. }
  11587. ],
  11588. "description": "Virtual file system to mock the real file system in unit tests.",
  11589. "homepage": "http://vfs.bovigo.org/",
  11590. "time": "2017-08-01T08:02:14+00:00"
  11591. },
  11592. {
  11593. "name": "myclabs/deep-copy",
  11594. "version": "1.7.0",
  11595. "source": {
  11596. "type": "git",
  11597. "url": "https://github.com/myclabs/DeepCopy.git",
  11598. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  11599. },
  11600. "dist": {
  11601. "type": "zip",
  11602. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  11603. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  11604. "shasum": ""
  11605. },
  11606. "require": {
  11607. "php": "^5.6 || ^7.0"
  11608. },
  11609. "require-dev": {
  11610. "doctrine/collections": "^1.0",
  11611. "doctrine/common": "^2.6",
  11612. "phpunit/phpunit": "^4.1"
  11613. },
  11614. "type": "library",
  11615. "autoload": {
  11616. "psr-4": {
  11617. "DeepCopy\\": "src/DeepCopy/"
  11618. },
  11619. "files": [
  11620. "src/DeepCopy/deep_copy.php"
  11621. ]
  11622. },
  11623. "notification-url": "https://packagist.org/downloads/",
  11624. "license": [
  11625. "MIT"
  11626. ],
  11627. "description": "Create deep copies (clones) of your objects",
  11628. "keywords": [
  11629. "clone",
  11630. "copy",
  11631. "duplicate",
  11632. "object",
  11633. "object graph"
  11634. ],
  11635. "time": "2017-10-19T19:58:43+00:00"
  11636. },
  11637. {
  11638. "name": "phar-io/manifest",
  11639. "version": "1.0.1",
  11640. "source": {
  11641. "type": "git",
  11642. "url": "https://github.com/phar-io/manifest.git",
  11643. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  11644. },
  11645. "dist": {
  11646. "type": "zip",
  11647. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  11648. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  11649. "shasum": ""
  11650. },
  11651. "require": {
  11652. "ext-dom": "*",
  11653. "ext-phar": "*",
  11654. "phar-io/version": "^1.0.1",
  11655. "php": "^5.6 || ^7.0"
  11656. },
  11657. "type": "library",
  11658. "extra": {
  11659. "branch-alias": {
  11660. "dev-master": "1.0.x-dev"
  11661. }
  11662. },
  11663. "autoload": {
  11664. "classmap": [
  11665. "src/"
  11666. ]
  11667. },
  11668. "notification-url": "https://packagist.org/downloads/",
  11669. "license": [
  11670. "BSD-3-Clause"
  11671. ],
  11672. "authors": [
  11673. {
  11674. "name": "Arne Blankerts",
  11675. "email": "arne@blankerts.de",
  11676. "role": "Developer"
  11677. },
  11678. {
  11679. "name": "Sebastian Heuer",
  11680. "email": "sebastian@phpeople.de",
  11681. "role": "Developer"
  11682. },
  11683. {
  11684. "name": "Sebastian Bergmann",
  11685. "email": "sebastian@phpunit.de",
  11686. "role": "Developer"
  11687. }
  11688. ],
  11689. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11690. "time": "2017-03-05T18:14:27+00:00"
  11691. },
  11692. {
  11693. "name": "phar-io/version",
  11694. "version": "1.0.1",
  11695. "source": {
  11696. "type": "git",
  11697. "url": "https://github.com/phar-io/version.git",
  11698. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  11699. },
  11700. "dist": {
  11701. "type": "zip",
  11702. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  11703. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  11704. "shasum": ""
  11705. },
  11706. "require": {
  11707. "php": "^5.6 || ^7.0"
  11708. },
  11709. "type": "library",
  11710. "autoload": {
  11711. "classmap": [
  11712. "src/"
  11713. ]
  11714. },
  11715. "notification-url": "https://packagist.org/downloads/",
  11716. "license": [
  11717. "BSD-3-Clause"
  11718. ],
  11719. "authors": [
  11720. {
  11721. "name": "Arne Blankerts",
  11722. "email": "arne@blankerts.de",
  11723. "role": "Developer"
  11724. },
  11725. {
  11726. "name": "Sebastian Heuer",
  11727. "email": "sebastian@phpeople.de",
  11728. "role": "Developer"
  11729. },
  11730. {
  11731. "name": "Sebastian Bergmann",
  11732. "email": "sebastian@phpunit.de",
  11733. "role": "Developer"
  11734. }
  11735. ],
  11736. "description": "Library for handling version information and constraints",
  11737. "time": "2017-03-05T17:38:23+00:00"
  11738. },
  11739. {
  11740. "name": "phpdocumentor/reflection-common",
  11741. "version": "1.0.1",
  11742. "source": {
  11743. "type": "git",
  11744. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  11745. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  11746. },
  11747. "dist": {
  11748. "type": "zip",
  11749. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11750. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11751. "shasum": ""
  11752. },
  11753. "require": {
  11754. "php": ">=5.5"
  11755. },
  11756. "require-dev": {
  11757. "phpunit/phpunit": "^4.6"
  11758. },
  11759. "type": "library",
  11760. "extra": {
  11761. "branch-alias": {
  11762. "dev-master": "1.0.x-dev"
  11763. }
  11764. },
  11765. "autoload": {
  11766. "psr-4": {
  11767. "phpDocumentor\\Reflection\\": [
  11768. "src"
  11769. ]
  11770. }
  11771. },
  11772. "notification-url": "https://packagist.org/downloads/",
  11773. "license": [
  11774. "MIT"
  11775. ],
  11776. "authors": [
  11777. {
  11778. "name": "Jaap van Otterdijk",
  11779. "email": "opensource@ijaap.nl"
  11780. }
  11781. ],
  11782. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  11783. "homepage": "http://www.phpdoc.org",
  11784. "keywords": [
  11785. "FQSEN",
  11786. "phpDocumentor",
  11787. "phpdoc",
  11788. "reflection",
  11789. "static analysis"
  11790. ],
  11791. "time": "2017-09-11T18:02:19+00:00"
  11792. },
  11793. {
  11794. "name": "phpdocumentor/reflection-docblock",
  11795. "version": "4.3.0",
  11796. "source": {
  11797. "type": "git",
  11798. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  11799. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  11800. },
  11801. "dist": {
  11802. "type": "zip",
  11803. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  11804. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  11805. "shasum": ""
  11806. },
  11807. "require": {
  11808. "php": "^7.0",
  11809. "phpdocumentor/reflection-common": "^1.0.0",
  11810. "phpdocumentor/type-resolver": "^0.4.0",
  11811. "webmozart/assert": "^1.0"
  11812. },
  11813. "require-dev": {
  11814. "doctrine/instantiator": "~1.0.5",
  11815. "mockery/mockery": "^1.0",
  11816. "phpunit/phpunit": "^6.4"
  11817. },
  11818. "type": "library",
  11819. "extra": {
  11820. "branch-alias": {
  11821. "dev-master": "4.x-dev"
  11822. }
  11823. },
  11824. "autoload": {
  11825. "psr-4": {
  11826. "phpDocumentor\\Reflection\\": [
  11827. "src/"
  11828. ]
  11829. }
  11830. },
  11831. "notification-url": "https://packagist.org/downloads/",
  11832. "license": [
  11833. "MIT"
  11834. ],
  11835. "authors": [
  11836. {
  11837. "name": "Mike van Riel",
  11838. "email": "me@mikevanriel.com"
  11839. }
  11840. ],
  11841. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  11842. "time": "2017-11-30T07:14:17+00:00"
  11843. },
  11844. {
  11845. "name": "phpdocumentor/type-resolver",
  11846. "version": "0.4.0",
  11847. "source": {
  11848. "type": "git",
  11849. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  11850. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  11851. },
  11852. "dist": {
  11853. "type": "zip",
  11854. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  11855. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  11856. "shasum": ""
  11857. },
  11858. "require": {
  11859. "php": "^5.5 || ^7.0",
  11860. "phpdocumentor/reflection-common": "^1.0"
  11861. },
  11862. "require-dev": {
  11863. "mockery/mockery": "^0.9.4",
  11864. "phpunit/phpunit": "^5.2||^4.8.24"
  11865. },
  11866. "type": "library",
  11867. "extra": {
  11868. "branch-alias": {
  11869. "dev-master": "1.0.x-dev"
  11870. }
  11871. },
  11872. "autoload": {
  11873. "psr-4": {
  11874. "phpDocumentor\\Reflection\\": [
  11875. "src/"
  11876. ]
  11877. }
  11878. },
  11879. "notification-url": "https://packagist.org/downloads/",
  11880. "license": [
  11881. "MIT"
  11882. ],
  11883. "authors": [
  11884. {
  11885. "name": "Mike van Riel",
  11886. "email": "me@mikevanriel.com"
  11887. }
  11888. ],
  11889. "time": "2017-07-14T14:27:02+00:00"
  11890. },
  11891. {
  11892. "name": "phpspec/prophecy",
  11893. "version": "1.8.0",
  11894. "source": {
  11895. "type": "git",
  11896. "url": "https://github.com/phpspec/prophecy.git",
  11897. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  11898. },
  11899. "dist": {
  11900. "type": "zip",
  11901. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11902. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11903. "shasum": ""
  11904. },
  11905. "require": {
  11906. "doctrine/instantiator": "^1.0.2",
  11907. "php": "^5.3|^7.0",
  11908. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  11909. "sebastian/comparator": "^1.1|^2.0|^3.0",
  11910. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  11911. },
  11912. "require-dev": {
  11913. "phpspec/phpspec": "^2.5|^3.2",
  11914. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  11915. },
  11916. "type": "library",
  11917. "extra": {
  11918. "branch-alias": {
  11919. "dev-master": "1.8.x-dev"
  11920. }
  11921. },
  11922. "autoload": {
  11923. "psr-0": {
  11924. "Prophecy\\": "src/"
  11925. }
  11926. },
  11927. "notification-url": "https://packagist.org/downloads/",
  11928. "license": [
  11929. "MIT"
  11930. ],
  11931. "authors": [
  11932. {
  11933. "name": "Konstantin Kudryashov",
  11934. "email": "ever.zet@gmail.com",
  11935. "homepage": "http://everzet.com"
  11936. },
  11937. {
  11938. "name": "Marcello Duarte",
  11939. "email": "marcello.duarte@gmail.com"
  11940. }
  11941. ],
  11942. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11943. "homepage": "https://github.com/phpspec/prophecy",
  11944. "keywords": [
  11945. "Double",
  11946. "Dummy",
  11947. "fake",
  11948. "mock",
  11949. "spy",
  11950. "stub"
  11951. ],
  11952. "time": "2018-08-05T17:53:17+00:00"
  11953. },
  11954. {
  11955. "name": "phpunit/php-code-coverage",
  11956. "version": "5.3.2",
  11957. "source": {
  11958. "type": "git",
  11959. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11960. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  11961. },
  11962. "dist": {
  11963. "type": "zip",
  11964. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  11965. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  11966. "shasum": ""
  11967. },
  11968. "require": {
  11969. "ext-dom": "*",
  11970. "ext-xmlwriter": "*",
  11971. "php": "^7.0",
  11972. "phpunit/php-file-iterator": "^1.4.2",
  11973. "phpunit/php-text-template": "^1.2.1",
  11974. "phpunit/php-token-stream": "^2.0.1",
  11975. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  11976. "sebastian/environment": "^3.0",
  11977. "sebastian/version": "^2.0.1",
  11978. "theseer/tokenizer": "^1.1"
  11979. },
  11980. "require-dev": {
  11981. "phpunit/phpunit": "^6.0"
  11982. },
  11983. "suggest": {
  11984. "ext-xdebug": "^2.5.5"
  11985. },
  11986. "type": "library",
  11987. "extra": {
  11988. "branch-alias": {
  11989. "dev-master": "5.3.x-dev"
  11990. }
  11991. },
  11992. "autoload": {
  11993. "classmap": [
  11994. "src/"
  11995. ]
  11996. },
  11997. "notification-url": "https://packagist.org/downloads/",
  11998. "license": [
  11999. "BSD-3-Clause"
  12000. ],
  12001. "authors": [
  12002. {
  12003. "name": "Sebastian Bergmann",
  12004. "email": "sebastian@phpunit.de",
  12005. "role": "lead"
  12006. }
  12007. ],
  12008. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  12009. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  12010. "keywords": [
  12011. "coverage",
  12012. "testing",
  12013. "xunit"
  12014. ],
  12015. "time": "2018-04-06T15:36:58+00:00"
  12016. },
  12017. {
  12018. "name": "phpunit/php-file-iterator",
  12019. "version": "1.4.5",
  12020. "source": {
  12021. "type": "git",
  12022. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  12023. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  12024. },
  12025. "dist": {
  12026. "type": "zip",
  12027. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  12028. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  12029. "shasum": ""
  12030. },
  12031. "require": {
  12032. "php": ">=5.3.3"
  12033. },
  12034. "type": "library",
  12035. "extra": {
  12036. "branch-alias": {
  12037. "dev-master": "1.4.x-dev"
  12038. }
  12039. },
  12040. "autoload": {
  12041. "classmap": [
  12042. "src/"
  12043. ]
  12044. },
  12045. "notification-url": "https://packagist.org/downloads/",
  12046. "license": [
  12047. "BSD-3-Clause"
  12048. ],
  12049. "authors": [
  12050. {
  12051. "name": "Sebastian Bergmann",
  12052. "email": "sb@sebastian-bergmann.de",
  12053. "role": "lead"
  12054. }
  12055. ],
  12056. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  12057. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  12058. "keywords": [
  12059. "filesystem",
  12060. "iterator"
  12061. ],
  12062. "time": "2017-11-27T13:52:08+00:00"
  12063. },
  12064. {
  12065. "name": "phpunit/php-text-template",
  12066. "version": "1.2.1",
  12067. "source": {
  12068. "type": "git",
  12069. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  12070. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  12071. },
  12072. "dist": {
  12073. "type": "zip",
  12074. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  12075. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  12076. "shasum": ""
  12077. },
  12078. "require": {
  12079. "php": ">=5.3.3"
  12080. },
  12081. "type": "library",
  12082. "autoload": {
  12083. "classmap": [
  12084. "src/"
  12085. ]
  12086. },
  12087. "notification-url": "https://packagist.org/downloads/",
  12088. "license": [
  12089. "BSD-3-Clause"
  12090. ],
  12091. "authors": [
  12092. {
  12093. "name": "Sebastian Bergmann",
  12094. "email": "sebastian@phpunit.de",
  12095. "role": "lead"
  12096. }
  12097. ],
  12098. "description": "Simple template engine.",
  12099. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  12100. "keywords": [
  12101. "template"
  12102. ],
  12103. "time": "2015-06-21T13:50:34+00:00"
  12104. },
  12105. {
  12106. "name": "phpunit/php-timer",
  12107. "version": "1.0.9",
  12108. "source": {
  12109. "type": "git",
  12110. "url": "https://github.com/sebastianbergmann/php-timer.git",
  12111. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  12112. },
  12113. "dist": {
  12114. "type": "zip",
  12115. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  12116. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  12117. "shasum": ""
  12118. },
  12119. "require": {
  12120. "php": "^5.3.3 || ^7.0"
  12121. },
  12122. "require-dev": {
  12123. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  12124. },
  12125. "type": "library",
  12126. "extra": {
  12127. "branch-alias": {
  12128. "dev-master": "1.0-dev"
  12129. }
  12130. },
  12131. "autoload": {
  12132. "classmap": [
  12133. "src/"
  12134. ]
  12135. },
  12136. "notification-url": "https://packagist.org/downloads/",
  12137. "license": [
  12138. "BSD-3-Clause"
  12139. ],
  12140. "authors": [
  12141. {
  12142. "name": "Sebastian Bergmann",
  12143. "email": "sb@sebastian-bergmann.de",
  12144. "role": "lead"
  12145. }
  12146. ],
  12147. "description": "Utility class for timing",
  12148. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  12149. "keywords": [
  12150. "timer"
  12151. ],
  12152. "time": "2017-02-26T11:10:40+00:00"
  12153. },
  12154. {
  12155. "name": "phpunit/php-token-stream",
  12156. "version": "2.0.2",
  12157. "source": {
  12158. "type": "git",
  12159. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  12160. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  12161. },
  12162. "dist": {
  12163. "type": "zip",
  12164. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  12165. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  12166. "shasum": ""
  12167. },
  12168. "require": {
  12169. "ext-tokenizer": "*",
  12170. "php": "^7.0"
  12171. },
  12172. "require-dev": {
  12173. "phpunit/phpunit": "^6.2.4"
  12174. },
  12175. "type": "library",
  12176. "extra": {
  12177. "branch-alias": {
  12178. "dev-master": "2.0-dev"
  12179. }
  12180. },
  12181. "autoload": {
  12182. "classmap": [
  12183. "src/"
  12184. ]
  12185. },
  12186. "notification-url": "https://packagist.org/downloads/",
  12187. "license": [
  12188. "BSD-3-Clause"
  12189. ],
  12190. "authors": [
  12191. {
  12192. "name": "Sebastian Bergmann",
  12193. "email": "sebastian@phpunit.de"
  12194. }
  12195. ],
  12196. "description": "Wrapper around PHP's tokenizer extension.",
  12197. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  12198. "keywords": [
  12199. "tokenizer"
  12200. ],
  12201. "time": "2017-11-27T05:48:46+00:00"
  12202. },
  12203. {
  12204. "name": "phpunit/phpunit",
  12205. "version": "6.5.14",
  12206. "source": {
  12207. "type": "git",
  12208. "url": "https://github.com/sebastianbergmann/phpunit.git",
  12209. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  12210. },
  12211. "dist": {
  12212. "type": "zip",
  12213. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  12214. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  12215. "shasum": ""
  12216. },
  12217. "require": {
  12218. "ext-dom": "*",
  12219. "ext-json": "*",
  12220. "ext-libxml": "*",
  12221. "ext-mbstring": "*",
  12222. "ext-xml": "*",
  12223. "myclabs/deep-copy": "^1.6.1",
  12224. "phar-io/manifest": "^1.0.1",
  12225. "phar-io/version": "^1.0",
  12226. "php": "^7.0",
  12227. "phpspec/prophecy": "^1.7",
  12228. "phpunit/php-code-coverage": "^5.3",
  12229. "phpunit/php-file-iterator": "^1.4.3",
  12230. "phpunit/php-text-template": "^1.2.1",
  12231. "phpunit/php-timer": "^1.0.9",
  12232. "phpunit/phpunit-mock-objects": "^5.0.9",
  12233. "sebastian/comparator": "^2.1",
  12234. "sebastian/diff": "^2.0",
  12235. "sebastian/environment": "^3.1",
  12236. "sebastian/exporter": "^3.1",
  12237. "sebastian/global-state": "^2.0",
  12238. "sebastian/object-enumerator": "^3.0.3",
  12239. "sebastian/resource-operations": "^1.0",
  12240. "sebastian/version": "^2.0.1"
  12241. },
  12242. "conflict": {
  12243. "phpdocumentor/reflection-docblock": "3.0.2",
  12244. "phpunit/dbunit": "<3.0"
  12245. },
  12246. "require-dev": {
  12247. "ext-pdo": "*"
  12248. },
  12249. "suggest": {
  12250. "ext-xdebug": "*",
  12251. "phpunit/php-invoker": "^1.1"
  12252. },
  12253. "bin": [
  12254. "phpunit"
  12255. ],
  12256. "type": "library",
  12257. "extra": {
  12258. "branch-alias": {
  12259. "dev-master": "6.5.x-dev"
  12260. }
  12261. },
  12262. "autoload": {
  12263. "classmap": [
  12264. "src/"
  12265. ]
  12266. },
  12267. "notification-url": "https://packagist.org/downloads/",
  12268. "license": [
  12269. "BSD-3-Clause"
  12270. ],
  12271. "authors": [
  12272. {
  12273. "name": "Sebastian Bergmann",
  12274. "email": "sebastian@phpunit.de",
  12275. "role": "lead"
  12276. }
  12277. ],
  12278. "description": "The PHP Unit Testing framework.",
  12279. "homepage": "https://phpunit.de/",
  12280. "keywords": [
  12281. "phpunit",
  12282. "testing",
  12283. "xunit"
  12284. ],
  12285. "time": "2019-02-01T05:22:47+00:00"
  12286. },
  12287. {
  12288. "name": "phpunit/phpunit-mock-objects",
  12289. "version": "5.0.10",
  12290. "source": {
  12291. "type": "git",
  12292. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  12293. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  12294. },
  12295. "dist": {
  12296. "type": "zip",
  12297. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  12298. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  12299. "shasum": ""
  12300. },
  12301. "require": {
  12302. "doctrine/instantiator": "^1.0.5",
  12303. "php": "^7.0",
  12304. "phpunit/php-text-template": "^1.2.1",
  12305. "sebastian/exporter": "^3.1"
  12306. },
  12307. "conflict": {
  12308. "phpunit/phpunit": "<6.0"
  12309. },
  12310. "require-dev": {
  12311. "phpunit/phpunit": "^6.5.11"
  12312. },
  12313. "suggest": {
  12314. "ext-soap": "*"
  12315. },
  12316. "type": "library",
  12317. "extra": {
  12318. "branch-alias": {
  12319. "dev-master": "5.0.x-dev"
  12320. }
  12321. },
  12322. "autoload": {
  12323. "classmap": [
  12324. "src/"
  12325. ]
  12326. },
  12327. "notification-url": "https://packagist.org/downloads/",
  12328. "license": [
  12329. "BSD-3-Clause"
  12330. ],
  12331. "authors": [
  12332. {
  12333. "name": "Sebastian Bergmann",
  12334. "email": "sebastian@phpunit.de",
  12335. "role": "lead"
  12336. }
  12337. ],
  12338. "description": "Mock Object library for PHPUnit",
  12339. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  12340. "keywords": [
  12341. "mock",
  12342. "xunit"
  12343. ],
  12344. "time": "2018-08-09T05:50:03+00:00"
  12345. },
  12346. {
  12347. "name": "sebastian/code-unit-reverse-lookup",
  12348. "version": "1.0.1",
  12349. "source": {
  12350. "type": "git",
  12351. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  12352. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  12353. },
  12354. "dist": {
  12355. "type": "zip",
  12356. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  12357. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  12358. "shasum": ""
  12359. },
  12360. "require": {
  12361. "php": "^5.6 || ^7.0"
  12362. },
  12363. "require-dev": {
  12364. "phpunit/phpunit": "^5.7 || ^6.0"
  12365. },
  12366. "type": "library",
  12367. "extra": {
  12368. "branch-alias": {
  12369. "dev-master": "1.0.x-dev"
  12370. }
  12371. },
  12372. "autoload": {
  12373. "classmap": [
  12374. "src/"
  12375. ]
  12376. },
  12377. "notification-url": "https://packagist.org/downloads/",
  12378. "license": [
  12379. "BSD-3-Clause"
  12380. ],
  12381. "authors": [
  12382. {
  12383. "name": "Sebastian Bergmann",
  12384. "email": "sebastian@phpunit.de"
  12385. }
  12386. ],
  12387. "description": "Looks up which function or method a line of code belongs to",
  12388. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  12389. "time": "2017-03-04T06:30:41+00:00"
  12390. },
  12391. {
  12392. "name": "sebastian/comparator",
  12393. "version": "2.1.3",
  12394. "source": {
  12395. "type": "git",
  12396. "url": "https://github.com/sebastianbergmann/comparator.git",
  12397. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  12398. },
  12399. "dist": {
  12400. "type": "zip",
  12401. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  12402. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  12403. "shasum": ""
  12404. },
  12405. "require": {
  12406. "php": "^7.0",
  12407. "sebastian/diff": "^2.0 || ^3.0",
  12408. "sebastian/exporter": "^3.1"
  12409. },
  12410. "require-dev": {
  12411. "phpunit/phpunit": "^6.4"
  12412. },
  12413. "type": "library",
  12414. "extra": {
  12415. "branch-alias": {
  12416. "dev-master": "2.1.x-dev"
  12417. }
  12418. },
  12419. "autoload": {
  12420. "classmap": [
  12421. "src/"
  12422. ]
  12423. },
  12424. "notification-url": "https://packagist.org/downloads/",
  12425. "license": [
  12426. "BSD-3-Clause"
  12427. ],
  12428. "authors": [
  12429. {
  12430. "name": "Jeff Welch",
  12431. "email": "whatthejeff@gmail.com"
  12432. },
  12433. {
  12434. "name": "Volker Dusch",
  12435. "email": "github@wallbash.com"
  12436. },
  12437. {
  12438. "name": "Bernhard Schussek",
  12439. "email": "bschussek@2bepublished.at"
  12440. },
  12441. {
  12442. "name": "Sebastian Bergmann",
  12443. "email": "sebastian@phpunit.de"
  12444. }
  12445. ],
  12446. "description": "Provides the functionality to compare PHP values for equality",
  12447. "homepage": "https://github.com/sebastianbergmann/comparator",
  12448. "keywords": [
  12449. "comparator",
  12450. "compare",
  12451. "equality"
  12452. ],
  12453. "time": "2018-02-01T13:46:46+00:00"
  12454. },
  12455. {
  12456. "name": "sebastian/diff",
  12457. "version": "2.0.1",
  12458. "source": {
  12459. "type": "git",
  12460. "url": "https://github.com/sebastianbergmann/diff.git",
  12461. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  12462. },
  12463. "dist": {
  12464. "type": "zip",
  12465. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  12466. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  12467. "shasum": ""
  12468. },
  12469. "require": {
  12470. "php": "^7.0"
  12471. },
  12472. "require-dev": {
  12473. "phpunit/phpunit": "^6.2"
  12474. },
  12475. "type": "library",
  12476. "extra": {
  12477. "branch-alias": {
  12478. "dev-master": "2.0-dev"
  12479. }
  12480. },
  12481. "autoload": {
  12482. "classmap": [
  12483. "src/"
  12484. ]
  12485. },
  12486. "notification-url": "https://packagist.org/downloads/",
  12487. "license": [
  12488. "BSD-3-Clause"
  12489. ],
  12490. "authors": [
  12491. {
  12492. "name": "Kore Nordmann",
  12493. "email": "mail@kore-nordmann.de"
  12494. },
  12495. {
  12496. "name": "Sebastian Bergmann",
  12497. "email": "sebastian@phpunit.de"
  12498. }
  12499. ],
  12500. "description": "Diff implementation",
  12501. "homepage": "https://github.com/sebastianbergmann/diff",
  12502. "keywords": [
  12503. "diff"
  12504. ],
  12505. "time": "2017-08-03T08:09:46+00:00"
  12506. },
  12507. {
  12508. "name": "sebastian/environment",
  12509. "version": "3.1.0",
  12510. "source": {
  12511. "type": "git",
  12512. "url": "https://github.com/sebastianbergmann/environment.git",
  12513. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  12514. },
  12515. "dist": {
  12516. "type": "zip",
  12517. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  12518. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  12519. "shasum": ""
  12520. },
  12521. "require": {
  12522. "php": "^7.0"
  12523. },
  12524. "require-dev": {
  12525. "phpunit/phpunit": "^6.1"
  12526. },
  12527. "type": "library",
  12528. "extra": {
  12529. "branch-alias": {
  12530. "dev-master": "3.1.x-dev"
  12531. }
  12532. },
  12533. "autoload": {
  12534. "classmap": [
  12535. "src/"
  12536. ]
  12537. },
  12538. "notification-url": "https://packagist.org/downloads/",
  12539. "license": [
  12540. "BSD-3-Clause"
  12541. ],
  12542. "authors": [
  12543. {
  12544. "name": "Sebastian Bergmann",
  12545. "email": "sebastian@phpunit.de"
  12546. }
  12547. ],
  12548. "description": "Provides functionality to handle HHVM/PHP environments",
  12549. "homepage": "http://www.github.com/sebastianbergmann/environment",
  12550. "keywords": [
  12551. "Xdebug",
  12552. "environment",
  12553. "hhvm"
  12554. ],
  12555. "time": "2017-07-01T08:51:00+00:00"
  12556. },
  12557. {
  12558. "name": "sebastian/exporter",
  12559. "version": "3.1.0",
  12560. "source": {
  12561. "type": "git",
  12562. "url": "https://github.com/sebastianbergmann/exporter.git",
  12563. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  12564. },
  12565. "dist": {
  12566. "type": "zip",
  12567. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  12568. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  12569. "shasum": ""
  12570. },
  12571. "require": {
  12572. "php": "^7.0",
  12573. "sebastian/recursion-context": "^3.0"
  12574. },
  12575. "require-dev": {
  12576. "ext-mbstring": "*",
  12577. "phpunit/phpunit": "^6.0"
  12578. },
  12579. "type": "library",
  12580. "extra": {
  12581. "branch-alias": {
  12582. "dev-master": "3.1.x-dev"
  12583. }
  12584. },
  12585. "autoload": {
  12586. "classmap": [
  12587. "src/"
  12588. ]
  12589. },
  12590. "notification-url": "https://packagist.org/downloads/",
  12591. "license": [
  12592. "BSD-3-Clause"
  12593. ],
  12594. "authors": [
  12595. {
  12596. "name": "Jeff Welch",
  12597. "email": "whatthejeff@gmail.com"
  12598. },
  12599. {
  12600. "name": "Volker Dusch",
  12601. "email": "github@wallbash.com"
  12602. },
  12603. {
  12604. "name": "Bernhard Schussek",
  12605. "email": "bschussek@2bepublished.at"
  12606. },
  12607. {
  12608. "name": "Sebastian Bergmann",
  12609. "email": "sebastian@phpunit.de"
  12610. },
  12611. {
  12612. "name": "Adam Harvey",
  12613. "email": "aharvey@php.net"
  12614. }
  12615. ],
  12616. "description": "Provides the functionality to export PHP variables for visualization",
  12617. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  12618. "keywords": [
  12619. "export",
  12620. "exporter"
  12621. ],
  12622. "time": "2017-04-03T13:19:02+00:00"
  12623. },
  12624. {
  12625. "name": "sebastian/global-state",
  12626. "version": "2.0.0",
  12627. "source": {
  12628. "type": "git",
  12629. "url": "https://github.com/sebastianbergmann/global-state.git",
  12630. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  12631. },
  12632. "dist": {
  12633. "type": "zip",
  12634. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  12635. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  12636. "shasum": ""
  12637. },
  12638. "require": {
  12639. "php": "^7.0"
  12640. },
  12641. "require-dev": {
  12642. "phpunit/phpunit": "^6.0"
  12643. },
  12644. "suggest": {
  12645. "ext-uopz": "*"
  12646. },
  12647. "type": "library",
  12648. "extra": {
  12649. "branch-alias": {
  12650. "dev-master": "2.0-dev"
  12651. }
  12652. },
  12653. "autoload": {
  12654. "classmap": [
  12655. "src/"
  12656. ]
  12657. },
  12658. "notification-url": "https://packagist.org/downloads/",
  12659. "license": [
  12660. "BSD-3-Clause"
  12661. ],
  12662. "authors": [
  12663. {
  12664. "name": "Sebastian Bergmann",
  12665. "email": "sebastian@phpunit.de"
  12666. }
  12667. ],
  12668. "description": "Snapshotting of global state",
  12669. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12670. "keywords": [
  12671. "global state"
  12672. ],
  12673. "time": "2017-04-27T15:39:26+00:00"
  12674. },
  12675. {
  12676. "name": "sebastian/object-enumerator",
  12677. "version": "3.0.3",
  12678. "source": {
  12679. "type": "git",
  12680. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12681. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  12682. },
  12683. "dist": {
  12684. "type": "zip",
  12685. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  12686. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  12687. "shasum": ""
  12688. },
  12689. "require": {
  12690. "php": "^7.0",
  12691. "sebastian/object-reflector": "^1.1.1",
  12692. "sebastian/recursion-context": "^3.0"
  12693. },
  12694. "require-dev": {
  12695. "phpunit/phpunit": "^6.0"
  12696. },
  12697. "type": "library",
  12698. "extra": {
  12699. "branch-alias": {
  12700. "dev-master": "3.0.x-dev"
  12701. }
  12702. },
  12703. "autoload": {
  12704. "classmap": [
  12705. "src/"
  12706. ]
  12707. },
  12708. "notification-url": "https://packagist.org/downloads/",
  12709. "license": [
  12710. "BSD-3-Clause"
  12711. ],
  12712. "authors": [
  12713. {
  12714. "name": "Sebastian Bergmann",
  12715. "email": "sebastian@phpunit.de"
  12716. }
  12717. ],
  12718. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12719. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12720. "time": "2017-08-03T12:35:26+00:00"
  12721. },
  12722. {
  12723. "name": "sebastian/object-reflector",
  12724. "version": "1.1.1",
  12725. "source": {
  12726. "type": "git",
  12727. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12728. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  12729. },
  12730. "dist": {
  12731. "type": "zip",
  12732. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  12733. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  12734. "shasum": ""
  12735. },
  12736. "require": {
  12737. "php": "^7.0"
  12738. },
  12739. "require-dev": {
  12740. "phpunit/phpunit": "^6.0"
  12741. },
  12742. "type": "library",
  12743. "extra": {
  12744. "branch-alias": {
  12745. "dev-master": "1.1-dev"
  12746. }
  12747. },
  12748. "autoload": {
  12749. "classmap": [
  12750. "src/"
  12751. ]
  12752. },
  12753. "notification-url": "https://packagist.org/downloads/",
  12754. "license": [
  12755. "BSD-3-Clause"
  12756. ],
  12757. "authors": [
  12758. {
  12759. "name": "Sebastian Bergmann",
  12760. "email": "sebastian@phpunit.de"
  12761. }
  12762. ],
  12763. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12764. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12765. "time": "2017-03-29T09:07:27+00:00"
  12766. },
  12767. {
  12768. "name": "sebastian/recursion-context",
  12769. "version": "3.0.0",
  12770. "source": {
  12771. "type": "git",
  12772. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12773. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  12774. },
  12775. "dist": {
  12776. "type": "zip",
  12777. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12778. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12779. "shasum": ""
  12780. },
  12781. "require": {
  12782. "php": "^7.0"
  12783. },
  12784. "require-dev": {
  12785. "phpunit/phpunit": "^6.0"
  12786. },
  12787. "type": "library",
  12788. "extra": {
  12789. "branch-alias": {
  12790. "dev-master": "3.0.x-dev"
  12791. }
  12792. },
  12793. "autoload": {
  12794. "classmap": [
  12795. "src/"
  12796. ]
  12797. },
  12798. "notification-url": "https://packagist.org/downloads/",
  12799. "license": [
  12800. "BSD-3-Clause"
  12801. ],
  12802. "authors": [
  12803. {
  12804. "name": "Jeff Welch",
  12805. "email": "whatthejeff@gmail.com"
  12806. },
  12807. {
  12808. "name": "Sebastian Bergmann",
  12809. "email": "sebastian@phpunit.de"
  12810. },
  12811. {
  12812. "name": "Adam Harvey",
  12813. "email": "aharvey@php.net"
  12814. }
  12815. ],
  12816. "description": "Provides functionality to recursively process PHP variables",
  12817. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12818. "time": "2017-03-03T06:23:57+00:00"
  12819. },
  12820. {
  12821. "name": "sebastian/resource-operations",
  12822. "version": "1.0.0",
  12823. "source": {
  12824. "type": "git",
  12825. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12826. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  12827. },
  12828. "dist": {
  12829. "type": "zip",
  12830. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12831. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12832. "shasum": ""
  12833. },
  12834. "require": {
  12835. "php": ">=5.6.0"
  12836. },
  12837. "type": "library",
  12838. "extra": {
  12839. "branch-alias": {
  12840. "dev-master": "1.0.x-dev"
  12841. }
  12842. },
  12843. "autoload": {
  12844. "classmap": [
  12845. "src/"
  12846. ]
  12847. },
  12848. "notification-url": "https://packagist.org/downloads/",
  12849. "license": [
  12850. "BSD-3-Clause"
  12851. ],
  12852. "authors": [
  12853. {
  12854. "name": "Sebastian Bergmann",
  12855. "email": "sebastian@phpunit.de"
  12856. }
  12857. ],
  12858. "description": "Provides a list of PHP built-in functions that operate on resources",
  12859. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12860. "time": "2015-07-28T20:34:47+00:00"
  12861. },
  12862. {
  12863. "name": "sebastian/version",
  12864. "version": "2.0.1",
  12865. "source": {
  12866. "type": "git",
  12867. "url": "https://github.com/sebastianbergmann/version.git",
  12868. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  12869. },
  12870. "dist": {
  12871. "type": "zip",
  12872. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  12873. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  12874. "shasum": ""
  12875. },
  12876. "require": {
  12877. "php": ">=5.6"
  12878. },
  12879. "type": "library",
  12880. "extra": {
  12881. "branch-alias": {
  12882. "dev-master": "2.0.x-dev"
  12883. }
  12884. },
  12885. "autoload": {
  12886. "classmap": [
  12887. "src/"
  12888. ]
  12889. },
  12890. "notification-url": "https://packagist.org/downloads/",
  12891. "license": [
  12892. "BSD-3-Clause"
  12893. ],
  12894. "authors": [
  12895. {
  12896. "name": "Sebastian Bergmann",
  12897. "email": "sebastian@phpunit.de",
  12898. "role": "lead"
  12899. }
  12900. ],
  12901. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12902. "homepage": "https://github.com/sebastianbergmann/version",
  12903. "time": "2016-10-03T07:35:21+00:00"
  12904. },
  12905. {
  12906. "name": "squizlabs/php_codesniffer",
  12907. "version": "3.4.0",
  12908. "source": {
  12909. "type": "git",
  12910. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  12911. "reference": "379deb987e26c7cd103a7b387aea178baec96e48"
  12912. },
  12913. "dist": {
  12914. "type": "zip",
  12915. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/379deb987e26c7cd103a7b387aea178baec96e48",
  12916. "reference": "379deb987e26c7cd103a7b387aea178baec96e48",
  12917. "shasum": ""
  12918. },
  12919. "require": {
  12920. "ext-simplexml": "*",
  12921. "ext-tokenizer": "*",
  12922. "ext-xmlwriter": "*",
  12923. "php": ">=5.4.0"
  12924. },
  12925. "require-dev": {
  12926. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  12927. },
  12928. "bin": [
  12929. "bin/phpcs",
  12930. "bin/phpcbf"
  12931. ],
  12932. "type": "library",
  12933. "extra": {
  12934. "branch-alias": {
  12935. "dev-master": "3.x-dev"
  12936. }
  12937. },
  12938. "notification-url": "https://packagist.org/downloads/",
  12939. "license": [
  12940. "BSD-3-Clause"
  12941. ],
  12942. "authors": [
  12943. {
  12944. "name": "Greg Sherwood",
  12945. "role": "lead"
  12946. }
  12947. ],
  12948. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  12949. "homepage": "http://www.squizlabs.com/php-codesniffer",
  12950. "keywords": [
  12951. "phpcs",
  12952. "standards"
  12953. ],
  12954. "time": "2018-12-19T23:57:18+00:00"
  12955. },
  12956. {
  12957. "name": "symfony/browser-kit",
  12958. "version": "v3.4.22",
  12959. "source": {
  12960. "type": "git",
  12961. "url": "https://github.com/symfony/browser-kit.git",
  12962. "reference": "884689e5d29fc3c48498a0038e96d60e4f91b471"
  12963. },
  12964. "dist": {
  12965. "type": "zip",
  12966. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/884689e5d29fc3c48498a0038e96d60e4f91b471",
  12967. "reference": "884689e5d29fc3c48498a0038e96d60e4f91b471",
  12968. "shasum": ""
  12969. },
  12970. "require": {
  12971. "php": "^5.5.9|>=7.0.8",
  12972. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  12973. },
  12974. "require-dev": {
  12975. "symfony/css-selector": "~2.8|~3.0|~4.0",
  12976. "symfony/process": "~2.8|~3.0|~4.0"
  12977. },
  12978. "suggest": {
  12979. "symfony/process": ""
  12980. },
  12981. "type": "library",
  12982. "extra": {
  12983. "branch-alias": {
  12984. "dev-master": "3.4-dev"
  12985. }
  12986. },
  12987. "autoload": {
  12988. "psr-4": {
  12989. "Symfony\\Component\\BrowserKit\\": ""
  12990. },
  12991. "exclude-from-classmap": [
  12992. "/Tests/"
  12993. ]
  12994. },
  12995. "notification-url": "https://packagist.org/downloads/",
  12996. "license": [
  12997. "MIT"
  12998. ],
  12999. "authors": [
  13000. {
  13001. "name": "Fabien Potencier",
  13002. "email": "fabien@symfony.com"
  13003. },
  13004. {
  13005. "name": "Symfony Community",
  13006. "homepage": "https://symfony.com/contributors"
  13007. }
  13008. ],
  13009. "description": "Symfony BrowserKit Component",
  13010. "homepage": "https://symfony.com",
  13011. "time": "2019-01-16T09:39:14+00:00"
  13012. },
  13013. {
  13014. "name": "symfony/phpunit-bridge",
  13015. "version": "v3.4.22",
  13016. "source": {
  13017. "type": "git",
  13018. "url": "https://github.com/symfony/phpunit-bridge.git",
  13019. "reference": "6a2148bfc6ca0016846a32bdc55a317274283709"
  13020. },
  13021. "dist": {
  13022. "type": "zip",
  13023. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/6a2148bfc6ca0016846a32bdc55a317274283709",
  13024. "reference": "6a2148bfc6ca0016846a32bdc55a317274283709",
  13025. "shasum": ""
  13026. },
  13027. "require": {
  13028. "php": ">=5.3.3"
  13029. },
  13030. "conflict": {
  13031. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  13032. },
  13033. "suggest": {
  13034. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  13035. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  13036. },
  13037. "bin": [
  13038. "bin/simple-phpunit"
  13039. ],
  13040. "type": "symfony-bridge",
  13041. "extra": {
  13042. "branch-alias": {
  13043. "dev-master": "3.4-dev"
  13044. },
  13045. "thanks": {
  13046. "name": "phpunit/phpunit",
  13047. "url": "https://github.com/sebastianbergmann/phpunit"
  13048. }
  13049. },
  13050. "autoload": {
  13051. "files": [
  13052. "bootstrap.php"
  13053. ],
  13054. "psr-4": {
  13055. "Symfony\\Bridge\\PhpUnit\\": ""
  13056. },
  13057. "exclude-from-classmap": [
  13058. "/Tests/"
  13059. ]
  13060. },
  13061. "notification-url": "https://packagist.org/downloads/",
  13062. "license": [
  13063. "MIT"
  13064. ],
  13065. "authors": [
  13066. {
  13067. "name": "Nicolas Grekas",
  13068. "email": "p@tchwork.com"
  13069. },
  13070. {
  13071. "name": "Symfony Community",
  13072. "homepage": "https://symfony.com/contributors"
  13073. }
  13074. ],
  13075. "description": "Symfony PHPUnit Bridge",
  13076. "homepage": "https://symfony.com",
  13077. "time": "2019-01-30T13:30:37+00:00"
  13078. },
  13079. {
  13080. "name": "theseer/tokenizer",
  13081. "version": "1.1.0",
  13082. "source": {
  13083. "type": "git",
  13084. "url": "https://github.com/theseer/tokenizer.git",
  13085. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  13086. },
  13087. "dist": {
  13088. "type": "zip",
  13089. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  13090. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  13091. "shasum": ""
  13092. },
  13093. "require": {
  13094. "ext-dom": "*",
  13095. "ext-tokenizer": "*",
  13096. "ext-xmlwriter": "*",
  13097. "php": "^7.0"
  13098. },
  13099. "type": "library",
  13100. "autoload": {
  13101. "classmap": [
  13102. "src/"
  13103. ]
  13104. },
  13105. "notification-url": "https://packagist.org/downloads/",
  13106. "license": [
  13107. "BSD-3-Clause"
  13108. ],
  13109. "authors": [
  13110. {
  13111. "name": "Arne Blankerts",
  13112. "email": "arne@blankerts.de",
  13113. "role": "Developer"
  13114. }
  13115. ],
  13116. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13117. "time": "2017-04-07T12:08:54+00:00"
  13118. },
  13119. {
  13120. "name": "webflo/drupal-core-require-dev",
  13121. "version": "8.6.9",
  13122. "source": {
  13123. "type": "git",
  13124. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  13125. "reference": "c083ddd802bda504d836dc0d4fea44cf2e6f191f"
  13126. },
  13127. "dist": {
  13128. "type": "zip",
  13129. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/c083ddd802bda504d836dc0d4fea44cf2e6f191f",
  13130. "reference": "c083ddd802bda504d836dc0d4fea44cf2e6f191f",
  13131. "shasum": ""
  13132. },
  13133. "require": {
  13134. "behat/mink": "1.7.x-dev",
  13135. "behat/mink-goutte-driver": "^1.2",
  13136. "behat/mink-selenium2-driver": "1.3.x-dev",
  13137. "drupal/coder": "^8.2.12",
  13138. "drupal/core": "8.6.9",
  13139. "jcalderonzumba/gastonjs": "^1.0.2",
  13140. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  13141. "mikey179/vfsstream": "^1.2",
  13142. "phpspec/prophecy": "^1.7",
  13143. "phpunit/phpunit": "^4.8.35 || ^6.5",
  13144. "symfony/css-selector": "^3.4.0",
  13145. "symfony/debug": "^3.4.0",
  13146. "symfony/phpunit-bridge": "^3.4.3"
  13147. },
  13148. "type": "metapackage",
  13149. "notification-url": "https://packagist.org/downloads/",
  13150. "license": [
  13151. "GPL-2.0-or-later"
  13152. ],
  13153. "description": "require-dev dependencies from drupal/core",
  13154. "time": "2019-02-08T12:31:37+00:00"
  13155. }
  13156. ],
  13157. "aliases": [],
  13158. "minimum-stability": "dev",
  13159. "stability-flags": {
  13160. "drupal/computed_field": 10,
  13161. "drupal/migrate_plus": 20,
  13162. "drupal/migrate_tools": 20,
  13163. "drupal/select_translation": 20,
  13164. "drupal/telephone_formatter": 10,
  13165. "drupal/views_conditional": 20,
  13166. "drupal/advanced_text_formatter": 10,
  13167. "drupal/autocomplete_deluxe": 10,
  13168. "drupal/better_exposed_filters": 15,
  13169. "drupal/better_messages": 15,
  13170. "drupal/bulkdelete": 20,
  13171. "drupal/cshs": 20,
  13172. "drupal/content_lock": 15,
  13173. "drupal/context": 10,
  13174. "drupal/domain": 20,
  13175. "drupal/domain_alias": 20,
  13176. "drupal/domain_config": 20,
  13177. "drupal/email_registration": 5,
  13178. "drupal/entity_browser_enhanced": 5,
  13179. "drupal/entity_clone": 15,
  13180. "drupal/filefield_sources": 20,
  13181. "drupal/filter_perms": 20,
  13182. "drupal/inline_entity_form": 5,
  13183. "drupal/login_destination": 20,
  13184. "drupal/maillog": 20,
  13185. "drupal/maxlength": 10,
  13186. "drupal/menu_position": 20,
  13187. "drupal/path_alias_xt": 20,
  13188. "drupal/pathologic": 15,
  13189. "drupal/profile": 5,
  13190. "drupal/smtp": 10,
  13191. "drupal/synonyms": 15,
  13192. "drupal/translation_views": 15,
  13193. "drupal/toolbar_themes": 15,
  13194. "drupal/ultimate_cron": 15,
  13195. "drupal/workflow": 20
  13196. },
  13197. "prefer-stable": true,
  13198. "prefer-lowest": false,
  13199. "platform": {
  13200. "php": ">=5.6"
  13201. },
  13202. "platform-dev": []
  13203. }