composer.lock 471 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133
  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": "da7d2b41786f2def14a0d5da5f0f59e8",
  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.3",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/consolidation/Robo.git",
  724. "reference": "d0b6f516ec940add7abed4f1432d30cca5f8ae0c"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/consolidation/Robo/zipball/d0b6f516ec940add7abed4f1432d30cca5f8ae0c",
  729. "reference": "d0b6f516ec940add7abed4f1432d30cca5f8ae0c",
  730. "shasum": ""
  731. },
  732. "require": {
  733. "consolidation/annotated-command": "^2.10.2",
  734. "consolidation/config": "^1.0.10",
  735. "consolidation/log": "~1",
  736. "consolidation/output-formatters": "^3.1.13",
  737. "consolidation/self-update": "^1",
  738. "grasmash/yaml-expander": "^1.3",
  739. "league/container": "^2.2",
  740. "php": ">=5.5.0",
  741. "symfony/console": "^2.8|^3|^4",
  742. "symfony/event-dispatcher": "^2.5|^3|^4",
  743. "symfony/filesystem": "^2.5|^3|^4",
  744. "symfony/finder": "^2.5|^3|^4",
  745. "symfony/process": "^2.5|^3|^4"
  746. },
  747. "replace": {
  748. "codegyre/robo": "< 1.0"
  749. },
  750. "require-dev": {
  751. "codeception/aspect-mock": "^1|^2.1.1",
  752. "codeception/base": "^2.3.7",
  753. "codeception/verify": "^0.3.2",
  754. "g1a/composer-test-scenarios": "^3",
  755. "goaop/framework": "~2.1.2",
  756. "goaop/parser-reflection": "^1.1.0",
  757. "natxet/cssmin": "3.0.4",
  758. "nikic/php-parser": "^3.1.5",
  759. "patchwork/jsqueeze": "~2",
  760. "pear/archive_tar": "^1.4.2",
  761. "php-coveralls/php-coveralls": "^1",
  762. "phpunit/php-code-coverage": "~2|~4",
  763. "squizlabs/php_codesniffer": "^2.8"
  764. },
  765. "suggest": {
  766. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  767. "natxet/CssMin": "For minifying CSS files in taskMinify",
  768. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  769. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  770. },
  771. "bin": [
  772. "robo"
  773. ],
  774. "type": "library",
  775. "extra": {
  776. "scenarios": {
  777. "symfony4": {
  778. "require": {
  779. "symfony/console": "^4"
  780. },
  781. "config": {
  782. "platform": {
  783. "php": "7.1.3"
  784. }
  785. }
  786. },
  787. "symfony2": {
  788. "require": {
  789. "symfony/console": "^2.8"
  790. },
  791. "remove": [
  792. "goaop/framework"
  793. ],
  794. "config": {
  795. "platform": {
  796. "php": "5.5.9"
  797. }
  798. },
  799. "scenario-options": {
  800. "create-lockfile": "false"
  801. }
  802. }
  803. },
  804. "branch-alias": {
  805. "dev-master": "2.x-dev"
  806. }
  807. },
  808. "autoload": {
  809. "psr-4": {
  810. "Robo\\": "src"
  811. }
  812. },
  813. "notification-url": "https://packagist.org/downloads/",
  814. "license": [
  815. "MIT"
  816. ],
  817. "authors": [
  818. {
  819. "name": "Davert",
  820. "email": "davert.php@resend.cc"
  821. }
  822. ],
  823. "description": "Modern task runner",
  824. "time": "2019-01-02T21:33:28+00:00"
  825. },
  826. {
  827. "name": "consolidation/self-update",
  828. "version": "1.1.5",
  829. "source": {
  830. "type": "git",
  831. "url": "https://github.com/consolidation/self-update.git",
  832. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  833. },
  834. "dist": {
  835. "type": "zip",
  836. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  837. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  838. "shasum": ""
  839. },
  840. "require": {
  841. "php": ">=5.5.0",
  842. "symfony/console": "^2.8|^3|^4",
  843. "symfony/filesystem": "^2.5|^3|^4"
  844. },
  845. "bin": [
  846. "scripts/release"
  847. ],
  848. "type": "library",
  849. "extra": {
  850. "branch-alias": {
  851. "dev-master": "1.x-dev"
  852. }
  853. },
  854. "autoload": {
  855. "psr-4": {
  856. "SelfUpdate\\": "src"
  857. }
  858. },
  859. "notification-url": "https://packagist.org/downloads/",
  860. "license": [
  861. "MIT"
  862. ],
  863. "authors": [
  864. {
  865. "name": "Greg Anderson",
  866. "email": "greg.1.anderson@greenknowe.org"
  867. },
  868. {
  869. "name": "Alexander Menk",
  870. "email": "menk@mestrona.net"
  871. }
  872. ],
  873. "description": "Provides a self:update command for Symfony Console applications.",
  874. "time": "2018-10-28T01:52:03+00:00"
  875. },
  876. {
  877. "name": "consolidation/site-alias",
  878. "version": "1.1.11",
  879. "source": {
  880. "type": "git",
  881. "url": "https://github.com/consolidation/site-alias.git",
  882. "reference": "54ea74ee7dbd54ef356798028ca9a3548cb8df14"
  883. },
  884. "dist": {
  885. "type": "zip",
  886. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/54ea74ee7dbd54ef356798028ca9a3548cb8df14",
  887. "reference": "54ea74ee7dbd54ef356798028ca9a3548cb8df14",
  888. "shasum": ""
  889. },
  890. "require": {
  891. "php": ">=5.5.0"
  892. },
  893. "require-dev": {
  894. "consolidation/robo": "^1.2.3",
  895. "g1a/composer-test-scenarios": "^2",
  896. "knplabs/github-api": "^2.7",
  897. "php-http/guzzle6-adapter": "^1.1",
  898. "phpunit/phpunit": "^5",
  899. "satooshi/php-coveralls": "^2",
  900. "squizlabs/php_codesniffer": "^2.8",
  901. "symfony/console": "^2.8|^3|^4",
  902. "symfony/yaml": "~2.3|^3"
  903. },
  904. "type": "library",
  905. "extra": {
  906. "branch-alias": {
  907. "dev-master": "1.x-dev"
  908. }
  909. },
  910. "autoload": {
  911. "psr-4": {
  912. "Consolidation\\SiteAlias\\": "src"
  913. }
  914. },
  915. "notification-url": "https://packagist.org/downloads/",
  916. "license": [
  917. "MIT"
  918. ],
  919. "authors": [
  920. {
  921. "name": "Moshe Weitzman",
  922. "email": "weitzman@tejasa.com"
  923. },
  924. {
  925. "name": "Greg Anderson",
  926. "email": "greg.1.anderson@greenknowe.org"
  927. }
  928. ],
  929. "description": "Manage alias records for local and remote sites.",
  930. "time": "2018-11-03T05:07:56+00:00"
  931. },
  932. {
  933. "name": "container-interop/container-interop",
  934. "version": "1.2.0",
  935. "source": {
  936. "type": "git",
  937. "url": "https://github.com/container-interop/container-interop.git",
  938. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  939. },
  940. "dist": {
  941. "type": "zip",
  942. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  943. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  944. "shasum": ""
  945. },
  946. "require": {
  947. "psr/container": "^1.0"
  948. },
  949. "type": "library",
  950. "autoload": {
  951. "psr-4": {
  952. "Interop\\Container\\": "src/Interop/Container/"
  953. }
  954. },
  955. "notification-url": "https://packagist.org/downloads/",
  956. "license": [
  957. "MIT"
  958. ],
  959. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  960. "homepage": "https://github.com/container-interop/container-interop",
  961. "time": "2017-02-14T19:40:03+00:00"
  962. },
  963. {
  964. "name": "cweagans/composer-patches",
  965. "version": "1.6.5",
  966. "source": {
  967. "type": "git",
  968. "url": "https://github.com/cweagans/composer-patches.git",
  969. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  970. },
  971. "dist": {
  972. "type": "zip",
  973. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  974. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  975. "shasum": ""
  976. },
  977. "require": {
  978. "composer-plugin-api": "^1.0",
  979. "php": ">=5.3.0"
  980. },
  981. "require-dev": {
  982. "composer/composer": "~1.0",
  983. "phpunit/phpunit": "~4.6"
  984. },
  985. "type": "composer-plugin",
  986. "extra": {
  987. "class": "cweagans\\Composer\\Patches"
  988. },
  989. "autoload": {
  990. "psr-4": {
  991. "cweagans\\Composer\\": "src"
  992. }
  993. },
  994. "notification-url": "https://packagist.org/downloads/",
  995. "license": [
  996. "BSD-3-Clause"
  997. ],
  998. "authors": [
  999. {
  1000. "name": "Cameron Eagans",
  1001. "email": "me@cweagans.net"
  1002. }
  1003. ],
  1004. "description": "Provides a way to patch Composer packages.",
  1005. "time": "2018-05-11T18:00:16+00:00"
  1006. },
  1007. {
  1008. "name": "d3/d3",
  1009. "version": "v3.5.17",
  1010. "dist": {
  1011. "type": "zip",
  1012. "url": "https://github.com/d3/d3/archive/v3.5.17.zip",
  1013. "reference": null,
  1014. "shasum": null
  1015. },
  1016. "type": "drupal-library"
  1017. },
  1018. {
  1019. "name": "dflydev/dot-access-configuration",
  1020. "version": "v1.0.3",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1024. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1029. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1030. "shasum": ""
  1031. },
  1032. "require": {
  1033. "dflydev/dot-access-data": "1.*",
  1034. "dflydev/placeholder-resolver": "1.*",
  1035. "php": ">=5.3.2"
  1036. },
  1037. "require-dev": {
  1038. "symfony/yaml": "~2.1"
  1039. },
  1040. "suggest": {
  1041. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1042. },
  1043. "type": "library",
  1044. "extra": {
  1045. "branch-alias": {
  1046. "dev-master": "1.0-dev"
  1047. }
  1048. },
  1049. "autoload": {
  1050. "psr-0": {
  1051. "Dflydev\\DotAccessConfiguration": "src"
  1052. }
  1053. },
  1054. "notification-url": "https://packagist.org/downloads/",
  1055. "license": [
  1056. "MIT"
  1057. ],
  1058. "authors": [
  1059. {
  1060. "name": "Dragonfly Development Inc.",
  1061. "email": "info@dflydev.com",
  1062. "homepage": "http://dflydev.com"
  1063. },
  1064. {
  1065. "name": "Beau Simensen",
  1066. "email": "beau@dflydev.com",
  1067. "homepage": "http://beausimensen.com"
  1068. }
  1069. ],
  1070. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1071. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1072. "keywords": [
  1073. "config",
  1074. "configuration"
  1075. ],
  1076. "time": "2018-09-08T23:00:17+00:00"
  1077. },
  1078. {
  1079. "name": "dflydev/dot-access-data",
  1080. "version": "v1.1.0",
  1081. "source": {
  1082. "type": "git",
  1083. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1084. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1085. },
  1086. "dist": {
  1087. "type": "zip",
  1088. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1089. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1090. "shasum": ""
  1091. },
  1092. "require": {
  1093. "php": ">=5.3.2"
  1094. },
  1095. "type": "library",
  1096. "extra": {
  1097. "branch-alias": {
  1098. "dev-master": "1.0-dev"
  1099. }
  1100. },
  1101. "autoload": {
  1102. "psr-0": {
  1103. "Dflydev\\DotAccessData": "src"
  1104. }
  1105. },
  1106. "notification-url": "https://packagist.org/downloads/",
  1107. "license": [
  1108. "MIT"
  1109. ],
  1110. "authors": [
  1111. {
  1112. "name": "Dragonfly Development Inc.",
  1113. "email": "info@dflydev.com",
  1114. "homepage": "http://dflydev.com"
  1115. },
  1116. {
  1117. "name": "Beau Simensen",
  1118. "email": "beau@dflydev.com",
  1119. "homepage": "http://beausimensen.com"
  1120. },
  1121. {
  1122. "name": "Carlos Frutos",
  1123. "email": "carlos@kiwing.it",
  1124. "homepage": "https://github.com/cfrutos"
  1125. }
  1126. ],
  1127. "description": "Given a deep data structure, access data by dot notation.",
  1128. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1129. "keywords": [
  1130. "access",
  1131. "data",
  1132. "dot",
  1133. "notation"
  1134. ],
  1135. "time": "2017-01-20T21:14:22+00:00"
  1136. },
  1137. {
  1138. "name": "dflydev/placeholder-resolver",
  1139. "version": "v1.0.2",
  1140. "source": {
  1141. "type": "git",
  1142. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1143. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1144. },
  1145. "dist": {
  1146. "type": "zip",
  1147. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1148. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1149. "shasum": ""
  1150. },
  1151. "require": {
  1152. "php": ">=5.3.2"
  1153. },
  1154. "type": "library",
  1155. "extra": {
  1156. "branch-alias": {
  1157. "dev-master": "1.0-dev"
  1158. }
  1159. },
  1160. "autoload": {
  1161. "psr-0": {
  1162. "Dflydev\\PlaceholderResolver": "src"
  1163. }
  1164. },
  1165. "notification-url": "https://packagist.org/downloads/",
  1166. "license": [
  1167. "MIT"
  1168. ],
  1169. "authors": [
  1170. {
  1171. "name": "Dragonfly Development Inc.",
  1172. "email": "info@dflydev.com",
  1173. "homepage": "http://dflydev.com"
  1174. },
  1175. {
  1176. "name": "Beau Simensen",
  1177. "email": "beau@dflydev.com",
  1178. "homepage": "http://beausimensen.com"
  1179. }
  1180. ],
  1181. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1182. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1183. "keywords": [
  1184. "placeholder",
  1185. "resolver"
  1186. ],
  1187. "time": "2012-10-28T21:08:28+00:00"
  1188. },
  1189. {
  1190. "name": "dnoegel/php-xdg-base-dir",
  1191. "version": "0.1",
  1192. "source": {
  1193. "type": "git",
  1194. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1195. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1196. },
  1197. "dist": {
  1198. "type": "zip",
  1199. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1200. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1201. "shasum": ""
  1202. },
  1203. "require": {
  1204. "php": ">=5.3.2"
  1205. },
  1206. "require-dev": {
  1207. "phpunit/phpunit": "@stable"
  1208. },
  1209. "type": "project",
  1210. "autoload": {
  1211. "psr-4": {
  1212. "XdgBaseDir\\": "src/"
  1213. }
  1214. },
  1215. "notification-url": "https://packagist.org/downloads/",
  1216. "license": [
  1217. "MIT"
  1218. ],
  1219. "description": "implementation of xdg base directory specification for php",
  1220. "time": "2014-10-24T07:27:01+00:00"
  1221. },
  1222. {
  1223. "name": "doctrine/annotations",
  1224. "version": "v1.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/audiofield",
  1963. "version": "1.8.0",
  1964. "source": {
  1965. "type": "git",
  1966. "url": "https://git.drupal.org/project/audiofield",
  1967. "reference": "8.x-1.8"
  1968. },
  1969. "dist": {
  1970. "type": "zip",
  1971. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.8.zip",
  1972. "reference": "8.x-1.8",
  1973. "shasum": "a2e4c5b7f81ec6d3d015b22a63560fd1a8f56682"
  1974. },
  1975. "require": {
  1976. "drupal/core": "~8.0"
  1977. },
  1978. "type": "drupal-module",
  1979. "extra": {
  1980. "branch-alias": {
  1981. "dev-1.x": "1.x-dev"
  1982. },
  1983. "drupal": {
  1984. "version": "8.x-1.8",
  1985. "datestamp": "1543249980",
  1986. "security-coverage": {
  1987. "status": "covered",
  1988. "message": "Covered by Drupal's security advisory policy"
  1989. }
  1990. },
  1991. "drush": {
  1992. "services": {
  1993. "drush.services.yml": "^9"
  1994. }
  1995. }
  1996. },
  1997. "notification-url": "https://packages.drupal.org/8/downloads",
  1998. "license": [
  1999. "GPL-2.0+"
  2000. ],
  2001. "authors": [
  2002. {
  2003. "name": "Daniel Moberly",
  2004. "homepage": "https://www.drupal.org/u/danielmoberly",
  2005. "role": "Maintainer"
  2006. },
  2007. {
  2008. "name": "josipsaric",
  2009. "homepage": "https://www.drupal.org/user/3063287"
  2010. },
  2011. {
  2012. "name": "tamerzg",
  2013. "homepage": "https://www.drupal.org/user/464564"
  2014. }
  2015. ],
  2016. "description": "AudioField Module",
  2017. "homepage": "https://www.drupal.org/project/audiofield",
  2018. "support": {
  2019. "source": "http://cgit.drupalcode.org/audiofield",
  2020. "issues": "https://www.drupal.org/project/issues/audiofield"
  2021. }
  2022. },
  2023. {
  2024. "name": "drupal/autocomplete_deluxe",
  2025. "version": "1.0.0-beta1",
  2026. "source": {
  2027. "type": "git",
  2028. "url": "https://git.drupal.org/project/autocomplete_deluxe",
  2029. "reference": "8.x-1.0-beta1"
  2030. },
  2031. "dist": {
  2032. "type": "zip",
  2033. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-8.x-1.0-beta1.zip",
  2034. "reference": "8.x-1.0-beta1",
  2035. "shasum": "f59d928761a01a055c2240155a84b1d7286fe666"
  2036. },
  2037. "require": {
  2038. "drupal/core": "~8.0"
  2039. },
  2040. "type": "drupal-module",
  2041. "extra": {
  2042. "branch-alias": {
  2043. "dev-1.x": "1.x-dev"
  2044. },
  2045. "drupal": {
  2046. "version": "8.x-1.0-beta1",
  2047. "datestamp": "1502921644",
  2048. "security-coverage": {
  2049. "status": "not-covered",
  2050. "message": "Beta releases are not covered by Drupal security advisories."
  2051. }
  2052. }
  2053. },
  2054. "notification-url": "https://packages.drupal.org/8/downloads",
  2055. "license": [
  2056. "GPL-2.0+"
  2057. ],
  2058. "authors": [
  2059. {
  2060. "name": "Edward Chan",
  2061. "homepage": "https://www.drupal.org/user/1781334"
  2062. },
  2063. {
  2064. "name": "edwardchiapet",
  2065. "homepage": "https://www.drupal.org/user/2354784"
  2066. },
  2067. {
  2068. "name": "mpriscella",
  2069. "homepage": "https://www.drupal.org/user/2354820"
  2070. },
  2071. {
  2072. "name": "sepgil",
  2073. "homepage": "https://www.drupal.org/user/512828"
  2074. }
  2075. ],
  2076. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2077. "homepage": "https://www.drupal.org/sandbox/edwardchan/2888186",
  2078. "support": {
  2079. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2080. "issues": "https://www.drupal.org/project/issues/2888186"
  2081. }
  2082. },
  2083. {
  2084. "name": "drupal/autologout",
  2085. "version": "1.0.0",
  2086. "source": {
  2087. "type": "git",
  2088. "url": "https://git.drupal.org/project/autologout",
  2089. "reference": "8.x-1.0"
  2090. },
  2091. "dist": {
  2092. "type": "zip",
  2093. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2094. "reference": "8.x-1.0",
  2095. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2096. },
  2097. "require": {
  2098. "drupal/core": "~8.0"
  2099. },
  2100. "type": "drupal-module",
  2101. "extra": {
  2102. "branch-alias": {
  2103. "dev-1.x": "1.x-dev"
  2104. },
  2105. "drupal": {
  2106. "version": "8.x-1.0",
  2107. "datestamp": "1494237185",
  2108. "security-coverage": {
  2109. "status": "covered",
  2110. "message": "Covered by Drupal's security advisory policy"
  2111. }
  2112. }
  2113. },
  2114. "notification-url": "https://packages.drupal.org/8/downloads",
  2115. "license": [
  2116. "GPL-2.0+"
  2117. ],
  2118. "authors": [
  2119. {
  2120. "name": "AjK",
  2121. "homepage": "https://www.drupal.org/user/39030"
  2122. },
  2123. {
  2124. "name": "AjitS",
  2125. "homepage": "https://www.drupal.org/user/981944"
  2126. },
  2127. {
  2128. "name": "boshtian",
  2129. "homepage": "https://www.drupal.org/user/1773456"
  2130. },
  2131. {
  2132. "name": "dandrews",
  2133. "homepage": "https://www.drupal.org/user/2014490"
  2134. },
  2135. {
  2136. "name": "darksnow",
  2137. "homepage": "https://www.drupal.org/user/391915"
  2138. },
  2139. {
  2140. "name": "johnennew",
  2141. "homepage": "https://www.drupal.org/user/1150042"
  2142. },
  2143. {
  2144. "name": "jrglasgow",
  2145. "homepage": "https://www.drupal.org/user/36590"
  2146. },
  2147. {
  2148. "name": "kmasood",
  2149. "homepage": "https://www.drupal.org/user/1262860"
  2150. },
  2151. {
  2152. "name": "levelos",
  2153. "homepage": "https://www.drupal.org/user/54135"
  2154. },
  2155. {
  2156. "name": "prabeen.giri",
  2157. "homepage": "https://www.drupal.org/user/913078"
  2158. },
  2159. {
  2160. "name": "str8",
  2161. "homepage": "https://www.drupal.org/user/2865063"
  2162. }
  2163. ],
  2164. "description": "Adds automated timed logout.",
  2165. "homepage": "http://drupal.org/project/autologout",
  2166. "support": {
  2167. "source": "http://cgit.drupalcode.org/autologout"
  2168. }
  2169. },
  2170. {
  2171. "name": "drupal/better_exposed_filters",
  2172. "version": "3.0.0-alpha5",
  2173. "source": {
  2174. "type": "git",
  2175. "url": "https://git.drupal.org/project/better_exposed_filters",
  2176. "reference": "8.x-3.0-alpha5"
  2177. },
  2178. "dist": {
  2179. "type": "zip",
  2180. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-3.0-alpha5.zip",
  2181. "reference": "8.x-3.0-alpha5",
  2182. "shasum": "8dbcff4b3bcd24f753d5d1ba6a523442a3690a76"
  2183. },
  2184. "require": {
  2185. "drupal/core": "*"
  2186. },
  2187. "type": "drupal-module",
  2188. "extra": {
  2189. "branch-alias": {
  2190. "dev-3.x": "3.x-dev"
  2191. },
  2192. "drupal": {
  2193. "version": "8.x-3.0-alpha5",
  2194. "datestamp": "1540513084",
  2195. "security-coverage": {
  2196. "status": "not-covered",
  2197. "message": "Alpha releases are not covered by Drupal security advisories."
  2198. }
  2199. }
  2200. },
  2201. "notification-url": "https://packages.drupal.org/8/downloads",
  2202. "license": [
  2203. "GPL-2.0-or-later"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "chr.fritsch",
  2208. "homepage": "https://www.drupal.org/user/2103716"
  2209. },
  2210. {
  2211. "name": "jkopel",
  2212. "homepage": "https://www.drupal.org/user/66207"
  2213. },
  2214. {
  2215. "name": "mikeker",
  2216. "homepage": "https://www.drupal.org/user/192273"
  2217. },
  2218. {
  2219. "name": "mortona2k",
  2220. "homepage": "https://www.drupal.org/user/1029484"
  2221. },
  2222. {
  2223. "name": "rlhawk",
  2224. "homepage": "https://www.drupal.org/user/352283"
  2225. }
  2226. ],
  2227. "description": "Provides advanced options (such as links, checkboxes, or jQueryUI widgets) for exposed Views elements.",
  2228. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2229. "support": {
  2230. "source": "http://cgit.drupalcode.org/better_exposed_filters"
  2231. }
  2232. },
  2233. {
  2234. "name": "drupal/better_messages",
  2235. "version": "1.0.0-alpha2",
  2236. "source": {
  2237. "type": "git",
  2238. "url": "https://git.drupal.org/project/better_messages",
  2239. "reference": "8.x-1.0-alpha2"
  2240. },
  2241. "dist": {
  2242. "type": "zip",
  2243. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2244. "reference": "8.x-1.0-alpha2",
  2245. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2246. },
  2247. "require": {
  2248. "drupal/core": "~8.0"
  2249. },
  2250. "type": "drupal-module",
  2251. "extra": {
  2252. "branch-alias": {
  2253. "dev-1.x": "1.x-dev"
  2254. },
  2255. "drupal": {
  2256. "version": "8.x-1.0-alpha2",
  2257. "datestamp": "1517663880",
  2258. "security-coverage": {
  2259. "status": "not-covered",
  2260. "message": "Alpha releases are not covered by Drupal security advisories."
  2261. }
  2262. }
  2263. },
  2264. "notification-url": "https://packages.drupal.org/8/downloads",
  2265. "license": [
  2266. "GPL-2.0-or-later"
  2267. ],
  2268. "authors": [
  2269. {
  2270. "name": "Mohammed J. Razem",
  2271. "homepage": "https://www.drupal.org/user/255384"
  2272. },
  2273. {
  2274. "name": "bucefal91",
  2275. "homepage": "https://www.drupal.org/user/504128"
  2276. },
  2277. {
  2278. "name": "le72",
  2279. "homepage": "https://www.drupal.org/user/1866896"
  2280. }
  2281. ],
  2282. "description": "Better Messages module for Drupal 8.",
  2283. "homepage": "https://www.drupal.org/project/better_messages",
  2284. "support": {
  2285. "source": "http://cgit.drupalcode.org/better_messages"
  2286. }
  2287. },
  2288. {
  2289. "name": "drupal/betterlogin",
  2290. "version": "1.2.0",
  2291. "source": {
  2292. "type": "git",
  2293. "url": "https://git.drupal.org/project/betterlogin",
  2294. "reference": "8.x-1.2"
  2295. },
  2296. "dist": {
  2297. "type": "zip",
  2298. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.2.zip",
  2299. "reference": "8.x-1.2",
  2300. "shasum": "6b9ab142bf563685346d2b4e2db46ada209ed6ad"
  2301. },
  2302. "require": {
  2303. "drupal/core": "~8.0"
  2304. },
  2305. "type": "drupal-module",
  2306. "extra": {
  2307. "branch-alias": {
  2308. "dev-1.x": "1.x-dev"
  2309. },
  2310. "drupal": {
  2311. "version": "8.x-1.2",
  2312. "datestamp": "1515587585",
  2313. "security-coverage": {
  2314. "status": "covered",
  2315. "message": "Covered by Drupal's security advisory policy"
  2316. }
  2317. }
  2318. },
  2319. "notification-url": "https://packages.drupal.org/8/downloads",
  2320. "license": [
  2321. "GPL-2.0-or-later"
  2322. ],
  2323. "authors": [
  2324. {
  2325. "name": "Yogesh Pawar",
  2326. "homepage": "https://www.drupal.org/user/2922907"
  2327. },
  2328. {
  2329. "name": "theamoeba",
  2330. "homepage": "https://www.drupal.org/user/251700"
  2331. }
  2332. ],
  2333. "description": "Make the login screens better :)",
  2334. "homepage": "https://www.drupal.org/project/betterlogin",
  2335. "support": {
  2336. "source": "http://cgit.drupalcode.org/betterlogin"
  2337. }
  2338. },
  2339. {
  2340. "name": "drupal/block_class",
  2341. "version": "1.0.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://git.drupal.org/project/block_class",
  2345. "reference": "8.x-1.0"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.0.zip",
  2350. "reference": "8.x-1.0",
  2351. "shasum": "1a691999d051a3c010c2b6f2df73954ee02f424d"
  2352. },
  2353. "require": {
  2354. "drupal/core": "*"
  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.0",
  2363. "datestamp": "1531440821",
  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+"
  2373. ],
  2374. "authors": [
  2375. {
  2376. "name": "Todd Nienkerk",
  2377. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2378. "role": "Maintainer"
  2379. },
  2380. {
  2381. "name": "Renato Gonçalves (RenatoG)",
  2382. "homepage": "https://www.drupal.org/u/RenatoG",
  2383. "email": "renatog@ciandt.com",
  2384. "role": "Maintainer"
  2385. },
  2386. {
  2387. "name": "Aaron Stanush",
  2388. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2389. "role": "Maintainer"
  2390. },
  2391. {
  2392. "name": "David Suissa (DYdave)",
  2393. "homepage": "https://www.drupal.org/u/DYdave",
  2394. "role": "Maintainer"
  2395. },
  2396. {
  2397. "name": "Four Kitchens",
  2398. "homepage": "https://www.drupal.org/user/358502",
  2399. "role": "Maintainer"
  2400. },
  2401. {
  2402. "name": "berenddeboer",
  2403. "homepage": "https://www.drupal.org/u/berenddeboer",
  2404. "role": "Maintainer"
  2405. },
  2406. {
  2407. "name": "elliotttf",
  2408. "homepage": "https://www.drupal.org/u/elliotttf",
  2409. "role": "Maintainer"
  2410. },
  2411. {
  2412. "name": "Michal Minecki (mirzu)",
  2413. "homepage": "https://www.drupal.org/u/mirzu",
  2414. "role": "Maintainer"
  2415. },
  2416. {
  2417. "name": "Patrick Coffey (pcoffey)",
  2418. "homepage": "https://www.drupal.org/u/pcoffey",
  2419. "role": "Maintainer"
  2420. },
  2421. {
  2422. "name": "Taylor Smith (tsmith512)",
  2423. "homepage": "https://www.drupal.org/u/tsmith512",
  2424. "role": "Maintainer"
  2425. },
  2426. {
  2427. "name": "tsmith512",
  2428. "homepage": "https://www.drupal.org/user/2031446"
  2429. }
  2430. ],
  2431. "description": "Allows assigning classes to Blocks.",
  2432. "homepage": "https://www.drupal.org/project/block_class",
  2433. "support": {
  2434. "source": "https://cgit.drupalcode.org/block_class",
  2435. "issues": "https://www.drupal.org/project/issues/block_class",
  2436. "irc": "irc://irc.freenode.org/drupal-contribute"
  2437. }
  2438. },
  2439. {
  2440. "name": "drupal/bulkdelete",
  2441. "version": "dev-1.x",
  2442. "source": {
  2443. "type": "git",
  2444. "url": "https://git.drupal.org/project/bulkdelete",
  2445. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2446. },
  2447. "require": {
  2448. "drupal/core": "~8.0"
  2449. },
  2450. "type": "drupal-module",
  2451. "extra": {
  2452. "branch-alias": {
  2453. "dev-1.x": "1.x-dev"
  2454. },
  2455. "drupal": {
  2456. "version": "8.x-1.x-dev",
  2457. "datestamp": "1495565583",
  2458. "security-coverage": {
  2459. "status": "not-covered",
  2460. "message": "Dev releases are not covered by Drupal security advisories."
  2461. }
  2462. }
  2463. },
  2464. "notification-url": "https://packages.drupal.org/8/downloads",
  2465. "license": [
  2466. "GPL-2.0-or-later"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "Kars-T",
  2471. "homepage": "https://www.drupal.org/user/224499"
  2472. },
  2473. {
  2474. "name": "Rahul Seth",
  2475. "homepage": "https://www.drupal.org/user/2694359"
  2476. },
  2477. {
  2478. "name": "adriancid",
  2479. "homepage": "https://www.drupal.org/user/1962106"
  2480. },
  2481. {
  2482. "name": "robertDouglass",
  2483. "homepage": "https://www.drupal.org/user/5449"
  2484. }
  2485. ],
  2486. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2487. "homepage": "https://www.drupal.org/project/bulkdelete",
  2488. "support": {
  2489. "source": "http://cgit.drupalcode.org/bulkdelete"
  2490. },
  2491. "time": "2017-05-23T18:49:48+00:00"
  2492. },
  2493. {
  2494. "name": "drupal/computed_field",
  2495. "version": "2.0.0-beta1",
  2496. "source": {
  2497. "type": "git",
  2498. "url": "https://git.drupal.org/project/computed_field",
  2499. "reference": "8.x-2.0-beta1"
  2500. },
  2501. "dist": {
  2502. "type": "zip",
  2503. "url": "https://ftp.drupal.org/files/projects/computed_field-8.x-2.0-beta1.zip",
  2504. "reference": "8.x-2.0-beta1",
  2505. "shasum": "a918cb85b7865f15cc5a5c327e37964e53545161"
  2506. },
  2507. "require": {
  2508. "drupal/core": "~8.0"
  2509. },
  2510. "type": "drupal-module",
  2511. "extra": {
  2512. "branch-alias": {
  2513. "dev-2.x": "2.x-dev"
  2514. },
  2515. "drupal": {
  2516. "version": "8.x-2.0-beta1",
  2517. "datestamp": "1546032480",
  2518. "security-coverage": {
  2519. "status": "not-covered",
  2520. "message": "Beta releases are not covered by Drupal security advisories."
  2521. }
  2522. }
  2523. },
  2524. "notification-url": "https://packages.drupal.org/8/downloads",
  2525. "license": [
  2526. "GPL-2.0-or-later"
  2527. ],
  2528. "authors": [
  2529. {
  2530. "name": "Agileware",
  2531. "homepage": "https://www.drupal.org/user/89106"
  2532. },
  2533. {
  2534. "name": "Moonshine",
  2535. "homepage": "https://www.drupal.org/user/133705"
  2536. },
  2537. {
  2538. "name": "Pedro Lozano",
  2539. "homepage": "https://www.drupal.org/user/123766"
  2540. },
  2541. {
  2542. "name": "colan",
  2543. "homepage": "https://www.drupal.org/user/58704"
  2544. },
  2545. {
  2546. "name": "dealancer",
  2547. "homepage": "https://www.drupal.org/user/243418"
  2548. },
  2549. {
  2550. "name": "markus_petrux",
  2551. "homepage": "https://www.drupal.org/user/39593"
  2552. },
  2553. {
  2554. "name": "nickcaballero",
  2555. "homepage": "https://www.drupal.org/user/588336"
  2556. },
  2557. {
  2558. "name": "ram4nd",
  2559. "homepage": "https://www.drupal.org/user/601534"
  2560. }
  2561. ],
  2562. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2563. "homepage": "https://www.drupal.org/project/computed_field",
  2564. "support": {
  2565. "source": "http://cgit.drupalcode.org/computed_field"
  2566. }
  2567. },
  2568. {
  2569. "name": "drupal/config_devel",
  2570. "version": "1.2.0",
  2571. "source": {
  2572. "type": "git",
  2573. "url": "https://git.drupal.org/project/config_devel",
  2574. "reference": "8.x-1.2"
  2575. },
  2576. "dist": {
  2577. "type": "zip",
  2578. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2579. "reference": "8.x-1.2",
  2580. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2581. },
  2582. "require": {
  2583. "drupal/core": "~8.0"
  2584. },
  2585. "type": "drupal-module",
  2586. "extra": {
  2587. "branch-alias": {
  2588. "dev-1.x": "1.x-dev"
  2589. },
  2590. "drupal": {
  2591. "version": "8.x-1.2",
  2592. "datestamp": "1510843084",
  2593. "security-coverage": {
  2594. "status": "covered",
  2595. "message": "Covered by Drupal's security advisory policy"
  2596. }
  2597. }
  2598. },
  2599. "notification-url": "https://packages.drupal.org/8/downloads",
  2600. "license": [
  2601. "GPL-2.0+"
  2602. ],
  2603. "authors": [
  2604. {
  2605. "name": "alexpott",
  2606. "homepage": "https://www.drupal.org/user/157725"
  2607. },
  2608. {
  2609. "name": "benjy",
  2610. "homepage": "https://www.drupal.org/user/1852732"
  2611. },
  2612. {
  2613. "name": "chx",
  2614. "homepage": "https://www.drupal.org/user/9446"
  2615. },
  2616. {
  2617. "name": "joachim",
  2618. "homepage": "https://www.drupal.org/user/107701"
  2619. },
  2620. {
  2621. "name": "nedjo",
  2622. "homepage": "https://www.drupal.org/user/4481"
  2623. },
  2624. {
  2625. "name": "tim.plunkett",
  2626. "homepage": "https://www.drupal.org/user/241634"
  2627. },
  2628. {
  2629. "name": "vijaycs85",
  2630. "homepage": "https://www.drupal.org/user/93488"
  2631. }
  2632. ],
  2633. "description": "Helps developers work with configuration.",
  2634. "homepage": "https://www.drupal.org/project/config_devel",
  2635. "support": {
  2636. "source": "http://cgit.drupalcode.org/config_devel"
  2637. }
  2638. },
  2639. {
  2640. "name": "drupal/config_filter",
  2641. "version": "1.4.0",
  2642. "source": {
  2643. "type": "git",
  2644. "url": "https://git.drupal.org/project/config_filter",
  2645. "reference": "8.x-1.4"
  2646. },
  2647. "dist": {
  2648. "type": "zip",
  2649. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.4.zip",
  2650. "reference": "8.x-1.4",
  2651. "shasum": "4b2b7f4dfc8358212f9e25f63dcc77cc2c1dcf6c"
  2652. },
  2653. "require": {
  2654. "drupal/core": "~8.0"
  2655. },
  2656. "suggest": {
  2657. "drupal/config_split": "Split site configuration for different environments."
  2658. },
  2659. "type": "drupal-module",
  2660. "extra": {
  2661. "branch-alias": {
  2662. "dev-1.x": "1.x-dev"
  2663. },
  2664. "drupal": {
  2665. "version": "8.x-1.4",
  2666. "datestamp": "1542184982",
  2667. "security-coverage": {
  2668. "status": "covered",
  2669. "message": "Covered by Drupal's security advisory policy"
  2670. }
  2671. }
  2672. },
  2673. "notification-url": "https://packages.drupal.org/8/downloads",
  2674. "license": [
  2675. "GPL-2.0+"
  2676. ],
  2677. "authors": [
  2678. {
  2679. "name": "Fabian Bircher",
  2680. "homepage": "https://www.drupal.org/u/bircher",
  2681. "email": "opensource@fabianbircher.com",
  2682. "role": "Maintainer"
  2683. },
  2684. {
  2685. "name": "Nuvole Web",
  2686. "homepage": "http://nuvole.org",
  2687. "email": "info@nuvole.org",
  2688. "role": "Maintainer"
  2689. },
  2690. {
  2691. "name": "pescetti",
  2692. "homepage": "https://www.drupal.org/user/436244"
  2693. }
  2694. ],
  2695. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2696. "homepage": "https://www.drupal.org/project/config_filter",
  2697. "keywords": [
  2698. "Drupal",
  2699. "configuration",
  2700. "configuration management"
  2701. ],
  2702. "support": {
  2703. "source": "http://cgit.drupalcode.org/config_filter",
  2704. "issues": "https://www.drupal.org/project/issues/config_filter",
  2705. "irc": "irc://irc.freenode.org/drupal-contribute"
  2706. }
  2707. },
  2708. {
  2709. "name": "drupal/config_ignore",
  2710. "version": "2.1.0",
  2711. "source": {
  2712. "type": "git",
  2713. "url": "https://git.drupal.org/project/config_ignore",
  2714. "reference": "8.x-2.1"
  2715. },
  2716. "dist": {
  2717. "type": "zip",
  2718. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2719. "reference": "8.x-2.1",
  2720. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2721. },
  2722. "require": {
  2723. "drupal/config_filter": "1.*",
  2724. "drupal/core": "~8.0"
  2725. },
  2726. "type": "drupal-module",
  2727. "extra": {
  2728. "branch-alias": {
  2729. "dev-2.x": "2.x-dev"
  2730. },
  2731. "drupal": {
  2732. "version": "8.x-2.1",
  2733. "datestamp": "1507706044",
  2734. "security-coverage": {
  2735. "status": "covered",
  2736. "message": "Covered by Drupal's security advisory policy"
  2737. }
  2738. }
  2739. },
  2740. "notification-url": "https://packages.drupal.org/8/downloads",
  2741. "license": [
  2742. "GPL-2.0+"
  2743. ],
  2744. "authors": [
  2745. {
  2746. "name": "Tommy Lynge Jørgensen",
  2747. "homepage": "https://www.drupal.org/u/tlyngej",
  2748. "email": "tlyngej@gmail.com",
  2749. "role": "Maintainer"
  2750. },
  2751. {
  2752. "name": "Fabian Bircher",
  2753. "homepage": "https://www.drupal.org/u/bircher",
  2754. "role": "Maintainer"
  2755. }
  2756. ],
  2757. "description": "Ignore certain configuration during import.",
  2758. "homepage": "http://drupal.org/project/config_ignore",
  2759. "support": {
  2760. "source": "http://cgit.drupalcode.org/config_ignore",
  2761. "issues": "http://drupal.org/project/config_ignore",
  2762. "irc": "irc://irc.freenode.org/drupal-contribute"
  2763. }
  2764. },
  2765. {
  2766. "name": "drupal/config_split",
  2767. "version": "1.4.0",
  2768. "source": {
  2769. "type": "git",
  2770. "url": "https://git.drupal.org/project/config_split",
  2771. "reference": "8.x-1.4"
  2772. },
  2773. "dist": {
  2774. "type": "zip",
  2775. "url": "https://ftp.drupal.org/files/projects/config_split-8.x-1.4.zip",
  2776. "reference": "8.x-1.4",
  2777. "shasum": "938ea6c88834aa88bb310740758e56c1800e535b"
  2778. },
  2779. "require": {
  2780. "drupal/config_filter": "*",
  2781. "drupal/core": "~8.0"
  2782. },
  2783. "type": "drupal-module",
  2784. "extra": {
  2785. "branch-alias": {
  2786. "dev-1.x": "1.x-dev"
  2787. },
  2788. "drupal": {
  2789. "version": "8.x-1.4",
  2790. "datestamp": "1537971780",
  2791. "security-coverage": {
  2792. "status": "covered",
  2793. "message": "Covered by Drupal's security advisory policy"
  2794. }
  2795. },
  2796. "drush": {
  2797. "services": {
  2798. "drush.services.yml": "^9"
  2799. }
  2800. }
  2801. },
  2802. "notification-url": "https://packages.drupal.org/8/downloads",
  2803. "license": [
  2804. "GPL-2.0+"
  2805. ],
  2806. "authors": [
  2807. {
  2808. "name": "Fabian Bircher",
  2809. "homepage": "https://www.drupal.org/u/bircher",
  2810. "email": "opensource@fabianbircher.com",
  2811. "role": "Maintainer"
  2812. },
  2813. {
  2814. "name": "Nuvole Web",
  2815. "homepage": "http://nuvole.org",
  2816. "email": "info@nuvole.org",
  2817. "role": "Maintainer"
  2818. },
  2819. {
  2820. "name": "pescetti",
  2821. "homepage": "https://www.drupal.org/user/436244"
  2822. }
  2823. ],
  2824. "description": "Configuration filter for importing and exporting extra config",
  2825. "homepage": "https://www.drupal.org/project/config_split",
  2826. "keywords": [
  2827. "Drupal",
  2828. "configuration",
  2829. "configuration management"
  2830. ],
  2831. "support": {
  2832. "source": "http://cgit.drupalcode.org/config_split",
  2833. "issues": "https://www.drupal.org/project/issues/config_split",
  2834. "irc": "irc://irc.freenode.org/drupal-contribute"
  2835. }
  2836. },
  2837. {
  2838. "name": "drupal/config_update",
  2839. "version": "1.6.0",
  2840. "source": {
  2841. "type": "git",
  2842. "url": "https://git.drupal.org/project/config_update",
  2843. "reference": "8.x-1.6"
  2844. },
  2845. "dist": {
  2846. "type": "zip",
  2847. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2848. "reference": "8.x-1.6",
  2849. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2850. },
  2851. "require": {
  2852. "drupal/core": "*"
  2853. },
  2854. "type": "drupal-module",
  2855. "extra": {
  2856. "branch-alias": {
  2857. "dev-1.x": "1.x-dev"
  2858. },
  2859. "drupal": {
  2860. "version": "8.x-1.6",
  2861. "datestamp": "1545090480",
  2862. "security-coverage": {
  2863. "status": "covered",
  2864. "message": "Covered by Drupal's security advisory policy"
  2865. }
  2866. }
  2867. },
  2868. "notification-url": "https://packages.drupal.org/8/downloads",
  2869. "license": [
  2870. "GPL-2.0-or-later"
  2871. ],
  2872. "authors": [
  2873. {
  2874. "name": "jhodgdon",
  2875. "homepage": "https://www.drupal.org/user/155601"
  2876. },
  2877. {
  2878. "name": "nedjo",
  2879. "homepage": "https://www.drupal.org/user/4481"
  2880. }
  2881. ],
  2882. "description": "Provides basic revert and update functionality for other modules",
  2883. "homepage": "https://www.drupal.org/project/config_update",
  2884. "support": {
  2885. "source": "http://cgit.drupalcode.org/config_update"
  2886. }
  2887. },
  2888. {
  2889. "name": "drupal/console",
  2890. "version": "1.8.0",
  2891. "source": {
  2892. "type": "git",
  2893. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2894. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  2895. },
  2896. "dist": {
  2897. "type": "zip",
  2898. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2899. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2900. "shasum": ""
  2901. },
  2902. "require": {
  2903. "alchemy/zippy": "0.4.3",
  2904. "composer/installers": "~1.0",
  2905. "doctrine/annotations": "^1.2",
  2906. "doctrine/collections": "^1.3",
  2907. "drupal/console-core": "1.8.0",
  2908. "drupal/console-extend-plugin": "~0",
  2909. "guzzlehttp/guzzle": "~6.1",
  2910. "php": "^5.5.9 || ^7.0",
  2911. "psy/psysh": "0.6.* || ~0.8",
  2912. "symfony/css-selector": "~2.8|~3.0",
  2913. "symfony/dom-crawler": "~2.8|~3.0",
  2914. "symfony/http-foundation": "~2.8|~3.0"
  2915. },
  2916. "suggest": {
  2917. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  2918. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  2919. },
  2920. "bin": [
  2921. "bin/drupal"
  2922. ],
  2923. "type": "library",
  2924. "autoload": {
  2925. "psr-4": {
  2926. "Drupal\\Console\\": "src"
  2927. }
  2928. },
  2929. "notification-url": "https://packagist.org/downloads/",
  2930. "license": [
  2931. "GPL-2.0-or-later"
  2932. ],
  2933. "authors": [
  2934. {
  2935. "name": "David Flores",
  2936. "email": "dmousex@gmail.com",
  2937. "homepage": "http://dmouse.net"
  2938. },
  2939. {
  2940. "name": "Jesus Manuel Olivas",
  2941. "email": "jesus.olivas@gmail.com",
  2942. "homepage": "http://jmolivas.com"
  2943. },
  2944. {
  2945. "name": "Eduardo Garcia",
  2946. "email": "enzo@enzolutions.com",
  2947. "homepage": "http://enzolutions.com/"
  2948. },
  2949. {
  2950. "name": "Omar Aguirre",
  2951. "email": "omersguchigu@gmail.com"
  2952. },
  2953. {
  2954. "name": "Drupal Console Contributors",
  2955. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2956. }
  2957. ],
  2958. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2959. "homepage": "http://drupalconsole.com/",
  2960. "keywords": [
  2961. "console",
  2962. "development",
  2963. "drupal",
  2964. "symfony"
  2965. ],
  2966. "time": "2018-03-21T20:50:16+00:00"
  2967. },
  2968. {
  2969. "name": "drupal/console-core",
  2970. "version": "1.8.0",
  2971. "source": {
  2972. "type": "git",
  2973. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2974. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  2975. },
  2976. "dist": {
  2977. "type": "zip",
  2978. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  2979. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  2980. "shasum": ""
  2981. },
  2982. "require": {
  2983. "dflydev/dot-access-configuration": "^1.0",
  2984. "drupal/console-en": "1.8.0",
  2985. "php": "^5.5.9 || ^7.0",
  2986. "stecman/symfony-console-completion": "~0.7",
  2987. "symfony/config": "~2.8|~3.0",
  2988. "symfony/console": "~2.8|~3.0",
  2989. "symfony/debug": "~2.8|~3.0",
  2990. "symfony/dependency-injection": "~2.8|~3.0",
  2991. "symfony/event-dispatcher": "~2.8|~3.0",
  2992. "symfony/filesystem": "~2.8|~3.0",
  2993. "symfony/finder": "~2.8|~3.0",
  2994. "symfony/process": "~2.8|~3.0",
  2995. "symfony/translation": "~2.8|~3.0",
  2996. "symfony/yaml": "~2.8|~3.0",
  2997. "twig/twig": "^1.23.1",
  2998. "webflo/drupal-finder": "^1.0",
  2999. "webmozart/path-util": "^2.3"
  3000. },
  3001. "type": "library",
  3002. "autoload": {
  3003. "files": [
  3004. "src/functions.php"
  3005. ],
  3006. "psr-4": {
  3007. "Drupal\\Console\\Core\\": "src"
  3008. }
  3009. },
  3010. "notification-url": "https://packagist.org/downloads/",
  3011. "license": [
  3012. "GPL-2.0-or-later"
  3013. ],
  3014. "authors": [
  3015. {
  3016. "name": "David Flores",
  3017. "email": "dmousex@gmail.com",
  3018. "homepage": "http://dmouse.net"
  3019. },
  3020. {
  3021. "name": "Jesus Manuel Olivas",
  3022. "email": "jesus.olivas@gmail.com",
  3023. "homepage": "http://jmolivas.com"
  3024. },
  3025. {
  3026. "name": "Drupal Console Contributors",
  3027. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3028. },
  3029. {
  3030. "name": "Eduardo Garcia",
  3031. "email": "enzo@enzolutions.com",
  3032. "homepage": "http://enzolutions.com/"
  3033. },
  3034. {
  3035. "name": "Omar Aguirre",
  3036. "email": "omersguchigu@gmail.com"
  3037. }
  3038. ],
  3039. "description": "Drupal Console Core",
  3040. "homepage": "http://drupalconsole.com/",
  3041. "keywords": [
  3042. "console",
  3043. "development",
  3044. "drupal",
  3045. "symfony"
  3046. ],
  3047. "time": "2018-03-21T19:33:23+00:00"
  3048. },
  3049. {
  3050. "name": "drupal/console-en",
  3051. "version": "1.8.0",
  3052. "source": {
  3053. "type": "git",
  3054. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3055. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  3056. },
  3057. "dist": {
  3058. "type": "zip",
  3059. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  3060. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  3061. "shasum": ""
  3062. },
  3063. "type": "drupal-console-language",
  3064. "notification-url": "https://packagist.org/downloads/",
  3065. "license": [
  3066. "GPL-2.0-or-later"
  3067. ],
  3068. "authors": [
  3069. {
  3070. "name": "David Flores",
  3071. "email": "dmousex@gmail.com",
  3072. "homepage": "http://dmouse.net"
  3073. },
  3074. {
  3075. "name": "Jesus Manuel Olivas",
  3076. "email": "jesus.olivas@gmail.com",
  3077. "homepage": "http://jmolivas.com"
  3078. },
  3079. {
  3080. "name": "Drupal Console Contributors",
  3081. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3082. },
  3083. {
  3084. "name": "Eduardo Garcia",
  3085. "email": "enzo@enzolutions.com",
  3086. "homepage": "http://enzolutions.com/"
  3087. },
  3088. {
  3089. "name": "Omar Aguirre",
  3090. "email": "omersguchigu@gmail.com"
  3091. }
  3092. ],
  3093. "description": "Drupal Console English Language",
  3094. "homepage": "http://drupalconsole.com/",
  3095. "keywords": [
  3096. "console",
  3097. "development",
  3098. "drupal",
  3099. "symfony"
  3100. ],
  3101. "time": "2018-03-21T19:16:27+00:00"
  3102. },
  3103. {
  3104. "name": "drupal/console-extend-plugin",
  3105. "version": "0.9.2",
  3106. "source": {
  3107. "type": "git",
  3108. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3109. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  3110. },
  3111. "dist": {
  3112. "type": "zip",
  3113. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  3114. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  3115. "shasum": ""
  3116. },
  3117. "require": {
  3118. "composer-plugin-api": "^1.0",
  3119. "symfony/finder": "~2.7|~3.0",
  3120. "symfony/yaml": "~2.7|~3.0"
  3121. },
  3122. "type": "composer-plugin",
  3123. "extra": {
  3124. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3125. },
  3126. "autoload": {
  3127. "psr-4": {
  3128. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3129. }
  3130. },
  3131. "notification-url": "https://packagist.org/downloads/",
  3132. "license": [
  3133. "GPL-2.0+"
  3134. ],
  3135. "authors": [
  3136. {
  3137. "name": "Jesus Manuel Olivas",
  3138. "email": "jesus.olivas@gmail.com"
  3139. }
  3140. ],
  3141. "description": "Drupal Console Extend Plugin",
  3142. "time": "2017-07-28T17:11:54+00:00"
  3143. },
  3144. {
  3145. "name": "drupal/content_lock",
  3146. "version": "1.0.0-alpha8",
  3147. "source": {
  3148. "type": "git",
  3149. "url": "https://git.drupal.org/project/content_lock",
  3150. "reference": "8.x-1.0-alpha8"
  3151. },
  3152. "dist": {
  3153. "type": "zip",
  3154. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-1.0-alpha8.zip",
  3155. "reference": "8.x-1.0-alpha8",
  3156. "shasum": "dbb5986dbfbe325eb869a4ac42b88b266dc089c6"
  3157. },
  3158. "require": {
  3159. "drupal/core": "~8"
  3160. },
  3161. "require-dev": {
  3162. "drupal/conflict": "dev-2.x",
  3163. "drupal/prefetch_cache": "dev-1.x"
  3164. },
  3165. "type": "drupal-module",
  3166. "extra": {
  3167. "branch-alias": {
  3168. "dev-1.x": "1.x-dev"
  3169. },
  3170. "drupal": {
  3171. "version": "8.x-1.0-alpha8",
  3172. "datestamp": "1520356080",
  3173. "security-coverage": {
  3174. "status": "not-covered",
  3175. "message": "Alpha releases are not covered by Drupal security advisories."
  3176. }
  3177. }
  3178. },
  3179. "notification-url": "https://packages.drupal.org/8/downloads",
  3180. "license": [
  3181. "GPL-2.0-or-later"
  3182. ],
  3183. "authors": [
  3184. {
  3185. "name": "Joseph Zhao",
  3186. "homepage": "https://www.drupal.org/user/1987218"
  3187. },
  3188. {
  3189. "name": "chr.fritsch",
  3190. "homepage": "https://www.drupal.org/user/2103716"
  3191. },
  3192. {
  3193. "name": "ergonlogic",
  3194. "homepage": "https://www.drupal.org/user/368613"
  3195. }
  3196. ],
  3197. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3198. "homepage": "https://www.drupal.org/project/content_lock",
  3199. "support": {
  3200. "source": "http://cgit.drupalcode.org/content_lock"
  3201. }
  3202. },
  3203. {
  3204. "name": "drupal/context",
  3205. "version": "4.0.0-beta2",
  3206. "source": {
  3207. "type": "git",
  3208. "url": "https://git.drupal.org/project/context",
  3209. "reference": "8.x-4.0-beta2"
  3210. },
  3211. "dist": {
  3212. "type": "zip",
  3213. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  3214. "reference": "8.x-4.0-beta2",
  3215. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  3216. },
  3217. "require": {
  3218. "drupal/core": "~8.0"
  3219. },
  3220. "type": "drupal-module",
  3221. "extra": {
  3222. "branch-alias": {
  3223. "dev-4.x": "4.x-dev"
  3224. },
  3225. "drupal": {
  3226. "version": "8.x-4.0-beta2",
  3227. "datestamp": "1505378944",
  3228. "security-coverage": {
  3229. "status": "not-covered",
  3230. "message": "Beta releases are not covered by Drupal security advisories."
  3231. }
  3232. }
  3233. },
  3234. "notification-url": "https://packages.drupal.org/8/downloads",
  3235. "license": [
  3236. "MIT"
  3237. ],
  3238. "authors": [
  3239. {
  3240. "name": "Christoffer Palm",
  3241. "homepage": "http://www.oddhill.se/",
  3242. "email": "christoffer.palm@oddhill.se",
  3243. "role": "Developer"
  3244. },
  3245. {
  3246. "name": "Steven Jones",
  3247. "homepage": "https://www.drupal.org/user/99644"
  3248. },
  3249. {
  3250. "name": "alex_b",
  3251. "homepage": "https://www.drupal.org/user/53995"
  3252. },
  3253. {
  3254. "name": "boshtian",
  3255. "homepage": "https://www.drupal.org/user/1773456"
  3256. },
  3257. {
  3258. "name": "colan",
  3259. "homepage": "https://www.drupal.org/user/58704"
  3260. },
  3261. {
  3262. "name": "emanaton",
  3263. "homepage": "https://www.drupal.org/user/120853"
  3264. },
  3265. {
  3266. "name": "febbraro",
  3267. "homepage": "https://www.drupal.org/user/43670"
  3268. },
  3269. {
  3270. "name": "fizk",
  3271. "homepage": "https://www.drupal.org/user/473174"
  3272. },
  3273. {
  3274. "name": "hass",
  3275. "homepage": "https://www.drupal.org/user/85918"
  3276. },
  3277. {
  3278. "name": "hefox",
  3279. "homepage": "https://www.drupal.org/user/426416"
  3280. },
  3281. {
  3282. "name": "hyrcan",
  3283. "homepage": "https://www.drupal.org/user/26618"
  3284. },
  3285. {
  3286. "name": "jmiccolis",
  3287. "homepage": "https://www.drupal.org/user/31731"
  3288. },
  3289. {
  3290. "name": "nedjo",
  3291. "homepage": "https://www.drupal.org/user/4481"
  3292. },
  3293. {
  3294. "name": "tekante",
  3295. "homepage": "https://www.drupal.org/user/640024"
  3296. },
  3297. {
  3298. "name": "yhahn",
  3299. "homepage": "https://www.drupal.org/user/264833"
  3300. }
  3301. ],
  3302. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3303. "homepage": "https://github.com/oddhill/context",
  3304. "keywords": [
  3305. "Drupal",
  3306. "block",
  3307. "conditions",
  3308. "context",
  3309. "visibility"
  3310. ],
  3311. "support": {
  3312. "source": "https://github.com/oddhill/context",
  3313. "issues": "https://github.com/oddhill/context/issues",
  3314. "docs": "https://github.com/oddhill/context"
  3315. }
  3316. },
  3317. {
  3318. "name": "drupal/core",
  3319. "version": "8.6.8",
  3320. "source": {
  3321. "type": "git",
  3322. "url": "https://github.com/drupal/core.git",
  3323. "reference": "0e0ccce552859f6fd3aec6b5754ad0d6ede07227"
  3324. },
  3325. "dist": {
  3326. "type": "zip",
  3327. "url": "https://api.github.com/repos/drupal/core/zipball/0e0ccce552859f6fd3aec6b5754ad0d6ede07227",
  3328. "reference": "0e0ccce552859f6fd3aec6b5754ad0d6ede07227",
  3329. "shasum": ""
  3330. },
  3331. "require": {
  3332. "asm89/stack-cors": "^1.1",
  3333. "composer/semver": "^1.0",
  3334. "doctrine/annotations": "^1.2",
  3335. "doctrine/common": "^2.5",
  3336. "easyrdf/easyrdf": "^0.9",
  3337. "egulias/email-validator": "^1.2",
  3338. "ext-date": "*",
  3339. "ext-dom": "*",
  3340. "ext-filter": "*",
  3341. "ext-gd": "*",
  3342. "ext-hash": "*",
  3343. "ext-json": "*",
  3344. "ext-pcre": "*",
  3345. "ext-pdo": "*",
  3346. "ext-session": "*",
  3347. "ext-simplexml": "*",
  3348. "ext-spl": "*",
  3349. "ext-tokenizer": "*",
  3350. "ext-xml": "*",
  3351. "guzzlehttp/guzzle": "^6.2.1",
  3352. "masterminds/html5": "^2.1",
  3353. "paragonie/random_compat": "^1.0|^2.0",
  3354. "php": "^5.5.9|>=7.0.8",
  3355. "stack/builder": "^1.0",
  3356. "symfony-cmf/routing": "^1.4",
  3357. "symfony/class-loader": "~3.4.0",
  3358. "symfony/console": "~3.4.0",
  3359. "symfony/dependency-injection": "~3.4.0",
  3360. "symfony/event-dispatcher": "~3.4.0",
  3361. "symfony/http-foundation": "~3.4.14",
  3362. "symfony/http-kernel": "~3.4.14",
  3363. "symfony/polyfill-iconv": "^1.0",
  3364. "symfony/process": "~3.4.0",
  3365. "symfony/psr-http-message-bridge": "^1.0",
  3366. "symfony/routing": "~3.4.0",
  3367. "symfony/serializer": "~3.4.0",
  3368. "symfony/translation": "~3.4.0",
  3369. "symfony/validator": "~3.4.0",
  3370. "symfony/yaml": "~3.4.5",
  3371. "twig/twig": "^1.35.0",
  3372. "typo3/phar-stream-wrapper": "^2.0.1",
  3373. "zendframework/zend-diactoros": "^1.1",
  3374. "zendframework/zend-feed": "^2.4"
  3375. },
  3376. "conflict": {
  3377. "drush/drush": "<8.1.10"
  3378. },
  3379. "replace": {
  3380. "drupal/action": "self.version",
  3381. "drupal/aggregator": "self.version",
  3382. "drupal/automated_cron": "self.version",
  3383. "drupal/ban": "self.version",
  3384. "drupal/bartik": "self.version",
  3385. "drupal/basic_auth": "self.version",
  3386. "drupal/big_pipe": "self.version",
  3387. "drupal/block": "self.version",
  3388. "drupal/block_content": "self.version",
  3389. "drupal/block_place": "self.version",
  3390. "drupal/book": "self.version",
  3391. "drupal/breakpoint": "self.version",
  3392. "drupal/ckeditor": "self.version",
  3393. "drupal/classy": "self.version",
  3394. "drupal/color": "self.version",
  3395. "drupal/comment": "self.version",
  3396. "drupal/config": "self.version",
  3397. "drupal/config_translation": "self.version",
  3398. "drupal/contact": "self.version",
  3399. "drupal/content_moderation": "self.version",
  3400. "drupal/content_translation": "self.version",
  3401. "drupal/contextual": "self.version",
  3402. "drupal/core-annotation": "self.version",
  3403. "drupal/core-assertion": "self.version",
  3404. "drupal/core-bridge": "self.version",
  3405. "drupal/core-class-finder": "self.version",
  3406. "drupal/core-datetime": "self.version",
  3407. "drupal/core-dependency-injection": "self.version",
  3408. "drupal/core-diff": "self.version",
  3409. "drupal/core-discovery": "self.version",
  3410. "drupal/core-event-dispatcher": "self.version",
  3411. "drupal/core-file-cache": "self.version",
  3412. "drupal/core-filesystem": "self.version",
  3413. "drupal/core-gettext": "self.version",
  3414. "drupal/core-graph": "self.version",
  3415. "drupal/core-http-foundation": "self.version",
  3416. "drupal/core-php-storage": "self.version",
  3417. "drupal/core-plugin": "self.version",
  3418. "drupal/core-proxy-builder": "self.version",
  3419. "drupal/core-render": "self.version",
  3420. "drupal/core-serialization": "self.version",
  3421. "drupal/core-transliteration": "self.version",
  3422. "drupal/core-utility": "self.version",
  3423. "drupal/core-uuid": "self.version",
  3424. "drupal/datetime": "self.version",
  3425. "drupal/datetime_range": "self.version",
  3426. "drupal/dblog": "self.version",
  3427. "drupal/dynamic_page_cache": "self.version",
  3428. "drupal/editor": "self.version",
  3429. "drupal/entity_reference": "self.version",
  3430. "drupal/field": "self.version",
  3431. "drupal/field_layout": "self.version",
  3432. "drupal/field_ui": "self.version",
  3433. "drupal/file": "self.version",
  3434. "drupal/filter": "self.version",
  3435. "drupal/forum": "self.version",
  3436. "drupal/hal": "self.version",
  3437. "drupal/help": "self.version",
  3438. "drupal/history": "self.version",
  3439. "drupal/image": "self.version",
  3440. "drupal/inline_form_errors": "self.version",
  3441. "drupal/language": "self.version",
  3442. "drupal/layout_builder": "self.version",
  3443. "drupal/layout_discovery": "self.version",
  3444. "drupal/link": "self.version",
  3445. "drupal/locale": "self.version",
  3446. "drupal/media": "self.version",
  3447. "drupal/media_library": "self.version",
  3448. "drupal/menu_link_content": "self.version",
  3449. "drupal/menu_ui": "self.version",
  3450. "drupal/migrate": "self.version",
  3451. "drupal/migrate_drupal": "self.version",
  3452. "drupal/migrate_drupal_multilingual": "self.version",
  3453. "drupal/migrate_drupal_ui": "self.version",
  3454. "drupal/minimal": "self.version",
  3455. "drupal/node": "self.version",
  3456. "drupal/options": "self.version",
  3457. "drupal/page_cache": "self.version",
  3458. "drupal/path": "self.version",
  3459. "drupal/quickedit": "self.version",
  3460. "drupal/rdf": "self.version",
  3461. "drupal/responsive_image": "self.version",
  3462. "drupal/rest": "self.version",
  3463. "drupal/search": "self.version",
  3464. "drupal/serialization": "self.version",
  3465. "drupal/settings_tray": "self.version",
  3466. "drupal/seven": "self.version",
  3467. "drupal/shortcut": "self.version",
  3468. "drupal/simpletest": "self.version",
  3469. "drupal/standard": "self.version",
  3470. "drupal/stark": "self.version",
  3471. "drupal/statistics": "self.version",
  3472. "drupal/syslog": "self.version",
  3473. "drupal/system": "self.version",
  3474. "drupal/taxonomy": "self.version",
  3475. "drupal/telephone": "self.version",
  3476. "drupal/text": "self.version",
  3477. "drupal/toolbar": "self.version",
  3478. "drupal/tour": "self.version",
  3479. "drupal/tracker": "self.version",
  3480. "drupal/update": "self.version",
  3481. "drupal/user": "self.version",
  3482. "drupal/views": "self.version",
  3483. "drupal/views_ui": "self.version",
  3484. "drupal/workflows": "self.version",
  3485. "drupal/workspaces": "self.version"
  3486. },
  3487. "require-dev": {
  3488. "behat/mink": "1.7.x-dev",
  3489. "behat/mink-goutte-driver": "^1.2",
  3490. "behat/mink-selenium2-driver": "1.3.x-dev",
  3491. "drupal/coder": "^8.2.12",
  3492. "jcalderonzumba/gastonjs": "^1.0.2",
  3493. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3494. "mikey179/vfsstream": "^1.2",
  3495. "phpspec/prophecy": "^1.7",
  3496. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3497. "symfony/css-selector": "^3.4.0",
  3498. "symfony/debug": "^3.4.0",
  3499. "symfony/phpunit-bridge": "^3.4.3"
  3500. },
  3501. "type": "drupal-core",
  3502. "extra": {
  3503. "merge-plugin": {
  3504. "require": [
  3505. "core/lib/Drupal/Component/Annotation/composer.json",
  3506. "core/lib/Drupal/Component/Assertion/composer.json",
  3507. "core/lib/Drupal/Component/Bridge/composer.json",
  3508. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3509. "core/lib/Drupal/Component/Datetime/composer.json",
  3510. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3511. "core/lib/Drupal/Component/Diff/composer.json",
  3512. "core/lib/Drupal/Component/Discovery/composer.json",
  3513. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3514. "core/lib/Drupal/Component/FileCache/composer.json",
  3515. "core/lib/Drupal/Component/FileSystem/composer.json",
  3516. "core/lib/Drupal/Component/Gettext/composer.json",
  3517. "core/lib/Drupal/Component/Graph/composer.json",
  3518. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3519. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3520. "core/lib/Drupal/Component/Plugin/composer.json",
  3521. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3522. "core/lib/Drupal/Component/Render/composer.json",
  3523. "core/lib/Drupal/Component/Serialization/composer.json",
  3524. "core/lib/Drupal/Component/Transliteration/composer.json",
  3525. "core/lib/Drupal/Component/Utility/composer.json",
  3526. "core/lib/Drupal/Component/Uuid/composer.json"
  3527. ],
  3528. "recurse": false,
  3529. "replace": false,
  3530. "merge-extra": false
  3531. },
  3532. "patches_applied": {
  3533. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  3534. }
  3535. },
  3536. "autoload": {
  3537. "psr-4": {
  3538. "Drupal\\Core\\": "lib/Drupal/Core",
  3539. "Drupal\\Component\\": "lib/Drupal/Component",
  3540. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3541. },
  3542. "classmap": [
  3543. "lib/Drupal.php",
  3544. "lib/Drupal/Component/Utility/Timer.php",
  3545. "lib/Drupal/Component/Utility/Unicode.php",
  3546. "lib/Drupal/Core/Database/Database.php",
  3547. "lib/Drupal/Core/DrupalKernel.php",
  3548. "lib/Drupal/Core/DrupalKernelInterface.php",
  3549. "lib/Drupal/Core/Site/Settings.php"
  3550. ]
  3551. },
  3552. "notification-url": "https://packagist.org/downloads/",
  3553. "license": [
  3554. "GPL-2.0-or-later"
  3555. ],
  3556. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3557. "time": "2019-02-06T15:13:52+00:00"
  3558. },
  3559. {
  3560. "name": "drupal/cshs",
  3561. "version": "dev-1.x",
  3562. "source": {
  3563. "type": "git",
  3564. "url": "https://git.drupal.org/project/cshs",
  3565. "reference": "c4a2deff253e24c83b14f960ce9dce49fa115f60"
  3566. },
  3567. "require": {
  3568. "drupal/core": "*"
  3569. },
  3570. "type": "drupal-module",
  3571. "extra": {
  3572. "branch-alias": {
  3573. "dev-1.x": "1.x-dev"
  3574. },
  3575. "drupal": {
  3576. "version": "8.x-1.0-beta4+4-dev",
  3577. "datestamp": "1512800285",
  3578. "security-coverage": {
  3579. "status": "not-covered",
  3580. "message": "Dev releases are not covered by Drupal security advisories."
  3581. }
  3582. }
  3583. },
  3584. "notification-url": "https://packages.drupal.org/8/downloads",
  3585. "license": [
  3586. "GPL-2.0-or-later"
  3587. ],
  3588. "authors": [
  3589. {
  3590. "name": "BR0kEN",
  3591. "homepage": "https://www.drupal.org/user/2802285"
  3592. },
  3593. {
  3594. "name": "purushotam.rai",
  3595. "homepage": "https://www.drupal.org/user/3193859"
  3596. },
  3597. {
  3598. "name": "valderama",
  3599. "homepage": "https://www.drupal.org/user/103634"
  3600. }
  3601. ],
  3602. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3603. "homepage": "https://www.drupal.org/project/cshs",
  3604. "support": {
  3605. "source": "http://cgit.drupalcode.org/cshs"
  3606. },
  3607. "time": "2018-06-24T13:39:17+00:00"
  3608. },
  3609. {
  3610. "name": "drupal/ctools",
  3611. "version": "3.0.0",
  3612. "source": {
  3613. "type": "git",
  3614. "url": "https://git.drupal.org/project/ctools",
  3615. "reference": "8.x-3.0"
  3616. },
  3617. "dist": {
  3618. "type": "zip",
  3619. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.0.zip",
  3620. "reference": "8.x-3.0",
  3621. "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
  3622. },
  3623. "require": {
  3624. "drupal/core": "~8.0"
  3625. },
  3626. "type": "drupal-module",
  3627. "extra": {
  3628. "branch-alias": {
  3629. "dev-3.x": "3.x-dev"
  3630. },
  3631. "drupal": {
  3632. "version": "8.x-3.0",
  3633. "datestamp": "1493401742",
  3634. "security-coverage": {
  3635. "status": "covered",
  3636. "message": "Covered by Drupal's security advisory policy"
  3637. }
  3638. }
  3639. },
  3640. "notification-url": "https://packages.drupal.org/8/downloads",
  3641. "license": [
  3642. "GPL-2.0+"
  3643. ],
  3644. "authors": [
  3645. {
  3646. "name": "Kris Vanderwater (EclipseGc)",
  3647. "homepage": "https://www.drupal.org/u/eclipsegc",
  3648. "role": "Maintainer"
  3649. },
  3650. {
  3651. "name": "Jakob Perry (japerry)",
  3652. "homepage": "https://www.drupal.org/u/japerry",
  3653. "role": "Maintainer"
  3654. },
  3655. {
  3656. "name": "Tim Plunkett (tim.plunkett)",
  3657. "homepage": "https://www.drupal.org/u/timplunkett",
  3658. "role": "Maintainer"
  3659. },
  3660. {
  3661. "name": "James Gilliland (neclimdul)",
  3662. "homepage": "https://www.drupal.org/u/neclimdul",
  3663. "role": "Maintainer"
  3664. },
  3665. {
  3666. "name": "Daniel Wehner (dawehner)",
  3667. "homepage": "https://www.drupal.org/u/dawehner",
  3668. "role": "Maintainer"
  3669. },
  3670. {
  3671. "name": "joelpittet",
  3672. "homepage": "https://www.drupal.org/user/160302"
  3673. },
  3674. {
  3675. "name": "merlinofchaos",
  3676. "homepage": "https://www.drupal.org/user/26979"
  3677. },
  3678. {
  3679. "name": "neclimdul",
  3680. "homepage": "https://www.drupal.org/user/48673"
  3681. },
  3682. {
  3683. "name": "sdboyer",
  3684. "homepage": "https://www.drupal.org/user/146719"
  3685. },
  3686. {
  3687. "name": "sun",
  3688. "homepage": "https://www.drupal.org/user/54136"
  3689. },
  3690. {
  3691. "name": "tim.plunkett",
  3692. "homepage": "https://www.drupal.org/user/241634"
  3693. }
  3694. ],
  3695. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3696. "homepage": "https://www.drupal.org/project/ctools",
  3697. "support": {
  3698. "source": "http://cgit.drupalcode.org/ctools",
  3699. "issues": "https://www.drupal.org/project/issues/ctools"
  3700. }
  3701. },
  3702. {
  3703. "name": "drupal/date_range_formatter",
  3704. "version": "3.1.0",
  3705. "source": {
  3706. "type": "git",
  3707. "url": "https://git.drupal.org/project/date_range_formatter",
  3708. "reference": "8.x-3.1"
  3709. },
  3710. "dist": {
  3711. "type": "zip",
  3712. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3713. "reference": "8.x-3.1",
  3714. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3715. },
  3716. "require": {
  3717. "drupal/core": "*"
  3718. },
  3719. "type": "drupal-module",
  3720. "extra": {
  3721. "branch-alias": {
  3722. "dev-3.x": "3.x-dev"
  3723. },
  3724. "drupal": {
  3725. "version": "8.x-3.1",
  3726. "datestamp": "1502454544",
  3727. "security-coverage": {
  3728. "status": "covered",
  3729. "message": "Covered by Drupal's security advisory policy"
  3730. }
  3731. }
  3732. },
  3733. "notification-url": "https://packages.drupal.org/8/downloads",
  3734. "license": [
  3735. "GPL-2.0-or-later"
  3736. ],
  3737. "authors": [
  3738. {
  3739. "name": "Sudishth",
  3740. "homepage": "https://www.drupal.org/user/1440562"
  3741. },
  3742. {
  3743. "name": "maximpodorov",
  3744. "homepage": "https://www.drupal.org/user/515310"
  3745. }
  3746. ],
  3747. "description": "Formats date ranges.",
  3748. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3749. "support": {
  3750. "source": "http://cgit.drupalcode.org/date_range_formatter"
  3751. }
  3752. },
  3753. {
  3754. "name": "drupal/devel",
  3755. "version": "1.2.0",
  3756. "source": {
  3757. "type": "git",
  3758. "url": "https://git.drupal.org/project/devel",
  3759. "reference": "8.x-1.2"
  3760. },
  3761. "dist": {
  3762. "type": "zip",
  3763. "url": "https://ftp.drupal.org/files/projects/devel-8.x-1.2.zip",
  3764. "reference": "8.x-1.2",
  3765. "shasum": "01f3349ef75f6e21fceef24be9d3d6506ca29647"
  3766. },
  3767. "require": {
  3768. "drupal/core": "~8.0"
  3769. },
  3770. "suggest": {
  3771. "symfony/var-dumper": "Pretty print complex values better with var-dumper available"
  3772. },
  3773. "type": "drupal-module",
  3774. "extra": {
  3775. "branch-alias": {
  3776. "dev-1.x": "1.x-dev"
  3777. },
  3778. "drupal": {
  3779. "version": "8.x-1.2",
  3780. "datestamp": "1507197844",
  3781. "security-coverage": {
  3782. "status": "covered",
  3783. "message": "Covered by Drupal's security advisory policy"
  3784. }
  3785. }
  3786. },
  3787. "notification-url": "https://packages.drupal.org/8/downloads",
  3788. "license": [
  3789. "GPL-2.0+"
  3790. ],
  3791. "authors": [
  3792. {
  3793. "name": "Moshe Weitzman",
  3794. "homepage": "https://github.com/weitzman",
  3795. "email": "weitzman@tejasa.com",
  3796. "role": "Maintainer"
  3797. },
  3798. {
  3799. "name": "Hans Salvisberg",
  3800. "homepage": "https://www.drupal.org/u/salvis",
  3801. "email": "drupal@salvisberg.com",
  3802. "role": "Maintainer"
  3803. },
  3804. {
  3805. "name": "Luca Lusso",
  3806. "homepage": "https://www.drupal.org/u/lussoluca",
  3807. "role": "Maintainer"
  3808. },
  3809. {
  3810. "name": "Marco (willzyx)",
  3811. "homepage": "https://www.drupal.org/u/willzyx",
  3812. "role": "Maintainer"
  3813. },
  3814. {
  3815. "name": "See contributors",
  3816. "homepage": "https://www.drupal.org/node/3236/committers"
  3817. },
  3818. {
  3819. "name": "salvis",
  3820. "homepage": "https://www.drupal.org/user/82964"
  3821. },
  3822. {
  3823. "name": "willzyx",
  3824. "homepage": "https://www.drupal.org/user/1043862"
  3825. }
  3826. ],
  3827. "description": "Various blocks, pages, and functions for developers.",
  3828. "homepage": "http://drupal.org/project/devel",
  3829. "support": {
  3830. "source": "http://cgit.drupalcode.org/devel",
  3831. "issues": "http://drupal.org/project/devel",
  3832. "irc": "irc://irc.freenode.org/drupal-contribute"
  3833. }
  3834. },
  3835. {
  3836. "name": "drupal/devel_generate",
  3837. "version": "1.2.0",
  3838. "require": {
  3839. "drupal/core": "~8.0",
  3840. "drupal/devel": "self.version"
  3841. },
  3842. "type": "metapackage",
  3843. "extra": {
  3844. "branch-alias": {
  3845. "dev-1.x": "1.x-dev"
  3846. },
  3847. "drupal": {
  3848. "version": "8.x-1.2",
  3849. "datestamp": "1507197844",
  3850. "security-coverage": {
  3851. "status": "covered",
  3852. "message": "Covered by Drupal's security advisory policy"
  3853. }
  3854. }
  3855. },
  3856. "notification-url": "https://packages.drupal.org/8/downloads",
  3857. "license": [
  3858. "GPL-2.0-or-later"
  3859. ],
  3860. "authors": [
  3861. {
  3862. "name": "catch",
  3863. "homepage": "https://www.drupal.org/user/35733"
  3864. },
  3865. {
  3866. "name": "juampynr",
  3867. "homepage": "https://www.drupal.org/user/682736"
  3868. },
  3869. {
  3870. "name": "lussoluca",
  3871. "homepage": "https://www.drupal.org/user/138068"
  3872. },
  3873. {
  3874. "name": "moshe weitzman",
  3875. "homepage": "https://www.drupal.org/user/23"
  3876. },
  3877. {
  3878. "name": "pcambra",
  3879. "homepage": "https://www.drupal.org/user/122101"
  3880. },
  3881. {
  3882. "name": "salvis",
  3883. "homepage": "https://www.drupal.org/user/82964"
  3884. },
  3885. {
  3886. "name": "willzyx",
  3887. "homepage": "https://www.drupal.org/user/1043862"
  3888. }
  3889. ],
  3890. "description": "Generate dummy users, nodes, menus, taxonomy terms...",
  3891. "homepage": "https://www.drupal.org/project/devel",
  3892. "support": {
  3893. "source": "http://cgit.drupalcode.org/devel"
  3894. }
  3895. },
  3896. {
  3897. "name": "drupal/domain",
  3898. "version": "dev-1.x",
  3899. "source": {
  3900. "type": "git",
  3901. "url": "https://git.drupal.org/project/domain",
  3902. "reference": "0fed3e661813b1c254a7bd9448e773f5f1a1276a"
  3903. },
  3904. "require": {
  3905. "drupal/core": "^8.5"
  3906. },
  3907. "require-dev": {
  3908. "drupal/domain_access": "*"
  3909. },
  3910. "type": "drupal-module",
  3911. "extra": {
  3912. "branch-alias": {
  3913. "dev-1.x": "1.x-dev"
  3914. },
  3915. "drupal": {
  3916. "version": "8.x-1.0-alpha14+77-dev",
  3917. "datestamp": "1546629180",
  3918. "security-coverage": {
  3919. "status": "not-covered",
  3920. "message": "Dev releases are not covered by Drupal security advisories."
  3921. }
  3922. }
  3923. },
  3924. "notification-url": "https://packages.drupal.org/8/downloads",
  3925. "license": [
  3926. "GPL-2.0-or-later"
  3927. ],
  3928. "authors": [
  3929. {
  3930. "name": "agentrickard",
  3931. "homepage": "https://www.drupal.org/user/20975"
  3932. },
  3933. {
  3934. "name": "nonsie",
  3935. "homepage": "https://www.drupal.org/user/29899"
  3936. }
  3937. ],
  3938. "description": "Creates domain records within a Drupal installation.",
  3939. "homepage": "https://www.drupal.org/project/domain",
  3940. "support": {
  3941. "source": "http://cgit.drupalcode.org/domain"
  3942. },
  3943. "time": "2019-02-05T19:47:44+00:00"
  3944. },
  3945. {
  3946. "name": "drupal/domain_alias",
  3947. "version": "dev-1.x",
  3948. "require": {
  3949. "drupal/core": "~8.0",
  3950. "drupal/domain": "self.version"
  3951. },
  3952. "type": "metapackage",
  3953. "extra": {
  3954. "branch-alias": {
  3955. "dev-1.x": "1.x-dev"
  3956. },
  3957. "drupal": {
  3958. "version": "8.x-1.0-alpha14+23-dev",
  3959. "datestamp": "1543354380",
  3960. "security-coverage": {
  3961. "status": "not-covered",
  3962. "message": "Dev releases are not covered by Drupal security advisories."
  3963. }
  3964. }
  3965. },
  3966. "notification-url": "https://packages.drupal.org/8/downloads",
  3967. "license": [
  3968. "GPL-2.0-or-later"
  3969. ],
  3970. "authors": [
  3971. {
  3972. "name": "agentrickard",
  3973. "homepage": "https://www.drupal.org/user/20975"
  3974. },
  3975. {
  3976. "name": "nonsie",
  3977. "homepage": "https://www.drupal.org/user/29899"
  3978. }
  3979. ],
  3980. "description": "Maps multiple host requests to a single domain record.",
  3981. "homepage": "https://www.drupal.org/project/domain",
  3982. "support": {
  3983. "source": "http://cgit.drupalcode.org/domain"
  3984. }
  3985. },
  3986. {
  3987. "name": "drupal/domain_config",
  3988. "version": "dev-1.x",
  3989. "require": {
  3990. "drupal/core": "~8.0",
  3991. "drupal/domain": "self.version"
  3992. },
  3993. "type": "metapackage",
  3994. "extra": {
  3995. "branch-alias": {
  3996. "dev-1.x": "1.x-dev"
  3997. },
  3998. "drupal": {
  3999. "version": "8.x-1.0-alpha14+23-dev",
  4000. "datestamp": "1543354380",
  4001. "security-coverage": {
  4002. "status": "not-covered",
  4003. "message": "Dev releases are not covered by Drupal security advisories."
  4004. }
  4005. }
  4006. },
  4007. "notification-url": "https://packages.drupal.org/8/downloads",
  4008. "license": [
  4009. "GPL-2.0-or-later"
  4010. ],
  4011. "authors": [
  4012. {
  4013. "name": "agentrickard",
  4014. "homepage": "https://www.drupal.org/user/20975"
  4015. },
  4016. {
  4017. "name": "nonsie",
  4018. "homepage": "https://www.drupal.org/user/29899"
  4019. }
  4020. ],
  4021. "description": "Allows domain specific configuration.",
  4022. "homepage": "https://www.drupal.org/project/domain",
  4023. "support": {
  4024. "source": "http://cgit.drupalcode.org/domain"
  4025. }
  4026. },
  4027. {
  4028. "name": "drupal/domain_site_settings",
  4029. "version": "1.3.0",
  4030. "source": {
  4031. "type": "git",
  4032. "url": "https://git.drupal.org/project/domain_site_settings",
  4033. "reference": "8.x-1.3"
  4034. },
  4035. "dist": {
  4036. "type": "zip",
  4037. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  4038. "reference": "8.x-1.3",
  4039. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  4040. },
  4041. "require": {
  4042. "drupal/core": "~8.0",
  4043. "drupal/domain": "*",
  4044. "drupal/domain_config": "*"
  4045. },
  4046. "type": "drupal-module",
  4047. "extra": {
  4048. "branch-alias": {
  4049. "dev-1.x": "1.x-dev"
  4050. },
  4051. "drupal": {
  4052. "version": "8.x-1.3",
  4053. "datestamp": "1537684980",
  4054. "security-coverage": {
  4055. "status": "covered",
  4056. "message": "Covered by Drupal's security advisory policy"
  4057. }
  4058. }
  4059. },
  4060. "notification-url": "https://packages.drupal.org/8/downloads",
  4061. "license": [
  4062. "GPL-2.0+"
  4063. ],
  4064. "authors": [
  4065. {
  4066. "name": "aloknarwaria",
  4067. "homepage": "https://www.drupal.org/user/906640"
  4068. }
  4069. ],
  4070. "description": "Basic Site Setting for Domains.",
  4071. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4072. "keywords": [
  4073. "Drupal"
  4074. ],
  4075. "support": {
  4076. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4077. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4078. }
  4079. },
  4080. {
  4081. "name": "drupal/email_registration",
  4082. "version": "1.0.0-rc6",
  4083. "source": {
  4084. "type": "git",
  4085. "url": "https://git.drupal.org/project/email_registration",
  4086. "reference": "8.x-1.0-rc6"
  4087. },
  4088. "dist": {
  4089. "type": "zip",
  4090. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc6.zip",
  4091. "reference": "8.x-1.0-rc6",
  4092. "shasum": "b004bc24b79faaa9e8b2fe59a04eaab02f44c363"
  4093. },
  4094. "require": {
  4095. "drupal/core": "*"
  4096. },
  4097. "type": "drupal-module",
  4098. "extra": {
  4099. "branch-alias": {
  4100. "dev-1.x": "1.x-dev"
  4101. },
  4102. "drupal": {
  4103. "version": "8.x-1.0-rc6",
  4104. "datestamp": "1545350880",
  4105. "security-coverage": {
  4106. "status": "not-covered",
  4107. "message": "RC releases are not covered by Drupal security advisories."
  4108. }
  4109. }
  4110. },
  4111. "notification-url": "https://packages.drupal.org/8/downloads",
  4112. "license": [
  4113. "GPL-2.0+"
  4114. ],
  4115. "authors": [
  4116. {
  4117. "name": "Greg Knaddison (greggles)",
  4118. "homepage": "https://www.drupal.org/u/greggles",
  4119. "role": "Maintainer"
  4120. },
  4121. {
  4122. "name": "Andrey Postnikov (andypost)",
  4123. "homepage": "https://www.drupal.org/u/andypost",
  4124. "role": "Maintainer"
  4125. },
  4126. {
  4127. "name": "Chris Herberte",
  4128. "homepage": "https://www.drupal.org/u/chris-herberte",
  4129. "role": "Maintainer"
  4130. },
  4131. {
  4132. "name": "Moshe Weitzman (moshe weitzman)",
  4133. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4134. "role": "Maintainer"
  4135. }
  4136. ],
  4137. "description": "Allows users to register with an email address as their username.",
  4138. "homepage": "https://www.drupal.org/project/email_registration",
  4139. "support": {
  4140. "source": "http://cgit.drupalcode.org/email_registration",
  4141. "issues": "http://drupal.org/project/issues/email_registration"
  4142. }
  4143. },
  4144. {
  4145. "name": "drupal/embed",
  4146. "version": "1.0.0",
  4147. "source": {
  4148. "type": "git",
  4149. "url": "https://git.drupal.org/project/embed",
  4150. "reference": "8.x-1.0"
  4151. },
  4152. "dist": {
  4153. "type": "zip",
  4154. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip",
  4155. "reference": "8.x-1.0",
  4156. "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a"
  4157. },
  4158. "require": {
  4159. "drupal/core": "~8.0"
  4160. },
  4161. "type": "drupal-module",
  4162. "extra": {
  4163. "branch-alias": {
  4164. "dev-1.x": "1.x-dev"
  4165. },
  4166. "drupal": {
  4167. "version": "8.x-1.0",
  4168. "datestamp": "1490755685",
  4169. "security-coverage": {
  4170. "status": "covered",
  4171. "message": "Covered by Drupal's security advisory policy"
  4172. }
  4173. }
  4174. },
  4175. "notification-url": "https://packages.drupal.org/8/downloads",
  4176. "license": [
  4177. "GPL-2.0+"
  4178. ],
  4179. "authors": [
  4180. {
  4181. "name": "Dave Reid",
  4182. "homepage": "https://www.drupal.org/user/53892"
  4183. },
  4184. {
  4185. "name": "Devin Carlson",
  4186. "homepage": "https://www.drupal.org/user/290182"
  4187. },
  4188. {
  4189. "name": "Drupal Media Team",
  4190. "homepage": "https://www.drupal.org/user/3260690"
  4191. },
  4192. {
  4193. "name": "cs_shadow",
  4194. "homepage": "https://www.drupal.org/user/2828287"
  4195. },
  4196. {
  4197. "name": "slashrsm",
  4198. "homepage": "https://www.drupal.org/user/744628"
  4199. }
  4200. ],
  4201. "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.",
  4202. "homepage": "https://www.drupal.org/project/embed",
  4203. "support": {
  4204. "source": "http://cgit.drupalcode.org/embed",
  4205. "issues": "https://www.drupal.org/project/issues/embed",
  4206. "irc": "irc://irc.freenode.org/drupal-media"
  4207. }
  4208. },
  4209. {
  4210. "name": "drupal/entity",
  4211. "version": "1.0.0-rc1",
  4212. "source": {
  4213. "type": "git",
  4214. "url": "https://git.drupal.org/project/entity",
  4215. "reference": "8.x-1.0-rc1"
  4216. },
  4217. "dist": {
  4218. "type": "zip",
  4219. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc1.zip",
  4220. "reference": "8.x-1.0-rc1",
  4221. "shasum": "f2dcd7afd0d36b6f261b10a204057a5c801ad20b"
  4222. },
  4223. "require": {
  4224. "drupal/core": "^8.6"
  4225. },
  4226. "type": "drupal-module",
  4227. "extra": {
  4228. "branch-alias": {
  4229. "dev-1.x": "1.x-dev"
  4230. },
  4231. "drupal": {
  4232. "version": "8.x-1.0-rc1",
  4233. "datestamp": "1539272769",
  4234. "security-coverage": {
  4235. "status": "not-covered",
  4236. "message": "RC releases are not covered by Drupal security advisories."
  4237. }
  4238. }
  4239. },
  4240. "notification-url": "https://packages.drupal.org/8/downloads",
  4241. "license": [
  4242. "GPL-2.0+"
  4243. ],
  4244. "authors": [
  4245. {
  4246. "name": "Berdir",
  4247. "homepage": "https://www.drupal.org/user/214652"
  4248. },
  4249. {
  4250. "name": "bojanz",
  4251. "homepage": "https://www.drupal.org/user/86106"
  4252. },
  4253. {
  4254. "name": "dawehner",
  4255. "homepage": "https://www.drupal.org/user/99340"
  4256. },
  4257. {
  4258. "name": "dixon_",
  4259. "homepage": "https://www.drupal.org/user/239911"
  4260. },
  4261. {
  4262. "name": "fago",
  4263. "homepage": "https://www.drupal.org/user/16747"
  4264. }
  4265. ],
  4266. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4267. "homepage": "http://drupal.org/project/entity",
  4268. "support": {
  4269. "source": "http://cgit.drupalcode.org/entity"
  4270. }
  4271. },
  4272. {
  4273. "name": "drupal/entity_browser",
  4274. "version": "2.0.0",
  4275. "source": {
  4276. "type": "git",
  4277. "url": "https://git.drupal.org/project/entity_browser",
  4278. "reference": "8.x-2.0"
  4279. },
  4280. "dist": {
  4281. "type": "zip",
  4282. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0.zip",
  4283. "reference": "8.x-2.0",
  4284. "shasum": "683a7a252c947433c7b78bb838d6d8973c13cf77"
  4285. },
  4286. "require": {
  4287. "drupal/core": "~8.0"
  4288. },
  4289. "require-dev": {
  4290. "drupal/ctools": "*",
  4291. "drupal/inline_entity_form": "*",
  4292. "drupal/paragraphs": "*",
  4293. "drupal/token": "*"
  4294. },
  4295. "type": "drupal-module",
  4296. "extra": {
  4297. "branch-alias": {
  4298. "dev-2.x": "2.x-dev",
  4299. "dev-8.x-1.x": "8.1.x-dev"
  4300. },
  4301. "drupal": {
  4302. "version": "8.x-2.0",
  4303. "datestamp": "1536328684",
  4304. "security-coverage": {
  4305. "status": "covered",
  4306. "message": "Covered by Drupal's security advisory policy"
  4307. }
  4308. }
  4309. },
  4310. "notification-url": "https://packages.drupal.org/8/downloads",
  4311. "license": [
  4312. "GPL-2.0+"
  4313. ],
  4314. "authors": [
  4315. {
  4316. "name": "Janez Urevc",
  4317. "homepage": "https://github.com/slashrsm",
  4318. "role": "Maintainer"
  4319. },
  4320. {
  4321. "name": "Primoz Hmeljak",
  4322. "homepage": "https://github.com/primsi",
  4323. "role": "Maintainer"
  4324. },
  4325. {
  4326. "name": "See other contributors",
  4327. "homepage": "https://www.drupal.org/node/1943336/committers",
  4328. "role": "contributor"
  4329. },
  4330. {
  4331. "name": "Primsi",
  4332. "homepage": "https://www.drupal.org/user/282629"
  4333. },
  4334. {
  4335. "name": "marcingy",
  4336. "homepage": "https://www.drupal.org/user/77320"
  4337. },
  4338. {
  4339. "name": "samuel.mortenson",
  4340. "homepage": "https://www.drupal.org/user/2582268"
  4341. },
  4342. {
  4343. "name": "slashrsm",
  4344. "homepage": "https://www.drupal.org/user/744628"
  4345. }
  4346. ],
  4347. "description": "Entity browsing and selecting component.",
  4348. "homepage": "http://drupal.org/project/entity_browser",
  4349. "support": {
  4350. "source": "http://cgit.drupalcode.org/entity_browser",
  4351. "issues": "http://drupal.org/project/issues/entity_browser",
  4352. "irc": "irc://irc.freenode.org/drupal-contribute"
  4353. }
  4354. },
  4355. {
  4356. "name": "drupal/entity_browser_enhanced",
  4357. "version": "1.0.0-rc3",
  4358. "source": {
  4359. "type": "git",
  4360. "url": "https://git.drupal.org/project/entity_browser_enhanced",
  4361. "reference": "8.x-1.0-rc3"
  4362. },
  4363. "dist": {
  4364. "type": "zip",
  4365. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0-rc3.zip",
  4366. "reference": "8.x-1.0-rc3",
  4367. "shasum": "041a93dac5ec9f74a8834faee60995c4db7d1e65"
  4368. },
  4369. "require": {
  4370. "drupal/core": "~8.0",
  4371. "drupal/entity_browser": "*"
  4372. },
  4373. "type": "drupal-module",
  4374. "extra": {
  4375. "branch-alias": {
  4376. "dev-1.x": "1.x-dev",
  4377. "dev-8.x-1.x": "8.1.x-dev"
  4378. },
  4379. "drupal": {
  4380. "version": "8.x-1.0-rc3",
  4381. "datestamp": "1528884525",
  4382. "security-coverage": {
  4383. "status": "not-covered",
  4384. "message": "RC releases are not covered by Drupal security advisories."
  4385. }
  4386. }
  4387. },
  4388. "notification-url": "https://packages.drupal.org/8/downloads",
  4389. "license": [
  4390. "GPL-2.0-or-later"
  4391. ],
  4392. "authors": [
  4393. {
  4394. "name": "Vardot",
  4395. "homepage": "https://www.drupal.org/vardot",
  4396. "role": "Maintainer"
  4397. },
  4398. {
  4399. "name": "RajabNatshah",
  4400. "homepage": "https://www.drupal.org/user/1414312"
  4401. }
  4402. ],
  4403. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4404. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4405. "support": {
  4406. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4407. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4408. }
  4409. },
  4410. {
  4411. "name": "drupal/entity_clone",
  4412. "version": "1.0.0-beta1",
  4413. "source": {
  4414. "type": "git",
  4415. "url": "https://git.drupal.org/project/entity_clone",
  4416. "reference": "8.x-1.0-beta1"
  4417. },
  4418. "dist": {
  4419. "type": "zip",
  4420. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta1.zip",
  4421. "reference": "8.x-1.0-beta1",
  4422. "shasum": "d0ace20bbe1672fbe6d0cdd6da8f5b80cd156643"
  4423. },
  4424. "require": {
  4425. "drupal/core": "~8.0"
  4426. },
  4427. "type": "drupal-module",
  4428. "extra": {
  4429. "branch-alias": {
  4430. "dev-1.x": "1.x-dev"
  4431. },
  4432. "drupal": {
  4433. "version": "8.x-1.0-beta1",
  4434. "datestamp": "1546583284",
  4435. "security-coverage": {
  4436. "status": "not-covered",
  4437. "message": "Beta releases are not covered by Drupal security advisories."
  4438. }
  4439. }
  4440. },
  4441. "notification-url": "https://packages.drupal.org/8/downloads",
  4442. "license": [
  4443. "GPL-2.0-or-later"
  4444. ],
  4445. "authors": [
  4446. {
  4447. "name": "vpeltot",
  4448. "homepage": "https://www.drupal.org/user/1361586"
  4449. }
  4450. ],
  4451. "description": "Add a clone action for all entities",
  4452. "homepage": "https://www.drupal.org/project/entity_clone",
  4453. "support": {
  4454. "source": "http://cgit.drupalcode.org/entity_clone"
  4455. }
  4456. },
  4457. {
  4458. "name": "drupal/extlink",
  4459. "version": "1.1.0",
  4460. "source": {
  4461. "type": "git",
  4462. "url": "https://git.drupal.org/project/extlink",
  4463. "reference": "8.x-1.1"
  4464. },
  4465. "dist": {
  4466. "type": "zip",
  4467. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.1.zip",
  4468. "reference": "8.x-1.1",
  4469. "shasum": "0894f1cd12e2e1aa6b00ea4a6dd5e7234eb2b2b2"
  4470. },
  4471. "require": {
  4472. "drupal/core": "~8.0"
  4473. },
  4474. "type": "drupal-module",
  4475. "extra": {
  4476. "branch-alias": {
  4477. "dev-1.x": "1.x-dev"
  4478. },
  4479. "drupal": {
  4480. "version": "8.x-1.1",
  4481. "datestamp": "1524232684",
  4482. "security-coverage": {
  4483. "status": "covered",
  4484. "message": "Covered by Drupal's security advisory policy"
  4485. }
  4486. }
  4487. },
  4488. "notification-url": "https://packages.drupal.org/8/downloads",
  4489. "license": [
  4490. "GPL-2.0-or-later"
  4491. ],
  4492. "authors": [
  4493. {
  4494. "name": "elachlan",
  4495. "homepage": "https://www.drupal.org/user/1021502"
  4496. },
  4497. {
  4498. "name": "jjeff",
  4499. "homepage": "https://www.drupal.org/user/17190"
  4500. },
  4501. {
  4502. "name": "quicksketch",
  4503. "homepage": "https://www.drupal.org/user/35821"
  4504. }
  4505. ],
  4506. "description": "Modify behavior and appearance of external links.",
  4507. "homepage": "https://www.drupal.org/project/extlink",
  4508. "support": {
  4509. "source": "http://cgit.drupalcode.org/extlink"
  4510. }
  4511. },
  4512. {
  4513. "name": "drupal/field_group",
  4514. "version": "1.0.0",
  4515. "source": {
  4516. "type": "git",
  4517. "url": "https://git.drupal.org/project/field_group",
  4518. "reference": "8.x-1.0"
  4519. },
  4520. "dist": {
  4521. "type": "zip",
  4522. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-1.0.zip",
  4523. "reference": "8.x-1.0",
  4524. "shasum": "e8aa3fae5c3c5dec84644bb577996938d638a611"
  4525. },
  4526. "require": {
  4527. "drupal/core": "*"
  4528. },
  4529. "type": "drupal-module",
  4530. "extra": {
  4531. "branch-alias": {
  4532. "dev-1.x": "1.x-dev"
  4533. },
  4534. "drupal": {
  4535. "version": "8.x-1.0",
  4536. "datestamp": "1510352885",
  4537. "security-coverage": {
  4538. "status": "covered",
  4539. "message": "Covered by Drupal's security advisory policy"
  4540. }
  4541. }
  4542. },
  4543. "notification-url": "https://packages.drupal.org/8/downloads",
  4544. "license": [
  4545. "GPL-2.0+"
  4546. ],
  4547. "authors": [
  4548. {
  4549. "name": "Hydra",
  4550. "homepage": "https://www.drupal.org/user/647364"
  4551. },
  4552. {
  4553. "name": "Stalski",
  4554. "homepage": "https://www.drupal.org/user/322618"
  4555. },
  4556. {
  4557. "name": "jyve",
  4558. "homepage": "https://www.drupal.org/user/591438"
  4559. },
  4560. {
  4561. "name": "swentel",
  4562. "homepage": "https://www.drupal.org/user/107403"
  4563. },
  4564. {
  4565. "name": "zuuperman",
  4566. "homepage": "https://www.drupal.org/user/361625"
  4567. }
  4568. ],
  4569. "description": "Provides the field_group module.",
  4570. "homepage": "https://www.drupal.org/project/field_group",
  4571. "support": {
  4572. "source": "http://cgit.drupalcode.org/field_group"
  4573. }
  4574. },
  4575. {
  4576. "name": "drupal/file_mdm",
  4577. "version": "1.1.0",
  4578. "source": {
  4579. "type": "git",
  4580. "url": "https://git.drupal.org/project/file_mdm",
  4581. "reference": "8.x-1.1"
  4582. },
  4583. "dist": {
  4584. "type": "zip",
  4585. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-1.1.zip",
  4586. "reference": "8.x-1.1",
  4587. "shasum": "7f354aec6f89e3141c2aa1fb3747ad5d4578c13f"
  4588. },
  4589. "require": {
  4590. "drupal/core": "~8.0",
  4591. "lsolesen/pel": "0.9.6",
  4592. "phenx/php-font-lib": "0.5",
  4593. "php": ">=5.6"
  4594. },
  4595. "require-dev": {
  4596. "drupal/image_effects": "*"
  4597. },
  4598. "type": "drupal-module",
  4599. "extra": {
  4600. "branch-alias": {
  4601. "dev-1.x": "1.x-dev"
  4602. },
  4603. "drupal": {
  4604. "version": "8.x-1.1",
  4605. "datestamp": "1488273785",
  4606. "security-coverage": {
  4607. "status": "covered",
  4608. "message": "Covered by Drupal's security advisory policy"
  4609. }
  4610. }
  4611. },
  4612. "notification-url": "https://packages.drupal.org/8/downloads",
  4613. "license": [
  4614. "GPL-2.0-or-later"
  4615. ],
  4616. "authors": [
  4617. {
  4618. "name": "mondrake",
  4619. "homepage": "https://www.drupal.org/user/1307444"
  4620. }
  4621. ],
  4622. "description": "Provides a service to manage file metadata.",
  4623. "homepage": "https://www.drupal.org/project/file_mdm",
  4624. "support": {
  4625. "source": "http://cgit.drupalcode.org/file_mdm"
  4626. }
  4627. },
  4628. {
  4629. "name": "drupal/file_mdm_exif",
  4630. "version": "1.1.0",
  4631. "require": {
  4632. "drupal/core": "~8.0",
  4633. "drupal/file_mdm": "self.version"
  4634. },
  4635. "require-dev": {
  4636. "drupal/image_effects": "*"
  4637. },
  4638. "type": "metapackage",
  4639. "extra": {
  4640. "branch-alias": {
  4641. "dev-1.x": "1.x-dev"
  4642. },
  4643. "drupal": {
  4644. "version": "8.x-1.1",
  4645. "datestamp": "1488273785",
  4646. "security-coverage": {
  4647. "status": "covered",
  4648. "message": "Covered by Drupal's security advisory policy"
  4649. }
  4650. }
  4651. },
  4652. "notification-url": "https://packages.drupal.org/8/downloads",
  4653. "license": [
  4654. "GPL-2.0-or-later"
  4655. ],
  4656. "authors": [
  4657. {
  4658. "name": "mondrake",
  4659. "homepage": "https://www.drupal.org/user/1307444"
  4660. }
  4661. ],
  4662. "description": "Provides a file metadata plugin for EXIF image information.",
  4663. "homepage": "https://www.drupal.org/project/file_mdm",
  4664. "support": {
  4665. "source": "http://cgit.drupalcode.org/file_mdm"
  4666. }
  4667. },
  4668. {
  4669. "name": "drupal/filefield_sources",
  4670. "version": "dev-1.x",
  4671. "source": {
  4672. "type": "git",
  4673. "url": "https://git.drupal.org/project/filefield_sources",
  4674. "reference": "b19c6a839804f47587828d4a50e29e0720fa4c08"
  4675. },
  4676. "require": {
  4677. "drupal/core": "*"
  4678. },
  4679. "type": "drupal-module",
  4680. "extra": {
  4681. "branch-alias": {
  4682. "dev-1.x": "1.x-dev"
  4683. },
  4684. "drupal": {
  4685. "version": "8.x-1.x-dev",
  4686. "datestamp": "1487711283",
  4687. "security-coverage": {
  4688. "status": "not-covered",
  4689. "message": "Dev releases are not covered by Drupal security advisories."
  4690. }
  4691. }
  4692. },
  4693. "notification-url": "https://packages.drupal.org/8/downloads",
  4694. "license": [
  4695. "GPL-2.0-or-later"
  4696. ],
  4697. "authors": [
  4698. {
  4699. "name": "profak",
  4700. "homepage": "https://www.drupal.org/user/782534"
  4701. },
  4702. {
  4703. "name": "quicksketch",
  4704. "homepage": "https://www.drupal.org/user/35821"
  4705. }
  4706. ],
  4707. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4708. "homepage": "https://www.drupal.org/project/filefield_sources",
  4709. "support": {
  4710. "source": "http://cgit.drupalcode.org/filefield_sources"
  4711. },
  4712. "time": "2017-02-21T21:07:00+00:00"
  4713. },
  4714. {
  4715. "name": "drupal/filter_perms",
  4716. "version": "dev-1.x",
  4717. "source": {
  4718. "type": "git",
  4719. "url": "https://git.drupal.org/project/filter_perms",
  4720. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4721. },
  4722. "require": {
  4723. "drupal/core": "*"
  4724. },
  4725. "type": "drupal-module",
  4726. "extra": {
  4727. "branch-alias": {
  4728. "dev-1.x": "1.x-dev"
  4729. },
  4730. "drupal": {
  4731. "version": "8.x-1.x-dev",
  4732. "datestamp": "1469645939",
  4733. "security-coverage": {
  4734. "status": "not-covered",
  4735. "message": "Dev releases are not covered by Drupal security advisories."
  4736. }
  4737. }
  4738. },
  4739. "notification-url": "https://packages.drupal.org/8/downloads",
  4740. "license": [
  4741. "GPL-2.0-or-later"
  4742. ],
  4743. "authors": [
  4744. {
  4745. "name": "cYu",
  4746. "homepage": "https://www.drupal.org/user/202205"
  4747. },
  4748. {
  4749. "name": "deekayen",
  4750. "homepage": "https://www.drupal.org/user/972"
  4751. },
  4752. {
  4753. "name": "willzyx",
  4754. "homepage": "https://www.drupal.org/user/1043862"
  4755. }
  4756. ],
  4757. "description": "Provides role and module filters to simplify the user permissions page.",
  4758. "homepage": "https://www.drupal.org/project/filter_perms",
  4759. "support": {
  4760. "source": "http://cgit.drupalcode.org/filter_perms"
  4761. },
  4762. "time": "2016-07-27T19:01:11+00:00"
  4763. },
  4764. {
  4765. "name": "drupal/honeypot",
  4766. "version": "1.29.0",
  4767. "source": {
  4768. "type": "git",
  4769. "url": "https://git.drupal.org/project/honeypot",
  4770. "reference": "8.x-1.29"
  4771. },
  4772. "dist": {
  4773. "type": "zip",
  4774. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4775. "reference": "8.x-1.29",
  4776. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4777. },
  4778. "require": {
  4779. "drupal/core": "~8.0"
  4780. },
  4781. "type": "drupal-module",
  4782. "extra": {
  4783. "branch-alias": {
  4784. "dev-1.x": "1.x-dev"
  4785. },
  4786. "drupal": {
  4787. "version": "8.x-1.29",
  4788. "datestamp": "1536179280",
  4789. "security-coverage": {
  4790. "status": "covered",
  4791. "message": "Covered by Drupal's security advisory policy"
  4792. }
  4793. }
  4794. },
  4795. "notification-url": "https://packages.drupal.org/8/downloads",
  4796. "license": [
  4797. "GPL-2.0+"
  4798. ],
  4799. "authors": [
  4800. {
  4801. "name": "Jeff Geerling",
  4802. "homepage": "https://www.drupal.org/user/389011",
  4803. "email": "geerlingguy@mac.com"
  4804. }
  4805. ],
  4806. "description": "Mitigates spam form submissions using the honeypot method.",
  4807. "homepage": "https://www.drupal.org/project/honeypot",
  4808. "keywords": [
  4809. "deterrent",
  4810. "form",
  4811. "honeypot",
  4812. "honeytrap",
  4813. "php",
  4814. "spam"
  4815. ],
  4816. "support": {
  4817. "source": "http://cgit.drupalcode.org/honeypot"
  4818. }
  4819. },
  4820. {
  4821. "name": "drupal/imagemagick",
  4822. "version": "2.3.0",
  4823. "source": {
  4824. "type": "git",
  4825. "url": "https://git.drupal.org/project/imagemagick",
  4826. "reference": "8.x-2.3"
  4827. },
  4828. "dist": {
  4829. "type": "zip",
  4830. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-2.3.zip",
  4831. "reference": "8.x-2.3",
  4832. "shasum": "8359921d4700e954364c2633332c20579bb75a34"
  4833. },
  4834. "require": {
  4835. "drupal/core": "^8.3",
  4836. "drupal/file_mdm": "^1.1",
  4837. "drupal/file_mdm_exif": "^1.1"
  4838. },
  4839. "type": "drupal-module",
  4840. "extra": {
  4841. "branch-alias": {
  4842. "dev-2.x": "2.x-dev"
  4843. },
  4844. "drupal": {
  4845. "version": "8.x-2.3",
  4846. "datestamp": "1520958305",
  4847. "security-coverage": {
  4848. "status": "covered",
  4849. "message": "Covered by Drupal's security advisory policy"
  4850. }
  4851. }
  4852. },
  4853. "notification-url": "https://packages.drupal.org/8/downloads",
  4854. "license": [
  4855. "GPL-2.0-or-later"
  4856. ],
  4857. "authors": [
  4858. {
  4859. "name": "Chris Charlton",
  4860. "homepage": "https://www.drupal.org/user/17089"
  4861. },
  4862. {
  4863. "name": "chx",
  4864. "homepage": "https://www.drupal.org/user/9446"
  4865. },
  4866. {
  4867. "name": "claudiu.cristea",
  4868. "homepage": "https://www.drupal.org/user/56348"
  4869. },
  4870. {
  4871. "name": "dman",
  4872. "homepage": "https://www.drupal.org/user/33240"
  4873. },
  4874. {
  4875. "name": "dopry",
  4876. "homepage": "https://www.drupal.org/user/22202"
  4877. },
  4878. {
  4879. "name": "drewish",
  4880. "homepage": "https://www.drupal.org/user/34869"
  4881. },
  4882. {
  4883. "name": "gdl",
  4884. "homepage": "https://www.drupal.org/user/507326"
  4885. },
  4886. {
  4887. "name": "mondrake",
  4888. "homepage": "https://www.drupal.org/user/1307444"
  4889. },
  4890. {
  4891. "name": "quicksketch",
  4892. "homepage": "https://www.drupal.org/user/35821"
  4893. },
  4894. {
  4895. "name": "sun",
  4896. "homepage": "https://www.drupal.org/user/54136"
  4897. },
  4898. {
  4899. "name": "walkah",
  4900. "homepage": "https://www.drupal.org/user/1531"
  4901. }
  4902. ],
  4903. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4904. "homepage": "https://www.drupal.org/project/imagemagick",
  4905. "support": {
  4906. "source": "http://cgit.drupalcode.org/imagemagick"
  4907. }
  4908. },
  4909. {
  4910. "name": "drupal/inline_entity_form",
  4911. "version": "1.0.0-rc1",
  4912. "source": {
  4913. "type": "git",
  4914. "url": "https://git.drupal.org/project/inline_entity_form",
  4915. "reference": "8.x-1.0-rc1"
  4916. },
  4917. "dist": {
  4918. "type": "zip",
  4919. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc1.zip",
  4920. "reference": "8.x-1.0-rc1",
  4921. "shasum": "898789fb6a0662fc2572b87f8d0654a0241473f9"
  4922. },
  4923. "require": {
  4924. "drupal/core": "~8.0"
  4925. },
  4926. "require-dev": {
  4927. "drupal/entity_reference_revisions": "*"
  4928. },
  4929. "type": "drupal-module",
  4930. "extra": {
  4931. "branch-alias": {
  4932. "dev-1.x": "1.x-dev"
  4933. },
  4934. "drupal": {
  4935. "version": "8.x-1.0-rc1",
  4936. "datestamp": "1527030784",
  4937. "security-coverage": {
  4938. "status": "not-covered",
  4939. "message": "RC releases are not covered by Drupal security advisories."
  4940. }
  4941. }
  4942. },
  4943. "notification-url": "https://packages.drupal.org/8/downloads",
  4944. "license": [
  4945. "GPL-2.0+"
  4946. ],
  4947. "authors": [
  4948. {
  4949. "name": "bojanz",
  4950. "homepage": "https://www.drupal.org/user/86106"
  4951. },
  4952. {
  4953. "name": "dawehner",
  4954. "homepage": "https://www.drupal.org/user/99340"
  4955. },
  4956. {
  4957. "name": "rszrama",
  4958. "homepage": "https://www.drupal.org/user/49344"
  4959. },
  4960. {
  4961. "name": "slashrsm",
  4962. "homepage": "https://www.drupal.org/user/744628"
  4963. },
  4964. {
  4965. "name": "webflo",
  4966. "homepage": "https://www.drupal.org/user/254778"
  4967. }
  4968. ],
  4969. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4970. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4971. "support": {
  4972. "source": "http://cgit.drupalcode.org/inline_entity_form"
  4973. }
  4974. },
  4975. {
  4976. "name": "drupal/kint",
  4977. "version": "1.2.0",
  4978. "require": {
  4979. "drupal/core": "~8.0",
  4980. "drupal/devel": "self.version"
  4981. },
  4982. "type": "metapackage",
  4983. "extra": {
  4984. "branch-alias": {
  4985. "dev-1.x": "1.x-dev"
  4986. },
  4987. "drupal": {
  4988. "version": "8.x-1.2",
  4989. "datestamp": "1507197844",
  4990. "security-coverage": {
  4991. "status": "covered",
  4992. "message": "Covered by Drupal's security advisory policy"
  4993. }
  4994. }
  4995. },
  4996. "notification-url": "https://packages.drupal.org/8/downloads",
  4997. "license": [
  4998. "GPL-2.0-or-later"
  4999. ],
  5000. "authors": [
  5001. {
  5002. "name": "catch",
  5003. "homepage": "https://www.drupal.org/user/35733"
  5004. },
  5005. {
  5006. "name": "juampynr",
  5007. "homepage": "https://www.drupal.org/user/682736"
  5008. },
  5009. {
  5010. "name": "lussoluca",
  5011. "homepage": "https://www.drupal.org/user/138068"
  5012. },
  5013. {
  5014. "name": "moshe weitzman",
  5015. "homepage": "https://www.drupal.org/user/23"
  5016. },
  5017. {
  5018. "name": "pcambra",
  5019. "homepage": "https://www.drupal.org/user/122101"
  5020. },
  5021. {
  5022. "name": "salvis",
  5023. "homepage": "https://www.drupal.org/user/82964"
  5024. },
  5025. {
  5026. "name": "willzyx",
  5027. "homepage": "https://www.drupal.org/user/1043862"
  5028. }
  5029. ],
  5030. "description": "Wrapper for Kint debugging tool",
  5031. "homepage": "https://www.drupal.org/project/devel",
  5032. "support": {
  5033. "source": "http://cgit.drupalcode.org/devel"
  5034. }
  5035. },
  5036. {
  5037. "name": "drupal/link_attributes",
  5038. "version": "1.5.0",
  5039. "source": {
  5040. "type": "git",
  5041. "url": "https://git.drupal.org/project/link_attributes",
  5042. "reference": "8.x-1.5"
  5043. },
  5044. "dist": {
  5045. "type": "zip",
  5046. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.5.zip",
  5047. "reference": "8.x-1.5",
  5048. "shasum": "48c0e6ac2c3f4843372abb394c1aabe380dfa604"
  5049. },
  5050. "require": {
  5051. "drupal/core": "*"
  5052. },
  5053. "type": "drupal-module",
  5054. "extra": {
  5055. "branch-alias": {
  5056. "dev-1.x": "1.x-dev"
  5057. },
  5058. "drupal": {
  5059. "version": "8.x-1.5",
  5060. "datestamp": "1537173781",
  5061. "security-coverage": {
  5062. "status": "covered",
  5063. "message": "Covered by Drupal's security advisory policy"
  5064. }
  5065. }
  5066. },
  5067. "notification-url": "https://packages.drupal.org/8/downloads",
  5068. "license": [
  5069. "GPL-2.0-or-later"
  5070. ],
  5071. "authors": [
  5072. {
  5073. "name": "larowlan",
  5074. "homepage": "https://www.drupal.org/user/395439"
  5075. }
  5076. ],
  5077. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5078. "homepage": "https://www.drupal.org/project/link_attributes",
  5079. "support": {
  5080. "source": "http://cgit.drupalcode.org/link_attributes"
  5081. }
  5082. },
  5083. {
  5084. "name": "drupal/linkit",
  5085. "version": "4.3.0",
  5086. "source": {
  5087. "type": "git",
  5088. "url": "https://git.drupal.org/project/linkit",
  5089. "reference": "8.x-4.3"
  5090. },
  5091. "dist": {
  5092. "type": "zip",
  5093. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  5094. "reference": "8.x-4.3",
  5095. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  5096. },
  5097. "require": {
  5098. "drupal/core": "~8.0"
  5099. },
  5100. "type": "drupal-module",
  5101. "extra": {
  5102. "branch-alias": {
  5103. "dev-4.x": "4.x-dev"
  5104. },
  5105. "drupal": {
  5106. "version": "8.x-4.3",
  5107. "datestamp": "1490205830",
  5108. "security-coverage": {
  5109. "status": "covered",
  5110. "message": "Covered by Drupal's security advisory policy"
  5111. }
  5112. }
  5113. },
  5114. "notification-url": "https://packages.drupal.org/8/downloads",
  5115. "license": [
  5116. "GPL-2.0+"
  5117. ],
  5118. "authors": [
  5119. {
  5120. "name": "Emil Stjerneman",
  5121. "homepage": "https://stjerneman.com",
  5122. "email": "emil@stjerneman.com",
  5123. "role": "Maintainer"
  5124. }
  5125. ],
  5126. "description": "Linkit - Enriched linking experience",
  5127. "homepage": "http://drupal.org/project/linkit",
  5128. "support": {
  5129. "source": "http://cgit.drupalcode.org/linkit",
  5130. "issues": "http://drupal.org/project/linkit"
  5131. }
  5132. },
  5133. {
  5134. "name": "drupal/login_destination",
  5135. "version": "dev-1.x",
  5136. "source": {
  5137. "type": "git",
  5138. "url": "https://git.drupal.org/project/login_destination",
  5139. "reference": "54be8b89fdc073ca40af6b9b2eeb050e0aeb7908"
  5140. },
  5141. "require": {
  5142. "drupal/core": "~8.0"
  5143. },
  5144. "type": "drupal-module",
  5145. "extra": {
  5146. "branch-alias": {
  5147. "dev-1.x": "1.x-dev"
  5148. },
  5149. "drupal": {
  5150. "version": "8.x-1.x-dev",
  5151. "datestamp": "1514805485",
  5152. "security-coverage": {
  5153. "status": "not-covered",
  5154. "message": "Dev releases are not covered by Drupal security advisories."
  5155. }
  5156. }
  5157. },
  5158. "notification-url": "https://packages.drupal.org/8/downloads",
  5159. "license": [
  5160. "GPL-2.0-or-later"
  5161. ],
  5162. "authors": [
  5163. {
  5164. "name": "Oliver Huynh",
  5165. "homepage": "https://www.drupal.org/user/243730"
  5166. },
  5167. {
  5168. "name": "akashjain132",
  5169. "homepage": "https://www.drupal.org/user/2622667"
  5170. },
  5171. {
  5172. "name": "beautifulmind",
  5173. "homepage": "https://www.drupal.org/user/219482"
  5174. },
  5175. {
  5176. "name": "ddrozdik",
  5177. "homepage": "https://www.drupal.org/user/574124"
  5178. },
  5179. {
  5180. "name": "jng12",
  5181. "homepage": "https://www.drupal.org/user/204316"
  5182. },
  5183. {
  5184. "name": "marcp",
  5185. "homepage": "https://www.drupal.org/user/20885"
  5186. },
  5187. {
  5188. "name": "mithy",
  5189. "homepage": "https://www.drupal.org/user/258911"
  5190. },
  5191. {
  5192. "name": "moshe weitzman",
  5193. "homepage": "https://www.drupal.org/user/23"
  5194. },
  5195. {
  5196. "name": "quantumized",
  5197. "homepage": "https://www.drupal.org/user/61221"
  5198. },
  5199. {
  5200. "name": "rsvelko",
  5201. "homepage": "https://www.drupal.org/user/337401"
  5202. }
  5203. ],
  5204. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  5205. "homepage": "https://www.drupal.org/project/login_destination",
  5206. "support": {
  5207. "source": "http://cgit.drupalcode.org/login_destination"
  5208. },
  5209. "time": "2018-01-01T11:13:09+00:00"
  5210. },
  5211. {
  5212. "name": "drupal/maillog",
  5213. "version": "dev-1.x",
  5214. "source": {
  5215. "type": "git",
  5216. "url": "https://git.drupal.org/project/maillog",
  5217. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  5218. },
  5219. "require": {
  5220. "drupal/core": "*"
  5221. },
  5222. "type": "drupal-module",
  5223. "extra": {
  5224. "branch-alias": {
  5225. "dev-1.x": "1.x-dev"
  5226. },
  5227. "drupal": {
  5228. "version": "8.x-1.x-dev",
  5229. "datestamp": "1470431939",
  5230. "security-coverage": {
  5231. "status": "not-covered",
  5232. "message": "Project has not opted into security advisory coverage!"
  5233. }
  5234. }
  5235. },
  5236. "notification-url": "https://packages.drupal.org/8/downloads",
  5237. "license": [
  5238. "GPL-2.0-or-later"
  5239. ],
  5240. "authors": [
  5241. {
  5242. "name": "Berdir",
  5243. "homepage": "https://www.drupal.org/user/214652"
  5244. },
  5245. {
  5246. "name": "DamienMcKenna",
  5247. "homepage": "https://www.drupal.org/user/108450"
  5248. },
  5249. {
  5250. "name": "miro_dietiker",
  5251. "homepage": "https://www.drupal.org/user/227761"
  5252. },
  5253. {
  5254. "name": "pluess",
  5255. "homepage": "https://www.drupal.org/user/84659"
  5256. }
  5257. ],
  5258. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5259. "homepage": "https://www.drupal.org/project/maillog",
  5260. "support": {
  5261. "source": "http://cgit.drupalcode.org/maillog"
  5262. },
  5263. "time": "2016-08-05T21:18:07+00:00"
  5264. },
  5265. {
  5266. "name": "drupal/mailsystem",
  5267. "version": "4.1.0",
  5268. "source": {
  5269. "type": "git",
  5270. "url": "https://git.drupal.org/project/mailsystem",
  5271. "reference": "8.x-4.1"
  5272. },
  5273. "dist": {
  5274. "type": "zip",
  5275. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.1.zip",
  5276. "reference": "8.x-4.1",
  5277. "shasum": "318b87f1fdf96e6db30b04a98108af02a0fc3dcc"
  5278. },
  5279. "require": {
  5280. "drupal/core": "^8.0.5"
  5281. },
  5282. "type": "drupal-module",
  5283. "extra": {
  5284. "branch-alias": {
  5285. "dev-4.x": "4.x-dev"
  5286. },
  5287. "drupal": {
  5288. "version": "8.x-4.1",
  5289. "datestamp": "1467993646",
  5290. "security-coverage": {
  5291. "status": "covered",
  5292. "message": "Covered by Drupal's security advisory policy"
  5293. }
  5294. }
  5295. },
  5296. "notification-url": "https://packages.drupal.org/8/downloads",
  5297. "license": [
  5298. "GPL-2.0+"
  5299. ],
  5300. "authors": [
  5301. {
  5302. "name": "Berdir",
  5303. "homepage": "https://www.drupal.org/user/214652"
  5304. },
  5305. {
  5306. "name": "Les Lim",
  5307. "homepage": "https://www.drupal.org/user/84263"
  5308. },
  5309. {
  5310. "name": "Nafes",
  5311. "homepage": "https://www.drupal.org/user/2489926"
  5312. },
  5313. {
  5314. "name": "miro_dietiker",
  5315. "homepage": "https://www.drupal.org/user/227761"
  5316. },
  5317. {
  5318. "name": "pillarsdotnet",
  5319. "homepage": "https://www.drupal.org/user/36148"
  5320. }
  5321. ],
  5322. "description": "Mail System",
  5323. "homepage": "https://www.drupal.org/project/mailsystem",
  5324. "support": {
  5325. "source": "http://cgit.drupalcode.org/mailsystem"
  5326. }
  5327. },
  5328. {
  5329. "name": "drupal/matomo",
  5330. "version": "1.8.0",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://git.drupal.org/project/matomo",
  5334. "reference": "8.x-1.8"
  5335. },
  5336. "dist": {
  5337. "type": "zip",
  5338. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.8.zip",
  5339. "reference": "8.x-1.8",
  5340. "shasum": "f7e06e3eab8662bca51187aebc064ffb1f118ce7"
  5341. },
  5342. "require": {
  5343. "drupal/core": "~8.5"
  5344. },
  5345. "require-dev": {
  5346. "drupal/php": "*",
  5347. "drupal/token": "*"
  5348. },
  5349. "type": "drupal-module",
  5350. "extra": {
  5351. "branch-alias": {
  5352. "dev-1.x": "1.x-dev"
  5353. },
  5354. "drupal": {
  5355. "version": "8.x-1.8",
  5356. "datestamp": "1548968880",
  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": "hass",
  5370. "homepage": "https://www.drupal.org/u/hass"
  5371. },
  5372. {
  5373. "name": "See other contributors",
  5374. "homepage": "https://www.drupal.org/node/247808/committers"
  5375. }
  5376. ],
  5377. "description": "Adds Matomo javascript tracking code to all your site's pages",
  5378. "homepage": "https://www.drupal.org/project/matomo",
  5379. "support": {
  5380. "source": "https://git.drupal.org/project/matomo.git",
  5381. "issues": "https://www.drupal.org/project/issues/matomo"
  5382. }
  5383. },
  5384. {
  5385. "name": "drupal/maxlength",
  5386. "version": "1.0.0-beta2",
  5387. "source": {
  5388. "type": "git",
  5389. "url": "https://git.drupal.org/project/maxlength",
  5390. "reference": "8.x-1.0-beta2"
  5391. },
  5392. "dist": {
  5393. "type": "zip",
  5394. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-beta2.zip",
  5395. "reference": "8.x-1.0-beta2",
  5396. "shasum": "27f7374e55ebdcc696d22d98be8cf4cf9bf58204"
  5397. },
  5398. "require": {
  5399. "drupal/core": "~8.0"
  5400. },
  5401. "type": "drupal-module",
  5402. "extra": {
  5403. "branch-alias": {
  5404. "dev-1.x": "1.x-dev"
  5405. },
  5406. "drupal": {
  5407. "version": "8.x-1.0-beta2",
  5408. "datestamp": "1527856384",
  5409. "security-coverage": {
  5410. "status": "not-covered",
  5411. "message": "Beta releases are not covered by Drupal security advisories."
  5412. }
  5413. }
  5414. },
  5415. "notification-url": "https://packages.drupal.org/8/downloads",
  5416. "license": [
  5417. "GPL-2.0-or-later"
  5418. ],
  5419. "authors": [
  5420. {
  5421. "name": "Aron Novak",
  5422. "homepage": "https://www.drupal.org/user/61864"
  5423. },
  5424. {
  5425. "name": "Schnitzel",
  5426. "homepage": "https://www.drupal.org/user/643820"
  5427. },
  5428. {
  5429. "name": "a_c_m",
  5430. "homepage": "https://www.drupal.org/user/195063"
  5431. },
  5432. {
  5433. "name": "artur.thiessen",
  5434. "homepage": "https://www.drupal.org/user/2390554"
  5435. },
  5436. {
  5437. "name": "barneytech",
  5438. "homepage": "https://www.drupal.org/user/669922"
  5439. },
  5440. {
  5441. "name": "claudiu_cristea",
  5442. "homepage": "https://www.drupal.org/user/2623935"
  5443. },
  5444. {
  5445. "name": "dawehner",
  5446. "homepage": "https://www.drupal.org/user/99340"
  5447. },
  5448. {
  5449. "name": "derhasi",
  5450. "homepage": "https://www.drupal.org/user/83474"
  5451. },
  5452. {
  5453. "name": "frjo",
  5454. "homepage": "https://www.drupal.org/user/5546"
  5455. },
  5456. {
  5457. "name": "hefox",
  5458. "homepage": "https://www.drupal.org/user/426416"
  5459. },
  5460. {
  5461. "name": "jm.federico",
  5462. "homepage": "https://www.drupal.org/user/509892"
  5463. },
  5464. {
  5465. "name": "k4v",
  5466. "homepage": "https://www.drupal.org/user/744246"
  5467. },
  5468. {
  5469. "name": "mariano73",
  5470. "homepage": "https://www.drupal.org/user/1324866"
  5471. },
  5472. {
  5473. "name": "mariuss",
  5474. "homepage": "https://www.drupal.org/user/28539"
  5475. },
  5476. {
  5477. "name": "sanduhrs",
  5478. "homepage": "https://www.drupal.org/user/28074"
  5479. },
  5480. {
  5481. "name": "vasi1186",
  5482. "homepage": "https://www.drupal.org/user/342104"
  5483. }
  5484. ],
  5485. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  5486. "homepage": "https://www.drupal.org/project/maxlength",
  5487. "support": {
  5488. "source": "http://cgit.drupalcode.org/maxlength"
  5489. }
  5490. },
  5491. {
  5492. "name": "drupal/menu_admin_per_menu",
  5493. "version": "1.0.0",
  5494. "source": {
  5495. "type": "git",
  5496. "url": "https://git.drupal.org/project/menu_admin_per_menu",
  5497. "reference": "8.x-1.0"
  5498. },
  5499. "dist": {
  5500. "type": "zip",
  5501. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  5502. "reference": "8.x-1.0",
  5503. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  5504. },
  5505. "require": {
  5506. "drupal/core": "*"
  5507. },
  5508. "type": "drupal-module",
  5509. "extra": {
  5510. "branch-alias": {
  5511. "dev-1.x": "1.x-dev"
  5512. },
  5513. "drupal": {
  5514. "version": "8.x-1.0",
  5515. "datestamp": "1507184944",
  5516. "security-coverage": {
  5517. "status": "covered",
  5518. "message": "Covered by Drupal's security advisory policy"
  5519. }
  5520. }
  5521. },
  5522. "notification-url": "https://packages.drupal.org/8/downloads",
  5523. "license": [
  5524. "GPL-2.0-or-later"
  5525. ],
  5526. "authors": [
  5527. {
  5528. "name": "anrikun",
  5529. "homepage": "https://www.drupal.org/user/410199"
  5530. },
  5531. {
  5532. "name": "mkdok",
  5533. "homepage": "https://www.drupal.org/user/3308753"
  5534. }
  5535. ],
  5536. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5537. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5538. "support": {
  5539. "source": "http://cgit.drupalcode.org/menu_admin_per_menu"
  5540. }
  5541. },
  5542. {
  5543. "name": "drupal/menu_block",
  5544. "version": "1.5.0",
  5545. "source": {
  5546. "type": "git",
  5547. "url": "https://git.drupal.org/project/menu_block",
  5548. "reference": "8.x-1.5"
  5549. },
  5550. "dist": {
  5551. "type": "zip",
  5552. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip",
  5553. "reference": "8.x-1.5",
  5554. "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b"
  5555. },
  5556. "require": {
  5557. "drupal/core": "*"
  5558. },
  5559. "type": "drupal-module",
  5560. "extra": {
  5561. "branch-alias": {
  5562. "dev-1.x": "1.x-dev"
  5563. },
  5564. "drupal": {
  5565. "version": "8.x-1.5",
  5566. "datestamp": "1525200184",
  5567. "security-coverage": {
  5568. "status": "covered",
  5569. "message": "Covered by Drupal's security advisory policy"
  5570. }
  5571. }
  5572. },
  5573. "notification-url": "https://packages.drupal.org/8/downloads",
  5574. "license": [
  5575. "GPL-2.0-or-later"
  5576. ],
  5577. "authors": [
  5578. {
  5579. "name": "Dave Reid",
  5580. "homepage": "https://www.drupal.org/user/53892"
  5581. },
  5582. {
  5583. "name": "JohnAlbin",
  5584. "homepage": "https://www.drupal.org/user/32095"
  5585. },
  5586. {
  5587. "name": "joelpittet",
  5588. "homepage": "https://www.drupal.org/user/160302"
  5589. },
  5590. {
  5591. "name": "kim.pepper",
  5592. "homepage": "https://www.drupal.org/user/370574"
  5593. },
  5594. {
  5595. "name": "rrrob",
  5596. "homepage": "https://www.drupal.org/user/273533"
  5597. }
  5598. ],
  5599. "description": "Provides configurable blocks of menu links.",
  5600. "homepage": "https://www.drupal.org/project/menu_block",
  5601. "support": {
  5602. "source": "http://cgit.drupalcode.org/menu_block"
  5603. }
  5604. },
  5605. {
  5606. "name": "drupal/menu_position",
  5607. "version": "dev-1.x",
  5608. "source": {
  5609. "type": "git",
  5610. "url": "https://git.drupal.org/project/menu_position",
  5611. "reference": "552e5b1fc5baaec4d0496dd1c67df710093beccb"
  5612. },
  5613. "require": {
  5614. "drupal/core": "~8.0"
  5615. },
  5616. "type": "drupal-module",
  5617. "extra": {
  5618. "branch-alias": {
  5619. "dev-1.x": "1.x-dev"
  5620. },
  5621. "drupal": {
  5622. "version": "8.x-1.x-dev",
  5623. "datestamp": "1546518480",
  5624. "security-coverage": {
  5625. "status": "not-covered",
  5626. "message": "Dev releases are not covered by Drupal security advisories."
  5627. }
  5628. }
  5629. },
  5630. "notification-url": "https://packages.drupal.org/8/downloads",
  5631. "license": [
  5632. "GPL-2.0+"
  5633. ],
  5634. "authors": [
  5635. {
  5636. "name": "BarisW",
  5637. "homepage": "https://www.drupal.org/user/107229"
  5638. },
  5639. {
  5640. "name": "JohnAlbin",
  5641. "homepage": "https://www.drupal.org/user/32095"
  5642. },
  5643. {
  5644. "name": "lbainbridge",
  5645. "homepage": "https://www.drupal.org/user/2406996"
  5646. }
  5647. ],
  5648. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5649. "homepage": "https://www.drupal.org/project/menu_position",
  5650. "support": {
  5651. "source": "http://cgit.drupalcode.org/menu_position",
  5652. "issues": "https://www.drupal.org/project/issues/menu_position"
  5653. },
  5654. "time": "2019-01-03T12:23:26+00:00"
  5655. },
  5656. {
  5657. "name": "drupal/migrate_plus",
  5658. "version": "dev-4.x",
  5659. "source": {
  5660. "type": "git",
  5661. "url": "https://git.drupal.org/project/migrate_plus",
  5662. "reference": "022baac45c5b1d630b18cd90e1648d0932cc3478"
  5663. },
  5664. "require": {
  5665. "drupal/core": "^8.3"
  5666. },
  5667. "require-dev": {
  5668. "drupal/migrate_example_advanced_setup": "*",
  5669. "drupal/migrate_example_setup": "*",
  5670. "drupal/migrate_tools": "*"
  5671. },
  5672. "suggest": {
  5673. "ext-soap": "*",
  5674. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  5675. },
  5676. "type": "drupal-module",
  5677. "extra": {
  5678. "branch-alias": {
  5679. "dev-4.x": "4.x-dev"
  5680. },
  5681. "drupal": {
  5682. "version": "8.x-4.0+17-dev",
  5683. "datestamp": "1546539780",
  5684. "security-coverage": {
  5685. "status": "not-covered",
  5686. "message": "Dev releases are not covered by Drupal security advisories."
  5687. }
  5688. }
  5689. },
  5690. "notification-url": "https://packages.drupal.org/8/downloads",
  5691. "license": [
  5692. "GPL-2.0+"
  5693. ],
  5694. "authors": [
  5695. {
  5696. "name": "Mike Ryan",
  5697. "homepage": "https://www.drupal.org/u/mikeryan",
  5698. "role": "Maintainer"
  5699. },
  5700. {
  5701. "name": "mikeryan",
  5702. "homepage": "https://www.drupal.org/user/4420"
  5703. }
  5704. ],
  5705. "description": "Enhancements to core migration support.",
  5706. "homepage": "https://www.drupal.org/project/migrate_plus",
  5707. "support": {
  5708. "source": "https://cgit.drupalcode.org/migrate_plus",
  5709. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  5710. "irc": "irc://irc.freenode.org/drupal-migrate"
  5711. },
  5712. "time": "2019-01-03T18:20:23+00:00"
  5713. },
  5714. {
  5715. "name": "drupal/migrate_tools",
  5716. "version": "dev-4.x",
  5717. "source": {
  5718. "type": "git",
  5719. "url": "https://git.drupal.org/project/migrate_tools",
  5720. "reference": "853604c682a28b7d6960fa3d55eba36a443182bb"
  5721. },
  5722. "require": {
  5723. "drupal/core": "^8.3",
  5724. "drupal/migrate_plus": "^4"
  5725. },
  5726. "require-dev": {
  5727. "drupal/migrate_plus": "4.x-dev",
  5728. "drupal/migrate_source_csv": "^2.2",
  5729. "drush/drush": "^9"
  5730. },
  5731. "type": "drupal-module",
  5732. "extra": {
  5733. "branch-alias": {
  5734. "dev-4.x": "4.x-dev"
  5735. },
  5736. "drupal": {
  5737. "version": "8.x-4.0+14-dev",
  5738. "datestamp": "1545344880",
  5739. "security-coverage": {
  5740. "status": "not-covered",
  5741. "message": "Dev releases are not covered by Drupal security advisories."
  5742. }
  5743. },
  5744. "drush": {
  5745. "services": {
  5746. "drush.services.yml": "^9"
  5747. }
  5748. },
  5749. "patches_applied": {
  5750. "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"
  5751. }
  5752. },
  5753. "notification-url": "https://packages.drupal.org/8/downloads",
  5754. "license": [
  5755. "GPL-2.0-or-later"
  5756. ],
  5757. "authors": [
  5758. {
  5759. "name": "heddn",
  5760. "homepage": "https://www.drupal.org/user/1463982"
  5761. },
  5762. {
  5763. "name": "mikeryan",
  5764. "homepage": "https://www.drupal.org/user/4420"
  5765. },
  5766. {
  5767. "name": "moshe weitzman",
  5768. "homepage": "https://www.drupal.org/user/23"
  5769. }
  5770. ],
  5771. "description": "Tools to assist in developing and running migrations.",
  5772. "homepage": "http://drupal.org/project/migrate_tools",
  5773. "support": {
  5774. "source": "http://cgit.drupalcode.org/migrate_tools",
  5775. "issues": "http://drupal.org/project/migrate_tools",
  5776. "irc": "irc://irc.freenode.org/drupal-migrate"
  5777. },
  5778. "time": "2018-12-20T22:27:32+00:00"
  5779. },
  5780. {
  5781. "name": "drupal/pagerer",
  5782. "version": "1.4.0",
  5783. "source": {
  5784. "type": "git",
  5785. "url": "https://git.drupal.org/project/pagerer",
  5786. "reference": "8.x-1.4"
  5787. },
  5788. "dist": {
  5789. "type": "zip",
  5790. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-1.4.zip",
  5791. "reference": "8.x-1.4",
  5792. "shasum": "9b4eb6899b0927859e7d5198f1fd814a10a66ddb"
  5793. },
  5794. "require": {
  5795. "drupal/core": "^8.1"
  5796. },
  5797. "type": "drupal-module",
  5798. "extra": {
  5799. "branch-alias": {
  5800. "dev-1.x": "1.x-dev"
  5801. },
  5802. "drupal": {
  5803. "version": "8.x-1.4",
  5804. "datestamp": "1522851484",
  5805. "security-coverage": {
  5806. "status": "covered",
  5807. "message": "Covered by Drupal's security advisory policy"
  5808. }
  5809. }
  5810. },
  5811. "notification-url": "https://packages.drupal.org/8/downloads",
  5812. "license": [
  5813. "GPL-2.0-or-later"
  5814. ],
  5815. "authors": [
  5816. {
  5817. "name": "mondrake",
  5818. "homepage": "https://www.drupal.org/user/1307444"
  5819. }
  5820. ],
  5821. "description": "Configurable pager styles.",
  5822. "homepage": "https://www.drupal.org/project/pagerer",
  5823. "support": {
  5824. "source": "http://cgit.drupalcode.org/pagerer"
  5825. }
  5826. },
  5827. {
  5828. "name": "drupal/path_alias_xt",
  5829. "version": "dev-1.x",
  5830. "source": {
  5831. "type": "git",
  5832. "url": "https://git.drupal.org/project/path_alias_xt",
  5833. "reference": "2a79ac72191dc59ef656d1edd85e651538c6a389"
  5834. },
  5835. "require": {
  5836. "drupal/core": "*"
  5837. },
  5838. "type": "drupal-module",
  5839. "extra": {
  5840. "branch-alias": {
  5841. "dev-1.x": "1.x-dev"
  5842. },
  5843. "drupal": {
  5844. "version": "8.x-1.x-dev",
  5845. "datestamp": "1542641280",
  5846. "security-coverage": {
  5847. "status": "not-covered",
  5848. "message": "Dev releases are not covered by Drupal security advisories."
  5849. }
  5850. }
  5851. },
  5852. "notification-url": "https://packages.drupal.org/8/downloads",
  5853. "license": [
  5854. "GPL-2.0-or-later"
  5855. ],
  5856. "authors": [
  5857. {
  5858. "name": "RdeBoer",
  5859. "homepage": "https://www.drupal.org/user/404007"
  5860. },
  5861. {
  5862. "name": "adriancid",
  5863. "homepage": "https://www.drupal.org/user/1962106"
  5864. },
  5865. {
  5866. "name": "sdstyles",
  5867. "homepage": "https://www.drupal.org/user/1420228"
  5868. }
  5869. ],
  5870. "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.",
  5871. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5872. "support": {
  5873. "source": "http://cgit.drupalcode.org/path_alias_xt"
  5874. },
  5875. "time": "2019-01-30T19:27:58+00:00"
  5876. },
  5877. {
  5878. "name": "drupal/pathauto",
  5879. "version": "1.3.0",
  5880. "source": {
  5881. "type": "git",
  5882. "url": "https://git.drupal.org/project/pathauto",
  5883. "reference": "8.x-1.3"
  5884. },
  5885. "dist": {
  5886. "type": "zip",
  5887. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip",
  5888. "reference": "8.x-1.3",
  5889. "shasum": "115d5998d7636a03e26c7ce34261b65809d53965"
  5890. },
  5891. "require": {
  5892. "drupal/core": "^8.5",
  5893. "drupal/ctools": "*",
  5894. "drupal/token": "*"
  5895. },
  5896. "type": "drupal-module",
  5897. "extra": {
  5898. "branch-alias": {
  5899. "dev-1.x": "1.x-dev"
  5900. },
  5901. "drupal": {
  5902. "version": "8.x-1.3",
  5903. "datestamp": "1536407884",
  5904. "security-coverage": {
  5905. "status": "covered",
  5906. "message": "Covered by Drupal's security advisory policy"
  5907. }
  5908. }
  5909. },
  5910. "notification-url": "https://packages.drupal.org/8/downloads",
  5911. "license": [
  5912. "GPL-2.0-or-later"
  5913. ],
  5914. "authors": [
  5915. {
  5916. "name": "Berdir",
  5917. "homepage": "https://www.drupal.org/user/214652"
  5918. },
  5919. {
  5920. "name": "Dave Reid",
  5921. "homepage": "https://www.drupal.org/user/53892"
  5922. },
  5923. {
  5924. "name": "Freso",
  5925. "homepage": "https://www.drupal.org/user/27504"
  5926. },
  5927. {
  5928. "name": "greggles",
  5929. "homepage": "https://www.drupal.org/user/36762"
  5930. }
  5931. ],
  5932. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5933. "homepage": "https://www.drupal.org/project/pathauto",
  5934. "support": {
  5935. "source": "http://cgit.drupalcode.org/pathauto"
  5936. }
  5937. },
  5938. {
  5939. "name": "drupal/pathologic",
  5940. "version": "1.0.0-alpha1",
  5941. "source": {
  5942. "type": "git",
  5943. "url": "https://git.drupal.org/project/pathologic",
  5944. "reference": "8.x-1.0-alpha1"
  5945. },
  5946. "dist": {
  5947. "type": "zip",
  5948. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha1.zip",
  5949. "reference": "8.x-1.0-alpha1",
  5950. "shasum": "51c699cc001969baa00cca60cf2302a32e578090"
  5951. },
  5952. "require": {
  5953. "drupal/core": "*"
  5954. },
  5955. "type": "drupal-module",
  5956. "extra": {
  5957. "branch-alias": {
  5958. "dev-1.x": "1.x-dev"
  5959. },
  5960. "drupal": {
  5961. "version": "8.x-1.0-alpha1",
  5962. "datestamp": "1525211884",
  5963. "security-coverage": {
  5964. "status": "not-covered",
  5965. "message": "Alpha releases are not covered by Drupal security advisories."
  5966. }
  5967. }
  5968. },
  5969. "notification-url": "https://packages.drupal.org/8/downloads",
  5970. "license": [
  5971. "GPL-2.0-or-later"
  5972. ],
  5973. "authors": [
  5974. {
  5975. "name": "Berdir",
  5976. "homepage": "https://www.drupal.org/user/214652"
  5977. },
  5978. {
  5979. "name": "Garrett Albright",
  5980. "homepage": "https://www.drupal.org/user/191212"
  5981. },
  5982. {
  5983. "name": "dww",
  5984. "homepage": "https://www.drupal.org/user/46549"
  5985. }
  5986. ],
  5987. "description": "Helps avoid broken links and incorrect paths in content.",
  5988. "homepage": "https://www.drupal.org/project/pathologic",
  5989. "support": {
  5990. "source": "http://cgit.drupalcode.org/pathologic"
  5991. }
  5992. },
  5993. {
  5994. "name": "drupal/persistent_login",
  5995. "version": "1.1.0",
  5996. "source": {
  5997. "type": "git",
  5998. "url": "https://git.drupal.org/project/persistent_login",
  5999. "reference": "8.x-1.1"
  6000. },
  6001. "dist": {
  6002. "type": "zip",
  6003. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.1.zip",
  6004. "reference": "8.x-1.1",
  6005. "shasum": "b1e8f725662ab915767f339e00d7b185ac9097b2"
  6006. },
  6007. "require": {
  6008. "drupal/core": "^8.3"
  6009. },
  6010. "type": "drupal-module",
  6011. "extra": {
  6012. "branch-alias": {
  6013. "dev-1.x": "1.x-dev"
  6014. },
  6015. "drupal": {
  6016. "version": "8.x-1.1",
  6017. "datestamp": "1539379980",
  6018. "security-coverage": {
  6019. "status": "covered",
  6020. "message": "Covered by Drupal's security advisory policy"
  6021. }
  6022. }
  6023. },
  6024. "notification-url": "https://packages.drupal.org/8/downloads",
  6025. "license": [
  6026. "GPL-2.0+"
  6027. ],
  6028. "authors": [
  6029. {
  6030. "name": "gapple",
  6031. "homepage": "https://www.drupal.org/user/490940"
  6032. }
  6033. ],
  6034. "description": "Provides a \"Remember Me\" feature on the login form.",
  6035. "homepage": "https://www.drupal.org/project/persistent_login",
  6036. "keywords": [
  6037. "Drupal"
  6038. ],
  6039. "support": {
  6040. "source": "http://cgit.drupalcode.org/persistent_login",
  6041. "issues": "http://drupal.org/project/issues/persistent_login"
  6042. }
  6043. },
  6044. {
  6045. "name": "drupal/profile",
  6046. "version": "1.0.0-rc1",
  6047. "source": {
  6048. "type": "git",
  6049. "url": "https://git.drupal.org/project/profile",
  6050. "reference": "8.x-1.0-rc1"
  6051. },
  6052. "dist": {
  6053. "type": "zip",
  6054. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc1.zip",
  6055. "reference": "8.x-1.0-rc1",
  6056. "shasum": "cc537ca25412adc4fa601ff42cf2fb5cbc6e7b6b"
  6057. },
  6058. "require": {
  6059. "drupal/core": "~8.1",
  6060. "drupal/entity": "*"
  6061. },
  6062. "type": "drupal-module",
  6063. "extra": {
  6064. "branch-alias": {
  6065. "dev-1.x": "1.x-dev"
  6066. },
  6067. "drupal": {
  6068. "version": "8.x-1.0-rc1",
  6069. "datestamp": "1505830324",
  6070. "security-coverage": {
  6071. "status": "not-covered",
  6072. "message": "RC releases are not covered by Drupal security advisories."
  6073. }
  6074. }
  6075. },
  6076. "notification-url": "https://packages.drupal.org/8/downloads",
  6077. "license": [
  6078. "GPL-2.0+"
  6079. ],
  6080. "authors": [
  6081. {
  6082. "name": "bojanz",
  6083. "homepage": "https://www.drupal.org/user/86106"
  6084. },
  6085. {
  6086. "name": "daggerhart",
  6087. "homepage": "https://www.drupal.org/user/167806"
  6088. },
  6089. {
  6090. "name": "dakala",
  6091. "homepage": "https://www.drupal.org/user/53175"
  6092. },
  6093. {
  6094. "name": "fago",
  6095. "homepage": "https://www.drupal.org/user/16747"
  6096. },
  6097. {
  6098. "name": "mglaman",
  6099. "homepage": "https://www.drupal.org/user/2416470"
  6100. },
  6101. {
  6102. "name": "pcambra",
  6103. "homepage": "https://www.drupal.org/user/122101"
  6104. }
  6105. ],
  6106. "description": "Provides configurable user profiles.",
  6107. "homepage": "http://drupal.org/project/profile",
  6108. "support": {
  6109. "source": "http://cgit.drupalcode.org/profile"
  6110. }
  6111. },
  6112. {
  6113. "name": "drupal/redirect",
  6114. "version": "1.3.0",
  6115. "source": {
  6116. "type": "git",
  6117. "url": "https://git.drupal.org/project/redirect",
  6118. "reference": "8.x-1.3"
  6119. },
  6120. "dist": {
  6121. "type": "zip",
  6122. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  6123. "reference": "8.x-1.3",
  6124. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  6125. },
  6126. "require": {
  6127. "drupal/core": "~8"
  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.3",
  6136. "datestamp": "1539682684",
  6137. "security-coverage": {
  6138. "status": "covered",
  6139. "message": "Covered by Drupal's security advisory policy"
  6140. }
  6141. }
  6142. },
  6143. "notification-url": "https://packages.drupal.org/8/downloads",
  6144. "license": [
  6145. "GPL-2.0+"
  6146. ],
  6147. "authors": [
  6148. {
  6149. "name": "Berdir",
  6150. "homepage": "https://www.drupal.org/user/214652"
  6151. },
  6152. {
  6153. "name": "Dave Reid",
  6154. "homepage": "https://www.drupal.org/user/53892"
  6155. },
  6156. {
  6157. "name": "pifagor",
  6158. "homepage": "https://www.drupal.org/user/2375692"
  6159. }
  6160. ],
  6161. "description": "Allows users to redirect from old URLs to new URLs.",
  6162. "homepage": "https://www.drupal.org/project/redirect",
  6163. "support": {
  6164. "source": "http://cgit.drupalcode.org/redirect"
  6165. }
  6166. },
  6167. {
  6168. "name": "drupal/redis",
  6169. "version": "1.1.0",
  6170. "source": {
  6171. "type": "git",
  6172. "url": "https://git.drupal.org/project/redis",
  6173. "reference": "8.x-1.1"
  6174. },
  6175. "dist": {
  6176. "type": "zip",
  6177. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.1.zip",
  6178. "reference": "8.x-1.1",
  6179. "shasum": "33337fe1cbd2824797e87533b30e4886b48ecd77"
  6180. },
  6181. "require": {
  6182. "drupal/core": "~8.0"
  6183. },
  6184. "suggest": {
  6185. "predis/predis": "^1.1.1"
  6186. },
  6187. "type": "drupal-module",
  6188. "extra": {
  6189. "branch-alias": {
  6190. "dev-1.x": "1.x-dev"
  6191. },
  6192. "drupal": {
  6193. "version": "8.x-1.1",
  6194. "datestamp": "1541600580",
  6195. "security-coverage": {
  6196. "status": "covered",
  6197. "message": "Covered by Drupal's security advisory policy"
  6198. }
  6199. }
  6200. },
  6201. "autoload": {
  6202. "psr-4": {
  6203. "Drupal\\redis\\": "src"
  6204. }
  6205. },
  6206. "notification-url": "https://packages.drupal.org/8/downloads",
  6207. "license": [
  6208. "GPL-2.0"
  6209. ],
  6210. "authors": [
  6211. {
  6212. "name": "Berdir",
  6213. "homepage": "https://www.drupal.org/user/214652"
  6214. },
  6215. {
  6216. "name": "pounard",
  6217. "homepage": "https://www.drupal.org/user/240164"
  6218. }
  6219. ],
  6220. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  6221. "homepage": "https://www.drupal.org/project/redis",
  6222. "support": {
  6223. "source": "http://cgit.drupalcode.org/redis"
  6224. }
  6225. },
  6226. {
  6227. "name": "drupal/search_api",
  6228. "version": "1.11.0",
  6229. "source": {
  6230. "type": "git",
  6231. "url": "https://git.drupal.org/project/search_api",
  6232. "reference": "8.x-1.11"
  6233. },
  6234. "dist": {
  6235. "type": "zip",
  6236. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.11.zip",
  6237. "reference": "8.x-1.11",
  6238. "shasum": "d2bf92afa2ee760977dde1fadcb5bb64a4c2d7c1"
  6239. },
  6240. "require": {
  6241. "drupal/core": "^8.5"
  6242. },
  6243. "require-dev": {
  6244. "drupal/search_api_autocomplete": "@dev",
  6245. "drupal/search_api_db": "*"
  6246. },
  6247. "suggest": {
  6248. "drupal/facets": "Adds the ability to create faceted searches.",
  6249. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6250. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6251. },
  6252. "type": "drupal-module",
  6253. "extra": {
  6254. "branch-alias": {
  6255. "dev-1.x": "1.x-dev"
  6256. },
  6257. "drupal": {
  6258. "version": "8.x-1.11",
  6259. "datestamp": "1542564480",
  6260. "security-coverage": {
  6261. "status": "covered",
  6262. "message": "Covered by Drupal's security advisory policy"
  6263. }
  6264. },
  6265. "drush": {
  6266. "services": {
  6267. "drush.services.yml": "^9"
  6268. }
  6269. }
  6270. },
  6271. "notification-url": "https://packages.drupal.org/8/downloads",
  6272. "license": [
  6273. "GPL-2.0+"
  6274. ],
  6275. "authors": [
  6276. {
  6277. "name": "Thomas Seidl",
  6278. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6279. },
  6280. {
  6281. "name": "Nick Veenhof",
  6282. "homepage": "https://www.drupal.org/u/nick_vh"
  6283. },
  6284. {
  6285. "name": "See other contributors",
  6286. "homepage": "https://www.drupal.org/node/790418/committers"
  6287. }
  6288. ],
  6289. "description": "Provides a generic framework for modules offering search capabilities.",
  6290. "homepage": "https://www.drupal.org/project/search_api",
  6291. "support": {
  6292. "source": "http://git.drupal.org/project/search_api.git",
  6293. "issues": "https://www.drupal.org/project/issues/search_api",
  6294. "irc": "irc://irc.freenode.org/drupal-search-api"
  6295. }
  6296. },
  6297. {
  6298. "name": "drupal/search_api_db",
  6299. "version": "1.11.0",
  6300. "require": {
  6301. "drupal/core": "~8.0",
  6302. "drupal/search_api": "self.version"
  6303. },
  6304. "type": "metapackage",
  6305. "extra": {
  6306. "branch-alias": {
  6307. "dev-1.x": "1.x-dev"
  6308. },
  6309. "drupal": {
  6310. "version": "8.x-1.11",
  6311. "datestamp": "1542564480",
  6312. "security-coverage": {
  6313. "status": "covered",
  6314. "message": "Covered by Drupal's security advisory policy"
  6315. }
  6316. }
  6317. },
  6318. "notification-url": "https://packages.drupal.org/8/downloads",
  6319. "license": [
  6320. "GPL-2.0-or-later"
  6321. ],
  6322. "authors": [
  6323. {
  6324. "name": "Nick_vh",
  6325. "homepage": "https://www.drupal.org/user/122682"
  6326. },
  6327. {
  6328. "name": "drunken monkey",
  6329. "homepage": "https://www.drupal.org/user/205582"
  6330. }
  6331. ],
  6332. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6333. "homepage": "https://www.drupal.org/project/search_api",
  6334. "support": {
  6335. "source": "http://cgit.drupalcode.org/search_api"
  6336. }
  6337. },
  6338. {
  6339. "name": "drupal/select_translation",
  6340. "version": "dev-1.x",
  6341. "source": {
  6342. "type": "git",
  6343. "url": "https://git.drupal.org/project/select_translation",
  6344. "reference": "2efacaa519fff91593276a15fc4ef14ba665d4c2"
  6345. },
  6346. "require": {
  6347. "drupal/core": "*"
  6348. },
  6349. "type": "drupal-module",
  6350. "extra": {
  6351. "branch-alias": {
  6352. "dev-1.x": "1.x-dev"
  6353. },
  6354. "drupal": {
  6355. "version": "8.x-1.0+1-dev",
  6356. "datestamp": "1496930042",
  6357. "security-coverage": {
  6358. "status": "not-covered",
  6359. "message": "Dev releases are not covered by Drupal security advisories."
  6360. }
  6361. }
  6362. },
  6363. "notification-url": "https://packages.drupal.org/8/downloads",
  6364. "license": [
  6365. "GPL-2.0-or-later"
  6366. ],
  6367. "authors": [
  6368. {
  6369. "name": "Alice Heaton",
  6370. "homepage": "https://www.drupal.org/user/60899"
  6371. },
  6372. {
  6373. "name": "alcroito",
  6374. "homepage": "https://www.drupal.org/user/176134"
  6375. },
  6376. {
  6377. "name": "ao2",
  6378. "homepage": "https://www.drupal.org/user/234884"
  6379. }
  6380. ],
  6381. "description": "Provides a Views filter to select which translation of a node should be displayed.",
  6382. "homepage": "https://www.drupal.org/project/select_translation",
  6383. "support": {
  6384. "source": "http://cgit.drupalcode.org/select_translation"
  6385. },
  6386. "time": "2018-11-20T15:20:53+00:00"
  6387. },
  6388. {
  6389. "name": "drupal/smart_trim",
  6390. "version": "1.1.0",
  6391. "source": {
  6392. "type": "git",
  6393. "url": "https://git.drupal.org/project/smart_trim",
  6394. "reference": "8.x-1.1"
  6395. },
  6396. "dist": {
  6397. "type": "zip",
  6398. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.1.zip",
  6399. "reference": "8.x-1.1",
  6400. "shasum": "5f1c0f15914208e0ad2ec5cce1d6419040596fc0"
  6401. },
  6402. "require": {
  6403. "drupal/core": "*"
  6404. },
  6405. "type": "drupal-module",
  6406. "extra": {
  6407. "branch-alias": {
  6408. "dev-1.x": "1.x-dev"
  6409. },
  6410. "drupal": {
  6411. "version": "8.x-1.1",
  6412. "datestamp": "1516301286",
  6413. "security-coverage": {
  6414. "status": "covered",
  6415. "message": "Covered by Drupal's security advisory policy"
  6416. }
  6417. }
  6418. },
  6419. "notification-url": "https://packages.drupal.org/8/downloads",
  6420. "license": [
  6421. "GPL-2.0+"
  6422. ],
  6423. "authors": [
  6424. {
  6425. "name": "Mark Casias (markie)",
  6426. "homepage": "https://www.drupal.org/u/markie",
  6427. "role": "Maintainer"
  6428. },
  6429. {
  6430. "name": "chrisjlee",
  6431. "homepage": "https://www.drupal.org/user/760600"
  6432. },
  6433. {
  6434. "name": "drywall",
  6435. "homepage": "https://www.drupal.org/user/192591"
  6436. },
  6437. {
  6438. "name": "jsenich",
  6439. "homepage": "https://www.drupal.org/user/58871"
  6440. },
  6441. {
  6442. "name": "markie",
  6443. "homepage": "https://www.drupal.org/user/206687"
  6444. },
  6445. {
  6446. "name": "newsignature",
  6447. "homepage": "https://www.drupal.org/user/765518"
  6448. }
  6449. ],
  6450. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6451. "homepage": "https://drupal.org/project/smart_trim",
  6452. "support": {
  6453. "source": "https://cgit.drupalcode.org/smart_trim",
  6454. "issues": "https://drupal.org/project/issues/smart_trim"
  6455. }
  6456. },
  6457. {
  6458. "name": "drupal/smtp",
  6459. "version": "1.0.0-beta4",
  6460. "source": {
  6461. "type": "git",
  6462. "url": "https://git.drupal.org/project/smtp",
  6463. "reference": "8.x-1.0-beta4"
  6464. },
  6465. "dist": {
  6466. "type": "zip",
  6467. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0-beta4.zip",
  6468. "reference": "8.x-1.0-beta4",
  6469. "shasum": "80a4df4b2fd2d1b2dc653552d232ce98cb54bb9d"
  6470. },
  6471. "require": {
  6472. "drupal/core": "~8.0"
  6473. },
  6474. "type": "drupal-module",
  6475. "extra": {
  6476. "branch-alias": {
  6477. "dev-1.x": "1.x-dev"
  6478. },
  6479. "drupal": {
  6480. "version": "8.x-1.0-beta4",
  6481. "datestamp": "1527598380",
  6482. "security-coverage": {
  6483. "status": "not-covered",
  6484. "message": "Beta releases are not covered by Drupal security advisories."
  6485. }
  6486. }
  6487. },
  6488. "notification-url": "https://packages.drupal.org/8/downloads",
  6489. "license": [
  6490. "GPL-2.0"
  6491. ],
  6492. "authors": [
  6493. {
  6494. "name": "LukeLast",
  6495. "homepage": "https://www.drupal.org/user/30151"
  6496. },
  6497. {
  6498. "name": "japerry",
  6499. "homepage": "https://www.drupal.org/user/45640"
  6500. },
  6501. {
  6502. "name": "josesanmartin",
  6503. "homepage": "https://www.drupal.org/user/72012"
  6504. },
  6505. {
  6506. "name": "oadaeh",
  6507. "homepage": "https://www.drupal.org/user/4649"
  6508. },
  6509. {
  6510. "name": "wundo",
  6511. "homepage": "https://www.drupal.org/user/25523"
  6512. },
  6513. {
  6514. "name": "yettyn",
  6515. "homepage": "https://www.drupal.org/user/93281"
  6516. }
  6517. ],
  6518. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6519. "homepage": "https://www.drupal.org/project/smtp",
  6520. "support": {
  6521. "source": "http://cgit.drupalcode.org/smtp",
  6522. "issues": "https://www.drupal.org/project/issues/smtp"
  6523. }
  6524. },
  6525. {
  6526. "name": "drupal/synonyms",
  6527. "version": "1.0.0-alpha1",
  6528. "source": {
  6529. "type": "git",
  6530. "url": "https://git.drupal.org/project/synonyms",
  6531. "reference": "8.x-1.0-alpha1"
  6532. },
  6533. "dist": {
  6534. "type": "zip",
  6535. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha1.zip",
  6536. "reference": "8.x-1.0-alpha1",
  6537. "shasum": "98d39b5b0a26c7b5f9e6dfc4f72285ad014d14f4"
  6538. },
  6539. "require": {
  6540. "drupal/core": "~8.0"
  6541. },
  6542. "type": "drupal-module",
  6543. "extra": {
  6544. "branch-alias": {
  6545. "dev-1.x": "1.x-dev"
  6546. },
  6547. "drupal": {
  6548. "version": "8.x-1.0-alpha1",
  6549. "datestamp": "1477604941",
  6550. "security-coverage": {
  6551. "status": "not-covered",
  6552. "message": "Alpha releases are not covered by Drupal security advisories."
  6553. }
  6554. }
  6555. },
  6556. "notification-url": "https://packages.drupal.org/8/downloads",
  6557. "license": [
  6558. "GPL-2.0-or-later"
  6559. ],
  6560. "authors": [
  6561. {
  6562. "name": "Zen",
  6563. "homepage": "https://www.drupal.org/user/21209"
  6564. },
  6565. {
  6566. "name": "bojanz",
  6567. "homepage": "https://www.drupal.org/user/86106"
  6568. },
  6569. {
  6570. "name": "bucefal91",
  6571. "homepage": "https://www.drupal.org/user/504128"
  6572. }
  6573. ],
  6574. "description": "Provides synonyms feature for content entities.",
  6575. "homepage": "https://www.drupal.org/project/synonyms",
  6576. "support": {
  6577. "source": "http://cgit.drupalcode.org/synonyms"
  6578. }
  6579. },
  6580. {
  6581. "name": "drupal/telephone_formatter",
  6582. "version": "1.0.0",
  6583. "source": {
  6584. "type": "git",
  6585. "url": "https://git.drupal.org/project/telephone_formatter",
  6586. "reference": "8.x-1.0"
  6587. },
  6588. "dist": {
  6589. "type": "zip",
  6590. "url": "https://ftp.drupal.org/files/projects/telephone_formatter-8.x-1.0.zip",
  6591. "reference": "8.x-1.0",
  6592. "shasum": "a666215b950e8ec2c83d3882008db8a59c1caf39"
  6593. },
  6594. "require": {
  6595. "drupal/core": "*",
  6596. "giggsey/libphonenumber-for-php": "^8.0"
  6597. },
  6598. "suggest": {
  6599. "drupal/telephone_validation": "Unsure data quality"
  6600. },
  6601. "type": "drupal-module",
  6602. "extra": {
  6603. "branch-alias": {
  6604. "dev-1.x": "1.x-dev"
  6605. },
  6606. "drupal": {
  6607. "version": "8.x-1.0",
  6608. "datestamp": "1549031580",
  6609. "security-coverage": {
  6610. "status": "covered",
  6611. "message": "Covered by Drupal's security advisory policy"
  6612. }
  6613. }
  6614. },
  6615. "notification-url": "https://packages.drupal.org/8/downloads",
  6616. "license": [
  6617. "GPL-2.0+"
  6618. ],
  6619. "authors": [
  6620. {
  6621. "name": "Jakub Piasecki",
  6622. "homepage": "https://www.drupal.org/user/1532844",
  6623. "email": "jakub@piaseccy.pl"
  6624. }
  6625. ],
  6626. "description": "Additional formatters to Telephone field.",
  6627. "homepage": "https://www.drupal.org/project/telephone_formatter",
  6628. "support": {
  6629. "source": "http://cgit.drupalcode.org/telephone_formatter",
  6630. "issues": "http://drupal.org/project/issues/telephone_formatter"
  6631. }
  6632. },
  6633. {
  6634. "name": "drupal/telephone_validation",
  6635. "version": "2.2.0",
  6636. "source": {
  6637. "type": "git",
  6638. "url": "https://git.drupal.org/project/telephone_validation",
  6639. "reference": "8.x-2.2"
  6640. },
  6641. "dist": {
  6642. "type": "zip",
  6643. "url": "https://ftp.drupal.org/files/projects/telephone_validation-8.x-2.2.zip",
  6644. "reference": "8.x-2.2",
  6645. "shasum": "5f79cd8890cbc70a7c234f88a4f37a5d42354443"
  6646. },
  6647. "require": {
  6648. "drupal/core": "^8.0",
  6649. "drupal/telephone": "*",
  6650. "giggsey/libphonenumber-for-php": "~8.0"
  6651. },
  6652. "type": "drupal-module",
  6653. "extra": {
  6654. "branch-alias": {
  6655. "dev-2.x": "2.x-dev"
  6656. },
  6657. "drupal": {
  6658. "version": "8.x-2.2",
  6659. "datestamp": "1549289280",
  6660. "security-coverage": {
  6661. "status": "covered",
  6662. "message": "Covered by Drupal's security advisory policy"
  6663. }
  6664. }
  6665. },
  6666. "notification-url": "https://packages.drupal.org/8/downloads",
  6667. "license": [
  6668. "GPL-2.0+"
  6669. ],
  6670. "authors": [
  6671. {
  6672. "name": "zaporylie",
  6673. "homepage": "https://www.drupal.org/user/1532844"
  6674. }
  6675. ],
  6676. "description": "Use 3rd party library to validate telephone field.",
  6677. "homepage": "http://drupal.org/project/telephone_validation",
  6678. "support": {
  6679. "source": "http://cgit.drupalcode.org/telephone_validation",
  6680. "issues": "http://drupal.org/project/issues/telephone_validation"
  6681. }
  6682. },
  6683. {
  6684. "name": "drupal/token",
  6685. "version": "1.5.0",
  6686. "source": {
  6687. "type": "git",
  6688. "url": "https://git.drupal.org/project/token",
  6689. "reference": "8.x-1.5"
  6690. },
  6691. "dist": {
  6692. "type": "zip",
  6693. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  6694. "reference": "8.x-1.5",
  6695. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  6696. },
  6697. "require": {
  6698. "drupal/core": "^8.5"
  6699. },
  6700. "type": "drupal-module",
  6701. "extra": {
  6702. "branch-alias": {
  6703. "dev-1.x": "1.x-dev"
  6704. },
  6705. "drupal": {
  6706. "version": "8.x-1.5",
  6707. "datestamp": "1537557481",
  6708. "security-coverage": {
  6709. "status": "covered",
  6710. "message": "Covered by Drupal's security advisory policy"
  6711. }
  6712. }
  6713. },
  6714. "notification-url": "https://packages.drupal.org/8/downloads",
  6715. "license": [
  6716. "GPL-2.0-or-later"
  6717. ],
  6718. "authors": [
  6719. {
  6720. "name": "Berdir",
  6721. "homepage": "https://www.drupal.org/user/214652"
  6722. },
  6723. {
  6724. "name": "Dave Reid",
  6725. "homepage": "https://www.drupal.org/user/53892"
  6726. },
  6727. {
  6728. "name": "eaton",
  6729. "homepage": "https://www.drupal.org/user/16496"
  6730. },
  6731. {
  6732. "name": "fago",
  6733. "homepage": "https://www.drupal.org/user/16747"
  6734. },
  6735. {
  6736. "name": "greggles",
  6737. "homepage": "https://www.drupal.org/user/36762"
  6738. },
  6739. {
  6740. "name": "mikeryan",
  6741. "homepage": "https://www.drupal.org/user/4420"
  6742. }
  6743. ],
  6744. "description": "Provides a user interface for the Token API and some missing core tokens.",
  6745. "homepage": "https://www.drupal.org/project/token",
  6746. "support": {
  6747. "source": "http://cgit.drupalcode.org/token"
  6748. }
  6749. },
  6750. {
  6751. "name": "drupal/toolbar_themes",
  6752. "version": "1.0.0-alpha4",
  6753. "source": {
  6754. "type": "git",
  6755. "url": "https://git.drupal.org/project/toolbar_themes",
  6756. "reference": "8.x-1.0-alpha4"
  6757. },
  6758. "dist": {
  6759. "type": "zip",
  6760. "url": "https://ftp.drupal.org/files/projects/toolbar_themes-8.x-1.0-alpha4.zip",
  6761. "reference": "8.x-1.0-alpha4",
  6762. "shasum": "15c38da8bfd5a44e47e436d8f432a0aaf6b2cd70"
  6763. },
  6764. "require": {
  6765. "drupal/core": "*"
  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.0-alpha4",
  6774. "datestamp": "1474198439",
  6775. "security-coverage": {
  6776. "status": "not-covered",
  6777. "message": "Project has not opted into security advisory coverage!"
  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": "Jeff Burnz",
  6788. "homepage": "https://www.drupal.org/user/61393"
  6789. }
  6790. ],
  6791. "description": "Apply themes to the toolbar.",
  6792. "homepage": "https://www.drupal.org/project/toolbar_themes",
  6793. "support": {
  6794. "source": "http://cgit.drupalcode.org/toolbar_themes"
  6795. }
  6796. },
  6797. {
  6798. "name": "drupal/translation_views",
  6799. "version": "1.0.0-alpha4",
  6800. "source": {
  6801. "type": "git",
  6802. "url": "https://git.drupal.org/project/translation_views",
  6803. "reference": "8.x-1.0-alpha4"
  6804. },
  6805. "dist": {
  6806. "type": "zip",
  6807. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha4.zip",
  6808. "reference": "8.x-1.0-alpha4",
  6809. "shasum": "96f7828005a8d559f31f0dfcb471a68698311cda"
  6810. },
  6811. "require": {
  6812. "drupal/core": "*"
  6813. },
  6814. "type": "drupal-module",
  6815. "extra": {
  6816. "branch-alias": {
  6817. "dev-1.x": "1.x-dev"
  6818. },
  6819. "drupal": {
  6820. "version": "8.x-1.0-alpha4",
  6821. "datestamp": "1538124180",
  6822. "security-coverage": {
  6823. "status": "not-covered",
  6824. "message": "Project has not opted into security advisory coverage!"
  6825. }
  6826. }
  6827. },
  6828. "notification-url": "https://packages.drupal.org/8/downloads",
  6829. "license": [
  6830. "GPL-2.0-or-later"
  6831. ],
  6832. "authors": [
  6833. {
  6834. "name": "matsbla",
  6835. "homepage": "https://www.drupal.org/user/2325394"
  6836. },
  6837. {
  6838. "name": "vlad.dancer",
  6839. "homepage": "https://www.drupal.org/user/903844"
  6840. }
  6841. ],
  6842. "description": "Create customized lists and queries of translations from your database.",
  6843. "homepage": "https://www.drupal.org/project/translation_views",
  6844. "support": {
  6845. "source": "http://cgit.drupalcode.org/translation_views"
  6846. }
  6847. },
  6848. {
  6849. "name": "drupal/ultimate_cron",
  6850. "version": "2.0.0-alpha4",
  6851. "source": {
  6852. "type": "git",
  6853. "url": "https://git.drupal.org/project/ultimate_cron",
  6854. "reference": "8.x-2.0-alpha4"
  6855. },
  6856. "dist": {
  6857. "type": "zip",
  6858. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha4.zip",
  6859. "reference": "8.x-2.0-alpha4",
  6860. "shasum": "50cdadd061f1f6fadb961b04ed04348bcc4719d3"
  6861. },
  6862. "require": {
  6863. "drupal/core": "~8.0"
  6864. },
  6865. "type": "drupal-module",
  6866. "extra": {
  6867. "branch-alias": {
  6868. "dev-2.x": "2.x-dev"
  6869. },
  6870. "drupal": {
  6871. "version": "8.x-2.0-alpha4",
  6872. "datestamp": "1527925385",
  6873. "security-coverage": {
  6874. "status": "not-covered",
  6875. "message": "Alpha releases are not covered by Drupal security advisories."
  6876. }
  6877. }
  6878. },
  6879. "notification-url": "https://packages.drupal.org/8/downloads",
  6880. "license": [
  6881. "GPL-2.0-or-later"
  6882. ],
  6883. "authors": [
  6884. {
  6885. "name": "Berdir",
  6886. "homepage": "https://www.drupal.org/user/214652"
  6887. },
  6888. {
  6889. "name": "Dane Powell",
  6890. "homepage": "https://www.drupal.org/user/339326"
  6891. },
  6892. {
  6893. "name": "arnested",
  6894. "homepage": "https://www.drupal.org/user/245635"
  6895. },
  6896. {
  6897. "name": "gielfeldt",
  6898. "homepage": "https://www.drupal.org/user/366993"
  6899. },
  6900. {
  6901. "name": "miro_dietiker",
  6902. "homepage": "https://www.drupal.org/user/227761"
  6903. }
  6904. ],
  6905. "description": "Cron",
  6906. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6907. "support": {
  6908. "source": "http://cgit.drupalcode.org/ultimate_cron"
  6909. }
  6910. },
  6911. {
  6912. "name": "drupal/url_to_video_filter",
  6913. "version": "1.3.0",
  6914. "source": {
  6915. "type": "git",
  6916. "url": "https://git.drupal.org/project/url_to_video_filter",
  6917. "reference": "8.x-1.3"
  6918. },
  6919. "dist": {
  6920. "type": "zip",
  6921. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  6922. "reference": "8.x-1.3",
  6923. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  6924. },
  6925. "require": {
  6926. "drupal/core": "~8.0"
  6927. },
  6928. "type": "drupal-module",
  6929. "extra": {
  6930. "branch-alias": {
  6931. "dev-1.x": "1.x-dev"
  6932. },
  6933. "drupal": {
  6934. "version": "8.x-1.3",
  6935. "datestamp": "1532695981",
  6936. "security-coverage": {
  6937. "status": "covered",
  6938. "message": "Covered by Drupal's security advisory policy"
  6939. }
  6940. }
  6941. },
  6942. "notification-url": "https://packages.drupal.org/8/downloads",
  6943. "license": [
  6944. "GPL-2.0-or-later"
  6945. ],
  6946. "authors": [
  6947. {
  6948. "name": "Jaypan",
  6949. "homepage": "https://www.drupal.org/user/324696"
  6950. }
  6951. ],
  6952. "description": "Text filter to convert URLs to embedded videos",
  6953. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  6954. "support": {
  6955. "source": "http://cgit.drupalcode.org/url_to_video_filter"
  6956. }
  6957. },
  6958. {
  6959. "name": "drupal/video_embed_field",
  6960. "version": "2.0.0",
  6961. "source": {
  6962. "type": "git",
  6963. "url": "https://git.drupal.org/project/video_embed_field",
  6964. "reference": "8.x-2.0"
  6965. },
  6966. "dist": {
  6967. "type": "zip",
  6968. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.0.zip",
  6969. "reference": "8.x-2.0",
  6970. "shasum": "e864f090b3cb9405376ca324d81ace83613e2019"
  6971. },
  6972. "require": {
  6973. "drupal/core": "*"
  6974. },
  6975. "require-dev": {
  6976. "drupal/colorbox": "*",
  6977. "drupal/media_entity": "*",
  6978. "drupal/media_entity_embeddable_video": "*"
  6979. },
  6980. "type": "drupal-module",
  6981. "extra": {
  6982. "branch-alias": {
  6983. "dev-2.x": "2.x-dev"
  6984. },
  6985. "drupal": {
  6986. "version": "8.x-1.x",
  6987. "datestamp": "1523338084",
  6988. "security-coverage": {
  6989. "status": "covered",
  6990. "message": "Covered by Drupal's security advisory policy"
  6991. },
  6992. "package": "Field types"
  6993. }
  6994. },
  6995. "notification-url": "https://packages.drupal.org/8/downloads",
  6996. "license": [
  6997. "GPL-2.0+"
  6998. ],
  6999. "authors": [
  7000. {
  7001. "name": "Sam152",
  7002. "homepage": "https://www.drupal.org/user/1485048"
  7003. },
  7004. {
  7005. "name": "jec006",
  7006. "homepage": "https://www.drupal.org/user/855980"
  7007. },
  7008. {
  7009. "name": "plopesc",
  7010. "homepage": "https://www.drupal.org/user/282415"
  7011. }
  7012. ],
  7013. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7014. "homepage": "https://www.drupal.org/project/video_embed_field",
  7015. "support": {
  7016. "source": "http://cgit.drupalcode.org/video_embed_field"
  7017. }
  7018. },
  7019. {
  7020. "name": "drupal/views_bulk_edit",
  7021. "version": "2.2.0",
  7022. "source": {
  7023. "type": "git",
  7024. "url": "https://git.drupal.org/project/views_bulk_edit",
  7025. "reference": "8.x-2.2"
  7026. },
  7027. "dist": {
  7028. "type": "zip",
  7029. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  7030. "reference": "8.x-2.2",
  7031. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  7032. },
  7033. "require": {
  7034. "drupal/core": "*",
  7035. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  7036. },
  7037. "type": "drupal-module",
  7038. "extra": {
  7039. "branch-alias": {
  7040. "dev-2.x": "2.x-dev"
  7041. },
  7042. "drupal": {
  7043. "version": "8.x-2.2",
  7044. "datestamp": "1532689085",
  7045. "security-coverage": {
  7046. "status": "covered",
  7047. "message": "Covered by Drupal's security advisory policy"
  7048. }
  7049. }
  7050. },
  7051. "notification-url": "https://packages.drupal.org/8/downloads",
  7052. "license": [
  7053. "GPL-2.0+"
  7054. ],
  7055. "authors": [
  7056. {
  7057. "name": "Marcin Grabias",
  7058. "homepage": "https://www.drupal.org/u/graber"
  7059. },
  7060. {
  7061. "name": "benjy",
  7062. "homepage": "https://www.drupal.org/user/1852732"
  7063. }
  7064. ],
  7065. "description": "Allows bulk edition of entity field values.",
  7066. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7067. "support": {
  7068. "source": "http://cgit.drupalcode.org/views_bulk_edit",
  7069. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7070. }
  7071. },
  7072. {
  7073. "name": "drupal/views_bulk_operations",
  7074. "version": "2.4.0",
  7075. "source": {
  7076. "type": "git",
  7077. "url": "https://git.drupal.org/project/views_bulk_operations",
  7078. "reference": "8.x-2.4"
  7079. },
  7080. "dist": {
  7081. "type": "zip",
  7082. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.4.zip",
  7083. "reference": "8.x-2.4",
  7084. "shasum": "50c5778770f3a92e38ecf664301b77146e3cc931"
  7085. },
  7086. "require": {
  7087. "drupal/core": "^8.4"
  7088. },
  7089. "type": "drupal-module",
  7090. "extra": {
  7091. "branch-alias": {
  7092. "dev-2.x": "2.x-dev"
  7093. },
  7094. "drupal": {
  7095. "version": "8.x-2.4",
  7096. "datestamp": "1530516821",
  7097. "security-coverage": {
  7098. "status": "covered",
  7099. "message": "Covered by Drupal's security advisory policy"
  7100. }
  7101. },
  7102. "drush": {
  7103. "services": {
  7104. "drush.services.yml": "^9"
  7105. }
  7106. }
  7107. },
  7108. "notification-url": "https://packages.drupal.org/8/downloads",
  7109. "license": [
  7110. "GPL-2.0+"
  7111. ],
  7112. "authors": [
  7113. {
  7114. "name": "Marcin Grabias",
  7115. "homepage": "https://www.drupal.org/u/graber"
  7116. },
  7117. {
  7118. "name": "Jon Pugh",
  7119. "homepage": "https://www.drupal.org/user/17028"
  7120. },
  7121. {
  7122. "name": "bojanz",
  7123. "homepage": "https://www.drupal.org/user/86106"
  7124. },
  7125. {
  7126. "name": "infojunkie",
  7127. "homepage": "https://www.drupal.org/user/48424"
  7128. },
  7129. {
  7130. "name": "joelpittet",
  7131. "homepage": "https://www.drupal.org/user/160302"
  7132. }
  7133. ],
  7134. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7135. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7136. "support": {
  7137. "source": "http://cgit.drupalcode.org/views_bulk_operations",
  7138. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7139. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7140. }
  7141. },
  7142. {
  7143. "name": "drupal/views_conditional",
  7144. "version": "dev-1.x",
  7145. "source": {
  7146. "type": "git",
  7147. "url": "https://git.drupal.org/project/views_conditional",
  7148. "reference": "414f27d55ab8d25ce8236dbd9fc359bc454fe9c8"
  7149. },
  7150. "require": {
  7151. "drupal/core": "*"
  7152. },
  7153. "type": "drupal-module",
  7154. "extra": {
  7155. "branch-alias": {
  7156. "dev-1.x": "1.x-dev"
  7157. },
  7158. "drupal": {
  7159. "version": "8.x-1.x-dev",
  7160. "datestamp": "1514538185",
  7161. "security-coverage": {
  7162. "status": "not-covered",
  7163. "message": "Dev releases are not covered by Drupal security advisories."
  7164. }
  7165. }
  7166. },
  7167. "notification-url": "https://packages.drupal.org/8/downloads",
  7168. "license": [
  7169. "GPL-2.0-or-later"
  7170. ],
  7171. "authors": [
  7172. {
  7173. "name": "MChittenden",
  7174. "homepage": "https://www.drupal.org/user/2288348"
  7175. },
  7176. {
  7177. "name": "anand.toshniwal93",
  7178. "homepage": "https://www.drupal.org/user/3345088"
  7179. },
  7180. {
  7181. "name": "ofry",
  7182. "homepage": "https://www.drupal.org/user/2740599"
  7183. }
  7184. ],
  7185. "description": "Allows conditional views output.",
  7186. "homepage": "https://www.drupal.org/project/views_conditional",
  7187. "support": {
  7188. "source": "http://cgit.drupalcode.org/views_conditional"
  7189. },
  7190. "time": "2019-02-05T19:20:00+00:00"
  7191. },
  7192. {
  7193. "name": "drupal/views_ef_fieldset",
  7194. "version": "dev-1.x",
  7195. "source": {
  7196. "type": "git",
  7197. "url": "https://git.drupal.org/project/views_ef_fieldset",
  7198. "reference": "f435fba5ce99bead7e57c32479c3e744b10d0cbf"
  7199. },
  7200. "require": {
  7201. "drupal/core": "*",
  7202. "php": ">=7"
  7203. },
  7204. "require-dev": {
  7205. "drupol/drupal-conventions": "^1"
  7206. },
  7207. "type": "drupal-module",
  7208. "extra": {
  7209. "branch-alias": {
  7210. "dev-1.x": "1.x-dev"
  7211. },
  7212. "drupal": {
  7213. "version": "8.x-1.2+0-dev",
  7214. "datestamp": "1549376580",
  7215. "security-coverage": {
  7216. "status": "not-covered",
  7217. "message": "Dev releases are not covered by Drupal security advisories."
  7218. }
  7219. },
  7220. "grumphp": {
  7221. "config-default-path": "vendor/drupol/drupal-conventions/config/drupal8/grumphp.yml"
  7222. },
  7223. "composer-exit-on-patch-failure": true,
  7224. "enable-patching": true,
  7225. "patches": {
  7226. "drupal/core": {
  7227. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  7228. }
  7229. }
  7230. },
  7231. "autoload-dev": {
  7232. "psr-4": {
  7233. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  7234. }
  7235. },
  7236. "notification-url": "https://packages.drupal.org/8/downloads",
  7237. "scripts": {
  7238. "grumphp": [
  7239. "./vendor/bin/grumphp run"
  7240. ]
  7241. },
  7242. "license": [
  7243. "GPL-2.0+"
  7244. ],
  7245. "authors": [
  7246. {
  7247. "name": "Pol Dellaiera",
  7248. "homepage": "https://www.drupal.org/user/47194",
  7249. "email": "pol.dellaiera@protonmail.com"
  7250. },
  7251. {
  7252. "name": "ciss",
  7253. "homepage": "https://www.drupal.org/user/1632364"
  7254. }
  7255. ],
  7256. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  7257. "homepage": "https://drupal.org/project/views_field_formatter",
  7258. "support": {
  7259. "source": "http://cgit.drupalcode.org/views_ef_fieldset"
  7260. },
  7261. "time": "2019-02-06T15:33:42+00:00"
  7262. },
  7263. {
  7264. "name": "drupal/workflow",
  7265. "version": "dev-1.x",
  7266. "source": {
  7267. "type": "git",
  7268. "url": "https://git.drupal.org/project/workflow",
  7269. "reference": "19030d5b4dd9523153a7af6e2df44cd9a03109b2"
  7270. },
  7271. "require": {
  7272. "drupal/core": "*"
  7273. },
  7274. "type": "drupal-module",
  7275. "extra": {
  7276. "branch-alias": {
  7277. "dev-1.x": "1.x-dev"
  7278. },
  7279. "drupal": {
  7280. "version": "8.x-1.1+34-dev",
  7281. "datestamp": "1548775680",
  7282. "security-coverage": {
  7283. "status": "not-covered",
  7284. "message": "Dev releases are not covered by Drupal security advisories."
  7285. }
  7286. }
  7287. },
  7288. "notification-url": "https://packages.drupal.org/8/downloads",
  7289. "license": [
  7290. "GPL-2.0-or-later"
  7291. ],
  7292. "authors": [
  7293. {
  7294. "name": "Bastlynn",
  7295. "homepage": "https://www.drupal.org/user/275249"
  7296. },
  7297. {
  7298. "name": "Heine",
  7299. "homepage": "https://www.drupal.org/user/17943"
  7300. },
  7301. {
  7302. "name": "JacobSingh",
  7303. "homepage": "https://www.drupal.org/user/68912"
  7304. },
  7305. {
  7306. "name": "NancyDru",
  7307. "homepage": "https://www.drupal.org/user/101412"
  7308. },
  7309. {
  7310. "name": "eaton",
  7311. "homepage": "https://www.drupal.org/user/16496"
  7312. },
  7313. {
  7314. "name": "johnv",
  7315. "homepage": "https://www.drupal.org/user/591042"
  7316. },
  7317. {
  7318. "name": "jvandyk",
  7319. "homepage": "https://www.drupal.org/user/2375"
  7320. },
  7321. {
  7322. "name": "mfredrickson",
  7323. "homepage": "https://www.drupal.org/user/31994"
  7324. },
  7325. {
  7326. "name": "q0rban",
  7327. "homepage": "https://www.drupal.org/user/31022"
  7328. }
  7329. ],
  7330. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  7331. "homepage": "https://www.drupal.org/project/workflow",
  7332. "support": {
  7333. "source": "http://cgit.drupalcode.org/workflow"
  7334. },
  7335. "time": "2019-01-29T22:35:30+00:00"
  7336. },
  7337. {
  7338. "name": "drush/drush",
  7339. "version": "9.5.2",
  7340. "source": {
  7341. "type": "git",
  7342. "url": "https://github.com/drush-ops/drush.git",
  7343. "reference": "17f0106706391675a281c6d212850853bdbe90f9"
  7344. },
  7345. "dist": {
  7346. "type": "zip",
  7347. "url": "https://api.github.com/repos/drush-ops/drush/zipball/17f0106706391675a281c6d212850853bdbe90f9",
  7348. "reference": "17f0106706391675a281c6d212850853bdbe90f9",
  7349. "shasum": ""
  7350. },
  7351. "require": {
  7352. "chi-teck/drupal-code-generator": "^1.27.0",
  7353. "composer/semver": "^1.4",
  7354. "consolidation/annotated-command": "^2.9.1",
  7355. "consolidation/config": "^1.1.0",
  7356. "consolidation/output-formatters": "^3.1.12",
  7357. "consolidation/robo": "^1.1.5",
  7358. "consolidation/site-alias": "^1.1.5",
  7359. "ext-dom": "*",
  7360. "grasmash/yaml-expander": "^1.1.1",
  7361. "league/container": "~2",
  7362. "php": ">=5.6.0",
  7363. "psr/log": "~1.0",
  7364. "psy/psysh": "~0.6",
  7365. "symfony/config": "^3.4",
  7366. "symfony/console": "^3.4",
  7367. "symfony/event-dispatcher": "^3.4",
  7368. "symfony/finder": "^3.4",
  7369. "symfony/process": "^3.4",
  7370. "symfony/var-dumper": "^3.4",
  7371. "symfony/yaml": "^3.4",
  7372. "webflo/drupal-finder": "^1.1",
  7373. "webmozart/path-util": "^2.1.0"
  7374. },
  7375. "require-dev": {
  7376. "composer/installers": "^1.2",
  7377. "cweagans/composer-patches": "~1.0",
  7378. "drupal/alinks": "1.0.0",
  7379. "drupal/devel": "^1.0@RC",
  7380. "drupal/empty_theme": "1.0",
  7381. "g1a/composer-test-scenarios": "^2.2.0",
  7382. "lox/xhprof": "dev-master",
  7383. "phpunit/phpunit": "^4.8.36 || ^6.1",
  7384. "squizlabs/php_codesniffer": "^2.7",
  7385. "vlucas/phpdotenv": "^2.4",
  7386. "webflo/drupal-core-strict": "8.6.x-dev"
  7387. },
  7388. "bin": [
  7389. "drush"
  7390. ],
  7391. "type": "library",
  7392. "extra": {
  7393. "installer-paths": {
  7394. "sut/core": [
  7395. "type:drupal-core"
  7396. ],
  7397. "sut/libraries/{$name}": [
  7398. "type:drupal-library"
  7399. ],
  7400. "sut/modules/unish/{$name}": [
  7401. "drupal/devel"
  7402. ],
  7403. "sut/themes/unish/{$name}": [
  7404. "drupal/empty_theme"
  7405. ],
  7406. "sut/modules/contrib/{$name}": [
  7407. "type:drupal-module"
  7408. ],
  7409. "sut/profiles/contrib/{$name}": [
  7410. "type:drupal-profile"
  7411. ],
  7412. "sut/themes/contrib/{$name}": [
  7413. "type:drupal-theme"
  7414. ],
  7415. "sut/drush/contrib/{$name}": [
  7416. "type:drupal-drush"
  7417. ]
  7418. },
  7419. "branch-alias": {
  7420. "dev-master": "9.x-dev"
  7421. }
  7422. },
  7423. "autoload": {
  7424. "psr-4": {
  7425. "Drush\\": "src/",
  7426. "Drush\\Internal\\": "internal-copy/",
  7427. "Unish\\": "tests/"
  7428. }
  7429. },
  7430. "notification-url": "https://packagist.org/downloads/",
  7431. "license": [
  7432. "GPL-2.0-or-later"
  7433. ],
  7434. "authors": [
  7435. {
  7436. "name": "Moshe Weitzman",
  7437. "email": "weitzman@tejasa.com"
  7438. },
  7439. {
  7440. "name": "Owen Barton",
  7441. "email": "drupal@owenbarton.com"
  7442. },
  7443. {
  7444. "name": "Greg Anderson",
  7445. "email": "greg.1.anderson@greenknowe.org"
  7446. },
  7447. {
  7448. "name": "Jonathan Araña Cruz",
  7449. "email": "jonhattan@faita.net"
  7450. },
  7451. {
  7452. "name": "Jonathan Hedstrom",
  7453. "email": "jhedstrom@gmail.com"
  7454. },
  7455. {
  7456. "name": "Christopher Gervais",
  7457. "email": "chris@ergonlogic.com"
  7458. },
  7459. {
  7460. "name": "Dave Reid",
  7461. "email": "dave@davereid.net"
  7462. },
  7463. {
  7464. "name": "Damian Lee",
  7465. "email": "damiankloip@googlemail.com"
  7466. }
  7467. ],
  7468. "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.",
  7469. "homepage": "http://www.drush.org",
  7470. "time": "2018-10-17T18:37:53+00:00"
  7471. },
  7472. {
  7473. "name": "easyrdf/easyrdf",
  7474. "version": "0.9.1",
  7475. "source": {
  7476. "type": "git",
  7477. "url": "https://github.com/njh/easyrdf.git",
  7478. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  7479. },
  7480. "dist": {
  7481. "type": "zip",
  7482. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  7483. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  7484. "shasum": ""
  7485. },
  7486. "require": {
  7487. "ext-mbstring": "*",
  7488. "ext-pcre": "*",
  7489. "php": ">=5.2.8"
  7490. },
  7491. "require-dev": {
  7492. "phpunit/phpunit": "~3.5",
  7493. "sami/sami": "~1.4",
  7494. "squizlabs/php_codesniffer": "~1.4.3"
  7495. },
  7496. "suggest": {
  7497. "ml/json-ld": "~1.0"
  7498. },
  7499. "type": "library",
  7500. "autoload": {
  7501. "psr-0": {
  7502. "EasyRdf_": "lib/"
  7503. }
  7504. },
  7505. "notification-url": "https://packagist.org/downloads/",
  7506. "license": [
  7507. "BSD-3-Clause"
  7508. ],
  7509. "authors": [
  7510. {
  7511. "name": "Nicholas Humfrey",
  7512. "email": "njh@aelius.com",
  7513. "homepage": "http://www.aelius.com/njh/",
  7514. "role": "Developer"
  7515. },
  7516. {
  7517. "name": "Alexey Zakhlestin",
  7518. "email": "indeyets@gmail.com",
  7519. "role": "Developer"
  7520. }
  7521. ],
  7522. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  7523. "homepage": "http://www.easyrdf.org/",
  7524. "keywords": [
  7525. "Linked Data",
  7526. "RDF",
  7527. "Semantic Web",
  7528. "Turtle",
  7529. "rdfa",
  7530. "sparql"
  7531. ],
  7532. "time": "2015-02-27T09:45:49+00:00"
  7533. },
  7534. {
  7535. "name": "egulias/email-validator",
  7536. "version": "1.2.15",
  7537. "source": {
  7538. "type": "git",
  7539. "url": "https://github.com/egulias/EmailValidator.git",
  7540. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  7541. },
  7542. "dist": {
  7543. "type": "zip",
  7544. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7545. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7546. "shasum": ""
  7547. },
  7548. "require": {
  7549. "doctrine/lexer": "^1.0.1",
  7550. "php": ">= 5.3.3"
  7551. },
  7552. "require-dev": {
  7553. "phpunit/phpunit": "^4.8.24"
  7554. },
  7555. "type": "library",
  7556. "extra": {
  7557. "branch-alias": {
  7558. "dev-master": "2.0.x-dev"
  7559. }
  7560. },
  7561. "autoload": {
  7562. "psr-0": {
  7563. "Egulias\\": "src/"
  7564. }
  7565. },
  7566. "notification-url": "https://packagist.org/downloads/",
  7567. "license": [
  7568. "MIT"
  7569. ],
  7570. "authors": [
  7571. {
  7572. "name": "Eduardo Gulias Davis"
  7573. }
  7574. ],
  7575. "description": "A library for validating emails",
  7576. "homepage": "https://github.com/egulias/EmailValidator",
  7577. "keywords": [
  7578. "email",
  7579. "emailvalidation",
  7580. "emailvalidator",
  7581. "validation",
  7582. "validator"
  7583. ],
  7584. "time": "2018-09-25T20:59:41+00:00"
  7585. },
  7586. {
  7587. "name": "giggsey/libphonenumber-for-php",
  7588. "version": "8.10.4",
  7589. "source": {
  7590. "type": "git",
  7591. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  7592. "reference": "3cda94a4a442c24259fb0893618422a56cb8a898"
  7593. },
  7594. "dist": {
  7595. "type": "zip",
  7596. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/3cda94a4a442c24259fb0893618422a56cb8a898",
  7597. "reference": "3cda94a4a442c24259fb0893618422a56cb8a898",
  7598. "shasum": ""
  7599. },
  7600. "require": {
  7601. "ext-mbstring": "*",
  7602. "giggsey/locale": "^1.2",
  7603. "php": ">=5.3.2"
  7604. },
  7605. "require-dev": {
  7606. "pear/pear-core-minimal": "^1.9",
  7607. "pear/pear_exception": "^1.0",
  7608. "pear/versioncontrol_git": "^0.5",
  7609. "phing/phing": "^2.7",
  7610. "php-coveralls/php-coveralls": "^1.0|^2.0",
  7611. "phpunit/phpunit": "^4.8.36|^5.0",
  7612. "symfony/console": "^2.8|^3.0"
  7613. },
  7614. "type": "library",
  7615. "extra": {
  7616. "branch-alias": {
  7617. "dev-master": "8.x-dev"
  7618. }
  7619. },
  7620. "autoload": {
  7621. "psr-4": {
  7622. "libphonenumber\\": "src/"
  7623. },
  7624. "exclude-from-classmap": [
  7625. "/src/data/",
  7626. "/src/carrier/data/",
  7627. "/src/geocoding/data/",
  7628. "/src/timezone/data/"
  7629. ]
  7630. },
  7631. "notification-url": "https://packagist.org/downloads/",
  7632. "license": [
  7633. "Apache-2.0"
  7634. ],
  7635. "authors": [
  7636. {
  7637. "name": "Joshua Gigg",
  7638. "email": "giggsey@gmail.com",
  7639. "homepage": "https://giggsey.com/"
  7640. }
  7641. ],
  7642. "description": "PHP Port of Google's libphonenumber",
  7643. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  7644. "keywords": [
  7645. "geocoding",
  7646. "geolocation",
  7647. "libphonenumber",
  7648. "mobile",
  7649. "phonenumber",
  7650. "validation"
  7651. ],
  7652. "time": "2019-01-24T15:41:24+00:00"
  7653. },
  7654. {
  7655. "name": "giggsey/locale",
  7656. "version": "1.6",
  7657. "source": {
  7658. "type": "git",
  7659. "url": "https://github.com/giggsey/Locale.git",
  7660. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5"
  7661. },
  7662. "dist": {
  7663. "type": "zip",
  7664. "url": "https://api.github.com/repos/giggsey/Locale/zipball/da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7665. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7666. "shasum": ""
  7667. },
  7668. "require": {
  7669. "php": ">=5.3.2"
  7670. },
  7671. "require-dev": {
  7672. "pear/pear-core-minimal": "^1.9",
  7673. "pear/pear_exception": "^1.0",
  7674. "pear/versioncontrol_git": "^0.5",
  7675. "phing/phing": "~2.7",
  7676. "phpunit/phpunit": "^4.8|^5.0",
  7677. "satooshi/php-coveralls": "^1.0",
  7678. "symfony/console": "^2.8|^3.0|^4.0",
  7679. "symfony/filesystem": "^2.8|^3.0|^4.0",
  7680. "symfony/finder": "^2.8|^3.0|^4.0",
  7681. "symfony/process": "^2.8|^3.0|^4.0"
  7682. },
  7683. "type": "library",
  7684. "autoload": {
  7685. "psr-4": {
  7686. "Giggsey\\Locale\\": "src/"
  7687. }
  7688. },
  7689. "notification-url": "https://packagist.org/downloads/",
  7690. "license": [
  7691. "MIT"
  7692. ],
  7693. "authors": [
  7694. {
  7695. "name": "Joshua Gigg",
  7696. "email": "giggsey@gmail.com",
  7697. "homepage": "http://giggsey.com/"
  7698. }
  7699. ],
  7700. "description": "Locale functions required by libphonenumber-for-php",
  7701. "time": "2018-10-18T07:17:52+00:00"
  7702. },
  7703. {
  7704. "name": "grasmash/expander",
  7705. "version": "1.0.0",
  7706. "source": {
  7707. "type": "git",
  7708. "url": "https://github.com/grasmash/expander.git",
  7709. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  7710. },
  7711. "dist": {
  7712. "type": "zip",
  7713. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7714. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7715. "shasum": ""
  7716. },
  7717. "require": {
  7718. "dflydev/dot-access-data": "^1.1.0",
  7719. "php": ">=5.4"
  7720. },
  7721. "require-dev": {
  7722. "greg-1-anderson/composer-test-scenarios": "^1",
  7723. "phpunit/phpunit": "^4|^5.5.4",
  7724. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7725. "squizlabs/php_codesniffer": "^2.7"
  7726. },
  7727. "type": "library",
  7728. "extra": {
  7729. "branch-alias": {
  7730. "dev-master": "1.x-dev"
  7731. }
  7732. },
  7733. "autoload": {
  7734. "psr-4": {
  7735. "Grasmash\\Expander\\": "src/"
  7736. }
  7737. },
  7738. "notification-url": "https://packagist.org/downloads/",
  7739. "license": [
  7740. "MIT"
  7741. ],
  7742. "authors": [
  7743. {
  7744. "name": "Matthew Grasmick"
  7745. }
  7746. ],
  7747. "description": "Expands internal property references in PHP arrays file.",
  7748. "time": "2017-12-21T22:14:55+00:00"
  7749. },
  7750. {
  7751. "name": "grasmash/yaml-expander",
  7752. "version": "1.4.0",
  7753. "source": {
  7754. "type": "git",
  7755. "url": "https://github.com/grasmash/yaml-expander.git",
  7756. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  7757. },
  7758. "dist": {
  7759. "type": "zip",
  7760. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7761. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7762. "shasum": ""
  7763. },
  7764. "require": {
  7765. "dflydev/dot-access-data": "^1.1.0",
  7766. "php": ">=5.4",
  7767. "symfony/yaml": "^2.8.11|^3|^4"
  7768. },
  7769. "require-dev": {
  7770. "greg-1-anderson/composer-test-scenarios": "^1",
  7771. "phpunit/phpunit": "^4.8|^5.5.4",
  7772. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7773. "squizlabs/php_codesniffer": "^2.7"
  7774. },
  7775. "type": "library",
  7776. "extra": {
  7777. "branch-alias": {
  7778. "dev-master": "1.x-dev"
  7779. }
  7780. },
  7781. "autoload": {
  7782. "psr-4": {
  7783. "Grasmash\\YamlExpander\\": "src/"
  7784. }
  7785. },
  7786. "notification-url": "https://packagist.org/downloads/",
  7787. "license": [
  7788. "MIT"
  7789. ],
  7790. "authors": [
  7791. {
  7792. "name": "Matthew Grasmick"
  7793. }
  7794. ],
  7795. "description": "Expands internal property references in a yaml file.",
  7796. "time": "2017-12-16T16:06:03+00:00"
  7797. },
  7798. {
  7799. "name": "guzzlehttp/guzzle",
  7800. "version": "6.3.3",
  7801. "source": {
  7802. "type": "git",
  7803. "url": "https://github.com/guzzle/guzzle.git",
  7804. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  7805. },
  7806. "dist": {
  7807. "type": "zip",
  7808. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7809. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7810. "shasum": ""
  7811. },
  7812. "require": {
  7813. "guzzlehttp/promises": "^1.0",
  7814. "guzzlehttp/psr7": "^1.4",
  7815. "php": ">=5.5"
  7816. },
  7817. "require-dev": {
  7818. "ext-curl": "*",
  7819. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  7820. "psr/log": "^1.0"
  7821. },
  7822. "suggest": {
  7823. "psr/log": "Required for using the Log middleware"
  7824. },
  7825. "type": "library",
  7826. "extra": {
  7827. "branch-alias": {
  7828. "dev-master": "6.3-dev"
  7829. }
  7830. },
  7831. "autoload": {
  7832. "files": [
  7833. "src/functions_include.php"
  7834. ],
  7835. "psr-4": {
  7836. "GuzzleHttp\\": "src/"
  7837. }
  7838. },
  7839. "notification-url": "https://packagist.org/downloads/",
  7840. "license": [
  7841. "MIT"
  7842. ],
  7843. "authors": [
  7844. {
  7845. "name": "Michael Dowling",
  7846. "email": "mtdowling@gmail.com",
  7847. "homepage": "https://github.com/mtdowling"
  7848. }
  7849. ],
  7850. "description": "Guzzle is a PHP HTTP client library",
  7851. "homepage": "http://guzzlephp.org/",
  7852. "keywords": [
  7853. "client",
  7854. "curl",
  7855. "framework",
  7856. "http",
  7857. "http client",
  7858. "rest",
  7859. "web service"
  7860. ],
  7861. "time": "2018-04-22T15:46:56+00:00"
  7862. },
  7863. {
  7864. "name": "guzzlehttp/promises",
  7865. "version": "v1.3.1",
  7866. "source": {
  7867. "type": "git",
  7868. "url": "https://github.com/guzzle/promises.git",
  7869. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  7870. },
  7871. "dist": {
  7872. "type": "zip",
  7873. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7874. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7875. "shasum": ""
  7876. },
  7877. "require": {
  7878. "php": ">=5.5.0"
  7879. },
  7880. "require-dev": {
  7881. "phpunit/phpunit": "^4.0"
  7882. },
  7883. "type": "library",
  7884. "extra": {
  7885. "branch-alias": {
  7886. "dev-master": "1.4-dev"
  7887. }
  7888. },
  7889. "autoload": {
  7890. "psr-4": {
  7891. "GuzzleHttp\\Promise\\": "src/"
  7892. },
  7893. "files": [
  7894. "src/functions_include.php"
  7895. ]
  7896. },
  7897. "notification-url": "https://packagist.org/downloads/",
  7898. "license": [
  7899. "MIT"
  7900. ],
  7901. "authors": [
  7902. {
  7903. "name": "Michael Dowling",
  7904. "email": "mtdowling@gmail.com",
  7905. "homepage": "https://github.com/mtdowling"
  7906. }
  7907. ],
  7908. "description": "Guzzle promises library",
  7909. "keywords": [
  7910. "promise"
  7911. ],
  7912. "time": "2016-12-20T10:07:11+00:00"
  7913. },
  7914. {
  7915. "name": "guzzlehttp/psr7",
  7916. "version": "1.5.2",
  7917. "source": {
  7918. "type": "git",
  7919. "url": "https://github.com/guzzle/psr7.git",
  7920. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  7921. },
  7922. "dist": {
  7923. "type": "zip",
  7924. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  7925. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  7926. "shasum": ""
  7927. },
  7928. "require": {
  7929. "php": ">=5.4.0",
  7930. "psr/http-message": "~1.0",
  7931. "ralouphie/getallheaders": "^2.0.5"
  7932. },
  7933. "provide": {
  7934. "psr/http-message-implementation": "1.0"
  7935. },
  7936. "require-dev": {
  7937. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  7938. },
  7939. "type": "library",
  7940. "extra": {
  7941. "branch-alias": {
  7942. "dev-master": "1.5-dev"
  7943. }
  7944. },
  7945. "autoload": {
  7946. "psr-4": {
  7947. "GuzzleHttp\\Psr7\\": "src/"
  7948. },
  7949. "files": [
  7950. "src/functions_include.php"
  7951. ]
  7952. },
  7953. "notification-url": "https://packagist.org/downloads/",
  7954. "license": [
  7955. "MIT"
  7956. ],
  7957. "authors": [
  7958. {
  7959. "name": "Michael Dowling",
  7960. "email": "mtdowling@gmail.com",
  7961. "homepage": "https://github.com/mtdowling"
  7962. },
  7963. {
  7964. "name": "Tobias Schultze",
  7965. "homepage": "https://github.com/Tobion"
  7966. }
  7967. ],
  7968. "description": "PSR-7 message implementation that also provides common utility methods",
  7969. "keywords": [
  7970. "http",
  7971. "message",
  7972. "psr-7",
  7973. "request",
  7974. "response",
  7975. "stream",
  7976. "uri",
  7977. "url"
  7978. ],
  7979. "time": "2018-12-04T20:46:45+00:00"
  7980. },
  7981. {
  7982. "name": "jakub-onderka/php-console-color",
  7983. "version": "v0.2",
  7984. "source": {
  7985. "type": "git",
  7986. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  7987. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  7988. },
  7989. "dist": {
  7990. "type": "zip",
  7991. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  7992. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  7993. "shasum": ""
  7994. },
  7995. "require": {
  7996. "php": ">=5.4.0"
  7997. },
  7998. "require-dev": {
  7999. "jakub-onderka/php-code-style": "1.0",
  8000. "jakub-onderka/php-parallel-lint": "1.0",
  8001. "jakub-onderka/php-var-dump-check": "0.*",
  8002. "phpunit/phpunit": "~4.3",
  8003. "squizlabs/php_codesniffer": "1.*"
  8004. },
  8005. "type": "library",
  8006. "autoload": {
  8007. "psr-4": {
  8008. "JakubOnderka\\PhpConsoleColor\\": "src/"
  8009. }
  8010. },
  8011. "notification-url": "https://packagist.org/downloads/",
  8012. "license": [
  8013. "BSD-2-Clause"
  8014. ],
  8015. "authors": [
  8016. {
  8017. "name": "Jakub Onderka",
  8018. "email": "jakub.onderka@gmail.com"
  8019. }
  8020. ],
  8021. "time": "2018-09-29T17:23:10+00:00"
  8022. },
  8023. {
  8024. "name": "jakub-onderka/php-console-highlighter",
  8025. "version": "v0.4",
  8026. "source": {
  8027. "type": "git",
  8028. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  8029. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  8030. },
  8031. "dist": {
  8032. "type": "zip",
  8033. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  8034. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  8035. "shasum": ""
  8036. },
  8037. "require": {
  8038. "ext-tokenizer": "*",
  8039. "jakub-onderka/php-console-color": "~0.2",
  8040. "php": ">=5.4.0"
  8041. },
  8042. "require-dev": {
  8043. "jakub-onderka/php-code-style": "~1.0",
  8044. "jakub-onderka/php-parallel-lint": "~1.0",
  8045. "jakub-onderka/php-var-dump-check": "~0.1",
  8046. "phpunit/phpunit": "~4.0",
  8047. "squizlabs/php_codesniffer": "~1.5"
  8048. },
  8049. "type": "library",
  8050. "autoload": {
  8051. "psr-4": {
  8052. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  8053. }
  8054. },
  8055. "notification-url": "https://packagist.org/downloads/",
  8056. "license": [
  8057. "MIT"
  8058. ],
  8059. "authors": [
  8060. {
  8061. "name": "Jakub Onderka",
  8062. "email": "acci@acci.cz",
  8063. "homepage": "http://www.acci.cz/"
  8064. }
  8065. ],
  8066. "description": "Highlight PHP code in terminal",
  8067. "time": "2018-09-29T18:48:56+00:00"
  8068. },
  8069. {
  8070. "name": "league/container",
  8071. "version": "2.4.1",
  8072. "source": {
  8073. "type": "git",
  8074. "url": "https://github.com/thephpleague/container.git",
  8075. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  8076. },
  8077. "dist": {
  8078. "type": "zip",
  8079. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  8080. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  8081. "shasum": ""
  8082. },
  8083. "require": {
  8084. "container-interop/container-interop": "^1.2",
  8085. "php": "^5.4.0 || ^7.0"
  8086. },
  8087. "provide": {
  8088. "container-interop/container-interop-implementation": "^1.2",
  8089. "psr/container-implementation": "^1.0"
  8090. },
  8091. "replace": {
  8092. "orno/di": "~2.0"
  8093. },
  8094. "require-dev": {
  8095. "phpunit/phpunit": "4.*"
  8096. },
  8097. "type": "library",
  8098. "extra": {
  8099. "branch-alias": {
  8100. "dev-2.x": "2.x-dev",
  8101. "dev-1.x": "1.x-dev"
  8102. }
  8103. },
  8104. "autoload": {
  8105. "psr-4": {
  8106. "League\\Container\\": "src"
  8107. }
  8108. },
  8109. "notification-url": "https://packagist.org/downloads/",
  8110. "license": [
  8111. "MIT"
  8112. ],
  8113. "authors": [
  8114. {
  8115. "name": "Phil Bennett",
  8116. "email": "philipobenito@gmail.com",
  8117. "homepage": "http://www.philipobenito.com",
  8118. "role": "Developer"
  8119. }
  8120. ],
  8121. "description": "A fast and intuitive dependency injection container.",
  8122. "homepage": "https://github.com/thephpleague/container",
  8123. "keywords": [
  8124. "container",
  8125. "dependency",
  8126. "di",
  8127. "injection",
  8128. "league",
  8129. "provider",
  8130. "service"
  8131. ],
  8132. "time": "2017-05-10T09:20:27+00:00"
  8133. },
  8134. {
  8135. "name": "lsolesen/pel",
  8136. "version": "0.9.6",
  8137. "source": {
  8138. "type": "git",
  8139. "url": "https://github.com/lsolesen/pel.git",
  8140. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23"
  8141. },
  8142. "dist": {
  8143. "type": "zip",
  8144. "url": "https://api.github.com/repos/lsolesen/pel/zipball/c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  8145. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  8146. "shasum": ""
  8147. },
  8148. "require": {
  8149. "php": ">=5.0.0"
  8150. },
  8151. "require-dev": {
  8152. "ext-gd": "*",
  8153. "phpunit/phpunit": "5.7.*",
  8154. "satooshi/php-coveralls": "1.0.*",
  8155. "squizlabs/php_codesniffer": "3.0.0RC3"
  8156. },
  8157. "type": "library",
  8158. "autoload": {
  8159. "psr-4": {
  8160. "lsolesen\\pel\\": "src/"
  8161. }
  8162. },
  8163. "notification-url": "https://packagist.org/downloads/",
  8164. "license": [
  8165. "GPL-2.0"
  8166. ],
  8167. "authors": [
  8168. {
  8169. "name": "Lars Olesen",
  8170. "email": "lars@intraface.dk",
  8171. "homepage": "http://intraface.dk",
  8172. "role": "Developer"
  8173. },
  8174. {
  8175. "name": "Martin Geisler",
  8176. "email": "martin@geisler.net",
  8177. "homepage": "http://geisler.net",
  8178. "role": "Developer"
  8179. }
  8180. ],
  8181. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  8182. "homepage": "http://lsolesen.github.com/pel/",
  8183. "keywords": [
  8184. "exif",
  8185. "image"
  8186. ],
  8187. "time": "2017-02-03T11:58:58+00:00"
  8188. },
  8189. {
  8190. "name": "masterminds/html5",
  8191. "version": "2.5.0",
  8192. "source": {
  8193. "type": "git",
  8194. "url": "https://github.com/Masterminds/html5-php.git",
  8195. "reference": "b5d892a4bd058d61f736935d32a9c248f11ccc93"
  8196. },
  8197. "dist": {
  8198. "type": "zip",
  8199. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/b5d892a4bd058d61f736935d32a9c248f11ccc93",
  8200. "reference": "b5d892a4bd058d61f736935d32a9c248f11ccc93",
  8201. "shasum": ""
  8202. },
  8203. "require": {
  8204. "ext-ctype": "*",
  8205. "ext-dom": "*",
  8206. "ext-libxml": "*",
  8207. "php": ">=5.3.0"
  8208. },
  8209. "require-dev": {
  8210. "phpunit/phpunit": "^4.8.35",
  8211. "sami/sami": "~2.0",
  8212. "satooshi/php-coveralls": "1.0.*"
  8213. },
  8214. "type": "library",
  8215. "extra": {
  8216. "branch-alias": {
  8217. "dev-master": "2.4-dev"
  8218. }
  8219. },
  8220. "autoload": {
  8221. "psr-4": {
  8222. "Masterminds\\": "src"
  8223. }
  8224. },
  8225. "notification-url": "https://packagist.org/downloads/",
  8226. "license": [
  8227. "MIT"
  8228. ],
  8229. "authors": [
  8230. {
  8231. "name": "Matt Butcher",
  8232. "email": "technosophos@gmail.com"
  8233. },
  8234. {
  8235. "name": "Asmir Mustafic",
  8236. "email": "goetas@gmail.com"
  8237. },
  8238. {
  8239. "name": "Matt Farina",
  8240. "email": "matt@mattfarina.com"
  8241. }
  8242. ],
  8243. "description": "An HTML5 parser and serializer.",
  8244. "homepage": "http://masterminds.github.io/html5-php",
  8245. "keywords": [
  8246. "HTML5",
  8247. "dom",
  8248. "html",
  8249. "parser",
  8250. "querypath",
  8251. "serializer",
  8252. "xml"
  8253. ],
  8254. "time": "2018-12-27T22:03:43+00:00"
  8255. },
  8256. {
  8257. "name": "nikic/php-parser",
  8258. "version": "v4.2.0",
  8259. "source": {
  8260. "type": "git",
  8261. "url": "https://github.com/nikic/PHP-Parser.git",
  8262. "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a"
  8263. },
  8264. "dist": {
  8265. "type": "zip",
  8266. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/594bcae1fc0bccd3993d2f0d61a018e26ac2865a",
  8267. "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a",
  8268. "shasum": ""
  8269. },
  8270. "require": {
  8271. "ext-tokenizer": "*",
  8272. "php": ">=7.0"
  8273. },
  8274. "require-dev": {
  8275. "phpunit/phpunit": "^6.5 || ^7.0"
  8276. },
  8277. "bin": [
  8278. "bin/php-parse"
  8279. ],
  8280. "type": "library",
  8281. "extra": {
  8282. "branch-alias": {
  8283. "dev-master": "4.2-dev"
  8284. }
  8285. },
  8286. "autoload": {
  8287. "psr-4": {
  8288. "PhpParser\\": "lib/PhpParser"
  8289. }
  8290. },
  8291. "notification-url": "https://packagist.org/downloads/",
  8292. "license": [
  8293. "BSD-3-Clause"
  8294. ],
  8295. "authors": [
  8296. {
  8297. "name": "Nikita Popov"
  8298. }
  8299. ],
  8300. "description": "A PHP parser written in PHP",
  8301. "keywords": [
  8302. "parser",
  8303. "php"
  8304. ],
  8305. "time": "2019-01-12T16:31:37+00:00"
  8306. },
  8307. {
  8308. "name": "paragonie/random_compat",
  8309. "version": "v2.0.18",
  8310. "source": {
  8311. "type": "git",
  8312. "url": "https://github.com/paragonie/random_compat.git",
  8313. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  8314. },
  8315. "dist": {
  8316. "type": "zip",
  8317. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  8318. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  8319. "shasum": ""
  8320. },
  8321. "require": {
  8322. "php": ">=5.2.0"
  8323. },
  8324. "require-dev": {
  8325. "phpunit/phpunit": "4.*|5.*"
  8326. },
  8327. "suggest": {
  8328. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  8329. },
  8330. "type": "library",
  8331. "autoload": {
  8332. "files": [
  8333. "lib/random.php"
  8334. ]
  8335. },
  8336. "notification-url": "https://packagist.org/downloads/",
  8337. "license": [
  8338. "MIT"
  8339. ],
  8340. "authors": [
  8341. {
  8342. "name": "Paragon Initiative Enterprises",
  8343. "email": "security@paragonie.com",
  8344. "homepage": "https://paragonie.com"
  8345. }
  8346. ],
  8347. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  8348. "keywords": [
  8349. "csprng",
  8350. "polyfill",
  8351. "pseudorandom",
  8352. "random"
  8353. ],
  8354. "time": "2019-01-03T20:59:08+00:00"
  8355. },
  8356. {
  8357. "name": "phenx/php-font-lib",
  8358. "version": "0.5",
  8359. "source": {
  8360. "type": "git",
  8361. "url": "https://github.com/PhenX/php-font-lib.git",
  8362. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962"
  8363. },
  8364. "dist": {
  8365. "type": "zip",
  8366. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/19ad2bebc35be028fcc0221025fcbf3d436a3962",
  8367. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962",
  8368. "shasum": ""
  8369. },
  8370. "require-dev": {
  8371. "phpunit/phpunit": "^4.8"
  8372. },
  8373. "type": "library",
  8374. "autoload": {
  8375. "psr-4": {
  8376. "FontLib\\": "src/FontLib"
  8377. }
  8378. },
  8379. "notification-url": "https://packagist.org/downloads/",
  8380. "license": [
  8381. "LGPL-3.0"
  8382. ],
  8383. "authors": [
  8384. {
  8385. "name": "Fabien Ménager",
  8386. "email": "fabien.menager@gmail.com"
  8387. }
  8388. ],
  8389. "description": "A library to read, parse, export and make subsets of different types of font files.",
  8390. "homepage": "https://github.com/PhenX/php-font-lib",
  8391. "time": "2017-02-11T10:58:43+00:00"
  8392. },
  8393. {
  8394. "name": "psr/container",
  8395. "version": "1.0.0",
  8396. "source": {
  8397. "type": "git",
  8398. "url": "https://github.com/php-fig/container.git",
  8399. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  8400. },
  8401. "dist": {
  8402. "type": "zip",
  8403. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8404. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8405. "shasum": ""
  8406. },
  8407. "require": {
  8408. "php": ">=5.3.0"
  8409. },
  8410. "type": "library",
  8411. "extra": {
  8412. "branch-alias": {
  8413. "dev-master": "1.0.x-dev"
  8414. }
  8415. },
  8416. "autoload": {
  8417. "psr-4": {
  8418. "Psr\\Container\\": "src/"
  8419. }
  8420. },
  8421. "notification-url": "https://packagist.org/downloads/",
  8422. "license": [
  8423. "MIT"
  8424. ],
  8425. "authors": [
  8426. {
  8427. "name": "PHP-FIG",
  8428. "homepage": "http://www.php-fig.org/"
  8429. }
  8430. ],
  8431. "description": "Common Container Interface (PHP FIG PSR-11)",
  8432. "homepage": "https://github.com/php-fig/container",
  8433. "keywords": [
  8434. "PSR-11",
  8435. "container",
  8436. "container-interface",
  8437. "container-interop",
  8438. "psr"
  8439. ],
  8440. "time": "2017-02-14T16:28:37+00:00"
  8441. },
  8442. {
  8443. "name": "psr/http-message",
  8444. "version": "1.0.1",
  8445. "source": {
  8446. "type": "git",
  8447. "url": "https://github.com/php-fig/http-message.git",
  8448. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  8449. },
  8450. "dist": {
  8451. "type": "zip",
  8452. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  8453. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  8454. "shasum": ""
  8455. },
  8456. "require": {
  8457. "php": ">=5.3.0"
  8458. },
  8459. "type": "library",
  8460. "extra": {
  8461. "branch-alias": {
  8462. "dev-master": "1.0.x-dev"
  8463. }
  8464. },
  8465. "autoload": {
  8466. "psr-4": {
  8467. "Psr\\Http\\Message\\": "src/"
  8468. }
  8469. },
  8470. "notification-url": "https://packagist.org/downloads/",
  8471. "license": [
  8472. "MIT"
  8473. ],
  8474. "authors": [
  8475. {
  8476. "name": "PHP-FIG",
  8477. "homepage": "http://www.php-fig.org/"
  8478. }
  8479. ],
  8480. "description": "Common interface for HTTP messages",
  8481. "homepage": "https://github.com/php-fig/http-message",
  8482. "keywords": [
  8483. "http",
  8484. "http-message",
  8485. "psr",
  8486. "psr-7",
  8487. "request",
  8488. "response"
  8489. ],
  8490. "time": "2016-08-06T14:39:51+00:00"
  8491. },
  8492. {
  8493. "name": "psr/log",
  8494. "version": "1.1.0",
  8495. "source": {
  8496. "type": "git",
  8497. "url": "https://github.com/php-fig/log.git",
  8498. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  8499. },
  8500. "dist": {
  8501. "type": "zip",
  8502. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  8503. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  8504. "shasum": ""
  8505. },
  8506. "require": {
  8507. "php": ">=5.3.0"
  8508. },
  8509. "type": "library",
  8510. "extra": {
  8511. "branch-alias": {
  8512. "dev-master": "1.0.x-dev"
  8513. }
  8514. },
  8515. "autoload": {
  8516. "psr-4": {
  8517. "Psr\\Log\\": "Psr/Log/"
  8518. }
  8519. },
  8520. "notification-url": "https://packagist.org/downloads/",
  8521. "license": [
  8522. "MIT"
  8523. ],
  8524. "authors": [
  8525. {
  8526. "name": "PHP-FIG",
  8527. "homepage": "http://www.php-fig.org/"
  8528. }
  8529. ],
  8530. "description": "Common interface for logging libraries",
  8531. "homepage": "https://github.com/php-fig/log",
  8532. "keywords": [
  8533. "log",
  8534. "psr",
  8535. "psr-3"
  8536. ],
  8537. "time": "2018-11-20T15:27:04+00:00"
  8538. },
  8539. {
  8540. "name": "psy/psysh",
  8541. "version": "v0.9.9",
  8542. "source": {
  8543. "type": "git",
  8544. "url": "https://github.com/bobthecow/psysh.git",
  8545. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  8546. },
  8547. "dist": {
  8548. "type": "zip",
  8549. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8550. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8551. "shasum": ""
  8552. },
  8553. "require": {
  8554. "dnoegel/php-xdg-base-dir": "0.1",
  8555. "ext-json": "*",
  8556. "ext-tokenizer": "*",
  8557. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8558. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8559. "php": ">=5.4.0",
  8560. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8561. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8562. },
  8563. "require-dev": {
  8564. "bamarni/composer-bin-plugin": "^1.2",
  8565. "hoa/console": "~2.15|~3.16",
  8566. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8567. },
  8568. "suggest": {
  8569. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8570. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8571. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8572. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8573. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8574. },
  8575. "bin": [
  8576. "bin/psysh"
  8577. ],
  8578. "type": "library",
  8579. "extra": {
  8580. "branch-alias": {
  8581. "dev-develop": "0.9.x-dev"
  8582. }
  8583. },
  8584. "autoload": {
  8585. "files": [
  8586. "src/functions.php"
  8587. ],
  8588. "psr-4": {
  8589. "Psy\\": "src/"
  8590. }
  8591. },
  8592. "notification-url": "https://packagist.org/downloads/",
  8593. "license": [
  8594. "MIT"
  8595. ],
  8596. "authors": [
  8597. {
  8598. "name": "Justin Hileman",
  8599. "email": "justin@justinhileman.info",
  8600. "homepage": "http://justinhileman.com"
  8601. }
  8602. ],
  8603. "description": "An interactive shell for modern PHP.",
  8604. "homepage": "http://psysh.org",
  8605. "keywords": [
  8606. "REPL",
  8607. "console",
  8608. "interactive",
  8609. "shell"
  8610. ],
  8611. "time": "2018-10-13T15:16:03+00:00"
  8612. },
  8613. {
  8614. "name": "ralouphie/getallheaders",
  8615. "version": "2.0.5",
  8616. "source": {
  8617. "type": "git",
  8618. "url": "https://github.com/ralouphie/getallheaders.git",
  8619. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  8620. },
  8621. "dist": {
  8622. "type": "zip",
  8623. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  8624. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  8625. "shasum": ""
  8626. },
  8627. "require": {
  8628. "php": ">=5.3"
  8629. },
  8630. "require-dev": {
  8631. "phpunit/phpunit": "~3.7.0",
  8632. "satooshi/php-coveralls": ">=1.0"
  8633. },
  8634. "type": "library",
  8635. "autoload": {
  8636. "files": [
  8637. "src/getallheaders.php"
  8638. ]
  8639. },
  8640. "notification-url": "https://packagist.org/downloads/",
  8641. "license": [
  8642. "MIT"
  8643. ],
  8644. "authors": [
  8645. {
  8646. "name": "Ralph Khattar",
  8647. "email": "ralph.khattar@gmail.com"
  8648. }
  8649. ],
  8650. "description": "A polyfill for getallheaders.",
  8651. "time": "2016-02-11T07:05:27+00:00"
  8652. },
  8653. {
  8654. "name": "stack/builder",
  8655. "version": "v1.0.5",
  8656. "source": {
  8657. "type": "git",
  8658. "url": "https://github.com/stackphp/builder.git",
  8659. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  8660. },
  8661. "dist": {
  8662. "type": "zip",
  8663. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8664. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8665. "shasum": ""
  8666. },
  8667. "require": {
  8668. "php": ">=5.3.0",
  8669. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  8670. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  8671. },
  8672. "require-dev": {
  8673. "silex/silex": "~1.0"
  8674. },
  8675. "type": "library",
  8676. "extra": {
  8677. "branch-alias": {
  8678. "dev-master": "1.0-dev"
  8679. }
  8680. },
  8681. "autoload": {
  8682. "psr-0": {
  8683. "Stack": "src"
  8684. }
  8685. },
  8686. "notification-url": "https://packagist.org/downloads/",
  8687. "license": [
  8688. "MIT"
  8689. ],
  8690. "authors": [
  8691. {
  8692. "name": "Igor Wiedler",
  8693. "email": "igor@wiedler.ch"
  8694. }
  8695. ],
  8696. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  8697. "keywords": [
  8698. "stack"
  8699. ],
  8700. "time": "2017-11-18T14:57:29+00:00"
  8701. },
  8702. {
  8703. "name": "stecman/symfony-console-completion",
  8704. "version": "0.9.0",
  8705. "source": {
  8706. "type": "git",
  8707. "url": "https://github.com/stecman/symfony-console-completion.git",
  8708. "reference": "bd07a24190541de2828c1d6469a8ddce599d3c5a"
  8709. },
  8710. "dist": {
  8711. "type": "zip",
  8712. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/bd07a24190541de2828c1d6469a8ddce599d3c5a",
  8713. "reference": "bd07a24190541de2828c1d6469a8ddce599d3c5a",
  8714. "shasum": ""
  8715. },
  8716. "require": {
  8717. "php": ">=5.3.2",
  8718. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  8719. },
  8720. "require-dev": {
  8721. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  8722. },
  8723. "type": "library",
  8724. "extra": {
  8725. "branch-alias": {
  8726. "dev-master": "0.6.x-dev"
  8727. }
  8728. },
  8729. "autoload": {
  8730. "psr-4": {
  8731. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  8732. }
  8733. },
  8734. "notification-url": "https://packagist.org/downloads/",
  8735. "license": [
  8736. "MIT"
  8737. ],
  8738. "authors": [
  8739. {
  8740. "name": "Stephen Holdaway",
  8741. "email": "stephen@stecman.co.nz"
  8742. }
  8743. ],
  8744. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  8745. "time": "2019-01-19T21:25:25+00:00"
  8746. },
  8747. {
  8748. "name": "symfony-cmf/routing",
  8749. "version": "1.4.1",
  8750. "source": {
  8751. "type": "git",
  8752. "url": "https://github.com/symfony-cmf/routing.git",
  8753. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  8754. },
  8755. "dist": {
  8756. "type": "zip",
  8757. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8758. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8759. "shasum": ""
  8760. },
  8761. "require": {
  8762. "php": "^5.3.9|^7.0",
  8763. "psr/log": "1.*",
  8764. "symfony/http-kernel": "^2.2|3.*",
  8765. "symfony/routing": "^2.2|3.*"
  8766. },
  8767. "require-dev": {
  8768. "friendsofsymfony/jsrouting-bundle": "^1.1",
  8769. "symfony-cmf/testing": "^1.3",
  8770. "symfony/config": "^2.2|3.*",
  8771. "symfony/dependency-injection": "^2.0.5|3.*",
  8772. "symfony/event-dispatcher": "^2.1|3.*"
  8773. },
  8774. "suggest": {
  8775. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  8776. },
  8777. "type": "library",
  8778. "extra": {
  8779. "branch-alias": {
  8780. "dev-master": "1.4-dev"
  8781. }
  8782. },
  8783. "autoload": {
  8784. "psr-4": {
  8785. "Symfony\\Cmf\\Component\\Routing\\": ""
  8786. }
  8787. },
  8788. "notification-url": "https://packagist.org/downloads/",
  8789. "license": [
  8790. "MIT"
  8791. ],
  8792. "authors": [
  8793. {
  8794. "name": "Symfony CMF Community",
  8795. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  8796. }
  8797. ],
  8798. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  8799. "homepage": "http://cmf.symfony.com",
  8800. "keywords": [
  8801. "database",
  8802. "routing"
  8803. ],
  8804. "time": "2017-05-09T08:10:41+00:00"
  8805. },
  8806. {
  8807. "name": "symfony/class-loader",
  8808. "version": "v3.4.22",
  8809. "source": {
  8810. "type": "git",
  8811. "url": "https://github.com/symfony/class-loader.git",
  8812. "reference": "4459eef5298dedfb69f771186a580062b8516497"
  8813. },
  8814. "dist": {
  8815. "type": "zip",
  8816. "url": "https://api.github.com/repos/symfony/class-loader/zipball/4459eef5298dedfb69f771186a580062b8516497",
  8817. "reference": "4459eef5298dedfb69f771186a580062b8516497",
  8818. "shasum": ""
  8819. },
  8820. "require": {
  8821. "php": "^5.5.9|>=7.0.8"
  8822. },
  8823. "require-dev": {
  8824. "symfony/finder": "~2.8|~3.0|~4.0",
  8825. "symfony/polyfill-apcu": "~1.1"
  8826. },
  8827. "suggest": {
  8828. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  8829. },
  8830. "type": "library",
  8831. "extra": {
  8832. "branch-alias": {
  8833. "dev-master": "3.4-dev"
  8834. }
  8835. },
  8836. "autoload": {
  8837. "psr-4": {
  8838. "Symfony\\Component\\ClassLoader\\": ""
  8839. },
  8840. "exclude-from-classmap": [
  8841. "/Tests/"
  8842. ]
  8843. },
  8844. "notification-url": "https://packagist.org/downloads/",
  8845. "license": [
  8846. "MIT"
  8847. ],
  8848. "authors": [
  8849. {
  8850. "name": "Fabien Potencier",
  8851. "email": "fabien@symfony.com"
  8852. },
  8853. {
  8854. "name": "Symfony Community",
  8855. "homepage": "https://symfony.com/contributors"
  8856. }
  8857. ],
  8858. "description": "Symfony ClassLoader Component",
  8859. "homepage": "https://symfony.com",
  8860. "time": "2019-01-16T09:39:14+00:00"
  8861. },
  8862. {
  8863. "name": "symfony/config",
  8864. "version": "v3.4.22",
  8865. "source": {
  8866. "type": "git",
  8867. "url": "https://github.com/symfony/config.git",
  8868. "reference": "c9bc510c217075d42d4a927e285917d0c2001cf4"
  8869. },
  8870. "dist": {
  8871. "type": "zip",
  8872. "url": "https://api.github.com/repos/symfony/config/zipball/c9bc510c217075d42d4a927e285917d0c2001cf4",
  8873. "reference": "c9bc510c217075d42d4a927e285917d0c2001cf4",
  8874. "shasum": ""
  8875. },
  8876. "require": {
  8877. "php": "^5.5.9|>=7.0.8",
  8878. "symfony/filesystem": "~2.8|~3.0|~4.0",
  8879. "symfony/polyfill-ctype": "~1.8"
  8880. },
  8881. "conflict": {
  8882. "symfony/dependency-injection": "<3.3",
  8883. "symfony/finder": "<3.3"
  8884. },
  8885. "require-dev": {
  8886. "symfony/dependency-injection": "~3.3|~4.0",
  8887. "symfony/event-dispatcher": "~3.3|~4.0",
  8888. "symfony/finder": "~3.3|~4.0",
  8889. "symfony/yaml": "~3.0|~4.0"
  8890. },
  8891. "suggest": {
  8892. "symfony/yaml": "To use the yaml reference dumper"
  8893. },
  8894. "type": "library",
  8895. "extra": {
  8896. "branch-alias": {
  8897. "dev-master": "3.4-dev"
  8898. }
  8899. },
  8900. "autoload": {
  8901. "psr-4": {
  8902. "Symfony\\Component\\Config\\": ""
  8903. },
  8904. "exclude-from-classmap": [
  8905. "/Tests/"
  8906. ]
  8907. },
  8908. "notification-url": "https://packagist.org/downloads/",
  8909. "license": [
  8910. "MIT"
  8911. ],
  8912. "authors": [
  8913. {
  8914. "name": "Fabien Potencier",
  8915. "email": "fabien@symfony.com"
  8916. },
  8917. {
  8918. "name": "Symfony Community",
  8919. "homepage": "https://symfony.com/contributors"
  8920. }
  8921. ],
  8922. "description": "Symfony Config Component",
  8923. "homepage": "https://symfony.com",
  8924. "time": "2019-01-30T11:33:42+00:00"
  8925. },
  8926. {
  8927. "name": "symfony/console",
  8928. "version": "v3.4.22",
  8929. "source": {
  8930. "type": "git",
  8931. "url": "https://github.com/symfony/console.git",
  8932. "reference": "069bf3f0e8f871a2169a06e43d9f3f03f355e9be"
  8933. },
  8934. "dist": {
  8935. "type": "zip",
  8936. "url": "https://api.github.com/repos/symfony/console/zipball/069bf3f0e8f871a2169a06e43d9f3f03f355e9be",
  8937. "reference": "069bf3f0e8f871a2169a06e43d9f3f03f355e9be",
  8938. "shasum": ""
  8939. },
  8940. "require": {
  8941. "php": "^5.5.9|>=7.0.8",
  8942. "symfony/debug": "~2.8|~3.0|~4.0",
  8943. "symfony/polyfill-mbstring": "~1.0"
  8944. },
  8945. "conflict": {
  8946. "symfony/dependency-injection": "<3.4",
  8947. "symfony/process": "<3.3"
  8948. },
  8949. "provide": {
  8950. "psr/log-implementation": "1.0"
  8951. },
  8952. "require-dev": {
  8953. "psr/log": "~1.0",
  8954. "symfony/config": "~3.3|~4.0",
  8955. "symfony/dependency-injection": "~3.4|~4.0",
  8956. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8957. "symfony/lock": "~3.4|~4.0",
  8958. "symfony/process": "~3.3|~4.0"
  8959. },
  8960. "suggest": {
  8961. "psr/log": "For using the console logger",
  8962. "symfony/event-dispatcher": "",
  8963. "symfony/lock": "",
  8964. "symfony/process": ""
  8965. },
  8966. "type": "library",
  8967. "extra": {
  8968. "branch-alias": {
  8969. "dev-master": "3.4-dev"
  8970. }
  8971. },
  8972. "autoload": {
  8973. "psr-4": {
  8974. "Symfony\\Component\\Console\\": ""
  8975. },
  8976. "exclude-from-classmap": [
  8977. "/Tests/"
  8978. ]
  8979. },
  8980. "notification-url": "https://packagist.org/downloads/",
  8981. "license": [
  8982. "MIT"
  8983. ],
  8984. "authors": [
  8985. {
  8986. "name": "Fabien Potencier",
  8987. "email": "fabien@symfony.com"
  8988. },
  8989. {
  8990. "name": "Symfony Community",
  8991. "homepage": "https://symfony.com/contributors"
  8992. }
  8993. ],
  8994. "description": "Symfony Console Component",
  8995. "homepage": "https://symfony.com",
  8996. "time": "2019-01-25T10:42:12+00:00"
  8997. },
  8998. {
  8999. "name": "symfony/css-selector",
  9000. "version": "v3.4.22",
  9001. "source": {
  9002. "type": "git",
  9003. "url": "https://github.com/symfony/css-selector.git",
  9004. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf"
  9005. },
  9006. "dist": {
  9007. "type": "zip",
  9008. "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  9009. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  9010. "shasum": ""
  9011. },
  9012. "require": {
  9013. "php": "^5.5.9|>=7.0.8"
  9014. },
  9015. "type": "library",
  9016. "extra": {
  9017. "branch-alias": {
  9018. "dev-master": "3.4-dev"
  9019. }
  9020. },
  9021. "autoload": {
  9022. "psr-4": {
  9023. "Symfony\\Component\\CssSelector\\": ""
  9024. },
  9025. "exclude-from-classmap": [
  9026. "/Tests/"
  9027. ]
  9028. },
  9029. "notification-url": "https://packagist.org/downloads/",
  9030. "license": [
  9031. "MIT"
  9032. ],
  9033. "authors": [
  9034. {
  9035. "name": "Jean-François Simon",
  9036. "email": "jeanfrancois.simon@sensiolabs.com"
  9037. },
  9038. {
  9039. "name": "Fabien Potencier",
  9040. "email": "fabien@symfony.com"
  9041. },
  9042. {
  9043. "name": "Symfony Community",
  9044. "homepage": "https://symfony.com/contributors"
  9045. }
  9046. ],
  9047. "description": "Symfony CssSelector Component",
  9048. "homepage": "https://symfony.com",
  9049. "time": "2019-01-16T09:39:14+00:00"
  9050. },
  9051. {
  9052. "name": "symfony/debug",
  9053. "version": "v3.4.22",
  9054. "source": {
  9055. "type": "git",
  9056. "url": "https://github.com/symfony/debug.git",
  9057. "reference": "667a26c4dd6bc75c67f06bc9bcd015bdecc7cbb8"
  9058. },
  9059. "dist": {
  9060. "type": "zip",
  9061. "url": "https://api.github.com/repos/symfony/debug/zipball/667a26c4dd6bc75c67f06bc9bcd015bdecc7cbb8",
  9062. "reference": "667a26c4dd6bc75c67f06bc9bcd015bdecc7cbb8",
  9063. "shasum": ""
  9064. },
  9065. "require": {
  9066. "php": "^5.5.9|>=7.0.8",
  9067. "psr/log": "~1.0"
  9068. },
  9069. "conflict": {
  9070. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  9071. },
  9072. "require-dev": {
  9073. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  9074. },
  9075. "type": "library",
  9076. "extra": {
  9077. "branch-alias": {
  9078. "dev-master": "3.4-dev"
  9079. }
  9080. },
  9081. "autoload": {
  9082. "psr-4": {
  9083. "Symfony\\Component\\Debug\\": ""
  9084. },
  9085. "exclude-from-classmap": [
  9086. "/Tests/"
  9087. ]
  9088. },
  9089. "notification-url": "https://packagist.org/downloads/",
  9090. "license": [
  9091. "MIT"
  9092. ],
  9093. "authors": [
  9094. {
  9095. "name": "Fabien Potencier",
  9096. "email": "fabien@symfony.com"
  9097. },
  9098. {
  9099. "name": "Symfony Community",
  9100. "homepage": "https://symfony.com/contributors"
  9101. }
  9102. ],
  9103. "description": "Symfony Debug Component",
  9104. "homepage": "https://symfony.com",
  9105. "time": "2019-01-25T10:19:25+00:00"
  9106. },
  9107. {
  9108. "name": "symfony/dependency-injection",
  9109. "version": "v3.4.22",
  9110. "source": {
  9111. "type": "git",
  9112. "url": "https://github.com/symfony/dependency-injection.git",
  9113. "reference": "b514f5b765cf3e4a56e9d8ebacf14b117f7a0ee1"
  9114. },
  9115. "dist": {
  9116. "type": "zip",
  9117. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/b514f5b765cf3e4a56e9d8ebacf14b117f7a0ee1",
  9118. "reference": "b514f5b765cf3e4a56e9d8ebacf14b117f7a0ee1",
  9119. "shasum": ""
  9120. },
  9121. "require": {
  9122. "php": "^5.5.9|>=7.0.8",
  9123. "psr/container": "^1.0"
  9124. },
  9125. "conflict": {
  9126. "symfony/config": "<3.3.7",
  9127. "symfony/finder": "<3.3",
  9128. "symfony/proxy-manager-bridge": "<3.4",
  9129. "symfony/yaml": "<3.4"
  9130. },
  9131. "provide": {
  9132. "psr/container-implementation": "1.0"
  9133. },
  9134. "require-dev": {
  9135. "symfony/config": "~3.3|~4.0",
  9136. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9137. "symfony/yaml": "~3.4|~4.0"
  9138. },
  9139. "suggest": {
  9140. "symfony/config": "",
  9141. "symfony/expression-language": "For using expressions in service container configuration",
  9142. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9143. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9144. "symfony/yaml": ""
  9145. },
  9146. "type": "library",
  9147. "extra": {
  9148. "branch-alias": {
  9149. "dev-master": "3.4-dev"
  9150. }
  9151. },
  9152. "autoload": {
  9153. "psr-4": {
  9154. "Symfony\\Component\\DependencyInjection\\": ""
  9155. },
  9156. "exclude-from-classmap": [
  9157. "/Tests/"
  9158. ]
  9159. },
  9160. "notification-url": "https://packagist.org/downloads/",
  9161. "license": [
  9162. "MIT"
  9163. ],
  9164. "authors": [
  9165. {
  9166. "name": "Fabien Potencier",
  9167. "email": "fabien@symfony.com"
  9168. },
  9169. {
  9170. "name": "Symfony Community",
  9171. "homepage": "https://symfony.com/contributors"
  9172. }
  9173. ],
  9174. "description": "Symfony DependencyInjection Component",
  9175. "homepage": "https://symfony.com",
  9176. "time": "2019-01-30T17:48:51+00:00"
  9177. },
  9178. {
  9179. "name": "symfony/dom-crawler",
  9180. "version": "v3.4.22",
  9181. "source": {
  9182. "type": "git",
  9183. "url": "https://github.com/symfony/dom-crawler.git",
  9184. "reference": "32cb577c07bd900ee883a9d4b55d4098aa02e422"
  9185. },
  9186. "dist": {
  9187. "type": "zip",
  9188. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/32cb577c07bd900ee883a9d4b55d4098aa02e422",
  9189. "reference": "32cb577c07bd900ee883a9d4b55d4098aa02e422",
  9190. "shasum": ""
  9191. },
  9192. "require": {
  9193. "php": "^5.5.9|>=7.0.8",
  9194. "symfony/polyfill-ctype": "~1.8",
  9195. "symfony/polyfill-mbstring": "~1.0"
  9196. },
  9197. "require-dev": {
  9198. "symfony/css-selector": "~2.8|~3.0|~4.0"
  9199. },
  9200. "suggest": {
  9201. "symfony/css-selector": ""
  9202. },
  9203. "type": "library",
  9204. "extra": {
  9205. "branch-alias": {
  9206. "dev-master": "3.4-dev"
  9207. }
  9208. },
  9209. "autoload": {
  9210. "psr-4": {
  9211. "Symfony\\Component\\DomCrawler\\": ""
  9212. },
  9213. "exclude-from-classmap": [
  9214. "/Tests/"
  9215. ]
  9216. },
  9217. "notification-url": "https://packagist.org/downloads/",
  9218. "license": [
  9219. "MIT"
  9220. ],
  9221. "authors": [
  9222. {
  9223. "name": "Fabien Potencier",
  9224. "email": "fabien@symfony.com"
  9225. },
  9226. {
  9227. "name": "Symfony Community",
  9228. "homepage": "https://symfony.com/contributors"
  9229. }
  9230. ],
  9231. "description": "Symfony DomCrawler Component",
  9232. "homepage": "https://symfony.com",
  9233. "time": "2019-01-16T13:27:11+00:00"
  9234. },
  9235. {
  9236. "name": "symfony/event-dispatcher",
  9237. "version": "v3.4.22",
  9238. "source": {
  9239. "type": "git",
  9240. "url": "https://github.com/symfony/event-dispatcher.git",
  9241. "reference": "ed5be1663fa66623b3a7004d5d51a14c4045399b"
  9242. },
  9243. "dist": {
  9244. "type": "zip",
  9245. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ed5be1663fa66623b3a7004d5d51a14c4045399b",
  9246. "reference": "ed5be1663fa66623b3a7004d5d51a14c4045399b",
  9247. "shasum": ""
  9248. },
  9249. "require": {
  9250. "php": "^5.5.9|>=7.0.8"
  9251. },
  9252. "conflict": {
  9253. "symfony/dependency-injection": "<3.3"
  9254. },
  9255. "require-dev": {
  9256. "psr/log": "~1.0",
  9257. "symfony/config": "~2.8|~3.0|~4.0",
  9258. "symfony/dependency-injection": "~3.3|~4.0",
  9259. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9260. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  9261. },
  9262. "suggest": {
  9263. "symfony/dependency-injection": "",
  9264. "symfony/http-kernel": ""
  9265. },
  9266. "type": "library",
  9267. "extra": {
  9268. "branch-alias": {
  9269. "dev-master": "3.4-dev"
  9270. }
  9271. },
  9272. "autoload": {
  9273. "psr-4": {
  9274. "Symfony\\Component\\EventDispatcher\\": ""
  9275. },
  9276. "exclude-from-classmap": [
  9277. "/Tests/"
  9278. ]
  9279. },
  9280. "notification-url": "https://packagist.org/downloads/",
  9281. "license": [
  9282. "MIT"
  9283. ],
  9284. "authors": [
  9285. {
  9286. "name": "Fabien Potencier",
  9287. "email": "fabien@symfony.com"
  9288. },
  9289. {
  9290. "name": "Symfony Community",
  9291. "homepage": "https://symfony.com/contributors"
  9292. }
  9293. ],
  9294. "description": "Symfony EventDispatcher Component",
  9295. "homepage": "https://symfony.com",
  9296. "time": "2019-01-16T13:27:11+00:00"
  9297. },
  9298. {
  9299. "name": "symfony/filesystem",
  9300. "version": "v3.4.22",
  9301. "source": {
  9302. "type": "git",
  9303. "url": "https://github.com/symfony/filesystem.git",
  9304. "reference": "b52454ec66fe5082b7a66a491339d1f1da9a5a0d"
  9305. },
  9306. "dist": {
  9307. "type": "zip",
  9308. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b52454ec66fe5082b7a66a491339d1f1da9a5a0d",
  9309. "reference": "b52454ec66fe5082b7a66a491339d1f1da9a5a0d",
  9310. "shasum": ""
  9311. },
  9312. "require": {
  9313. "php": "^5.5.9|>=7.0.8",
  9314. "symfony/polyfill-ctype": "~1.8"
  9315. },
  9316. "type": "library",
  9317. "extra": {
  9318. "branch-alias": {
  9319. "dev-master": "3.4-dev"
  9320. }
  9321. },
  9322. "autoload": {
  9323. "psr-4": {
  9324. "Symfony\\Component\\Filesystem\\": ""
  9325. },
  9326. "exclude-from-classmap": [
  9327. "/Tests/"
  9328. ]
  9329. },
  9330. "notification-url": "https://packagist.org/downloads/",
  9331. "license": [
  9332. "MIT"
  9333. ],
  9334. "authors": [
  9335. {
  9336. "name": "Fabien Potencier",
  9337. "email": "fabien@symfony.com"
  9338. },
  9339. {
  9340. "name": "Symfony Community",
  9341. "homepage": "https://symfony.com/contributors"
  9342. }
  9343. ],
  9344. "description": "Symfony Filesystem Component",
  9345. "homepage": "https://symfony.com",
  9346. "time": "2019-01-16T13:27:11+00:00"
  9347. },
  9348. {
  9349. "name": "symfony/finder",
  9350. "version": "v3.4.22",
  9351. "source": {
  9352. "type": "git",
  9353. "url": "https://github.com/symfony/finder.git",
  9354. "reference": "7c0c627220308928e958a87c293108e5891cde1d"
  9355. },
  9356. "dist": {
  9357. "type": "zip",
  9358. "url": "https://api.github.com/repos/symfony/finder/zipball/7c0c627220308928e958a87c293108e5891cde1d",
  9359. "reference": "7c0c627220308928e958a87c293108e5891cde1d",
  9360. "shasum": ""
  9361. },
  9362. "require": {
  9363. "php": "^5.5.9|>=7.0.8"
  9364. },
  9365. "type": "library",
  9366. "extra": {
  9367. "branch-alias": {
  9368. "dev-master": "3.4-dev"
  9369. }
  9370. },
  9371. "autoload": {
  9372. "psr-4": {
  9373. "Symfony\\Component\\Finder\\": ""
  9374. },
  9375. "exclude-from-classmap": [
  9376. "/Tests/"
  9377. ]
  9378. },
  9379. "notification-url": "https://packagist.org/downloads/",
  9380. "license": [
  9381. "MIT"
  9382. ],
  9383. "authors": [
  9384. {
  9385. "name": "Fabien Potencier",
  9386. "email": "fabien@symfony.com"
  9387. },
  9388. {
  9389. "name": "Symfony Community",
  9390. "homepage": "https://symfony.com/contributors"
  9391. }
  9392. ],
  9393. "description": "Symfony Finder Component",
  9394. "homepage": "https://symfony.com",
  9395. "time": "2019-01-16T13:43:35+00:00"
  9396. },
  9397. {
  9398. "name": "symfony/http-foundation",
  9399. "version": "v3.4.22",
  9400. "source": {
  9401. "type": "git",
  9402. "url": "https://github.com/symfony/http-foundation.git",
  9403. "reference": "9a81d2330ea255ded06a69b4f7fb7804836e7a05"
  9404. },
  9405. "dist": {
  9406. "type": "zip",
  9407. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9a81d2330ea255ded06a69b4f7fb7804836e7a05",
  9408. "reference": "9a81d2330ea255ded06a69b4f7fb7804836e7a05",
  9409. "shasum": ""
  9410. },
  9411. "require": {
  9412. "php": "^5.5.9|>=7.0.8",
  9413. "symfony/polyfill-mbstring": "~1.1",
  9414. "symfony/polyfill-php70": "~1.6"
  9415. },
  9416. "require-dev": {
  9417. "symfony/expression-language": "~2.8|~3.0|~4.0"
  9418. },
  9419. "type": "library",
  9420. "extra": {
  9421. "branch-alias": {
  9422. "dev-master": "3.4-dev"
  9423. }
  9424. },
  9425. "autoload": {
  9426. "psr-4": {
  9427. "Symfony\\Component\\HttpFoundation\\": ""
  9428. },
  9429. "exclude-from-classmap": [
  9430. "/Tests/"
  9431. ]
  9432. },
  9433. "notification-url": "https://packagist.org/downloads/",
  9434. "license": [
  9435. "MIT"
  9436. ],
  9437. "authors": [
  9438. {
  9439. "name": "Fabien Potencier",
  9440. "email": "fabien@symfony.com"
  9441. },
  9442. {
  9443. "name": "Symfony Community",
  9444. "homepage": "https://symfony.com/contributors"
  9445. }
  9446. ],
  9447. "description": "Symfony HttpFoundation Component",
  9448. "homepage": "https://symfony.com",
  9449. "time": "2019-01-27T09:04:14+00:00"
  9450. },
  9451. {
  9452. "name": "symfony/http-kernel",
  9453. "version": "v3.4.22",
  9454. "source": {
  9455. "type": "git",
  9456. "url": "https://github.com/symfony/http-kernel.git",
  9457. "reference": "dc6bf17684b7120f7bf74fae85c9155506041002"
  9458. },
  9459. "dist": {
  9460. "type": "zip",
  9461. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/dc6bf17684b7120f7bf74fae85c9155506041002",
  9462. "reference": "dc6bf17684b7120f7bf74fae85c9155506041002",
  9463. "shasum": ""
  9464. },
  9465. "require": {
  9466. "php": "^5.5.9|>=7.0.8",
  9467. "psr/log": "~1.0",
  9468. "symfony/debug": "^3.3.3|~4.0",
  9469. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9470. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  9471. "symfony/polyfill-ctype": "~1.8"
  9472. },
  9473. "conflict": {
  9474. "symfony/config": "<2.8",
  9475. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  9476. "symfony/var-dumper": "<3.3",
  9477. "twig/twig": "<1.34|<2.4,>=2"
  9478. },
  9479. "provide": {
  9480. "psr/log-implementation": "1.0"
  9481. },
  9482. "require-dev": {
  9483. "psr/cache": "~1.0",
  9484. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  9485. "symfony/class-loader": "~2.8|~3.0",
  9486. "symfony/config": "~2.8|~3.0|~4.0",
  9487. "symfony/console": "~2.8|~3.0|~4.0",
  9488. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9489. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  9490. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  9491. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9492. "symfony/finder": "~2.8|~3.0|~4.0",
  9493. "symfony/process": "~2.8|~3.0|~4.0",
  9494. "symfony/routing": "~3.4|~4.0",
  9495. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  9496. "symfony/templating": "~2.8|~3.0|~4.0",
  9497. "symfony/translation": "~2.8|~3.0|~4.0",
  9498. "symfony/var-dumper": "~3.3|~4.0"
  9499. },
  9500. "suggest": {
  9501. "symfony/browser-kit": "",
  9502. "symfony/config": "",
  9503. "symfony/console": "",
  9504. "symfony/dependency-injection": "",
  9505. "symfony/finder": "",
  9506. "symfony/var-dumper": ""
  9507. },
  9508. "type": "library",
  9509. "extra": {
  9510. "branch-alias": {
  9511. "dev-master": "3.4-dev"
  9512. }
  9513. },
  9514. "autoload": {
  9515. "psr-4": {
  9516. "Symfony\\Component\\HttpKernel\\": ""
  9517. },
  9518. "exclude-from-classmap": [
  9519. "/Tests/"
  9520. ]
  9521. },
  9522. "notification-url": "https://packagist.org/downloads/",
  9523. "license": [
  9524. "MIT"
  9525. ],
  9526. "authors": [
  9527. {
  9528. "name": "Fabien Potencier",
  9529. "email": "fabien@symfony.com"
  9530. },
  9531. {
  9532. "name": "Symfony Community",
  9533. "homepage": "https://symfony.com/contributors"
  9534. }
  9535. ],
  9536. "description": "Symfony HttpKernel Component",
  9537. "homepage": "https://symfony.com",
  9538. "time": "2019-02-03T12:22:50+00:00"
  9539. },
  9540. {
  9541. "name": "symfony/polyfill-ctype",
  9542. "version": "v1.10.0",
  9543. "source": {
  9544. "type": "git",
  9545. "url": "https://github.com/symfony/polyfill-ctype.git",
  9546. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  9547. },
  9548. "dist": {
  9549. "type": "zip",
  9550. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  9551. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  9552. "shasum": ""
  9553. },
  9554. "require": {
  9555. "php": ">=5.3.3"
  9556. },
  9557. "suggest": {
  9558. "ext-ctype": "For best performance"
  9559. },
  9560. "type": "library",
  9561. "extra": {
  9562. "branch-alias": {
  9563. "dev-master": "1.9-dev"
  9564. }
  9565. },
  9566. "autoload": {
  9567. "psr-4": {
  9568. "Symfony\\Polyfill\\Ctype\\": ""
  9569. },
  9570. "files": [
  9571. "bootstrap.php"
  9572. ]
  9573. },
  9574. "notification-url": "https://packagist.org/downloads/",
  9575. "license": [
  9576. "MIT"
  9577. ],
  9578. "authors": [
  9579. {
  9580. "name": "Symfony Community",
  9581. "homepage": "https://symfony.com/contributors"
  9582. },
  9583. {
  9584. "name": "Gert de Pagter",
  9585. "email": "backendtea@gmail.com"
  9586. }
  9587. ],
  9588. "description": "Symfony polyfill for ctype functions",
  9589. "homepage": "https://symfony.com",
  9590. "keywords": [
  9591. "compatibility",
  9592. "ctype",
  9593. "polyfill",
  9594. "portable"
  9595. ],
  9596. "time": "2018-08-06T14:22:27+00:00"
  9597. },
  9598. {
  9599. "name": "symfony/polyfill-iconv",
  9600. "version": "v1.10.0",
  9601. "source": {
  9602. "type": "git",
  9603. "url": "https://github.com/symfony/polyfill-iconv.git",
  9604. "reference": "97001cfc283484c9691769f51cdf25259037eba2"
  9605. },
  9606. "dist": {
  9607. "type": "zip",
  9608. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/97001cfc283484c9691769f51cdf25259037eba2",
  9609. "reference": "97001cfc283484c9691769f51cdf25259037eba2",
  9610. "shasum": ""
  9611. },
  9612. "require": {
  9613. "php": ">=5.3.3"
  9614. },
  9615. "suggest": {
  9616. "ext-iconv": "For best performance"
  9617. },
  9618. "type": "library",
  9619. "extra": {
  9620. "branch-alias": {
  9621. "dev-master": "1.9-dev"
  9622. }
  9623. },
  9624. "autoload": {
  9625. "psr-4": {
  9626. "Symfony\\Polyfill\\Iconv\\": ""
  9627. },
  9628. "files": [
  9629. "bootstrap.php"
  9630. ]
  9631. },
  9632. "notification-url": "https://packagist.org/downloads/",
  9633. "license": [
  9634. "MIT"
  9635. ],
  9636. "authors": [
  9637. {
  9638. "name": "Nicolas Grekas",
  9639. "email": "p@tchwork.com"
  9640. },
  9641. {
  9642. "name": "Symfony Community",
  9643. "homepage": "https://symfony.com/contributors"
  9644. }
  9645. ],
  9646. "description": "Symfony polyfill for the Iconv extension",
  9647. "homepage": "https://symfony.com",
  9648. "keywords": [
  9649. "compatibility",
  9650. "iconv",
  9651. "polyfill",
  9652. "portable",
  9653. "shim"
  9654. ],
  9655. "time": "2018-09-21T06:26:08+00:00"
  9656. },
  9657. {
  9658. "name": "symfony/polyfill-mbstring",
  9659. "version": "v1.10.0",
  9660. "source": {
  9661. "type": "git",
  9662. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9663. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  9664. },
  9665. "dist": {
  9666. "type": "zip",
  9667. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  9668. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  9669. "shasum": ""
  9670. },
  9671. "require": {
  9672. "php": ">=5.3.3"
  9673. },
  9674. "suggest": {
  9675. "ext-mbstring": "For best performance"
  9676. },
  9677. "type": "library",
  9678. "extra": {
  9679. "branch-alias": {
  9680. "dev-master": "1.9-dev"
  9681. }
  9682. },
  9683. "autoload": {
  9684. "psr-4": {
  9685. "Symfony\\Polyfill\\Mbstring\\": ""
  9686. },
  9687. "files": [
  9688. "bootstrap.php"
  9689. ]
  9690. },
  9691. "notification-url": "https://packagist.org/downloads/",
  9692. "license": [
  9693. "MIT"
  9694. ],
  9695. "authors": [
  9696. {
  9697. "name": "Nicolas Grekas",
  9698. "email": "p@tchwork.com"
  9699. },
  9700. {
  9701. "name": "Symfony Community",
  9702. "homepage": "https://symfony.com/contributors"
  9703. }
  9704. ],
  9705. "description": "Symfony polyfill for the Mbstring extension",
  9706. "homepage": "https://symfony.com",
  9707. "keywords": [
  9708. "compatibility",
  9709. "mbstring",
  9710. "polyfill",
  9711. "portable",
  9712. "shim"
  9713. ],
  9714. "time": "2018-09-21T13:07:52+00:00"
  9715. },
  9716. {
  9717. "name": "symfony/polyfill-php70",
  9718. "version": "v1.10.0",
  9719. "source": {
  9720. "type": "git",
  9721. "url": "https://github.com/symfony/polyfill-php70.git",
  9722. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  9723. },
  9724. "dist": {
  9725. "type": "zip",
  9726. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  9727. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  9728. "shasum": ""
  9729. },
  9730. "require": {
  9731. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  9732. "php": ">=5.3.3"
  9733. },
  9734. "type": "library",
  9735. "extra": {
  9736. "branch-alias": {
  9737. "dev-master": "1.9-dev"
  9738. }
  9739. },
  9740. "autoload": {
  9741. "psr-4": {
  9742. "Symfony\\Polyfill\\Php70\\": ""
  9743. },
  9744. "files": [
  9745. "bootstrap.php"
  9746. ],
  9747. "classmap": [
  9748. "Resources/stubs"
  9749. ]
  9750. },
  9751. "notification-url": "https://packagist.org/downloads/",
  9752. "license": [
  9753. "MIT"
  9754. ],
  9755. "authors": [
  9756. {
  9757. "name": "Nicolas Grekas",
  9758. "email": "p@tchwork.com"
  9759. },
  9760. {
  9761. "name": "Symfony Community",
  9762. "homepage": "https://symfony.com/contributors"
  9763. }
  9764. ],
  9765. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9766. "homepage": "https://symfony.com",
  9767. "keywords": [
  9768. "compatibility",
  9769. "polyfill",
  9770. "portable",
  9771. "shim"
  9772. ],
  9773. "time": "2018-09-21T06:26:08+00:00"
  9774. },
  9775. {
  9776. "name": "symfony/process",
  9777. "version": "v3.4.22",
  9778. "source": {
  9779. "type": "git",
  9780. "url": "https://github.com/symfony/process.git",
  9781. "reference": "009f8dda80930e89e8344a4e310b08f9ff07dd2e"
  9782. },
  9783. "dist": {
  9784. "type": "zip",
  9785. "url": "https://api.github.com/repos/symfony/process/zipball/009f8dda80930e89e8344a4e310b08f9ff07dd2e",
  9786. "reference": "009f8dda80930e89e8344a4e310b08f9ff07dd2e",
  9787. "shasum": ""
  9788. },
  9789. "require": {
  9790. "php": "^5.5.9|>=7.0.8"
  9791. },
  9792. "type": "library",
  9793. "extra": {
  9794. "branch-alias": {
  9795. "dev-master": "3.4-dev"
  9796. }
  9797. },
  9798. "autoload": {
  9799. "psr-4": {
  9800. "Symfony\\Component\\Process\\": ""
  9801. },
  9802. "exclude-from-classmap": [
  9803. "/Tests/"
  9804. ]
  9805. },
  9806. "notification-url": "https://packagist.org/downloads/",
  9807. "license": [
  9808. "MIT"
  9809. ],
  9810. "authors": [
  9811. {
  9812. "name": "Fabien Potencier",
  9813. "email": "fabien@symfony.com"
  9814. },
  9815. {
  9816. "name": "Symfony Community",
  9817. "homepage": "https://symfony.com/contributors"
  9818. }
  9819. ],
  9820. "description": "Symfony Process Component",
  9821. "homepage": "https://symfony.com",
  9822. "time": "2019-01-16T13:27:11+00:00"
  9823. },
  9824. {
  9825. "name": "symfony/psr-http-message-bridge",
  9826. "version": "v1.1.0",
  9827. "source": {
  9828. "type": "git",
  9829. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9830. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  9831. },
  9832. "dist": {
  9833. "type": "zip",
  9834. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9835. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9836. "shasum": ""
  9837. },
  9838. "require": {
  9839. "php": "^5.3.3 || ^7.0",
  9840. "psr/http-message": "^1.0",
  9841. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9842. },
  9843. "require-dev": {
  9844. "symfony/phpunit-bridge": "^3.4 || 4.0"
  9845. },
  9846. "suggest": {
  9847. "psr/http-factory-implementation": "To use the PSR-17 factory",
  9848. "psr/http-message-implementation": "To use the HttpFoundation factory",
  9849. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  9850. },
  9851. "type": "symfony-bridge",
  9852. "extra": {
  9853. "branch-alias": {
  9854. "dev-master": "1.1-dev"
  9855. }
  9856. },
  9857. "autoload": {
  9858. "psr-4": {
  9859. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9860. }
  9861. },
  9862. "notification-url": "https://packagist.org/downloads/",
  9863. "license": [
  9864. "MIT"
  9865. ],
  9866. "authors": [
  9867. {
  9868. "name": "Symfony Community",
  9869. "homepage": "http://symfony.com/contributors"
  9870. },
  9871. {
  9872. "name": "Fabien Potencier",
  9873. "email": "fabien@symfony.com"
  9874. }
  9875. ],
  9876. "description": "PSR HTTP message bridge",
  9877. "homepage": "http://symfony.com",
  9878. "keywords": [
  9879. "http",
  9880. "http-message",
  9881. "psr-7"
  9882. ],
  9883. "time": "2018-08-30T16:28:28+00:00"
  9884. },
  9885. {
  9886. "name": "symfony/routing",
  9887. "version": "v3.4.22",
  9888. "source": {
  9889. "type": "git",
  9890. "url": "https://github.com/symfony/routing.git",
  9891. "reference": "62f0b8d8cd2cd359c3caa5a9f5253a4a6d480646"
  9892. },
  9893. "dist": {
  9894. "type": "zip",
  9895. "url": "https://api.github.com/repos/symfony/routing/zipball/62f0b8d8cd2cd359c3caa5a9f5253a4a6d480646",
  9896. "reference": "62f0b8d8cd2cd359c3caa5a9f5253a4a6d480646",
  9897. "shasum": ""
  9898. },
  9899. "require": {
  9900. "php": "^5.5.9|>=7.0.8"
  9901. },
  9902. "conflict": {
  9903. "symfony/config": "<3.3.1",
  9904. "symfony/dependency-injection": "<3.3",
  9905. "symfony/yaml": "<3.4"
  9906. },
  9907. "require-dev": {
  9908. "doctrine/annotations": "~1.0",
  9909. "psr/log": "~1.0",
  9910. "symfony/config": "^3.3.1|~4.0",
  9911. "symfony/dependency-injection": "~3.3|~4.0",
  9912. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9913. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9914. "symfony/yaml": "~3.4|~4.0"
  9915. },
  9916. "suggest": {
  9917. "doctrine/annotations": "For using the annotation loader",
  9918. "symfony/config": "For using the all-in-one router or any loader",
  9919. "symfony/dependency-injection": "For loading routes from a service",
  9920. "symfony/expression-language": "For using expression matching",
  9921. "symfony/http-foundation": "For using a Symfony Request object",
  9922. "symfony/yaml": "For using the YAML loader"
  9923. },
  9924. "type": "library",
  9925. "extra": {
  9926. "branch-alias": {
  9927. "dev-master": "3.4-dev"
  9928. }
  9929. },
  9930. "autoload": {
  9931. "psr-4": {
  9932. "Symfony\\Component\\Routing\\": ""
  9933. },
  9934. "exclude-from-classmap": [
  9935. "/Tests/"
  9936. ]
  9937. },
  9938. "notification-url": "https://packagist.org/downloads/",
  9939. "license": [
  9940. "MIT"
  9941. ],
  9942. "authors": [
  9943. {
  9944. "name": "Fabien Potencier",
  9945. "email": "fabien@symfony.com"
  9946. },
  9947. {
  9948. "name": "Symfony Community",
  9949. "homepage": "https://symfony.com/contributors"
  9950. }
  9951. ],
  9952. "description": "Symfony Routing Component",
  9953. "homepage": "https://symfony.com",
  9954. "keywords": [
  9955. "router",
  9956. "routing",
  9957. "uri",
  9958. "url"
  9959. ],
  9960. "time": "2019-01-29T08:47:12+00:00"
  9961. },
  9962. {
  9963. "name": "symfony/serializer",
  9964. "version": "v3.4.22",
  9965. "source": {
  9966. "type": "git",
  9967. "url": "https://github.com/symfony/serializer.git",
  9968. "reference": "a897373b86489ddecacc665d15ab32983a519907"
  9969. },
  9970. "dist": {
  9971. "type": "zip",
  9972. "url": "https://api.github.com/repos/symfony/serializer/zipball/a897373b86489ddecacc665d15ab32983a519907",
  9973. "reference": "a897373b86489ddecacc665d15ab32983a519907",
  9974. "shasum": ""
  9975. },
  9976. "require": {
  9977. "php": "^5.5.9|>=7.0.8",
  9978. "symfony/polyfill-ctype": "~1.8"
  9979. },
  9980. "conflict": {
  9981. "phpdocumentor/type-resolver": "<0.2.1",
  9982. "symfony/dependency-injection": "<3.2",
  9983. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9984. "symfony/property-info": "<3.1",
  9985. "symfony/yaml": "<3.4"
  9986. },
  9987. "require-dev": {
  9988. "doctrine/annotations": "~1.0",
  9989. "doctrine/cache": "~1.0",
  9990. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9991. "symfony/cache": "~3.1|~4.0",
  9992. "symfony/config": "~2.8|~3.0|~4.0",
  9993. "symfony/dependency-injection": "~3.2|~4.0",
  9994. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9995. "symfony/property-access": "~2.8|~3.0|~4.0",
  9996. "symfony/property-info": "~3.1|~4.0",
  9997. "symfony/yaml": "~3.4|~4.0"
  9998. },
  9999. "suggest": {
  10000. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10001. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10002. "psr/cache-implementation": "For using the metadata cache.",
  10003. "symfony/config": "For using the XML mapping loader.",
  10004. "symfony/http-foundation": "To use the DataUriNormalizer.",
  10005. "symfony/property-access": "For using the ObjectNormalizer.",
  10006. "symfony/property-info": "To deserialize relations.",
  10007. "symfony/yaml": "For using the default YAML mapping loader."
  10008. },
  10009. "type": "library",
  10010. "extra": {
  10011. "branch-alias": {
  10012. "dev-master": "3.4-dev"
  10013. }
  10014. },
  10015. "autoload": {
  10016. "psr-4": {
  10017. "Symfony\\Component\\Serializer\\": ""
  10018. },
  10019. "exclude-from-classmap": [
  10020. "/Tests/"
  10021. ]
  10022. },
  10023. "notification-url": "https://packagist.org/downloads/",
  10024. "license": [
  10025. "MIT"
  10026. ],
  10027. "authors": [
  10028. {
  10029. "name": "Fabien Potencier",
  10030. "email": "fabien@symfony.com"
  10031. },
  10032. {
  10033. "name": "Symfony Community",
  10034. "homepage": "https://symfony.com/contributors"
  10035. }
  10036. ],
  10037. "description": "Symfony Serializer Component",
  10038. "homepage": "https://symfony.com",
  10039. "time": "2019-01-26T19:55:54+00:00"
  10040. },
  10041. {
  10042. "name": "symfony/translation",
  10043. "version": "v3.4.22",
  10044. "source": {
  10045. "type": "git",
  10046. "url": "https://github.com/symfony/translation.git",
  10047. "reference": "81cfcd6935cb7505640153576c1f9155b2a179c1"
  10048. },
  10049. "dist": {
  10050. "type": "zip",
  10051. "url": "https://api.github.com/repos/symfony/translation/zipball/81cfcd6935cb7505640153576c1f9155b2a179c1",
  10052. "reference": "81cfcd6935cb7505640153576c1f9155b2a179c1",
  10053. "shasum": ""
  10054. },
  10055. "require": {
  10056. "php": "^5.5.9|>=7.0.8",
  10057. "symfony/polyfill-mbstring": "~1.0"
  10058. },
  10059. "conflict": {
  10060. "symfony/config": "<2.8",
  10061. "symfony/dependency-injection": "<3.4",
  10062. "symfony/yaml": "<3.4"
  10063. },
  10064. "require-dev": {
  10065. "psr/log": "~1.0",
  10066. "symfony/config": "~2.8|~3.0|~4.0",
  10067. "symfony/dependency-injection": "~3.4|~4.0",
  10068. "symfony/finder": "~2.8|~3.0|~4.0",
  10069. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10070. "symfony/yaml": "~3.4|~4.0"
  10071. },
  10072. "suggest": {
  10073. "psr/log-implementation": "To use logging capability in translator",
  10074. "symfony/config": "",
  10075. "symfony/yaml": ""
  10076. },
  10077. "type": "library",
  10078. "extra": {
  10079. "branch-alias": {
  10080. "dev-master": "3.4-dev"
  10081. }
  10082. },
  10083. "autoload": {
  10084. "psr-4": {
  10085. "Symfony\\Component\\Translation\\": ""
  10086. },
  10087. "exclude-from-classmap": [
  10088. "/Tests/"
  10089. ]
  10090. },
  10091. "notification-url": "https://packagist.org/downloads/",
  10092. "license": [
  10093. "MIT"
  10094. ],
  10095. "authors": [
  10096. {
  10097. "name": "Fabien Potencier",
  10098. "email": "fabien@symfony.com"
  10099. },
  10100. {
  10101. "name": "Symfony Community",
  10102. "homepage": "https://symfony.com/contributors"
  10103. }
  10104. ],
  10105. "description": "Symfony Translation Component",
  10106. "homepage": "https://symfony.com",
  10107. "time": "2019-01-25T10:00:44+00:00"
  10108. },
  10109. {
  10110. "name": "symfony/validator",
  10111. "version": "v3.4.22",
  10112. "source": {
  10113. "type": "git",
  10114. "url": "https://github.com/symfony/validator.git",
  10115. "reference": "06af494d8634df6ad9655ec7d80cb61983253912"
  10116. },
  10117. "dist": {
  10118. "type": "zip",
  10119. "url": "https://api.github.com/repos/symfony/validator/zipball/06af494d8634df6ad9655ec7d80cb61983253912",
  10120. "reference": "06af494d8634df6ad9655ec7d80cb61983253912",
  10121. "shasum": ""
  10122. },
  10123. "require": {
  10124. "php": "^5.5.9|>=7.0.8",
  10125. "symfony/polyfill-ctype": "~1.8",
  10126. "symfony/polyfill-mbstring": "~1.0",
  10127. "symfony/translation": "~2.8|~3.0|~4.0"
  10128. },
  10129. "conflict": {
  10130. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10131. "symfony/dependency-injection": "<3.3",
  10132. "symfony/http-kernel": "<3.3.5",
  10133. "symfony/yaml": "<3.4"
  10134. },
  10135. "require-dev": {
  10136. "doctrine/annotations": "~1.0",
  10137. "doctrine/cache": "~1.0",
  10138. "egulias/email-validator": "^1.2.8|~2.0",
  10139. "symfony/cache": "~3.1|~4.0",
  10140. "symfony/config": "~2.8|~3.0|~4.0",
  10141. "symfony/dependency-injection": "~3.3|~4.0",
  10142. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10143. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10144. "symfony/http-kernel": "^3.3.5|~4.0",
  10145. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10146. "symfony/property-access": "~2.8|~3.0|~4.0",
  10147. "symfony/var-dumper": "~3.3|~4.0",
  10148. "symfony/yaml": "~3.4|~4.0"
  10149. },
  10150. "suggest": {
  10151. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10152. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10153. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10154. "psr/cache-implementation": "For using the metadata cache.",
  10155. "symfony/config": "",
  10156. "symfony/expression-language": "For using the Expression validator",
  10157. "symfony/http-foundation": "",
  10158. "symfony/intl": "",
  10159. "symfony/property-access": "For accessing properties within comparison constraints",
  10160. "symfony/yaml": ""
  10161. },
  10162. "type": "library",
  10163. "extra": {
  10164. "branch-alias": {
  10165. "dev-master": "3.4-dev"
  10166. }
  10167. },
  10168. "autoload": {
  10169. "psr-4": {
  10170. "Symfony\\Component\\Validator\\": ""
  10171. },
  10172. "exclude-from-classmap": [
  10173. "/Tests/"
  10174. ]
  10175. },
  10176. "notification-url": "https://packagist.org/downloads/",
  10177. "license": [
  10178. "MIT"
  10179. ],
  10180. "authors": [
  10181. {
  10182. "name": "Fabien Potencier",
  10183. "email": "fabien@symfony.com"
  10184. },
  10185. {
  10186. "name": "Symfony Community",
  10187. "homepage": "https://symfony.com/contributors"
  10188. }
  10189. ],
  10190. "description": "Symfony Validator Component",
  10191. "homepage": "https://symfony.com",
  10192. "time": "2019-01-30T09:03:33+00:00"
  10193. },
  10194. {
  10195. "name": "symfony/var-dumper",
  10196. "version": "v3.4.22",
  10197. "source": {
  10198. "type": "git",
  10199. "url": "https://github.com/symfony/var-dumper.git",
  10200. "reference": "2159335b452d929cbb9921fc4eb7d1bfed32d0be"
  10201. },
  10202. "dist": {
  10203. "type": "zip",
  10204. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2159335b452d929cbb9921fc4eb7d1bfed32d0be",
  10205. "reference": "2159335b452d929cbb9921fc4eb7d1bfed32d0be",
  10206. "shasum": ""
  10207. },
  10208. "require": {
  10209. "php": "^5.5.9|>=7.0.8",
  10210. "symfony/polyfill-mbstring": "~1.0"
  10211. },
  10212. "conflict": {
  10213. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  10214. },
  10215. "require-dev": {
  10216. "ext-iconv": "*",
  10217. "twig/twig": "~1.34|~2.4"
  10218. },
  10219. "suggest": {
  10220. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10221. "ext-intl": "To show region name in time zone dump",
  10222. "ext-symfony_debug": ""
  10223. },
  10224. "type": "library",
  10225. "extra": {
  10226. "branch-alias": {
  10227. "dev-master": "3.4-dev"
  10228. }
  10229. },
  10230. "autoload": {
  10231. "files": [
  10232. "Resources/functions/dump.php"
  10233. ],
  10234. "psr-4": {
  10235. "Symfony\\Component\\VarDumper\\": ""
  10236. },
  10237. "exclude-from-classmap": [
  10238. "/Tests/"
  10239. ]
  10240. },
  10241. "notification-url": "https://packagist.org/downloads/",
  10242. "license": [
  10243. "MIT"
  10244. ],
  10245. "authors": [
  10246. {
  10247. "name": "Nicolas Grekas",
  10248. "email": "p@tchwork.com"
  10249. },
  10250. {
  10251. "name": "Symfony Community",
  10252. "homepage": "https://symfony.com/contributors"
  10253. }
  10254. ],
  10255. "description": "Symfony mechanism for exploring and dumping PHP variables",
  10256. "homepage": "https://symfony.com",
  10257. "keywords": [
  10258. "debug",
  10259. "dump"
  10260. ],
  10261. "time": "2019-01-29T16:19:17+00:00"
  10262. },
  10263. {
  10264. "name": "symfony/yaml",
  10265. "version": "v3.4.22",
  10266. "source": {
  10267. "type": "git",
  10268. "url": "https://github.com/symfony/yaml.git",
  10269. "reference": "ba11776e9e6c15ad5759a07bffb15899bac75c2d"
  10270. },
  10271. "dist": {
  10272. "type": "zip",
  10273. "url": "https://api.github.com/repos/symfony/yaml/zipball/ba11776e9e6c15ad5759a07bffb15899bac75c2d",
  10274. "reference": "ba11776e9e6c15ad5759a07bffb15899bac75c2d",
  10275. "shasum": ""
  10276. },
  10277. "require": {
  10278. "php": "^5.5.9|>=7.0.8",
  10279. "symfony/polyfill-ctype": "~1.8"
  10280. },
  10281. "conflict": {
  10282. "symfony/console": "<3.4"
  10283. },
  10284. "require-dev": {
  10285. "symfony/console": "~3.4|~4.0"
  10286. },
  10287. "suggest": {
  10288. "symfony/console": "For validating YAML files using the lint command"
  10289. },
  10290. "type": "library",
  10291. "extra": {
  10292. "branch-alias": {
  10293. "dev-master": "3.4-dev"
  10294. }
  10295. },
  10296. "autoload": {
  10297. "psr-4": {
  10298. "Symfony\\Component\\Yaml\\": ""
  10299. },
  10300. "exclude-from-classmap": [
  10301. "/Tests/"
  10302. ]
  10303. },
  10304. "notification-url": "https://packagist.org/downloads/",
  10305. "license": [
  10306. "MIT"
  10307. ],
  10308. "authors": [
  10309. {
  10310. "name": "Fabien Potencier",
  10311. "email": "fabien@symfony.com"
  10312. },
  10313. {
  10314. "name": "Symfony Community",
  10315. "homepage": "https://symfony.com/contributors"
  10316. }
  10317. ],
  10318. "description": "Symfony Yaml Component",
  10319. "homepage": "https://symfony.com",
  10320. "time": "2019-01-16T10:59:17+00:00"
  10321. },
  10322. {
  10323. "name": "twig/twig",
  10324. "version": "v1.37.1",
  10325. "source": {
  10326. "type": "git",
  10327. "url": "https://github.com/twigphp/Twig.git",
  10328. "reference": "66be9366c76cbf23e82e7171d47cbfa54a057a62"
  10329. },
  10330. "dist": {
  10331. "type": "zip",
  10332. "url": "https://api.github.com/repos/twigphp/Twig/zipball/66be9366c76cbf23e82e7171d47cbfa54a057a62",
  10333. "reference": "66be9366c76cbf23e82e7171d47cbfa54a057a62",
  10334. "shasum": ""
  10335. },
  10336. "require": {
  10337. "php": ">=5.4.0",
  10338. "symfony/polyfill-ctype": "^1.8"
  10339. },
  10340. "require-dev": {
  10341. "psr/container": "^1.0",
  10342. "symfony/debug": "^2.7",
  10343. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  10344. },
  10345. "type": "library",
  10346. "extra": {
  10347. "branch-alias": {
  10348. "dev-master": "1.37-dev"
  10349. }
  10350. },
  10351. "autoload": {
  10352. "psr-0": {
  10353. "Twig_": "lib/"
  10354. },
  10355. "psr-4": {
  10356. "Twig\\": "src/"
  10357. }
  10358. },
  10359. "notification-url": "https://packagist.org/downloads/",
  10360. "license": [
  10361. "BSD-3-Clause"
  10362. ],
  10363. "authors": [
  10364. {
  10365. "name": "Fabien Potencier",
  10366. "email": "fabien@symfony.com",
  10367. "homepage": "http://fabien.potencier.org",
  10368. "role": "Lead Developer"
  10369. },
  10370. {
  10371. "name": "Armin Ronacher",
  10372. "email": "armin.ronacher@active-4.com",
  10373. "role": "Project Founder"
  10374. },
  10375. {
  10376. "name": "Twig Team",
  10377. "homepage": "https://twig.symfony.com/contributors",
  10378. "role": "Contributors"
  10379. }
  10380. ],
  10381. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10382. "homepage": "https://twig.symfony.com",
  10383. "keywords": [
  10384. "templating"
  10385. ],
  10386. "time": "2019-01-14T14:59:29+00:00"
  10387. },
  10388. {
  10389. "name": "typo3/phar-stream-wrapper",
  10390. "version": "v2.0.1",
  10391. "source": {
  10392. "type": "git",
  10393. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10394. "reference": "0469d9fefa0146ea4299d3b11cfbb76faa7045bf"
  10395. },
  10396. "dist": {
  10397. "type": "zip",
  10398. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/0469d9fefa0146ea4299d3b11cfbb76faa7045bf",
  10399. "reference": "0469d9fefa0146ea4299d3b11cfbb76faa7045bf",
  10400. "shasum": ""
  10401. },
  10402. "require": {
  10403. "php": "^5.3.3|^7.0"
  10404. },
  10405. "require-dev": {
  10406. "phpunit/phpunit": "^4.8.36"
  10407. },
  10408. "type": "library",
  10409. "autoload": {
  10410. "psr-4": {
  10411. "TYPO3\\PharStreamWrapper\\": "src/"
  10412. }
  10413. },
  10414. "notification-url": "https://packagist.org/downloads/",
  10415. "license": [
  10416. "MIT"
  10417. ],
  10418. "description": "Interceptors for PHP's native phar:// stream handling",
  10419. "homepage": "https://typo3.org/",
  10420. "keywords": [
  10421. "phar",
  10422. "php",
  10423. "security",
  10424. "stream-wrapper"
  10425. ],
  10426. "time": "2018-10-18T08:46:28+00:00"
  10427. },
  10428. {
  10429. "name": "vlucas/phpdotenv",
  10430. "version": "v2.6.1",
  10431. "source": {
  10432. "type": "git",
  10433. "url": "https://github.com/vlucas/phpdotenv.git",
  10434. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  10435. },
  10436. "dist": {
  10437. "type": "zip",
  10438. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10439. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10440. "shasum": ""
  10441. },
  10442. "require": {
  10443. "php": ">=5.3.9",
  10444. "symfony/polyfill-ctype": "^1.9"
  10445. },
  10446. "require-dev": {
  10447. "phpunit/phpunit": "^4.8.35 || ^5.0"
  10448. },
  10449. "type": "library",
  10450. "extra": {
  10451. "branch-alias": {
  10452. "dev-master": "2.6-dev"
  10453. }
  10454. },
  10455. "autoload": {
  10456. "psr-4": {
  10457. "Dotenv\\": "src/"
  10458. }
  10459. },
  10460. "notification-url": "https://packagist.org/downloads/",
  10461. "license": [
  10462. "BSD-3-Clause"
  10463. ],
  10464. "authors": [
  10465. {
  10466. "name": "Vance Lucas",
  10467. "email": "vance@vancelucas.com",
  10468. "homepage": "http://www.vancelucas.com"
  10469. }
  10470. ],
  10471. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10472. "keywords": [
  10473. "dotenv",
  10474. "env",
  10475. "environment"
  10476. ],
  10477. "time": "2019-01-29T11:11:52+00:00"
  10478. },
  10479. {
  10480. "name": "webflo/drupal-finder",
  10481. "version": "1.1.0",
  10482. "source": {
  10483. "type": "git",
  10484. "url": "https://github.com/webflo/drupal-finder.git",
  10485. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  10486. },
  10487. "dist": {
  10488. "type": "zip",
  10489. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  10490. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  10491. "shasum": ""
  10492. },
  10493. "require-dev": {
  10494. "mikey179/vfsstream": "^1.6",
  10495. "phpunit/phpunit": "^4.8"
  10496. },
  10497. "type": "library",
  10498. "autoload": {
  10499. "classmap": [
  10500. "src/DrupalFinder.php"
  10501. ]
  10502. },
  10503. "notification-url": "https://packagist.org/downloads/",
  10504. "license": [
  10505. "GPL-2.0+"
  10506. ],
  10507. "authors": [
  10508. {
  10509. "name": "Florian Weber",
  10510. "email": "florian@webflo.org"
  10511. }
  10512. ],
  10513. "description": "Helper class to locate a Drupal installation from a given path.",
  10514. "time": "2017-10-24T08:12:11+00:00"
  10515. },
  10516. {
  10517. "name": "webmozart/assert",
  10518. "version": "1.4.0",
  10519. "source": {
  10520. "type": "git",
  10521. "url": "https://github.com/webmozart/assert.git",
  10522. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  10523. },
  10524. "dist": {
  10525. "type": "zip",
  10526. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  10527. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  10528. "shasum": ""
  10529. },
  10530. "require": {
  10531. "php": "^5.3.3 || ^7.0",
  10532. "symfony/polyfill-ctype": "^1.8"
  10533. },
  10534. "require-dev": {
  10535. "phpunit/phpunit": "^4.6",
  10536. "sebastian/version": "^1.0.1"
  10537. },
  10538. "type": "library",
  10539. "extra": {
  10540. "branch-alias": {
  10541. "dev-master": "1.3-dev"
  10542. }
  10543. },
  10544. "autoload": {
  10545. "psr-4": {
  10546. "Webmozart\\Assert\\": "src/"
  10547. }
  10548. },
  10549. "notification-url": "https://packagist.org/downloads/",
  10550. "license": [
  10551. "MIT"
  10552. ],
  10553. "authors": [
  10554. {
  10555. "name": "Bernhard Schussek",
  10556. "email": "bschussek@gmail.com"
  10557. }
  10558. ],
  10559. "description": "Assertions to validate method input/output with nice error messages.",
  10560. "keywords": [
  10561. "assert",
  10562. "check",
  10563. "validate"
  10564. ],
  10565. "time": "2018-12-25T11:19:39+00:00"
  10566. },
  10567. {
  10568. "name": "webmozart/path-util",
  10569. "version": "2.3.0",
  10570. "source": {
  10571. "type": "git",
  10572. "url": "https://github.com/webmozart/path-util.git",
  10573. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10574. },
  10575. "dist": {
  10576. "type": "zip",
  10577. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10578. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10579. "shasum": ""
  10580. },
  10581. "require": {
  10582. "php": ">=5.3.3",
  10583. "webmozart/assert": "~1.0"
  10584. },
  10585. "require-dev": {
  10586. "phpunit/phpunit": "^4.6",
  10587. "sebastian/version": "^1.0.1"
  10588. },
  10589. "type": "library",
  10590. "extra": {
  10591. "branch-alias": {
  10592. "dev-master": "2.3-dev"
  10593. }
  10594. },
  10595. "autoload": {
  10596. "psr-4": {
  10597. "Webmozart\\PathUtil\\": "src/"
  10598. }
  10599. },
  10600. "notification-url": "https://packagist.org/downloads/",
  10601. "license": [
  10602. "MIT"
  10603. ],
  10604. "authors": [
  10605. {
  10606. "name": "Bernhard Schussek",
  10607. "email": "bschussek@gmail.com"
  10608. }
  10609. ],
  10610. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10611. "time": "2015-12-17T08:42:14+00:00"
  10612. },
  10613. {
  10614. "name": "wikimedia/composer-merge-plugin",
  10615. "version": "v1.4.1",
  10616. "source": {
  10617. "type": "git",
  10618. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  10619. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  10620. },
  10621. "dist": {
  10622. "type": "zip",
  10623. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  10624. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  10625. "shasum": ""
  10626. },
  10627. "require": {
  10628. "composer-plugin-api": "^1.0",
  10629. "php": ">=5.3.2"
  10630. },
  10631. "require-dev": {
  10632. "composer/composer": "~1.0.0",
  10633. "jakub-onderka/php-parallel-lint": "~0.8",
  10634. "phpunit/phpunit": "~4.8|~5.0",
  10635. "squizlabs/php_codesniffer": "~2.1.0"
  10636. },
  10637. "type": "composer-plugin",
  10638. "extra": {
  10639. "branch-alias": {
  10640. "dev-master": "1.3.x-dev"
  10641. },
  10642. "class": "Wikimedia\\Composer\\MergePlugin"
  10643. },
  10644. "autoload": {
  10645. "psr-4": {
  10646. "Wikimedia\\Composer\\": "src/"
  10647. }
  10648. },
  10649. "notification-url": "https://packagist.org/downloads/",
  10650. "license": [
  10651. "MIT"
  10652. ],
  10653. "authors": [
  10654. {
  10655. "name": "Bryan Davis",
  10656. "email": "bd808@wikimedia.org"
  10657. }
  10658. ],
  10659. "description": "Composer plugin to merge multiple composer.json files",
  10660. "time": "2017-04-25T02:31:25+00:00"
  10661. },
  10662. {
  10663. "name": "zaporylie/composer-drupal-optimizations",
  10664. "version": "1.0.2",
  10665. "source": {
  10666. "type": "git",
  10667. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  10668. "reference": "cc5eb9f0b5fa664885765748ce5190c1de7d2571"
  10669. },
  10670. "dist": {
  10671. "type": "zip",
  10672. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/cc5eb9f0b5fa664885765748ce5190c1de7d2571",
  10673. "reference": "cc5eb9f0b5fa664885765748ce5190c1de7d2571",
  10674. "shasum": ""
  10675. },
  10676. "require": {
  10677. "composer-plugin-api": "^1.1",
  10678. "drupal/core": "^8.5"
  10679. },
  10680. "require-dev": {
  10681. "composer/composer": "^1.6"
  10682. },
  10683. "type": "composer-plugin",
  10684. "extra": {
  10685. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  10686. },
  10687. "autoload": {
  10688. "psr-4": {
  10689. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  10690. }
  10691. },
  10692. "notification-url": "https://packagist.org/downloads/",
  10693. "license": [
  10694. "GPL-2.0-or-later"
  10695. ],
  10696. "authors": [
  10697. {
  10698. "name": "Jakub Piasecki",
  10699. "email": "jakub@piaseccy.pl"
  10700. }
  10701. ],
  10702. "description": "Composer plugin to improve composer performance for Drupal projects",
  10703. "time": "2018-07-15T18:04:58+00:00"
  10704. },
  10705. {
  10706. "name": "zendframework/zend-diactoros",
  10707. "version": "1.8.6",
  10708. "source": {
  10709. "type": "git",
  10710. "url": "https://github.com/zendframework/zend-diactoros.git",
  10711. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  10712. },
  10713. "dist": {
  10714. "type": "zip",
  10715. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  10716. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  10717. "shasum": ""
  10718. },
  10719. "require": {
  10720. "php": "^5.6 || ^7.0",
  10721. "psr/http-message": "^1.0"
  10722. },
  10723. "provide": {
  10724. "psr/http-message-implementation": "1.0"
  10725. },
  10726. "require-dev": {
  10727. "ext-dom": "*",
  10728. "ext-libxml": "*",
  10729. "php-http/psr7-integration-tests": "dev-master",
  10730. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  10731. "zendframework/zend-coding-standard": "~1.0"
  10732. },
  10733. "type": "library",
  10734. "extra": {
  10735. "branch-alias": {
  10736. "dev-master": "1.8.x-dev",
  10737. "dev-develop": "1.9.x-dev",
  10738. "dev-release-2.0": "2.0.x-dev"
  10739. }
  10740. },
  10741. "autoload": {
  10742. "files": [
  10743. "src/functions/create_uploaded_file.php",
  10744. "src/functions/marshal_headers_from_sapi.php",
  10745. "src/functions/marshal_method_from_sapi.php",
  10746. "src/functions/marshal_protocol_version_from_sapi.php",
  10747. "src/functions/marshal_uri_from_sapi.php",
  10748. "src/functions/normalize_server.php",
  10749. "src/functions/normalize_uploaded_files.php",
  10750. "src/functions/parse_cookie_header.php"
  10751. ],
  10752. "psr-4": {
  10753. "Zend\\Diactoros\\": "src/"
  10754. }
  10755. },
  10756. "notification-url": "https://packagist.org/downloads/",
  10757. "license": [
  10758. "BSD-2-Clause"
  10759. ],
  10760. "description": "PSR HTTP Message implementations",
  10761. "homepage": "https://github.com/zendframework/zend-diactoros",
  10762. "keywords": [
  10763. "http",
  10764. "psr",
  10765. "psr-7"
  10766. ],
  10767. "time": "2018-09-05T19:29:37+00:00"
  10768. },
  10769. {
  10770. "name": "zendframework/zend-escaper",
  10771. "version": "2.6.0",
  10772. "source": {
  10773. "type": "git",
  10774. "url": "https://github.com/zendframework/zend-escaper.git",
  10775. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  10776. },
  10777. "dist": {
  10778. "type": "zip",
  10779. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  10780. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  10781. "shasum": ""
  10782. },
  10783. "require": {
  10784. "php": "^5.6 || ^7.0"
  10785. },
  10786. "require-dev": {
  10787. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10788. "zendframework/zend-coding-standard": "~1.0.0"
  10789. },
  10790. "type": "library",
  10791. "extra": {
  10792. "branch-alias": {
  10793. "dev-master": "2.6.x-dev",
  10794. "dev-develop": "2.7.x-dev"
  10795. }
  10796. },
  10797. "autoload": {
  10798. "psr-4": {
  10799. "Zend\\Escaper\\": "src/"
  10800. }
  10801. },
  10802. "notification-url": "https://packagist.org/downloads/",
  10803. "license": [
  10804. "BSD-3-Clause"
  10805. ],
  10806. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  10807. "keywords": [
  10808. "ZendFramework",
  10809. "escaper",
  10810. "zf"
  10811. ],
  10812. "time": "2018-04-25T15:48:53+00:00"
  10813. },
  10814. {
  10815. "name": "zendframework/zend-feed",
  10816. "version": "2.11.0",
  10817. "source": {
  10818. "type": "git",
  10819. "url": "https://github.com/zendframework/zend-feed.git",
  10820. "reference": "5248e9fffa760e5c36092aeff02c3797e4a8a690"
  10821. },
  10822. "dist": {
  10823. "type": "zip",
  10824. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/5248e9fffa760e5c36092aeff02c3797e4a8a690",
  10825. "reference": "5248e9fffa760e5c36092aeff02c3797e4a8a690",
  10826. "shasum": ""
  10827. },
  10828. "require": {
  10829. "ext-dom": "*",
  10830. "ext-libxml": "*",
  10831. "php": "^5.6 || ^7.0",
  10832. "zendframework/zend-escaper": "^2.5.2",
  10833. "zendframework/zend-stdlib": "^3.2.1"
  10834. },
  10835. "require-dev": {
  10836. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  10837. "psr/http-message": "^1.0.1",
  10838. "zendframework/zend-cache": "^2.7.2",
  10839. "zendframework/zend-coding-standard": "~1.0.0",
  10840. "zendframework/zend-db": "^2.8.2",
  10841. "zendframework/zend-http": "^2.7",
  10842. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  10843. "zendframework/zend-validator": "^2.10.1"
  10844. },
  10845. "suggest": {
  10846. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  10847. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  10848. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  10849. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  10850. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  10851. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  10852. },
  10853. "type": "library",
  10854. "extra": {
  10855. "branch-alias": {
  10856. "dev-master": "2.11.x-dev",
  10857. "dev-develop": "2.12.x-dev"
  10858. }
  10859. },
  10860. "autoload": {
  10861. "psr-4": {
  10862. "Zend\\Feed\\": "src/"
  10863. }
  10864. },
  10865. "notification-url": "https://packagist.org/downloads/",
  10866. "license": [
  10867. "BSD-3-Clause"
  10868. ],
  10869. "description": "provides functionality for consuming RSS and Atom feeds",
  10870. "keywords": [
  10871. "ZendFramework",
  10872. "feed",
  10873. "zf"
  10874. ],
  10875. "time": "2019-01-29T21:37:15+00:00"
  10876. },
  10877. {
  10878. "name": "zendframework/zend-stdlib",
  10879. "version": "3.2.1",
  10880. "source": {
  10881. "type": "git",
  10882. "url": "https://github.com/zendframework/zend-stdlib.git",
  10883. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  10884. },
  10885. "dist": {
  10886. "type": "zip",
  10887. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  10888. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  10889. "shasum": ""
  10890. },
  10891. "require": {
  10892. "php": "^5.6 || ^7.0"
  10893. },
  10894. "require-dev": {
  10895. "phpbench/phpbench": "^0.13",
  10896. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10897. "zendframework/zend-coding-standard": "~1.0.0"
  10898. },
  10899. "type": "library",
  10900. "extra": {
  10901. "branch-alias": {
  10902. "dev-master": "3.2.x-dev",
  10903. "dev-develop": "3.3.x-dev"
  10904. }
  10905. },
  10906. "autoload": {
  10907. "psr-4": {
  10908. "Zend\\Stdlib\\": "src/"
  10909. }
  10910. },
  10911. "notification-url": "https://packagist.org/downloads/",
  10912. "license": [
  10913. "BSD-3-Clause"
  10914. ],
  10915. "description": "SPL extensions, array utilities, error handlers, and more",
  10916. "keywords": [
  10917. "ZendFramework",
  10918. "stdlib",
  10919. "zf"
  10920. ],
  10921. "time": "2018-08-28T21:34:05+00:00"
  10922. }
  10923. ],
  10924. "packages-dev": [
  10925. {
  10926. "name": "behat/mink",
  10927. "version": "dev-master",
  10928. "source": {
  10929. "type": "git",
  10930. "url": "https://github.com/minkphp/Mink.git",
  10931. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  10932. },
  10933. "dist": {
  10934. "type": "zip",
  10935. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  10936. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  10937. "shasum": ""
  10938. },
  10939. "require": {
  10940. "php": ">=5.3.1",
  10941. "symfony/css-selector": "^2.7|^3.0|^4.0"
  10942. },
  10943. "require-dev": {
  10944. "symfony/phpunit-bridge": "^3.3|^4.0"
  10945. },
  10946. "suggest": {
  10947. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  10948. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  10949. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  10950. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  10951. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  10952. },
  10953. "type": "library",
  10954. "extra": {
  10955. "branch-alias": {
  10956. "dev-master": "1.7.x-dev"
  10957. }
  10958. },
  10959. "autoload": {
  10960. "psr-4": {
  10961. "Behat\\Mink\\": "src/"
  10962. }
  10963. },
  10964. "notification-url": "https://packagist.org/downloads/",
  10965. "license": [
  10966. "MIT"
  10967. ],
  10968. "authors": [
  10969. {
  10970. "name": "Konstantin Kudryashov",
  10971. "email": "ever.zet@gmail.com",
  10972. "homepage": "http://everzet.com"
  10973. }
  10974. ],
  10975. "description": "Browser controller/emulator abstraction for PHP",
  10976. "homepage": "http://mink.behat.org/",
  10977. "keywords": [
  10978. "browser",
  10979. "testing",
  10980. "web"
  10981. ],
  10982. "time": "2018-06-24T20:08:51+00:00"
  10983. },
  10984. {
  10985. "name": "behat/mink-browserkit-driver",
  10986. "version": "1.3.3",
  10987. "source": {
  10988. "type": "git",
  10989. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  10990. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  10991. },
  10992. "dist": {
  10993. "type": "zip",
  10994. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  10995. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  10996. "shasum": ""
  10997. },
  10998. "require": {
  10999. "behat/mink": "^1.7.1@dev",
  11000. "php": ">=5.3.6",
  11001. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  11002. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  11003. },
  11004. "require-dev": {
  11005. "mink/driver-testsuite": "dev-master",
  11006. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  11007. },
  11008. "type": "mink-driver",
  11009. "extra": {
  11010. "branch-alias": {
  11011. "dev-master": "1.3.x-dev"
  11012. }
  11013. },
  11014. "autoload": {
  11015. "psr-4": {
  11016. "Behat\\Mink\\Driver\\": "src/"
  11017. }
  11018. },
  11019. "notification-url": "https://packagist.org/downloads/",
  11020. "license": [
  11021. "MIT"
  11022. ],
  11023. "authors": [
  11024. {
  11025. "name": "Konstantin Kudryashov",
  11026. "email": "ever.zet@gmail.com",
  11027. "homepage": "http://everzet.com"
  11028. }
  11029. ],
  11030. "description": "Symfony2 BrowserKit driver for Mink framework",
  11031. "homepage": "http://mink.behat.org/",
  11032. "keywords": [
  11033. "Mink",
  11034. "Symfony2",
  11035. "browser",
  11036. "testing"
  11037. ],
  11038. "time": "2018-05-02T09:25:31+00:00"
  11039. },
  11040. {
  11041. "name": "behat/mink-goutte-driver",
  11042. "version": "v1.2.1",
  11043. "source": {
  11044. "type": "git",
  11045. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  11046. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  11047. },
  11048. "dist": {
  11049. "type": "zip",
  11050. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  11051. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  11052. "shasum": ""
  11053. },
  11054. "require": {
  11055. "behat/mink": "~1.6@dev",
  11056. "behat/mink-browserkit-driver": "~1.2@dev",
  11057. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  11058. "php": ">=5.3.1"
  11059. },
  11060. "require-dev": {
  11061. "symfony/phpunit-bridge": "~2.7|~3.0"
  11062. },
  11063. "type": "mink-driver",
  11064. "extra": {
  11065. "branch-alias": {
  11066. "dev-master": "1.2.x-dev"
  11067. }
  11068. },
  11069. "autoload": {
  11070. "psr-4": {
  11071. "Behat\\Mink\\Driver\\": "src/"
  11072. }
  11073. },
  11074. "notification-url": "https://packagist.org/downloads/",
  11075. "license": [
  11076. "MIT"
  11077. ],
  11078. "authors": [
  11079. {
  11080. "name": "Konstantin Kudryashov",
  11081. "email": "ever.zet@gmail.com",
  11082. "homepage": "http://everzet.com"
  11083. }
  11084. ],
  11085. "description": "Goutte driver for Mink framework",
  11086. "homepage": "http://mink.behat.org/",
  11087. "keywords": [
  11088. "browser",
  11089. "goutte",
  11090. "headless",
  11091. "testing"
  11092. ],
  11093. "time": "2016-03-05T09:04:22+00:00"
  11094. },
  11095. {
  11096. "name": "behat/mink-selenium2-driver",
  11097. "version": "dev-master",
  11098. "source": {
  11099. "type": "git",
  11100. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  11101. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  11102. },
  11103. "dist": {
  11104. "type": "zip",
  11105. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  11106. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  11107. "shasum": ""
  11108. },
  11109. "require": {
  11110. "behat/mink": "~1.7@dev",
  11111. "instaclick/php-webdriver": "~1.1",
  11112. "php": ">=5.3.1"
  11113. },
  11114. "require-dev": {
  11115. "mink/driver-testsuite": "dev-master"
  11116. },
  11117. "type": "mink-driver",
  11118. "extra": {
  11119. "branch-alias": {
  11120. "dev-master": "1.3.x-dev"
  11121. }
  11122. },
  11123. "autoload": {
  11124. "psr-4": {
  11125. "Behat\\Mink\\Driver\\": "src/"
  11126. }
  11127. },
  11128. "notification-url": "https://packagist.org/downloads/",
  11129. "license": [
  11130. "MIT"
  11131. ],
  11132. "authors": [
  11133. {
  11134. "name": "Konstantin Kudryashov",
  11135. "email": "ever.zet@gmail.com",
  11136. "homepage": "http://everzet.com"
  11137. },
  11138. {
  11139. "name": "Pete Otaqui",
  11140. "email": "pete@otaqui.com",
  11141. "homepage": "https://github.com/pete-otaqui"
  11142. }
  11143. ],
  11144. "description": "Selenium2 (WebDriver) driver for Mink framework",
  11145. "homepage": "http://mink.behat.org/",
  11146. "keywords": [
  11147. "ajax",
  11148. "browser",
  11149. "javascript",
  11150. "selenium",
  11151. "testing",
  11152. "webdriver"
  11153. ],
  11154. "time": "2018-10-10T12:39:06+00:00"
  11155. },
  11156. {
  11157. "name": "doctrine/instantiator",
  11158. "version": "1.0.5",
  11159. "source": {
  11160. "type": "git",
  11161. "url": "https://github.com/doctrine/instantiator.git",
  11162. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  11163. },
  11164. "dist": {
  11165. "type": "zip",
  11166. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  11167. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  11168. "shasum": ""
  11169. },
  11170. "require": {
  11171. "php": ">=5.3,<8.0-DEV"
  11172. },
  11173. "require-dev": {
  11174. "athletic/athletic": "~0.1.8",
  11175. "ext-pdo": "*",
  11176. "ext-phar": "*",
  11177. "phpunit/phpunit": "~4.0",
  11178. "squizlabs/php_codesniffer": "~2.0"
  11179. },
  11180. "type": "library",
  11181. "extra": {
  11182. "branch-alias": {
  11183. "dev-master": "1.0.x-dev"
  11184. }
  11185. },
  11186. "autoload": {
  11187. "psr-4": {
  11188. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  11189. }
  11190. },
  11191. "notification-url": "https://packagist.org/downloads/",
  11192. "license": [
  11193. "MIT"
  11194. ],
  11195. "authors": [
  11196. {
  11197. "name": "Marco Pivetta",
  11198. "email": "ocramius@gmail.com",
  11199. "homepage": "http://ocramius.github.com/"
  11200. }
  11201. ],
  11202. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  11203. "homepage": "https://github.com/doctrine/instantiator",
  11204. "keywords": [
  11205. "constructor",
  11206. "instantiate"
  11207. ],
  11208. "time": "2015-06-14T21:17:01+00:00"
  11209. },
  11210. {
  11211. "name": "drupal/coder",
  11212. "version": "8.3.1",
  11213. "source": {
  11214. "type": "git",
  11215. "url": "https://git.drupal.org/project/coder.git",
  11216. "reference": "29a25627e7148b3119c84f18e087fc3b8c85b959"
  11217. },
  11218. "require": {
  11219. "ext-mbstring": "*",
  11220. "php": ">=5.4.0",
  11221. "squizlabs/php_codesniffer": "^3.0.1",
  11222. "symfony/yaml": ">=2.0.0"
  11223. },
  11224. "require-dev": {
  11225. "phpunit/phpunit": ">=3.7 <6"
  11226. },
  11227. "type": "phpcodesniffer-standard",
  11228. "autoload": {
  11229. "psr-0": {
  11230. "Drupal\\": "coder_sniffer/Drupal/",
  11231. "DrupalPractice\\": "coder_sniffer/Drupal/"
  11232. }
  11233. },
  11234. "notification-url": "https://packagist.org/downloads/",
  11235. "license": [
  11236. "GPL-2.0+"
  11237. ],
  11238. "description": "Coder is a library to review Drupal code.",
  11239. "homepage": "https://www.drupal.org/project/coder",
  11240. "keywords": [
  11241. "code review",
  11242. "phpcs",
  11243. "standards"
  11244. ],
  11245. "time": "2018-09-21T14:22:49+00:00"
  11246. },
  11247. {
  11248. "name": "fabpot/goutte",
  11249. "version": "v3.2.3",
  11250. "source": {
  11251. "type": "git",
  11252. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  11253. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  11254. },
  11255. "dist": {
  11256. "type": "zip",
  11257. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  11258. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  11259. "shasum": ""
  11260. },
  11261. "require": {
  11262. "guzzlehttp/guzzle": "^6.0",
  11263. "php": ">=5.5.0",
  11264. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  11265. "symfony/css-selector": "~2.1|~3.0|~4.0",
  11266. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  11267. },
  11268. "require-dev": {
  11269. "symfony/phpunit-bridge": "^3.3 || ^4"
  11270. },
  11271. "type": "application",
  11272. "extra": {
  11273. "branch-alias": {
  11274. "dev-master": "3.2-dev"
  11275. }
  11276. },
  11277. "autoload": {
  11278. "psr-4": {
  11279. "Goutte\\": "Goutte"
  11280. },
  11281. "exclude-from-classmap": [
  11282. "Goutte/Tests"
  11283. ]
  11284. },
  11285. "notification-url": "https://packagist.org/downloads/",
  11286. "license": [
  11287. "MIT"
  11288. ],
  11289. "authors": [
  11290. {
  11291. "name": "Fabien Potencier",
  11292. "email": "fabien@symfony.com"
  11293. }
  11294. ],
  11295. "description": "A simple PHP Web Scraper",
  11296. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  11297. "keywords": [
  11298. "scraper"
  11299. ],
  11300. "time": "2018-06-29T15:13:57+00:00"
  11301. },
  11302. {
  11303. "name": "instaclick/php-webdriver",
  11304. "version": "1.4.5",
  11305. "source": {
  11306. "type": "git",
  11307. "url": "https://github.com/instaclick/php-webdriver.git",
  11308. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  11309. },
  11310. "dist": {
  11311. "type": "zip",
  11312. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  11313. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  11314. "shasum": ""
  11315. },
  11316. "require": {
  11317. "ext-curl": "*",
  11318. "php": ">=5.3.2"
  11319. },
  11320. "require-dev": {
  11321. "phpunit/phpunit": "^4.8",
  11322. "satooshi/php-coveralls": "^1.0||^2.0"
  11323. },
  11324. "type": "library",
  11325. "extra": {
  11326. "branch-alias": {
  11327. "dev-master": "1.4.x-dev"
  11328. }
  11329. },
  11330. "autoload": {
  11331. "psr-0": {
  11332. "WebDriver": "lib/"
  11333. }
  11334. },
  11335. "notification-url": "https://packagist.org/downloads/",
  11336. "license": [
  11337. "Apache-2.0"
  11338. ],
  11339. "authors": [
  11340. {
  11341. "name": "Justin Bishop",
  11342. "email": "jubishop@gmail.com",
  11343. "role": "Developer"
  11344. },
  11345. {
  11346. "name": "Anthon Pang",
  11347. "email": "apang@softwaredevelopment.ca",
  11348. "role": "Fork Maintainer"
  11349. }
  11350. ],
  11351. "description": "PHP WebDriver for Selenium 2",
  11352. "homepage": "http://instaclick.com/",
  11353. "keywords": [
  11354. "browser",
  11355. "selenium",
  11356. "webdriver",
  11357. "webtest"
  11358. ],
  11359. "time": "2017-06-30T04:02:48+00:00"
  11360. },
  11361. {
  11362. "name": "jcalderonzumba/gastonjs",
  11363. "version": "v1.2.0",
  11364. "source": {
  11365. "type": "git",
  11366. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  11367. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  11368. },
  11369. "dist": {
  11370. "type": "zip",
  11371. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  11372. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  11373. "shasum": ""
  11374. },
  11375. "require": {
  11376. "guzzlehttp/guzzle": "~5.0|~6.0",
  11377. "php": ">=5.4"
  11378. },
  11379. "require-dev": {
  11380. "phpunit/phpunit": "~4.6",
  11381. "silex/silex": "~1.2",
  11382. "symfony/phpunit-bridge": "~2.7",
  11383. "symfony/process": "~2.1"
  11384. },
  11385. "type": "phantomjs-api",
  11386. "extra": {
  11387. "branch-alias": {
  11388. "dev-master": "1.1.x-dev"
  11389. }
  11390. },
  11391. "autoload": {
  11392. "psr-4": {
  11393. "Zumba\\GastonJS\\": "src"
  11394. }
  11395. },
  11396. "notification-url": "https://packagist.org/downloads/",
  11397. "license": [
  11398. "MIT"
  11399. ],
  11400. "authors": [
  11401. {
  11402. "name": "Juan Francisco Calderón Zumba",
  11403. "email": "juanfcz@gmail.com",
  11404. "homepage": "http://github.com/jcalderonzumba"
  11405. }
  11406. ],
  11407. "description": "PhantomJS API based server for webpage automation",
  11408. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  11409. "keywords": [
  11410. "api",
  11411. "automation",
  11412. "browser",
  11413. "headless",
  11414. "phantomjs"
  11415. ],
  11416. "time": "2017-03-31T07:31:47+00:00"
  11417. },
  11418. {
  11419. "name": "jcalderonzumba/mink-phantomjs-driver",
  11420. "version": "v0.3.3",
  11421. "source": {
  11422. "type": "git",
  11423. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  11424. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  11425. },
  11426. "dist": {
  11427. "type": "zip",
  11428. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  11429. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  11430. "shasum": ""
  11431. },
  11432. "require": {
  11433. "behat/mink": "~1.7",
  11434. "jcalderonzumba/gastonjs": "~1.0",
  11435. "php": ">=5.4",
  11436. "twig/twig": "~1.20|~2.0"
  11437. },
  11438. "require-dev": {
  11439. "mink/driver-testsuite": "dev-master",
  11440. "phpunit/phpunit": "~4.6"
  11441. },
  11442. "type": "mink-driver",
  11443. "extra": {
  11444. "branch-alias": {
  11445. "dev-master": "0.4.x-dev"
  11446. }
  11447. },
  11448. "autoload": {
  11449. "psr-4": {
  11450. "Zumba\\Mink\\Driver\\": "src"
  11451. }
  11452. },
  11453. "notification-url": "https://packagist.org/downloads/",
  11454. "license": [
  11455. "MIT"
  11456. ],
  11457. "authors": [
  11458. {
  11459. "name": "Juan Francisco Calderón Zumba",
  11460. "email": "juanfcz@gmail.com",
  11461. "homepage": "http://github.com/jcalderonzumba"
  11462. }
  11463. ],
  11464. "description": "PhantomJS driver for Mink framework",
  11465. "homepage": "http://mink.behat.org/",
  11466. "keywords": [
  11467. "ajax",
  11468. "browser",
  11469. "headless",
  11470. "javascript",
  11471. "phantomjs",
  11472. "testing"
  11473. ],
  11474. "time": "2016-12-01T10:57:30+00:00"
  11475. },
  11476. {
  11477. "name": "mikey179/vfsStream",
  11478. "version": "v1.6.5",
  11479. "source": {
  11480. "type": "git",
  11481. "url": "https://github.com/mikey179/vfsStream.git",
  11482. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  11483. },
  11484. "dist": {
  11485. "type": "zip",
  11486. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  11487. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  11488. "shasum": ""
  11489. },
  11490. "require": {
  11491. "php": ">=5.3.0"
  11492. },
  11493. "require-dev": {
  11494. "phpunit/phpunit": "~4.5"
  11495. },
  11496. "type": "library",
  11497. "extra": {
  11498. "branch-alias": {
  11499. "dev-master": "1.6.x-dev"
  11500. }
  11501. },
  11502. "autoload": {
  11503. "psr-0": {
  11504. "org\\bovigo\\vfs\\": "src/main/php"
  11505. }
  11506. },
  11507. "notification-url": "https://packagist.org/downloads/",
  11508. "license": [
  11509. "BSD-3-Clause"
  11510. ],
  11511. "authors": [
  11512. {
  11513. "name": "Frank Kleine",
  11514. "homepage": "http://frankkleine.de/",
  11515. "role": "Developer"
  11516. }
  11517. ],
  11518. "description": "Virtual file system to mock the real file system in unit tests.",
  11519. "homepage": "http://vfs.bovigo.org/",
  11520. "time": "2017-08-01T08:02:14+00:00"
  11521. },
  11522. {
  11523. "name": "myclabs/deep-copy",
  11524. "version": "1.7.0",
  11525. "source": {
  11526. "type": "git",
  11527. "url": "https://github.com/myclabs/DeepCopy.git",
  11528. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  11529. },
  11530. "dist": {
  11531. "type": "zip",
  11532. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  11533. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  11534. "shasum": ""
  11535. },
  11536. "require": {
  11537. "php": "^5.6 || ^7.0"
  11538. },
  11539. "require-dev": {
  11540. "doctrine/collections": "^1.0",
  11541. "doctrine/common": "^2.6",
  11542. "phpunit/phpunit": "^4.1"
  11543. },
  11544. "type": "library",
  11545. "autoload": {
  11546. "psr-4": {
  11547. "DeepCopy\\": "src/DeepCopy/"
  11548. },
  11549. "files": [
  11550. "src/DeepCopy/deep_copy.php"
  11551. ]
  11552. },
  11553. "notification-url": "https://packagist.org/downloads/",
  11554. "license": [
  11555. "MIT"
  11556. ],
  11557. "description": "Create deep copies (clones) of your objects",
  11558. "keywords": [
  11559. "clone",
  11560. "copy",
  11561. "duplicate",
  11562. "object",
  11563. "object graph"
  11564. ],
  11565. "time": "2017-10-19T19:58:43+00:00"
  11566. },
  11567. {
  11568. "name": "phar-io/manifest",
  11569. "version": "1.0.1",
  11570. "source": {
  11571. "type": "git",
  11572. "url": "https://github.com/phar-io/manifest.git",
  11573. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  11574. },
  11575. "dist": {
  11576. "type": "zip",
  11577. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  11578. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  11579. "shasum": ""
  11580. },
  11581. "require": {
  11582. "ext-dom": "*",
  11583. "ext-phar": "*",
  11584. "phar-io/version": "^1.0.1",
  11585. "php": "^5.6 || ^7.0"
  11586. },
  11587. "type": "library",
  11588. "extra": {
  11589. "branch-alias": {
  11590. "dev-master": "1.0.x-dev"
  11591. }
  11592. },
  11593. "autoload": {
  11594. "classmap": [
  11595. "src/"
  11596. ]
  11597. },
  11598. "notification-url": "https://packagist.org/downloads/",
  11599. "license": [
  11600. "BSD-3-Clause"
  11601. ],
  11602. "authors": [
  11603. {
  11604. "name": "Arne Blankerts",
  11605. "email": "arne@blankerts.de",
  11606. "role": "Developer"
  11607. },
  11608. {
  11609. "name": "Sebastian Heuer",
  11610. "email": "sebastian@phpeople.de",
  11611. "role": "Developer"
  11612. },
  11613. {
  11614. "name": "Sebastian Bergmann",
  11615. "email": "sebastian@phpunit.de",
  11616. "role": "Developer"
  11617. }
  11618. ],
  11619. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11620. "time": "2017-03-05T18:14:27+00:00"
  11621. },
  11622. {
  11623. "name": "phar-io/version",
  11624. "version": "1.0.1",
  11625. "source": {
  11626. "type": "git",
  11627. "url": "https://github.com/phar-io/version.git",
  11628. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  11629. },
  11630. "dist": {
  11631. "type": "zip",
  11632. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  11633. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  11634. "shasum": ""
  11635. },
  11636. "require": {
  11637. "php": "^5.6 || ^7.0"
  11638. },
  11639. "type": "library",
  11640. "autoload": {
  11641. "classmap": [
  11642. "src/"
  11643. ]
  11644. },
  11645. "notification-url": "https://packagist.org/downloads/",
  11646. "license": [
  11647. "BSD-3-Clause"
  11648. ],
  11649. "authors": [
  11650. {
  11651. "name": "Arne Blankerts",
  11652. "email": "arne@blankerts.de",
  11653. "role": "Developer"
  11654. },
  11655. {
  11656. "name": "Sebastian Heuer",
  11657. "email": "sebastian@phpeople.de",
  11658. "role": "Developer"
  11659. },
  11660. {
  11661. "name": "Sebastian Bergmann",
  11662. "email": "sebastian@phpunit.de",
  11663. "role": "Developer"
  11664. }
  11665. ],
  11666. "description": "Library for handling version information and constraints",
  11667. "time": "2017-03-05T17:38:23+00:00"
  11668. },
  11669. {
  11670. "name": "phpdocumentor/reflection-common",
  11671. "version": "1.0.1",
  11672. "source": {
  11673. "type": "git",
  11674. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  11675. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  11676. },
  11677. "dist": {
  11678. "type": "zip",
  11679. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11680. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11681. "shasum": ""
  11682. },
  11683. "require": {
  11684. "php": ">=5.5"
  11685. },
  11686. "require-dev": {
  11687. "phpunit/phpunit": "^4.6"
  11688. },
  11689. "type": "library",
  11690. "extra": {
  11691. "branch-alias": {
  11692. "dev-master": "1.0.x-dev"
  11693. }
  11694. },
  11695. "autoload": {
  11696. "psr-4": {
  11697. "phpDocumentor\\Reflection\\": [
  11698. "src"
  11699. ]
  11700. }
  11701. },
  11702. "notification-url": "https://packagist.org/downloads/",
  11703. "license": [
  11704. "MIT"
  11705. ],
  11706. "authors": [
  11707. {
  11708. "name": "Jaap van Otterdijk",
  11709. "email": "opensource@ijaap.nl"
  11710. }
  11711. ],
  11712. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  11713. "homepage": "http://www.phpdoc.org",
  11714. "keywords": [
  11715. "FQSEN",
  11716. "phpDocumentor",
  11717. "phpdoc",
  11718. "reflection",
  11719. "static analysis"
  11720. ],
  11721. "time": "2017-09-11T18:02:19+00:00"
  11722. },
  11723. {
  11724. "name": "phpdocumentor/reflection-docblock",
  11725. "version": "4.3.0",
  11726. "source": {
  11727. "type": "git",
  11728. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  11729. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  11730. },
  11731. "dist": {
  11732. "type": "zip",
  11733. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  11734. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  11735. "shasum": ""
  11736. },
  11737. "require": {
  11738. "php": "^7.0",
  11739. "phpdocumentor/reflection-common": "^1.0.0",
  11740. "phpdocumentor/type-resolver": "^0.4.0",
  11741. "webmozart/assert": "^1.0"
  11742. },
  11743. "require-dev": {
  11744. "doctrine/instantiator": "~1.0.5",
  11745. "mockery/mockery": "^1.0",
  11746. "phpunit/phpunit": "^6.4"
  11747. },
  11748. "type": "library",
  11749. "extra": {
  11750. "branch-alias": {
  11751. "dev-master": "4.x-dev"
  11752. }
  11753. },
  11754. "autoload": {
  11755. "psr-4": {
  11756. "phpDocumentor\\Reflection\\": [
  11757. "src/"
  11758. ]
  11759. }
  11760. },
  11761. "notification-url": "https://packagist.org/downloads/",
  11762. "license": [
  11763. "MIT"
  11764. ],
  11765. "authors": [
  11766. {
  11767. "name": "Mike van Riel",
  11768. "email": "me@mikevanriel.com"
  11769. }
  11770. ],
  11771. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  11772. "time": "2017-11-30T07:14:17+00:00"
  11773. },
  11774. {
  11775. "name": "phpdocumentor/type-resolver",
  11776. "version": "0.4.0",
  11777. "source": {
  11778. "type": "git",
  11779. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  11780. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  11781. },
  11782. "dist": {
  11783. "type": "zip",
  11784. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  11785. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  11786. "shasum": ""
  11787. },
  11788. "require": {
  11789. "php": "^5.5 || ^7.0",
  11790. "phpdocumentor/reflection-common": "^1.0"
  11791. },
  11792. "require-dev": {
  11793. "mockery/mockery": "^0.9.4",
  11794. "phpunit/phpunit": "^5.2||^4.8.24"
  11795. },
  11796. "type": "library",
  11797. "extra": {
  11798. "branch-alias": {
  11799. "dev-master": "1.0.x-dev"
  11800. }
  11801. },
  11802. "autoload": {
  11803. "psr-4": {
  11804. "phpDocumentor\\Reflection\\": [
  11805. "src/"
  11806. ]
  11807. }
  11808. },
  11809. "notification-url": "https://packagist.org/downloads/",
  11810. "license": [
  11811. "MIT"
  11812. ],
  11813. "authors": [
  11814. {
  11815. "name": "Mike van Riel",
  11816. "email": "me@mikevanriel.com"
  11817. }
  11818. ],
  11819. "time": "2017-07-14T14:27:02+00:00"
  11820. },
  11821. {
  11822. "name": "phpspec/prophecy",
  11823. "version": "1.8.0",
  11824. "source": {
  11825. "type": "git",
  11826. "url": "https://github.com/phpspec/prophecy.git",
  11827. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  11828. },
  11829. "dist": {
  11830. "type": "zip",
  11831. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11832. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11833. "shasum": ""
  11834. },
  11835. "require": {
  11836. "doctrine/instantiator": "^1.0.2",
  11837. "php": "^5.3|^7.0",
  11838. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  11839. "sebastian/comparator": "^1.1|^2.0|^3.0",
  11840. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  11841. },
  11842. "require-dev": {
  11843. "phpspec/phpspec": "^2.5|^3.2",
  11844. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  11845. },
  11846. "type": "library",
  11847. "extra": {
  11848. "branch-alias": {
  11849. "dev-master": "1.8.x-dev"
  11850. }
  11851. },
  11852. "autoload": {
  11853. "psr-0": {
  11854. "Prophecy\\": "src/"
  11855. }
  11856. },
  11857. "notification-url": "https://packagist.org/downloads/",
  11858. "license": [
  11859. "MIT"
  11860. ],
  11861. "authors": [
  11862. {
  11863. "name": "Konstantin Kudryashov",
  11864. "email": "ever.zet@gmail.com",
  11865. "homepage": "http://everzet.com"
  11866. },
  11867. {
  11868. "name": "Marcello Duarte",
  11869. "email": "marcello.duarte@gmail.com"
  11870. }
  11871. ],
  11872. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11873. "homepage": "https://github.com/phpspec/prophecy",
  11874. "keywords": [
  11875. "Double",
  11876. "Dummy",
  11877. "fake",
  11878. "mock",
  11879. "spy",
  11880. "stub"
  11881. ],
  11882. "time": "2018-08-05T17:53:17+00:00"
  11883. },
  11884. {
  11885. "name": "phpunit/php-code-coverage",
  11886. "version": "5.3.2",
  11887. "source": {
  11888. "type": "git",
  11889. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11890. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  11891. },
  11892. "dist": {
  11893. "type": "zip",
  11894. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  11895. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  11896. "shasum": ""
  11897. },
  11898. "require": {
  11899. "ext-dom": "*",
  11900. "ext-xmlwriter": "*",
  11901. "php": "^7.0",
  11902. "phpunit/php-file-iterator": "^1.4.2",
  11903. "phpunit/php-text-template": "^1.2.1",
  11904. "phpunit/php-token-stream": "^2.0.1",
  11905. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  11906. "sebastian/environment": "^3.0",
  11907. "sebastian/version": "^2.0.1",
  11908. "theseer/tokenizer": "^1.1"
  11909. },
  11910. "require-dev": {
  11911. "phpunit/phpunit": "^6.0"
  11912. },
  11913. "suggest": {
  11914. "ext-xdebug": "^2.5.5"
  11915. },
  11916. "type": "library",
  11917. "extra": {
  11918. "branch-alias": {
  11919. "dev-master": "5.3.x-dev"
  11920. }
  11921. },
  11922. "autoload": {
  11923. "classmap": [
  11924. "src/"
  11925. ]
  11926. },
  11927. "notification-url": "https://packagist.org/downloads/",
  11928. "license": [
  11929. "BSD-3-Clause"
  11930. ],
  11931. "authors": [
  11932. {
  11933. "name": "Sebastian Bergmann",
  11934. "email": "sebastian@phpunit.de",
  11935. "role": "lead"
  11936. }
  11937. ],
  11938. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11939. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11940. "keywords": [
  11941. "coverage",
  11942. "testing",
  11943. "xunit"
  11944. ],
  11945. "time": "2018-04-06T15:36:58+00:00"
  11946. },
  11947. {
  11948. "name": "phpunit/php-file-iterator",
  11949. "version": "1.4.5",
  11950. "source": {
  11951. "type": "git",
  11952. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11953. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  11954. },
  11955. "dist": {
  11956. "type": "zip",
  11957. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  11958. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  11959. "shasum": ""
  11960. },
  11961. "require": {
  11962. "php": ">=5.3.3"
  11963. },
  11964. "type": "library",
  11965. "extra": {
  11966. "branch-alias": {
  11967. "dev-master": "1.4.x-dev"
  11968. }
  11969. },
  11970. "autoload": {
  11971. "classmap": [
  11972. "src/"
  11973. ]
  11974. },
  11975. "notification-url": "https://packagist.org/downloads/",
  11976. "license": [
  11977. "BSD-3-Clause"
  11978. ],
  11979. "authors": [
  11980. {
  11981. "name": "Sebastian Bergmann",
  11982. "email": "sb@sebastian-bergmann.de",
  11983. "role": "lead"
  11984. }
  11985. ],
  11986. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11987. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11988. "keywords": [
  11989. "filesystem",
  11990. "iterator"
  11991. ],
  11992. "time": "2017-11-27T13:52:08+00:00"
  11993. },
  11994. {
  11995. "name": "phpunit/php-text-template",
  11996. "version": "1.2.1",
  11997. "source": {
  11998. "type": "git",
  11999. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  12000. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  12001. },
  12002. "dist": {
  12003. "type": "zip",
  12004. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  12005. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  12006. "shasum": ""
  12007. },
  12008. "require": {
  12009. "php": ">=5.3.3"
  12010. },
  12011. "type": "library",
  12012. "autoload": {
  12013. "classmap": [
  12014. "src/"
  12015. ]
  12016. },
  12017. "notification-url": "https://packagist.org/downloads/",
  12018. "license": [
  12019. "BSD-3-Clause"
  12020. ],
  12021. "authors": [
  12022. {
  12023. "name": "Sebastian Bergmann",
  12024. "email": "sebastian@phpunit.de",
  12025. "role": "lead"
  12026. }
  12027. ],
  12028. "description": "Simple template engine.",
  12029. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  12030. "keywords": [
  12031. "template"
  12032. ],
  12033. "time": "2015-06-21T13:50:34+00:00"
  12034. },
  12035. {
  12036. "name": "phpunit/php-timer",
  12037. "version": "1.0.9",
  12038. "source": {
  12039. "type": "git",
  12040. "url": "https://github.com/sebastianbergmann/php-timer.git",
  12041. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  12042. },
  12043. "dist": {
  12044. "type": "zip",
  12045. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  12046. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  12047. "shasum": ""
  12048. },
  12049. "require": {
  12050. "php": "^5.3.3 || ^7.0"
  12051. },
  12052. "require-dev": {
  12053. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  12054. },
  12055. "type": "library",
  12056. "extra": {
  12057. "branch-alias": {
  12058. "dev-master": "1.0-dev"
  12059. }
  12060. },
  12061. "autoload": {
  12062. "classmap": [
  12063. "src/"
  12064. ]
  12065. },
  12066. "notification-url": "https://packagist.org/downloads/",
  12067. "license": [
  12068. "BSD-3-Clause"
  12069. ],
  12070. "authors": [
  12071. {
  12072. "name": "Sebastian Bergmann",
  12073. "email": "sb@sebastian-bergmann.de",
  12074. "role": "lead"
  12075. }
  12076. ],
  12077. "description": "Utility class for timing",
  12078. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  12079. "keywords": [
  12080. "timer"
  12081. ],
  12082. "time": "2017-02-26T11:10:40+00:00"
  12083. },
  12084. {
  12085. "name": "phpunit/php-token-stream",
  12086. "version": "2.0.2",
  12087. "source": {
  12088. "type": "git",
  12089. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  12090. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  12091. },
  12092. "dist": {
  12093. "type": "zip",
  12094. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  12095. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  12096. "shasum": ""
  12097. },
  12098. "require": {
  12099. "ext-tokenizer": "*",
  12100. "php": "^7.0"
  12101. },
  12102. "require-dev": {
  12103. "phpunit/phpunit": "^6.2.4"
  12104. },
  12105. "type": "library",
  12106. "extra": {
  12107. "branch-alias": {
  12108. "dev-master": "2.0-dev"
  12109. }
  12110. },
  12111. "autoload": {
  12112. "classmap": [
  12113. "src/"
  12114. ]
  12115. },
  12116. "notification-url": "https://packagist.org/downloads/",
  12117. "license": [
  12118. "BSD-3-Clause"
  12119. ],
  12120. "authors": [
  12121. {
  12122. "name": "Sebastian Bergmann",
  12123. "email": "sebastian@phpunit.de"
  12124. }
  12125. ],
  12126. "description": "Wrapper around PHP's tokenizer extension.",
  12127. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  12128. "keywords": [
  12129. "tokenizer"
  12130. ],
  12131. "time": "2017-11-27T05:48:46+00:00"
  12132. },
  12133. {
  12134. "name": "phpunit/phpunit",
  12135. "version": "6.5.14",
  12136. "source": {
  12137. "type": "git",
  12138. "url": "https://github.com/sebastianbergmann/phpunit.git",
  12139. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  12140. },
  12141. "dist": {
  12142. "type": "zip",
  12143. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  12144. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  12145. "shasum": ""
  12146. },
  12147. "require": {
  12148. "ext-dom": "*",
  12149. "ext-json": "*",
  12150. "ext-libxml": "*",
  12151. "ext-mbstring": "*",
  12152. "ext-xml": "*",
  12153. "myclabs/deep-copy": "^1.6.1",
  12154. "phar-io/manifest": "^1.0.1",
  12155. "phar-io/version": "^1.0",
  12156. "php": "^7.0",
  12157. "phpspec/prophecy": "^1.7",
  12158. "phpunit/php-code-coverage": "^5.3",
  12159. "phpunit/php-file-iterator": "^1.4.3",
  12160. "phpunit/php-text-template": "^1.2.1",
  12161. "phpunit/php-timer": "^1.0.9",
  12162. "phpunit/phpunit-mock-objects": "^5.0.9",
  12163. "sebastian/comparator": "^2.1",
  12164. "sebastian/diff": "^2.0",
  12165. "sebastian/environment": "^3.1",
  12166. "sebastian/exporter": "^3.1",
  12167. "sebastian/global-state": "^2.0",
  12168. "sebastian/object-enumerator": "^3.0.3",
  12169. "sebastian/resource-operations": "^1.0",
  12170. "sebastian/version": "^2.0.1"
  12171. },
  12172. "conflict": {
  12173. "phpdocumentor/reflection-docblock": "3.0.2",
  12174. "phpunit/dbunit": "<3.0"
  12175. },
  12176. "require-dev": {
  12177. "ext-pdo": "*"
  12178. },
  12179. "suggest": {
  12180. "ext-xdebug": "*",
  12181. "phpunit/php-invoker": "^1.1"
  12182. },
  12183. "bin": [
  12184. "phpunit"
  12185. ],
  12186. "type": "library",
  12187. "extra": {
  12188. "branch-alias": {
  12189. "dev-master": "6.5.x-dev"
  12190. }
  12191. },
  12192. "autoload": {
  12193. "classmap": [
  12194. "src/"
  12195. ]
  12196. },
  12197. "notification-url": "https://packagist.org/downloads/",
  12198. "license": [
  12199. "BSD-3-Clause"
  12200. ],
  12201. "authors": [
  12202. {
  12203. "name": "Sebastian Bergmann",
  12204. "email": "sebastian@phpunit.de",
  12205. "role": "lead"
  12206. }
  12207. ],
  12208. "description": "The PHP Unit Testing framework.",
  12209. "homepage": "https://phpunit.de/",
  12210. "keywords": [
  12211. "phpunit",
  12212. "testing",
  12213. "xunit"
  12214. ],
  12215. "time": "2019-02-01T05:22:47+00:00"
  12216. },
  12217. {
  12218. "name": "phpunit/phpunit-mock-objects",
  12219. "version": "5.0.10",
  12220. "source": {
  12221. "type": "git",
  12222. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  12223. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  12224. },
  12225. "dist": {
  12226. "type": "zip",
  12227. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  12228. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  12229. "shasum": ""
  12230. },
  12231. "require": {
  12232. "doctrine/instantiator": "^1.0.5",
  12233. "php": "^7.0",
  12234. "phpunit/php-text-template": "^1.2.1",
  12235. "sebastian/exporter": "^3.1"
  12236. },
  12237. "conflict": {
  12238. "phpunit/phpunit": "<6.0"
  12239. },
  12240. "require-dev": {
  12241. "phpunit/phpunit": "^6.5.11"
  12242. },
  12243. "suggest": {
  12244. "ext-soap": "*"
  12245. },
  12246. "type": "library",
  12247. "extra": {
  12248. "branch-alias": {
  12249. "dev-master": "5.0.x-dev"
  12250. }
  12251. },
  12252. "autoload": {
  12253. "classmap": [
  12254. "src/"
  12255. ]
  12256. },
  12257. "notification-url": "https://packagist.org/downloads/",
  12258. "license": [
  12259. "BSD-3-Clause"
  12260. ],
  12261. "authors": [
  12262. {
  12263. "name": "Sebastian Bergmann",
  12264. "email": "sebastian@phpunit.de",
  12265. "role": "lead"
  12266. }
  12267. ],
  12268. "description": "Mock Object library for PHPUnit",
  12269. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  12270. "keywords": [
  12271. "mock",
  12272. "xunit"
  12273. ],
  12274. "time": "2018-08-09T05:50:03+00:00"
  12275. },
  12276. {
  12277. "name": "sebastian/code-unit-reverse-lookup",
  12278. "version": "1.0.1",
  12279. "source": {
  12280. "type": "git",
  12281. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  12282. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  12283. },
  12284. "dist": {
  12285. "type": "zip",
  12286. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  12287. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  12288. "shasum": ""
  12289. },
  12290. "require": {
  12291. "php": "^5.6 || ^7.0"
  12292. },
  12293. "require-dev": {
  12294. "phpunit/phpunit": "^5.7 || ^6.0"
  12295. },
  12296. "type": "library",
  12297. "extra": {
  12298. "branch-alias": {
  12299. "dev-master": "1.0.x-dev"
  12300. }
  12301. },
  12302. "autoload": {
  12303. "classmap": [
  12304. "src/"
  12305. ]
  12306. },
  12307. "notification-url": "https://packagist.org/downloads/",
  12308. "license": [
  12309. "BSD-3-Clause"
  12310. ],
  12311. "authors": [
  12312. {
  12313. "name": "Sebastian Bergmann",
  12314. "email": "sebastian@phpunit.de"
  12315. }
  12316. ],
  12317. "description": "Looks up which function or method a line of code belongs to",
  12318. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  12319. "time": "2017-03-04T06:30:41+00:00"
  12320. },
  12321. {
  12322. "name": "sebastian/comparator",
  12323. "version": "2.1.3",
  12324. "source": {
  12325. "type": "git",
  12326. "url": "https://github.com/sebastianbergmann/comparator.git",
  12327. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  12328. },
  12329. "dist": {
  12330. "type": "zip",
  12331. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  12332. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  12333. "shasum": ""
  12334. },
  12335. "require": {
  12336. "php": "^7.0",
  12337. "sebastian/diff": "^2.0 || ^3.0",
  12338. "sebastian/exporter": "^3.1"
  12339. },
  12340. "require-dev": {
  12341. "phpunit/phpunit": "^6.4"
  12342. },
  12343. "type": "library",
  12344. "extra": {
  12345. "branch-alias": {
  12346. "dev-master": "2.1.x-dev"
  12347. }
  12348. },
  12349. "autoload": {
  12350. "classmap": [
  12351. "src/"
  12352. ]
  12353. },
  12354. "notification-url": "https://packagist.org/downloads/",
  12355. "license": [
  12356. "BSD-3-Clause"
  12357. ],
  12358. "authors": [
  12359. {
  12360. "name": "Jeff Welch",
  12361. "email": "whatthejeff@gmail.com"
  12362. },
  12363. {
  12364. "name": "Volker Dusch",
  12365. "email": "github@wallbash.com"
  12366. },
  12367. {
  12368. "name": "Bernhard Schussek",
  12369. "email": "bschussek@2bepublished.at"
  12370. },
  12371. {
  12372. "name": "Sebastian Bergmann",
  12373. "email": "sebastian@phpunit.de"
  12374. }
  12375. ],
  12376. "description": "Provides the functionality to compare PHP values for equality",
  12377. "homepage": "https://github.com/sebastianbergmann/comparator",
  12378. "keywords": [
  12379. "comparator",
  12380. "compare",
  12381. "equality"
  12382. ],
  12383. "time": "2018-02-01T13:46:46+00:00"
  12384. },
  12385. {
  12386. "name": "sebastian/diff",
  12387. "version": "2.0.1",
  12388. "source": {
  12389. "type": "git",
  12390. "url": "https://github.com/sebastianbergmann/diff.git",
  12391. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  12392. },
  12393. "dist": {
  12394. "type": "zip",
  12395. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  12396. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  12397. "shasum": ""
  12398. },
  12399. "require": {
  12400. "php": "^7.0"
  12401. },
  12402. "require-dev": {
  12403. "phpunit/phpunit": "^6.2"
  12404. },
  12405. "type": "library",
  12406. "extra": {
  12407. "branch-alias": {
  12408. "dev-master": "2.0-dev"
  12409. }
  12410. },
  12411. "autoload": {
  12412. "classmap": [
  12413. "src/"
  12414. ]
  12415. },
  12416. "notification-url": "https://packagist.org/downloads/",
  12417. "license": [
  12418. "BSD-3-Clause"
  12419. ],
  12420. "authors": [
  12421. {
  12422. "name": "Kore Nordmann",
  12423. "email": "mail@kore-nordmann.de"
  12424. },
  12425. {
  12426. "name": "Sebastian Bergmann",
  12427. "email": "sebastian@phpunit.de"
  12428. }
  12429. ],
  12430. "description": "Diff implementation",
  12431. "homepage": "https://github.com/sebastianbergmann/diff",
  12432. "keywords": [
  12433. "diff"
  12434. ],
  12435. "time": "2017-08-03T08:09:46+00:00"
  12436. },
  12437. {
  12438. "name": "sebastian/environment",
  12439. "version": "3.1.0",
  12440. "source": {
  12441. "type": "git",
  12442. "url": "https://github.com/sebastianbergmann/environment.git",
  12443. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  12444. },
  12445. "dist": {
  12446. "type": "zip",
  12447. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  12448. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  12449. "shasum": ""
  12450. },
  12451. "require": {
  12452. "php": "^7.0"
  12453. },
  12454. "require-dev": {
  12455. "phpunit/phpunit": "^6.1"
  12456. },
  12457. "type": "library",
  12458. "extra": {
  12459. "branch-alias": {
  12460. "dev-master": "3.1.x-dev"
  12461. }
  12462. },
  12463. "autoload": {
  12464. "classmap": [
  12465. "src/"
  12466. ]
  12467. },
  12468. "notification-url": "https://packagist.org/downloads/",
  12469. "license": [
  12470. "BSD-3-Clause"
  12471. ],
  12472. "authors": [
  12473. {
  12474. "name": "Sebastian Bergmann",
  12475. "email": "sebastian@phpunit.de"
  12476. }
  12477. ],
  12478. "description": "Provides functionality to handle HHVM/PHP environments",
  12479. "homepage": "http://www.github.com/sebastianbergmann/environment",
  12480. "keywords": [
  12481. "Xdebug",
  12482. "environment",
  12483. "hhvm"
  12484. ],
  12485. "time": "2017-07-01T08:51:00+00:00"
  12486. },
  12487. {
  12488. "name": "sebastian/exporter",
  12489. "version": "3.1.0",
  12490. "source": {
  12491. "type": "git",
  12492. "url": "https://github.com/sebastianbergmann/exporter.git",
  12493. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  12494. },
  12495. "dist": {
  12496. "type": "zip",
  12497. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  12498. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  12499. "shasum": ""
  12500. },
  12501. "require": {
  12502. "php": "^7.0",
  12503. "sebastian/recursion-context": "^3.0"
  12504. },
  12505. "require-dev": {
  12506. "ext-mbstring": "*",
  12507. "phpunit/phpunit": "^6.0"
  12508. },
  12509. "type": "library",
  12510. "extra": {
  12511. "branch-alias": {
  12512. "dev-master": "3.1.x-dev"
  12513. }
  12514. },
  12515. "autoload": {
  12516. "classmap": [
  12517. "src/"
  12518. ]
  12519. },
  12520. "notification-url": "https://packagist.org/downloads/",
  12521. "license": [
  12522. "BSD-3-Clause"
  12523. ],
  12524. "authors": [
  12525. {
  12526. "name": "Jeff Welch",
  12527. "email": "whatthejeff@gmail.com"
  12528. },
  12529. {
  12530. "name": "Volker Dusch",
  12531. "email": "github@wallbash.com"
  12532. },
  12533. {
  12534. "name": "Bernhard Schussek",
  12535. "email": "bschussek@2bepublished.at"
  12536. },
  12537. {
  12538. "name": "Sebastian Bergmann",
  12539. "email": "sebastian@phpunit.de"
  12540. },
  12541. {
  12542. "name": "Adam Harvey",
  12543. "email": "aharvey@php.net"
  12544. }
  12545. ],
  12546. "description": "Provides the functionality to export PHP variables for visualization",
  12547. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  12548. "keywords": [
  12549. "export",
  12550. "exporter"
  12551. ],
  12552. "time": "2017-04-03T13:19:02+00:00"
  12553. },
  12554. {
  12555. "name": "sebastian/global-state",
  12556. "version": "2.0.0",
  12557. "source": {
  12558. "type": "git",
  12559. "url": "https://github.com/sebastianbergmann/global-state.git",
  12560. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  12561. },
  12562. "dist": {
  12563. "type": "zip",
  12564. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  12565. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  12566. "shasum": ""
  12567. },
  12568. "require": {
  12569. "php": "^7.0"
  12570. },
  12571. "require-dev": {
  12572. "phpunit/phpunit": "^6.0"
  12573. },
  12574. "suggest": {
  12575. "ext-uopz": "*"
  12576. },
  12577. "type": "library",
  12578. "extra": {
  12579. "branch-alias": {
  12580. "dev-master": "2.0-dev"
  12581. }
  12582. },
  12583. "autoload": {
  12584. "classmap": [
  12585. "src/"
  12586. ]
  12587. },
  12588. "notification-url": "https://packagist.org/downloads/",
  12589. "license": [
  12590. "BSD-3-Clause"
  12591. ],
  12592. "authors": [
  12593. {
  12594. "name": "Sebastian Bergmann",
  12595. "email": "sebastian@phpunit.de"
  12596. }
  12597. ],
  12598. "description": "Snapshotting of global state",
  12599. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12600. "keywords": [
  12601. "global state"
  12602. ],
  12603. "time": "2017-04-27T15:39:26+00:00"
  12604. },
  12605. {
  12606. "name": "sebastian/object-enumerator",
  12607. "version": "3.0.3",
  12608. "source": {
  12609. "type": "git",
  12610. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12611. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  12612. },
  12613. "dist": {
  12614. "type": "zip",
  12615. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  12616. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  12617. "shasum": ""
  12618. },
  12619. "require": {
  12620. "php": "^7.0",
  12621. "sebastian/object-reflector": "^1.1.1",
  12622. "sebastian/recursion-context": "^3.0"
  12623. },
  12624. "require-dev": {
  12625. "phpunit/phpunit": "^6.0"
  12626. },
  12627. "type": "library",
  12628. "extra": {
  12629. "branch-alias": {
  12630. "dev-master": "3.0.x-dev"
  12631. }
  12632. },
  12633. "autoload": {
  12634. "classmap": [
  12635. "src/"
  12636. ]
  12637. },
  12638. "notification-url": "https://packagist.org/downloads/",
  12639. "license": [
  12640. "BSD-3-Clause"
  12641. ],
  12642. "authors": [
  12643. {
  12644. "name": "Sebastian Bergmann",
  12645. "email": "sebastian@phpunit.de"
  12646. }
  12647. ],
  12648. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12649. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12650. "time": "2017-08-03T12:35:26+00:00"
  12651. },
  12652. {
  12653. "name": "sebastian/object-reflector",
  12654. "version": "1.1.1",
  12655. "source": {
  12656. "type": "git",
  12657. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12658. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  12659. },
  12660. "dist": {
  12661. "type": "zip",
  12662. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  12663. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  12664. "shasum": ""
  12665. },
  12666. "require": {
  12667. "php": "^7.0"
  12668. },
  12669. "require-dev": {
  12670. "phpunit/phpunit": "^6.0"
  12671. },
  12672. "type": "library",
  12673. "extra": {
  12674. "branch-alias": {
  12675. "dev-master": "1.1-dev"
  12676. }
  12677. },
  12678. "autoload": {
  12679. "classmap": [
  12680. "src/"
  12681. ]
  12682. },
  12683. "notification-url": "https://packagist.org/downloads/",
  12684. "license": [
  12685. "BSD-3-Clause"
  12686. ],
  12687. "authors": [
  12688. {
  12689. "name": "Sebastian Bergmann",
  12690. "email": "sebastian@phpunit.de"
  12691. }
  12692. ],
  12693. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12694. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12695. "time": "2017-03-29T09:07:27+00:00"
  12696. },
  12697. {
  12698. "name": "sebastian/recursion-context",
  12699. "version": "3.0.0",
  12700. "source": {
  12701. "type": "git",
  12702. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12703. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  12704. },
  12705. "dist": {
  12706. "type": "zip",
  12707. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12708. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12709. "shasum": ""
  12710. },
  12711. "require": {
  12712. "php": "^7.0"
  12713. },
  12714. "require-dev": {
  12715. "phpunit/phpunit": "^6.0"
  12716. },
  12717. "type": "library",
  12718. "extra": {
  12719. "branch-alias": {
  12720. "dev-master": "3.0.x-dev"
  12721. }
  12722. },
  12723. "autoload": {
  12724. "classmap": [
  12725. "src/"
  12726. ]
  12727. },
  12728. "notification-url": "https://packagist.org/downloads/",
  12729. "license": [
  12730. "BSD-3-Clause"
  12731. ],
  12732. "authors": [
  12733. {
  12734. "name": "Jeff Welch",
  12735. "email": "whatthejeff@gmail.com"
  12736. },
  12737. {
  12738. "name": "Sebastian Bergmann",
  12739. "email": "sebastian@phpunit.de"
  12740. },
  12741. {
  12742. "name": "Adam Harvey",
  12743. "email": "aharvey@php.net"
  12744. }
  12745. ],
  12746. "description": "Provides functionality to recursively process PHP variables",
  12747. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12748. "time": "2017-03-03T06:23:57+00:00"
  12749. },
  12750. {
  12751. "name": "sebastian/resource-operations",
  12752. "version": "1.0.0",
  12753. "source": {
  12754. "type": "git",
  12755. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12756. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  12757. },
  12758. "dist": {
  12759. "type": "zip",
  12760. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12761. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12762. "shasum": ""
  12763. },
  12764. "require": {
  12765. "php": ">=5.6.0"
  12766. },
  12767. "type": "library",
  12768. "extra": {
  12769. "branch-alias": {
  12770. "dev-master": "1.0.x-dev"
  12771. }
  12772. },
  12773. "autoload": {
  12774. "classmap": [
  12775. "src/"
  12776. ]
  12777. },
  12778. "notification-url": "https://packagist.org/downloads/",
  12779. "license": [
  12780. "BSD-3-Clause"
  12781. ],
  12782. "authors": [
  12783. {
  12784. "name": "Sebastian Bergmann",
  12785. "email": "sebastian@phpunit.de"
  12786. }
  12787. ],
  12788. "description": "Provides a list of PHP built-in functions that operate on resources",
  12789. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12790. "time": "2015-07-28T20:34:47+00:00"
  12791. },
  12792. {
  12793. "name": "sebastian/version",
  12794. "version": "2.0.1",
  12795. "source": {
  12796. "type": "git",
  12797. "url": "https://github.com/sebastianbergmann/version.git",
  12798. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  12799. },
  12800. "dist": {
  12801. "type": "zip",
  12802. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  12803. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  12804. "shasum": ""
  12805. },
  12806. "require": {
  12807. "php": ">=5.6"
  12808. },
  12809. "type": "library",
  12810. "extra": {
  12811. "branch-alias": {
  12812. "dev-master": "2.0.x-dev"
  12813. }
  12814. },
  12815. "autoload": {
  12816. "classmap": [
  12817. "src/"
  12818. ]
  12819. },
  12820. "notification-url": "https://packagist.org/downloads/",
  12821. "license": [
  12822. "BSD-3-Clause"
  12823. ],
  12824. "authors": [
  12825. {
  12826. "name": "Sebastian Bergmann",
  12827. "email": "sebastian@phpunit.de",
  12828. "role": "lead"
  12829. }
  12830. ],
  12831. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12832. "homepage": "https://github.com/sebastianbergmann/version",
  12833. "time": "2016-10-03T07:35:21+00:00"
  12834. },
  12835. {
  12836. "name": "squizlabs/php_codesniffer",
  12837. "version": "3.4.0",
  12838. "source": {
  12839. "type": "git",
  12840. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  12841. "reference": "379deb987e26c7cd103a7b387aea178baec96e48"
  12842. },
  12843. "dist": {
  12844. "type": "zip",
  12845. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/379deb987e26c7cd103a7b387aea178baec96e48",
  12846. "reference": "379deb987e26c7cd103a7b387aea178baec96e48",
  12847. "shasum": ""
  12848. },
  12849. "require": {
  12850. "ext-simplexml": "*",
  12851. "ext-tokenizer": "*",
  12852. "ext-xmlwriter": "*",
  12853. "php": ">=5.4.0"
  12854. },
  12855. "require-dev": {
  12856. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  12857. },
  12858. "bin": [
  12859. "bin/phpcs",
  12860. "bin/phpcbf"
  12861. ],
  12862. "type": "library",
  12863. "extra": {
  12864. "branch-alias": {
  12865. "dev-master": "3.x-dev"
  12866. }
  12867. },
  12868. "notification-url": "https://packagist.org/downloads/",
  12869. "license": [
  12870. "BSD-3-Clause"
  12871. ],
  12872. "authors": [
  12873. {
  12874. "name": "Greg Sherwood",
  12875. "role": "lead"
  12876. }
  12877. ],
  12878. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  12879. "homepage": "http://www.squizlabs.com/php-codesniffer",
  12880. "keywords": [
  12881. "phpcs",
  12882. "standards"
  12883. ],
  12884. "time": "2018-12-19T23:57:18+00:00"
  12885. },
  12886. {
  12887. "name": "symfony/browser-kit",
  12888. "version": "v3.4.22",
  12889. "source": {
  12890. "type": "git",
  12891. "url": "https://github.com/symfony/browser-kit.git",
  12892. "reference": "884689e5d29fc3c48498a0038e96d60e4f91b471"
  12893. },
  12894. "dist": {
  12895. "type": "zip",
  12896. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/884689e5d29fc3c48498a0038e96d60e4f91b471",
  12897. "reference": "884689e5d29fc3c48498a0038e96d60e4f91b471",
  12898. "shasum": ""
  12899. },
  12900. "require": {
  12901. "php": "^5.5.9|>=7.0.8",
  12902. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  12903. },
  12904. "require-dev": {
  12905. "symfony/css-selector": "~2.8|~3.0|~4.0",
  12906. "symfony/process": "~2.8|~3.0|~4.0"
  12907. },
  12908. "suggest": {
  12909. "symfony/process": ""
  12910. },
  12911. "type": "library",
  12912. "extra": {
  12913. "branch-alias": {
  12914. "dev-master": "3.4-dev"
  12915. }
  12916. },
  12917. "autoload": {
  12918. "psr-4": {
  12919. "Symfony\\Component\\BrowserKit\\": ""
  12920. },
  12921. "exclude-from-classmap": [
  12922. "/Tests/"
  12923. ]
  12924. },
  12925. "notification-url": "https://packagist.org/downloads/",
  12926. "license": [
  12927. "MIT"
  12928. ],
  12929. "authors": [
  12930. {
  12931. "name": "Fabien Potencier",
  12932. "email": "fabien@symfony.com"
  12933. },
  12934. {
  12935. "name": "Symfony Community",
  12936. "homepage": "https://symfony.com/contributors"
  12937. }
  12938. ],
  12939. "description": "Symfony BrowserKit Component",
  12940. "homepage": "https://symfony.com",
  12941. "time": "2019-01-16T09:39:14+00:00"
  12942. },
  12943. {
  12944. "name": "symfony/phpunit-bridge",
  12945. "version": "v3.4.22",
  12946. "source": {
  12947. "type": "git",
  12948. "url": "https://github.com/symfony/phpunit-bridge.git",
  12949. "reference": "6a2148bfc6ca0016846a32bdc55a317274283709"
  12950. },
  12951. "dist": {
  12952. "type": "zip",
  12953. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/6a2148bfc6ca0016846a32bdc55a317274283709",
  12954. "reference": "6a2148bfc6ca0016846a32bdc55a317274283709",
  12955. "shasum": ""
  12956. },
  12957. "require": {
  12958. "php": ">=5.3.3"
  12959. },
  12960. "conflict": {
  12961. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  12962. },
  12963. "suggest": {
  12964. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  12965. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  12966. },
  12967. "bin": [
  12968. "bin/simple-phpunit"
  12969. ],
  12970. "type": "symfony-bridge",
  12971. "extra": {
  12972. "branch-alias": {
  12973. "dev-master": "3.4-dev"
  12974. },
  12975. "thanks": {
  12976. "name": "phpunit/phpunit",
  12977. "url": "https://github.com/sebastianbergmann/phpunit"
  12978. }
  12979. },
  12980. "autoload": {
  12981. "files": [
  12982. "bootstrap.php"
  12983. ],
  12984. "psr-4": {
  12985. "Symfony\\Bridge\\PhpUnit\\": ""
  12986. },
  12987. "exclude-from-classmap": [
  12988. "/Tests/"
  12989. ]
  12990. },
  12991. "notification-url": "https://packagist.org/downloads/",
  12992. "license": [
  12993. "MIT"
  12994. ],
  12995. "authors": [
  12996. {
  12997. "name": "Nicolas Grekas",
  12998. "email": "p@tchwork.com"
  12999. },
  13000. {
  13001. "name": "Symfony Community",
  13002. "homepage": "https://symfony.com/contributors"
  13003. }
  13004. ],
  13005. "description": "Symfony PHPUnit Bridge",
  13006. "homepage": "https://symfony.com",
  13007. "time": "2019-01-30T13:30:37+00:00"
  13008. },
  13009. {
  13010. "name": "theseer/tokenizer",
  13011. "version": "1.1.0",
  13012. "source": {
  13013. "type": "git",
  13014. "url": "https://github.com/theseer/tokenizer.git",
  13015. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  13016. },
  13017. "dist": {
  13018. "type": "zip",
  13019. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  13020. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  13021. "shasum": ""
  13022. },
  13023. "require": {
  13024. "ext-dom": "*",
  13025. "ext-tokenizer": "*",
  13026. "ext-xmlwriter": "*",
  13027. "php": "^7.0"
  13028. },
  13029. "type": "library",
  13030. "autoload": {
  13031. "classmap": [
  13032. "src/"
  13033. ]
  13034. },
  13035. "notification-url": "https://packagist.org/downloads/",
  13036. "license": [
  13037. "BSD-3-Clause"
  13038. ],
  13039. "authors": [
  13040. {
  13041. "name": "Arne Blankerts",
  13042. "email": "arne@blankerts.de",
  13043. "role": "Developer"
  13044. }
  13045. ],
  13046. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13047. "time": "2017-04-07T12:08:54+00:00"
  13048. },
  13049. {
  13050. "name": "webflo/drupal-core-require-dev",
  13051. "version": "8.6.8",
  13052. "source": {
  13053. "type": "git",
  13054. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  13055. "reference": "d1398ae231a0592eb8d5c6a50ae63396e677745e"
  13056. },
  13057. "dist": {
  13058. "type": "zip",
  13059. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/d1398ae231a0592eb8d5c6a50ae63396e677745e",
  13060. "reference": "d1398ae231a0592eb8d5c6a50ae63396e677745e",
  13061. "shasum": ""
  13062. },
  13063. "require": {
  13064. "behat/mink": "1.7.x-dev",
  13065. "behat/mink-goutte-driver": "^1.2",
  13066. "behat/mink-selenium2-driver": "1.3.x-dev",
  13067. "drupal/coder": "^8.2.12",
  13068. "drupal/core": "8.6.8",
  13069. "jcalderonzumba/gastonjs": "^1.0.2",
  13070. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  13071. "mikey179/vfsstream": "^1.2",
  13072. "phpspec/prophecy": "^1.7",
  13073. "phpunit/phpunit": "^4.8.35 || ^6.5",
  13074. "symfony/css-selector": "^3.4.0",
  13075. "symfony/debug": "^3.4.0",
  13076. "symfony/phpunit-bridge": "^3.4.3"
  13077. },
  13078. "type": "metapackage",
  13079. "notification-url": "https://packagist.org/downloads/",
  13080. "license": [
  13081. "GPL-2.0-or-later"
  13082. ],
  13083. "description": "require-dev dependencies from drupal/core",
  13084. "time": "2019-02-06T15:31:35+00:00"
  13085. }
  13086. ],
  13087. "aliases": [],
  13088. "minimum-stability": "dev",
  13089. "stability-flags": {
  13090. "drupal/computed_field": 10,
  13091. "drupal/migrate_plus": 20,
  13092. "drupal/migrate_tools": 20,
  13093. "drupal/select_translation": 20,
  13094. "drupal/telephone_formatter": 10,
  13095. "drupal/views_conditional": 20,
  13096. "drupal/advanced_text_formatter": 10,
  13097. "drupal/autocomplete_deluxe": 10,
  13098. "drupal/better_exposed_filters": 15,
  13099. "drupal/better_messages": 15,
  13100. "drupal/bulkdelete": 20,
  13101. "drupal/cshs": 20,
  13102. "drupal/content_lock": 15,
  13103. "drupal/context": 10,
  13104. "drupal/domain": 20,
  13105. "drupal/domain_alias": 20,
  13106. "drupal/domain_config": 20,
  13107. "drupal/email_registration": 5,
  13108. "drupal/entity_browser_enhanced": 5,
  13109. "drupal/entity_clone": 15,
  13110. "drupal/filefield_sources": 20,
  13111. "drupal/filter_perms": 20,
  13112. "drupal/inline_entity_form": 5,
  13113. "drupal/login_destination": 20,
  13114. "drupal/maillog": 20,
  13115. "drupal/maxlength": 10,
  13116. "drupal/menu_position": 20,
  13117. "drupal/path_alias_xt": 20,
  13118. "drupal/pathologic": 15,
  13119. "drupal/profile": 5,
  13120. "drupal/smtp": 10,
  13121. "drupal/synonyms": 15,
  13122. "drupal/translation_views": 15,
  13123. "drupal/toolbar_themes": 15,
  13124. "drupal/ultimate_cron": 15,
  13125. "drupal/workflow": 20
  13126. },
  13127. "prefer-stable": true,
  13128. "prefer-lowest": false,
  13129. "platform": {
  13130. "php": ">=5.6"
  13131. },
  13132. "platform-dev": []
  13133. }