composer.lock 400 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150
  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": "564e4c26d1c8cf256325a6ebf2d38319",
  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": "brumann/polyfill-unserialize",
  127. "version": "v1.0.3",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/dbrumann/polyfill-unserialize.git",
  131. "reference": "844d7e44b62a1a3d5c68cfb7ebbd59c17ea0fd7b"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/844d7e44b62a1a3d5c68cfb7ebbd59c17ea0fd7b",
  136. "reference": "844d7e44b62a1a3d5c68cfb7ebbd59c17ea0fd7b",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": "^5.3|^7.0"
  141. },
  142. "type": "library",
  143. "autoload": {
  144. "psr-4": {
  145. "Brumann\\Polyfill\\": "src/"
  146. }
  147. },
  148. "notification-url": "https://packagist.org/downloads/",
  149. "license": [
  150. "MIT"
  151. ],
  152. "authors": [
  153. {
  154. "name": "Denis Brumann",
  155. "email": "denis.brumann@sensiolabs.de"
  156. }
  157. ],
  158. "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.",
  159. "time": "2017-02-03T09:55:47+00:00"
  160. },
  161. {
  162. "name": "chi-teck/drupal-code-generator",
  163. "version": "1.29.1",
  164. "source": {
  165. "type": "git",
  166. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  167. "reference": "f1da0370113ee246cd8f6d744d4835e8d53ea61c"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/f1da0370113ee246cd8f6d744d4835e8d53ea61c",
  172. "reference": "f1da0370113ee246cd8f6d744d4835e8d53ea61c",
  173. "shasum": ""
  174. },
  175. "require": {
  176. "ext-json": "*",
  177. "php": ">=5.5.9",
  178. "symfony/console": "^3.4 || ^4.0",
  179. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  180. "twig/twig": "^1.35"
  181. },
  182. "bin": [
  183. "bin/dcg"
  184. ],
  185. "type": "library",
  186. "extra": {
  187. "branch-alias": {
  188. "dev-master": "1.x-dev"
  189. }
  190. },
  191. "autoload": {
  192. "files": [
  193. "src/bootstrap.php"
  194. ],
  195. "psr-4": {
  196. "DrupalCodeGenerator\\": "src"
  197. }
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "GPL-2.0-or-later"
  202. ],
  203. "description": "Drupal code generator",
  204. "time": "2019-04-26T08:30:10+00:00"
  205. },
  206. {
  207. "name": "composer/installers",
  208. "version": "v1.6.0",
  209. "source": {
  210. "type": "git",
  211. "url": "https://github.com/composer/installers.git",
  212. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  213. },
  214. "dist": {
  215. "type": "zip",
  216. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  217. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  218. "shasum": ""
  219. },
  220. "require": {
  221. "composer-plugin-api": "^1.0"
  222. },
  223. "replace": {
  224. "roundcube/plugin-installer": "*",
  225. "shama/baton": "*"
  226. },
  227. "require-dev": {
  228. "composer/composer": "1.0.*@dev",
  229. "phpunit/phpunit": "^4.8.36"
  230. },
  231. "type": "composer-plugin",
  232. "extra": {
  233. "class": "Composer\\Installers\\Plugin",
  234. "branch-alias": {
  235. "dev-master": "1.0-dev"
  236. }
  237. },
  238. "autoload": {
  239. "psr-4": {
  240. "Composer\\Installers\\": "src/Composer/Installers"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "MIT"
  246. ],
  247. "authors": [
  248. {
  249. "name": "Kyle Robinson Young",
  250. "email": "kyle@dontkry.com",
  251. "homepage": "https://github.com/shama"
  252. }
  253. ],
  254. "description": "A multi-framework Composer library installer",
  255. "homepage": "https://composer.github.io/installers/",
  256. "keywords": [
  257. "Craft",
  258. "Dolibarr",
  259. "Eliasis",
  260. "Hurad",
  261. "ImageCMS",
  262. "Kanboard",
  263. "Lan Management System",
  264. "MODX Evo",
  265. "Mautic",
  266. "Maya",
  267. "OXID",
  268. "Plentymarkets",
  269. "Porto",
  270. "RadPHP",
  271. "SMF",
  272. "Thelia",
  273. "WolfCMS",
  274. "agl",
  275. "aimeos",
  276. "annotatecms",
  277. "attogram",
  278. "bitrix",
  279. "cakephp",
  280. "chef",
  281. "cockpit",
  282. "codeigniter",
  283. "concrete5",
  284. "croogo",
  285. "dokuwiki",
  286. "drupal",
  287. "eZ Platform",
  288. "elgg",
  289. "expressionengine",
  290. "fuelphp",
  291. "grav",
  292. "installer",
  293. "itop",
  294. "joomla",
  295. "kohana",
  296. "laravel",
  297. "lavalite",
  298. "lithium",
  299. "magento",
  300. "majima",
  301. "mako",
  302. "mediawiki",
  303. "modulework",
  304. "modx",
  305. "moodle",
  306. "osclass",
  307. "phpbb",
  308. "piwik",
  309. "ppi",
  310. "puppet",
  311. "pxcms",
  312. "reindex",
  313. "roundcube",
  314. "shopware",
  315. "silverstripe",
  316. "sydes",
  317. "symfony",
  318. "typo3",
  319. "wordpress",
  320. "yawik",
  321. "zend",
  322. "zikula"
  323. ],
  324. "time": "2018-08-27T06:10:37+00:00"
  325. },
  326. {
  327. "name": "composer/semver",
  328. "version": "1.5.0",
  329. "source": {
  330. "type": "git",
  331. "url": "https://github.com/composer/semver.git",
  332. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  333. },
  334. "dist": {
  335. "type": "zip",
  336. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  337. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  338. "shasum": ""
  339. },
  340. "require": {
  341. "php": "^5.3.2 || ^7.0"
  342. },
  343. "require-dev": {
  344. "phpunit/phpunit": "^4.5 || ^5.0.5",
  345. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  346. },
  347. "type": "library",
  348. "extra": {
  349. "branch-alias": {
  350. "dev-master": "1.x-dev"
  351. }
  352. },
  353. "autoload": {
  354. "psr-4": {
  355. "Composer\\Semver\\": "src"
  356. }
  357. },
  358. "notification-url": "https://packagist.org/downloads/",
  359. "license": [
  360. "MIT"
  361. ],
  362. "authors": [
  363. {
  364. "name": "Nils Adermann",
  365. "email": "naderman@naderman.de",
  366. "homepage": "http://www.naderman.de"
  367. },
  368. {
  369. "name": "Jordi Boggiano",
  370. "email": "j.boggiano@seld.be",
  371. "homepage": "http://seld.be"
  372. },
  373. {
  374. "name": "Rob Bast",
  375. "email": "rob.bast@gmail.com",
  376. "homepage": "http://robbast.nl"
  377. }
  378. ],
  379. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  380. "keywords": [
  381. "semantic",
  382. "semver",
  383. "validation",
  384. "versioning"
  385. ],
  386. "time": "2019-03-19T17:25:45+00:00"
  387. },
  388. {
  389. "name": "consolidation/annotated-command",
  390. "version": "2.12.0",
  391. "source": {
  392. "type": "git",
  393. "url": "https://github.com/consolidation/annotated-command.git",
  394. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  395. },
  396. "dist": {
  397. "type": "zip",
  398. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  399. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  400. "shasum": ""
  401. },
  402. "require": {
  403. "consolidation/output-formatters": "^3.4",
  404. "php": ">=5.4.5",
  405. "psr/log": "^1",
  406. "symfony/console": "^2.8|^3|^4",
  407. "symfony/event-dispatcher": "^2.5|^3|^4",
  408. "symfony/finder": "^2.5|^3|^4"
  409. },
  410. "require-dev": {
  411. "g1a/composer-test-scenarios": "^3",
  412. "php-coveralls/php-coveralls": "^1",
  413. "phpunit/phpunit": "^6",
  414. "squizlabs/php_codesniffer": "^2.7"
  415. },
  416. "type": "library",
  417. "extra": {
  418. "scenarios": {
  419. "symfony4": {
  420. "require": {
  421. "symfony/console": "^4.0"
  422. },
  423. "config": {
  424. "platform": {
  425. "php": "7.1.3"
  426. }
  427. }
  428. },
  429. "symfony2": {
  430. "require": {
  431. "symfony/console": "^2.8"
  432. },
  433. "require-dev": {
  434. "phpunit/phpunit": "^4.8.36"
  435. },
  436. "remove": [
  437. "php-coveralls/php-coveralls"
  438. ],
  439. "config": {
  440. "platform": {
  441. "php": "5.4.8"
  442. }
  443. },
  444. "scenario-options": {
  445. "create-lockfile": "false"
  446. }
  447. },
  448. "phpunit4": {
  449. "require-dev": {
  450. "phpunit/phpunit": "^4.8.36"
  451. },
  452. "remove": [
  453. "php-coveralls/php-coveralls"
  454. ],
  455. "config": {
  456. "platform": {
  457. "php": "5.4.8"
  458. }
  459. }
  460. }
  461. },
  462. "branch-alias": {
  463. "dev-master": "2.x-dev"
  464. }
  465. },
  466. "autoload": {
  467. "psr-4": {
  468. "Consolidation\\AnnotatedCommand\\": "src"
  469. }
  470. },
  471. "notification-url": "https://packagist.org/downloads/",
  472. "license": [
  473. "MIT"
  474. ],
  475. "authors": [
  476. {
  477. "name": "Greg Anderson",
  478. "email": "greg.1.anderson@greenknowe.org"
  479. }
  480. ],
  481. "description": "Initialize Symfony Console commands from annotated command class methods.",
  482. "time": "2019-03-08T16:55:03+00:00"
  483. },
  484. {
  485. "name": "consolidation/config",
  486. "version": "1.2.1",
  487. "source": {
  488. "type": "git",
  489. "url": "https://github.com/consolidation/config.git",
  490. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  491. },
  492. "dist": {
  493. "type": "zip",
  494. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  495. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  496. "shasum": ""
  497. },
  498. "require": {
  499. "dflydev/dot-access-data": "^1.1.0",
  500. "grasmash/expander": "^1",
  501. "php": ">=5.4.0"
  502. },
  503. "require-dev": {
  504. "g1a/composer-test-scenarios": "^3",
  505. "php-coveralls/php-coveralls": "^1",
  506. "phpunit/phpunit": "^5",
  507. "squizlabs/php_codesniffer": "2.*",
  508. "symfony/console": "^2.5|^3|^4",
  509. "symfony/yaml": "^2.8.11|^3|^4"
  510. },
  511. "suggest": {
  512. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  513. },
  514. "type": "library",
  515. "extra": {
  516. "scenarios": {
  517. "symfony4": {
  518. "require-dev": {
  519. "symfony/console": "^4.0"
  520. },
  521. "config": {
  522. "platform": {
  523. "php": "7.1.3"
  524. }
  525. }
  526. },
  527. "symfony2": {
  528. "require-dev": {
  529. "symfony/console": "^2.8",
  530. "symfony/event-dispatcher": "^2.8",
  531. "phpunit/phpunit": "^4.8.36"
  532. },
  533. "remove": [
  534. "php-coveralls/php-coveralls"
  535. ],
  536. "config": {
  537. "platform": {
  538. "php": "5.4.8"
  539. }
  540. }
  541. }
  542. },
  543. "branch-alias": {
  544. "dev-master": "1.x-dev"
  545. }
  546. },
  547. "autoload": {
  548. "psr-4": {
  549. "Consolidation\\Config\\": "src"
  550. }
  551. },
  552. "notification-url": "https://packagist.org/downloads/",
  553. "license": [
  554. "MIT"
  555. ],
  556. "authors": [
  557. {
  558. "name": "Greg Anderson",
  559. "email": "greg.1.anderson@greenknowe.org"
  560. }
  561. ],
  562. "description": "Provide configuration services for a commandline tool.",
  563. "time": "2019-03-03T19:37:04+00:00"
  564. },
  565. {
  566. "name": "consolidation/filter-via-dot-access-data",
  567. "version": "1.0.0",
  568. "source": {
  569. "type": "git",
  570. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  571. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  572. },
  573. "dist": {
  574. "type": "zip",
  575. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  576. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  577. "shasum": ""
  578. },
  579. "require": {
  580. "dflydev/dot-access-data": "^1.1.0",
  581. "php": ">=5.5.0"
  582. },
  583. "require-dev": {
  584. "consolidation/robo": "^1.2.3",
  585. "g1a/composer-test-scenarios": "^3",
  586. "knplabs/github-api": "^2.7",
  587. "php-coveralls/php-coveralls": "^1",
  588. "php-http/guzzle6-adapter": "^1.1",
  589. "phpunit/phpunit": "^5",
  590. "squizlabs/php_codesniffer": "^2.8",
  591. "symfony/console": "^2.8|^3|^4"
  592. },
  593. "type": "library",
  594. "extra": {
  595. "scenarios": {
  596. "phpunit5": {
  597. "require-dev": {
  598. "phpunit/phpunit": "^5.7.27"
  599. },
  600. "remove": [
  601. "php-coveralls/php-coveralls"
  602. ],
  603. "config": {
  604. "platform": {
  605. "php": "5.6.33"
  606. }
  607. }
  608. }
  609. },
  610. "branch-alias": {
  611. "dev-master": "1.x-dev"
  612. }
  613. },
  614. "autoload": {
  615. "psr-4": {
  616. "Consolidation\\Filter\\": "src"
  617. }
  618. },
  619. "notification-url": "https://packagist.org/downloads/",
  620. "license": [
  621. "MIT"
  622. ],
  623. "authors": [
  624. {
  625. "name": "Greg Anderson",
  626. "email": "greg.1.anderson@greenknowe.org"
  627. }
  628. ],
  629. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  630. "time": "2019-01-18T06:05:07+00:00"
  631. },
  632. {
  633. "name": "consolidation/log",
  634. "version": "1.1.1",
  635. "source": {
  636. "type": "git",
  637. "url": "https://github.com/consolidation/log.git",
  638. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  639. },
  640. "dist": {
  641. "type": "zip",
  642. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  643. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  644. "shasum": ""
  645. },
  646. "require": {
  647. "php": ">=5.4.5",
  648. "psr/log": "^1.0",
  649. "symfony/console": "^2.8|^3|^4"
  650. },
  651. "require-dev": {
  652. "g1a/composer-test-scenarios": "^3",
  653. "php-coveralls/php-coveralls": "^1",
  654. "phpunit/phpunit": "^6",
  655. "squizlabs/php_codesniffer": "^2"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "scenarios": {
  660. "symfony4": {
  661. "require": {
  662. "symfony/console": "^4.0"
  663. },
  664. "config": {
  665. "platform": {
  666. "php": "7.1.3"
  667. }
  668. }
  669. },
  670. "symfony2": {
  671. "require": {
  672. "symfony/console": "^2.8"
  673. },
  674. "require-dev": {
  675. "phpunit/phpunit": "^4.8.36"
  676. },
  677. "remove": [
  678. "php-coveralls/php-coveralls"
  679. ],
  680. "config": {
  681. "platform": {
  682. "php": "5.4.8"
  683. }
  684. }
  685. },
  686. "phpunit4": {
  687. "require-dev": {
  688. "phpunit/phpunit": "^4.8.36"
  689. },
  690. "remove": [
  691. "php-coveralls/php-coveralls"
  692. ],
  693. "config": {
  694. "platform": {
  695. "php": "5.4.8"
  696. }
  697. }
  698. }
  699. },
  700. "branch-alias": {
  701. "dev-master": "1.x-dev"
  702. }
  703. },
  704. "autoload": {
  705. "psr-4": {
  706. "Consolidation\\Log\\": "src"
  707. }
  708. },
  709. "notification-url": "https://packagist.org/downloads/",
  710. "license": [
  711. "MIT"
  712. ],
  713. "authors": [
  714. {
  715. "name": "Greg Anderson",
  716. "email": "greg.1.anderson@greenknowe.org"
  717. }
  718. ],
  719. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  720. "time": "2019-01-01T17:30:51+00:00"
  721. },
  722. {
  723. "name": "consolidation/output-formatters",
  724. "version": "3.4.1",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/consolidation/output-formatters.git",
  728. "reference": "0881112642ad9059071f13f397f571035b527cb9"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0881112642ad9059071f13f397f571035b527cb9",
  733. "reference": "0881112642ad9059071f13f397f571035b527cb9",
  734. "shasum": ""
  735. },
  736. "require": {
  737. "dflydev/dot-access-data": "^1.1.0",
  738. "php": ">=5.4.0",
  739. "symfony/console": "^2.8|^3|^4",
  740. "symfony/finder": "^2.5|^3|^4"
  741. },
  742. "require-dev": {
  743. "g1a/composer-test-scenarios": "^3",
  744. "php-coveralls/php-coveralls": "^1",
  745. "phpunit/phpunit": "^5.7.27",
  746. "squizlabs/php_codesniffer": "^2.7",
  747. "symfony/var-dumper": "^2.8|^3|^4",
  748. "victorjonsson/markdowndocs": "^1.3"
  749. },
  750. "suggest": {
  751. "symfony/var-dumper": "For using the var_dump formatter"
  752. },
  753. "type": "library",
  754. "extra": {
  755. "scenarios": {
  756. "symfony4": {
  757. "require": {
  758. "symfony/console": "^4.0"
  759. },
  760. "require-dev": {
  761. "phpunit/phpunit": "^6"
  762. },
  763. "config": {
  764. "platform": {
  765. "php": "7.1.3"
  766. }
  767. }
  768. },
  769. "symfony3": {
  770. "require": {
  771. "symfony/console": "^3.4",
  772. "symfony/finder": "^3.4",
  773. "symfony/var-dumper": "^3.4"
  774. },
  775. "config": {
  776. "platform": {
  777. "php": "5.6.32"
  778. }
  779. }
  780. },
  781. "symfony2": {
  782. "require": {
  783. "symfony/console": "^2.8"
  784. },
  785. "require-dev": {
  786. "phpunit/phpunit": "^4.8.36"
  787. },
  788. "remove": [
  789. "php-coveralls/php-coveralls"
  790. ],
  791. "config": {
  792. "platform": {
  793. "php": "5.4.8"
  794. }
  795. },
  796. "scenario-options": {
  797. "create-lockfile": "false"
  798. }
  799. }
  800. },
  801. "branch-alias": {
  802. "dev-master": "3.x-dev"
  803. }
  804. },
  805. "autoload": {
  806. "psr-4": {
  807. "Consolidation\\OutputFormatters\\": "src"
  808. }
  809. },
  810. "notification-url": "https://packagist.org/downloads/",
  811. "license": [
  812. "MIT"
  813. ],
  814. "authors": [
  815. {
  816. "name": "Greg Anderson",
  817. "email": "greg.1.anderson@greenknowe.org"
  818. }
  819. ],
  820. "description": "Format text by applying transformations provided by plug-in formatters.",
  821. "time": "2019-03-14T03:45:44+00:00"
  822. },
  823. {
  824. "name": "consolidation/robo",
  825. "version": "1.4.9",
  826. "source": {
  827. "type": "git",
  828. "url": "https://github.com/consolidation/Robo.git",
  829. "reference": "5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345"
  830. },
  831. "dist": {
  832. "type": "zip",
  833. "url": "https://api.github.com/repos/consolidation/Robo/zipball/5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345",
  834. "reference": "5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345",
  835. "shasum": ""
  836. },
  837. "require": {
  838. "consolidation/annotated-command": "^2.10.2",
  839. "consolidation/config": "^1.2",
  840. "consolidation/log": "~1",
  841. "consolidation/output-formatters": "^3.1.13",
  842. "consolidation/self-update": "^1",
  843. "grasmash/yaml-expander": "^1.3",
  844. "league/container": "^2.2",
  845. "php": ">=5.5.0",
  846. "symfony/console": "^2.8|^3|^4",
  847. "symfony/event-dispatcher": "^2.5|^3|^4",
  848. "symfony/filesystem": "^2.5|^3|^4",
  849. "symfony/finder": "^2.5|^3|^4",
  850. "symfony/process": "^2.5|^3|^4"
  851. },
  852. "replace": {
  853. "codegyre/robo": "< 1.0"
  854. },
  855. "require-dev": {
  856. "codeception/aspect-mock": "^1|^2.1.1",
  857. "codeception/base": "^2.3.7",
  858. "codeception/verify": "^0.3.2",
  859. "g1a/composer-test-scenarios": "^3",
  860. "goaop/framework": "~2.1.2",
  861. "goaop/parser-reflection": "^1.1.0",
  862. "natxet/cssmin": "3.0.4",
  863. "nikic/php-parser": "^3.1.5",
  864. "patchwork/jsqueeze": "~2",
  865. "pear/archive_tar": "^1.4.4",
  866. "php-coveralls/php-coveralls": "^1",
  867. "phpunit/php-code-coverage": "~2|~4",
  868. "squizlabs/php_codesniffer": "^2.8"
  869. },
  870. "suggest": {
  871. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  872. "natxet/CssMin": "For minifying CSS files in taskMinify",
  873. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  874. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  875. },
  876. "bin": [
  877. "robo"
  878. ],
  879. "type": "library",
  880. "extra": {
  881. "scenarios": {
  882. "symfony4": {
  883. "require": {
  884. "symfony/console": "^4"
  885. },
  886. "config": {
  887. "platform": {
  888. "php": "7.1.3"
  889. }
  890. }
  891. },
  892. "symfony2": {
  893. "require": {
  894. "symfony/console": "^2.8"
  895. },
  896. "remove": [
  897. "goaop/framework"
  898. ],
  899. "config": {
  900. "platform": {
  901. "php": "5.5.9"
  902. }
  903. },
  904. "scenario-options": {
  905. "create-lockfile": "false"
  906. }
  907. }
  908. },
  909. "branch-alias": {
  910. "dev-master": "2.x-dev"
  911. }
  912. },
  913. "autoload": {
  914. "psr-4": {
  915. "Robo\\": "src"
  916. }
  917. },
  918. "notification-url": "https://packagist.org/downloads/",
  919. "license": [
  920. "MIT"
  921. ],
  922. "authors": [
  923. {
  924. "name": "Davert",
  925. "email": "davert.php@resend.cc"
  926. }
  927. ],
  928. "description": "Modern task runner",
  929. "time": "2019-03-19T18:07:19+00:00"
  930. },
  931. {
  932. "name": "consolidation/self-update",
  933. "version": "1.1.5",
  934. "source": {
  935. "type": "git",
  936. "url": "https://github.com/consolidation/self-update.git",
  937. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  938. },
  939. "dist": {
  940. "type": "zip",
  941. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  942. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  943. "shasum": ""
  944. },
  945. "require": {
  946. "php": ">=5.5.0",
  947. "symfony/console": "^2.8|^3|^4",
  948. "symfony/filesystem": "^2.5|^3|^4"
  949. },
  950. "bin": [
  951. "scripts/release"
  952. ],
  953. "type": "library",
  954. "extra": {
  955. "branch-alias": {
  956. "dev-master": "1.x-dev"
  957. }
  958. },
  959. "autoload": {
  960. "psr-4": {
  961. "SelfUpdate\\": "src"
  962. }
  963. },
  964. "notification-url": "https://packagist.org/downloads/",
  965. "license": [
  966. "MIT"
  967. ],
  968. "authors": [
  969. {
  970. "name": "Greg Anderson",
  971. "email": "greg.1.anderson@greenknowe.org"
  972. },
  973. {
  974. "name": "Alexander Menk",
  975. "email": "menk@mestrona.net"
  976. }
  977. ],
  978. "description": "Provides a self:update command for Symfony Console applications.",
  979. "time": "2018-10-28T01:52:03+00:00"
  980. },
  981. {
  982. "name": "consolidation/site-alias",
  983. "version": "3.0.0",
  984. "source": {
  985. "type": "git",
  986. "url": "https://github.com/consolidation/site-alias.git",
  987. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  988. },
  989. "dist": {
  990. "type": "zip",
  991. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  992. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  993. "shasum": ""
  994. },
  995. "require": {
  996. "consolidation/config": "^1.2.1",
  997. "php": ">=5.5.0"
  998. },
  999. "require-dev": {
  1000. "consolidation/robo": "^1.2.3",
  1001. "g1a/composer-test-scenarios": "^3",
  1002. "knplabs/github-api": "^2.7",
  1003. "php-coveralls/php-coveralls": "^1",
  1004. "php-http/guzzle6-adapter": "^1.1",
  1005. "phpunit/phpunit": "^6",
  1006. "squizlabs/php_codesniffer": "^2.8",
  1007. "symfony/console": "^2.8|^3|^4",
  1008. "symfony/yaml": "~2.3|^3"
  1009. },
  1010. "type": "library",
  1011. "extra": {
  1012. "scenarios": {
  1013. "phpunit5": {
  1014. "require-dev": {
  1015. "phpunit/phpunit": "^5.7.27"
  1016. },
  1017. "remove": [
  1018. "php-coveralls/php-coveralls"
  1019. ],
  1020. "config": {
  1021. "platform": {
  1022. "php": "5.6.33"
  1023. }
  1024. }
  1025. }
  1026. },
  1027. "branch-alias": {
  1028. "dev-master": "3.x-dev"
  1029. }
  1030. },
  1031. "autoload": {
  1032. "psr-4": {
  1033. "Consolidation\\SiteAlias\\": "src"
  1034. }
  1035. },
  1036. "notification-url": "https://packagist.org/downloads/",
  1037. "license": [
  1038. "MIT"
  1039. ],
  1040. "authors": [
  1041. {
  1042. "name": "Moshe Weitzman",
  1043. "email": "weitzman@tejasa.com"
  1044. },
  1045. {
  1046. "name": "Greg Anderson",
  1047. "email": "greg.1.anderson@greenknowe.org"
  1048. }
  1049. ],
  1050. "description": "Manage alias records for local and remote sites.",
  1051. "time": "2019-03-12T17:31:48+00:00"
  1052. },
  1053. {
  1054. "name": "consolidation/site-process",
  1055. "version": "2.0.2",
  1056. "source": {
  1057. "type": "git",
  1058. "url": "https://github.com/consolidation/site-process.git",
  1059. "reference": "8957b9b3f4d48c183b7b11a29089d52875442e2f"
  1060. },
  1061. "dist": {
  1062. "type": "zip",
  1063. "url": "https://api.github.com/repos/consolidation/site-process/zipball/8957b9b3f4d48c183b7b11a29089d52875442e2f",
  1064. "reference": "8957b9b3f4d48c183b7b11a29089d52875442e2f",
  1065. "shasum": ""
  1066. },
  1067. "require": {
  1068. "consolidation/config": "^1.2.1",
  1069. "consolidation/site-alias": "^3",
  1070. "php": ">=5.6.0",
  1071. "symfony/process": "^3.4"
  1072. },
  1073. "require-dev": {
  1074. "consolidation/robo": "^1.3",
  1075. "g1a/composer-test-scenarios": "^3",
  1076. "knplabs/github-api": "^2.7",
  1077. "php-coveralls/php-coveralls": "^1",
  1078. "php-http/guzzle6-adapter": "^1.1",
  1079. "phpunit/phpunit": "^6",
  1080. "squizlabs/php_codesniffer": "^2.8"
  1081. },
  1082. "type": "library",
  1083. "extra": {
  1084. "scenarios": {
  1085. "phpunit5": {
  1086. "require-dev": {
  1087. "phpunit/phpunit": "^5.7.27"
  1088. },
  1089. "remove": [
  1090. "php-coveralls/php-coveralls"
  1091. ],
  1092. "config": {
  1093. "platform": {
  1094. "php": "5.6.33"
  1095. }
  1096. }
  1097. }
  1098. },
  1099. "branch-alias": {
  1100. "dev-master": "0.x-dev"
  1101. }
  1102. },
  1103. "autoload": {
  1104. "psr-4": {
  1105. "Consolidation\\SiteProcess\\": "src"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "MIT"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Moshe Weitzman",
  1115. "email": "weitzman@tejasa.com"
  1116. },
  1117. {
  1118. "name": "Greg Anderson",
  1119. "email": "greg.1.anderson@greenknowe.org"
  1120. }
  1121. ],
  1122. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  1123. "time": "2019-04-05T20:16:00+00:00"
  1124. },
  1125. {
  1126. "name": "container-interop/container-interop",
  1127. "version": "1.2.0",
  1128. "source": {
  1129. "type": "git",
  1130. "url": "https://github.com/container-interop/container-interop.git",
  1131. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1132. },
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1136. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1137. "shasum": ""
  1138. },
  1139. "require": {
  1140. "psr/container": "^1.0"
  1141. },
  1142. "type": "library",
  1143. "autoload": {
  1144. "psr-4": {
  1145. "Interop\\Container\\": "src/Interop/Container/"
  1146. }
  1147. },
  1148. "notification-url": "https://packagist.org/downloads/",
  1149. "license": [
  1150. "MIT"
  1151. ],
  1152. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1153. "homepage": "https://github.com/container-interop/container-interop",
  1154. "time": "2017-02-14T19:40:03+00:00"
  1155. },
  1156. {
  1157. "name": "cweagans/composer-patches",
  1158. "version": "1.6.5",
  1159. "source": {
  1160. "type": "git",
  1161. "url": "https://github.com/cweagans/composer-patches.git",
  1162. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  1163. },
  1164. "dist": {
  1165. "type": "zip",
  1166. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  1167. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  1168. "shasum": ""
  1169. },
  1170. "require": {
  1171. "composer-plugin-api": "^1.0",
  1172. "php": ">=5.3.0"
  1173. },
  1174. "require-dev": {
  1175. "composer/composer": "~1.0",
  1176. "phpunit/phpunit": "~4.6"
  1177. },
  1178. "type": "composer-plugin",
  1179. "extra": {
  1180. "class": "cweagans\\Composer\\Patches"
  1181. },
  1182. "autoload": {
  1183. "psr-4": {
  1184. "cweagans\\Composer\\": "src"
  1185. }
  1186. },
  1187. "notification-url": "https://packagist.org/downloads/",
  1188. "license": [
  1189. "BSD-3-Clause"
  1190. ],
  1191. "authors": [
  1192. {
  1193. "name": "Cameron Eagans",
  1194. "email": "me@cweagans.net"
  1195. }
  1196. ],
  1197. "description": "Provides a way to patch Composer packages.",
  1198. "time": "2018-05-11T18:00:16+00:00"
  1199. },
  1200. {
  1201. "name": "dflydev/dot-access-configuration",
  1202. "version": "v1.0.3",
  1203. "source": {
  1204. "type": "git",
  1205. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1206. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1207. },
  1208. "dist": {
  1209. "type": "zip",
  1210. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1211. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1212. "shasum": ""
  1213. },
  1214. "require": {
  1215. "dflydev/dot-access-data": "1.*",
  1216. "dflydev/placeholder-resolver": "1.*",
  1217. "php": ">=5.3.2"
  1218. },
  1219. "require-dev": {
  1220. "symfony/yaml": "~2.1"
  1221. },
  1222. "suggest": {
  1223. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1224. },
  1225. "type": "library",
  1226. "extra": {
  1227. "branch-alias": {
  1228. "dev-master": "1.0-dev"
  1229. }
  1230. },
  1231. "autoload": {
  1232. "psr-0": {
  1233. "Dflydev\\DotAccessConfiguration": "src"
  1234. }
  1235. },
  1236. "notification-url": "https://packagist.org/downloads/",
  1237. "license": [
  1238. "MIT"
  1239. ],
  1240. "authors": [
  1241. {
  1242. "name": "Dragonfly Development Inc.",
  1243. "email": "info@dflydev.com",
  1244. "homepage": "http://dflydev.com"
  1245. },
  1246. {
  1247. "name": "Beau Simensen",
  1248. "email": "beau@dflydev.com",
  1249. "homepage": "http://beausimensen.com"
  1250. }
  1251. ],
  1252. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1253. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1254. "keywords": [
  1255. "config",
  1256. "configuration"
  1257. ],
  1258. "time": "2018-09-08T23:00:17+00:00"
  1259. },
  1260. {
  1261. "name": "dflydev/dot-access-data",
  1262. "version": "v1.1.0",
  1263. "source": {
  1264. "type": "git",
  1265. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1266. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1267. },
  1268. "dist": {
  1269. "type": "zip",
  1270. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1271. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1272. "shasum": ""
  1273. },
  1274. "require": {
  1275. "php": ">=5.3.2"
  1276. },
  1277. "type": "library",
  1278. "extra": {
  1279. "branch-alias": {
  1280. "dev-master": "1.0-dev"
  1281. }
  1282. },
  1283. "autoload": {
  1284. "psr-0": {
  1285. "Dflydev\\DotAccessData": "src"
  1286. }
  1287. },
  1288. "notification-url": "https://packagist.org/downloads/",
  1289. "license": [
  1290. "MIT"
  1291. ],
  1292. "authors": [
  1293. {
  1294. "name": "Dragonfly Development Inc.",
  1295. "email": "info@dflydev.com",
  1296. "homepage": "http://dflydev.com"
  1297. },
  1298. {
  1299. "name": "Beau Simensen",
  1300. "email": "beau@dflydev.com",
  1301. "homepage": "http://beausimensen.com"
  1302. },
  1303. {
  1304. "name": "Carlos Frutos",
  1305. "email": "carlos@kiwing.it",
  1306. "homepage": "https://github.com/cfrutos"
  1307. }
  1308. ],
  1309. "description": "Given a deep data structure, access data by dot notation.",
  1310. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1311. "keywords": [
  1312. "access",
  1313. "data",
  1314. "dot",
  1315. "notation"
  1316. ],
  1317. "time": "2017-01-20T21:14:22+00:00"
  1318. },
  1319. {
  1320. "name": "dflydev/placeholder-resolver",
  1321. "version": "v1.0.2",
  1322. "source": {
  1323. "type": "git",
  1324. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1325. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1326. },
  1327. "dist": {
  1328. "type": "zip",
  1329. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1330. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1331. "shasum": ""
  1332. },
  1333. "require": {
  1334. "php": ">=5.3.2"
  1335. },
  1336. "type": "library",
  1337. "extra": {
  1338. "branch-alias": {
  1339. "dev-master": "1.0-dev"
  1340. }
  1341. },
  1342. "autoload": {
  1343. "psr-0": {
  1344. "Dflydev\\PlaceholderResolver": "src"
  1345. }
  1346. },
  1347. "notification-url": "https://packagist.org/downloads/",
  1348. "license": [
  1349. "MIT"
  1350. ],
  1351. "authors": [
  1352. {
  1353. "name": "Dragonfly Development Inc.",
  1354. "email": "info@dflydev.com",
  1355. "homepage": "http://dflydev.com"
  1356. },
  1357. {
  1358. "name": "Beau Simensen",
  1359. "email": "beau@dflydev.com",
  1360. "homepage": "http://beausimensen.com"
  1361. }
  1362. ],
  1363. "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.",
  1364. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1365. "keywords": [
  1366. "placeholder",
  1367. "resolver"
  1368. ],
  1369. "time": "2012-10-28T21:08:28+00:00"
  1370. },
  1371. {
  1372. "name": "dnoegel/php-xdg-base-dir",
  1373. "version": "0.1",
  1374. "source": {
  1375. "type": "git",
  1376. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1377. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1378. },
  1379. "dist": {
  1380. "type": "zip",
  1381. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1382. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1383. "shasum": ""
  1384. },
  1385. "require": {
  1386. "php": ">=5.3.2"
  1387. },
  1388. "require-dev": {
  1389. "phpunit/phpunit": "@stable"
  1390. },
  1391. "type": "project",
  1392. "autoload": {
  1393. "psr-4": {
  1394. "XdgBaseDir\\": "src/"
  1395. }
  1396. },
  1397. "notification-url": "https://packagist.org/downloads/",
  1398. "license": [
  1399. "MIT"
  1400. ],
  1401. "description": "implementation of xdg base directory specification for php",
  1402. "time": "2014-10-24T07:27:01+00:00"
  1403. },
  1404. {
  1405. "name": "doctrine/annotations",
  1406. "version": "v1.4.0",
  1407. "source": {
  1408. "type": "git",
  1409. "url": "https://github.com/doctrine/annotations.git",
  1410. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1411. },
  1412. "dist": {
  1413. "type": "zip",
  1414. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1415. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1416. "shasum": ""
  1417. },
  1418. "require": {
  1419. "doctrine/lexer": "1.*",
  1420. "php": "^5.6 || ^7.0"
  1421. },
  1422. "require-dev": {
  1423. "doctrine/cache": "1.*",
  1424. "phpunit/phpunit": "^5.7"
  1425. },
  1426. "type": "library",
  1427. "extra": {
  1428. "branch-alias": {
  1429. "dev-master": "1.4.x-dev"
  1430. }
  1431. },
  1432. "autoload": {
  1433. "psr-4": {
  1434. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1435. }
  1436. },
  1437. "notification-url": "https://packagist.org/downloads/",
  1438. "license": [
  1439. "MIT"
  1440. ],
  1441. "authors": [
  1442. {
  1443. "name": "Roman Borschel",
  1444. "email": "roman@code-factory.org"
  1445. },
  1446. {
  1447. "name": "Benjamin Eberlei",
  1448. "email": "kontakt@beberlei.de"
  1449. },
  1450. {
  1451. "name": "Guilherme Blanco",
  1452. "email": "guilhermeblanco@gmail.com"
  1453. },
  1454. {
  1455. "name": "Jonathan Wage",
  1456. "email": "jonwage@gmail.com"
  1457. },
  1458. {
  1459. "name": "Johannes Schmitt",
  1460. "email": "schmittjoh@gmail.com"
  1461. }
  1462. ],
  1463. "description": "Docblock Annotations Parser",
  1464. "homepage": "http://www.doctrine-project.org",
  1465. "keywords": [
  1466. "annotations",
  1467. "docblock",
  1468. "parser"
  1469. ],
  1470. "time": "2017-02-24T16:22:25+00:00"
  1471. },
  1472. {
  1473. "name": "doctrine/cache",
  1474. "version": "v1.6.2",
  1475. "source": {
  1476. "type": "git",
  1477. "url": "https://github.com/doctrine/cache.git",
  1478. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1479. },
  1480. "dist": {
  1481. "type": "zip",
  1482. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1483. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1484. "shasum": ""
  1485. },
  1486. "require": {
  1487. "php": "~5.5|~7.0"
  1488. },
  1489. "conflict": {
  1490. "doctrine/common": ">2.2,<2.4"
  1491. },
  1492. "require-dev": {
  1493. "phpunit/phpunit": "~4.8|~5.0",
  1494. "predis/predis": "~1.0",
  1495. "satooshi/php-coveralls": "~0.6"
  1496. },
  1497. "type": "library",
  1498. "extra": {
  1499. "branch-alias": {
  1500. "dev-master": "1.6.x-dev"
  1501. }
  1502. },
  1503. "autoload": {
  1504. "psr-4": {
  1505. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1506. }
  1507. },
  1508. "notification-url": "https://packagist.org/downloads/",
  1509. "license": [
  1510. "MIT"
  1511. ],
  1512. "authors": [
  1513. {
  1514. "name": "Roman Borschel",
  1515. "email": "roman@code-factory.org"
  1516. },
  1517. {
  1518. "name": "Benjamin Eberlei",
  1519. "email": "kontakt@beberlei.de"
  1520. },
  1521. {
  1522. "name": "Guilherme Blanco",
  1523. "email": "guilhermeblanco@gmail.com"
  1524. },
  1525. {
  1526. "name": "Jonathan Wage",
  1527. "email": "jonwage@gmail.com"
  1528. },
  1529. {
  1530. "name": "Johannes Schmitt",
  1531. "email": "schmittjoh@gmail.com"
  1532. }
  1533. ],
  1534. "description": "Caching library offering an object-oriented API for many cache backends",
  1535. "homepage": "http://www.doctrine-project.org",
  1536. "keywords": [
  1537. "cache",
  1538. "caching"
  1539. ],
  1540. "time": "2017-07-22T12:49:21+00:00"
  1541. },
  1542. {
  1543. "name": "doctrine/collections",
  1544. "version": "v1.4.0",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/doctrine/collections.git",
  1548. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1553. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "php": "^5.6 || ^7.0"
  1558. },
  1559. "require-dev": {
  1560. "doctrine/coding-standard": "~0.1@dev",
  1561. "phpunit/phpunit": "^5.7"
  1562. },
  1563. "type": "library",
  1564. "extra": {
  1565. "branch-alias": {
  1566. "dev-master": "1.3.x-dev"
  1567. }
  1568. },
  1569. "autoload": {
  1570. "psr-0": {
  1571. "Doctrine\\Common\\Collections\\": "lib/"
  1572. }
  1573. },
  1574. "notification-url": "https://packagist.org/downloads/",
  1575. "license": [
  1576. "MIT"
  1577. ],
  1578. "authors": [
  1579. {
  1580. "name": "Roman Borschel",
  1581. "email": "roman@code-factory.org"
  1582. },
  1583. {
  1584. "name": "Benjamin Eberlei",
  1585. "email": "kontakt@beberlei.de"
  1586. },
  1587. {
  1588. "name": "Guilherme Blanco",
  1589. "email": "guilhermeblanco@gmail.com"
  1590. },
  1591. {
  1592. "name": "Jonathan Wage",
  1593. "email": "jonwage@gmail.com"
  1594. },
  1595. {
  1596. "name": "Johannes Schmitt",
  1597. "email": "schmittjoh@gmail.com"
  1598. }
  1599. ],
  1600. "description": "Collections Abstraction library",
  1601. "homepage": "http://www.doctrine-project.org",
  1602. "keywords": [
  1603. "array",
  1604. "collections",
  1605. "iterator"
  1606. ],
  1607. "time": "2017-01-03T10:49:41+00:00"
  1608. },
  1609. {
  1610. "name": "doctrine/common",
  1611. "version": "v2.7.3",
  1612. "source": {
  1613. "type": "git",
  1614. "url": "https://github.com/doctrine/common.git",
  1615. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1616. },
  1617. "dist": {
  1618. "type": "zip",
  1619. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1620. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1621. "shasum": ""
  1622. },
  1623. "require": {
  1624. "doctrine/annotations": "1.*",
  1625. "doctrine/cache": "1.*",
  1626. "doctrine/collections": "1.*",
  1627. "doctrine/inflector": "1.*",
  1628. "doctrine/lexer": "1.*",
  1629. "php": "~5.6|~7.0"
  1630. },
  1631. "require-dev": {
  1632. "phpunit/phpunit": "^5.4.6"
  1633. },
  1634. "type": "library",
  1635. "extra": {
  1636. "branch-alias": {
  1637. "dev-master": "2.7.x-dev"
  1638. }
  1639. },
  1640. "autoload": {
  1641. "psr-4": {
  1642. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1643. }
  1644. },
  1645. "notification-url": "https://packagist.org/downloads/",
  1646. "license": [
  1647. "MIT"
  1648. ],
  1649. "authors": [
  1650. {
  1651. "name": "Roman Borschel",
  1652. "email": "roman@code-factory.org"
  1653. },
  1654. {
  1655. "name": "Benjamin Eberlei",
  1656. "email": "kontakt@beberlei.de"
  1657. },
  1658. {
  1659. "name": "Guilherme Blanco",
  1660. "email": "guilhermeblanco@gmail.com"
  1661. },
  1662. {
  1663. "name": "Jonathan Wage",
  1664. "email": "jonwage@gmail.com"
  1665. },
  1666. {
  1667. "name": "Johannes Schmitt",
  1668. "email": "schmittjoh@gmail.com"
  1669. }
  1670. ],
  1671. "description": "Common Library for Doctrine projects",
  1672. "homepage": "http://www.doctrine-project.org",
  1673. "keywords": [
  1674. "annotations",
  1675. "collections",
  1676. "eventmanager",
  1677. "persistence",
  1678. "spl"
  1679. ],
  1680. "time": "2017-07-22T08:35:12+00:00"
  1681. },
  1682. {
  1683. "name": "doctrine/inflector",
  1684. "version": "v1.2.0",
  1685. "source": {
  1686. "type": "git",
  1687. "url": "https://github.com/doctrine/inflector.git",
  1688. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1689. },
  1690. "dist": {
  1691. "type": "zip",
  1692. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1693. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1694. "shasum": ""
  1695. },
  1696. "require": {
  1697. "php": "^7.0"
  1698. },
  1699. "require-dev": {
  1700. "phpunit/phpunit": "^6.2"
  1701. },
  1702. "type": "library",
  1703. "extra": {
  1704. "branch-alias": {
  1705. "dev-master": "1.2.x-dev"
  1706. }
  1707. },
  1708. "autoload": {
  1709. "psr-4": {
  1710. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1711. }
  1712. },
  1713. "notification-url": "https://packagist.org/downloads/",
  1714. "license": [
  1715. "MIT"
  1716. ],
  1717. "authors": [
  1718. {
  1719. "name": "Roman Borschel",
  1720. "email": "roman@code-factory.org"
  1721. },
  1722. {
  1723. "name": "Benjamin Eberlei",
  1724. "email": "kontakt@beberlei.de"
  1725. },
  1726. {
  1727. "name": "Guilherme Blanco",
  1728. "email": "guilhermeblanco@gmail.com"
  1729. },
  1730. {
  1731. "name": "Jonathan Wage",
  1732. "email": "jonwage@gmail.com"
  1733. },
  1734. {
  1735. "name": "Johannes Schmitt",
  1736. "email": "schmittjoh@gmail.com"
  1737. }
  1738. ],
  1739. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1740. "homepage": "http://www.doctrine-project.org",
  1741. "keywords": [
  1742. "inflection",
  1743. "pluralize",
  1744. "singularize",
  1745. "string"
  1746. ],
  1747. "time": "2017-07-22T12:18:28+00:00"
  1748. },
  1749. {
  1750. "name": "doctrine/lexer",
  1751. "version": "v1.0.1",
  1752. "source": {
  1753. "type": "git",
  1754. "url": "https://github.com/doctrine/lexer.git",
  1755. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1756. },
  1757. "dist": {
  1758. "type": "zip",
  1759. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1760. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1761. "shasum": ""
  1762. },
  1763. "require": {
  1764. "php": ">=5.3.2"
  1765. },
  1766. "type": "library",
  1767. "extra": {
  1768. "branch-alias": {
  1769. "dev-master": "1.0.x-dev"
  1770. }
  1771. },
  1772. "autoload": {
  1773. "psr-0": {
  1774. "Doctrine\\Common\\Lexer\\": "lib/"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Roman Borschel",
  1784. "email": "roman@code-factory.org"
  1785. },
  1786. {
  1787. "name": "Guilherme Blanco",
  1788. "email": "guilhermeblanco@gmail.com"
  1789. },
  1790. {
  1791. "name": "Johannes Schmitt",
  1792. "email": "schmittjoh@gmail.com"
  1793. }
  1794. ],
  1795. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1796. "homepage": "http://www.doctrine-project.org",
  1797. "keywords": [
  1798. "lexer",
  1799. "parser"
  1800. ],
  1801. "time": "2014-09-09T13:34:57+00:00"
  1802. },
  1803. {
  1804. "name": "drupal-composer/drupal-scaffold",
  1805. "version": "2.6.1",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  1809. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  1814. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  1815. "shasum": ""
  1816. },
  1817. "require": {
  1818. "composer-plugin-api": "^1.0.0",
  1819. "composer/semver": "^1.4",
  1820. "php": "^5.5.9|>=7.0.8"
  1821. },
  1822. "require-dev": {
  1823. "composer/composer": "dev-master",
  1824. "g1a/composer-test-scenarios": "^2.1.0",
  1825. "phpunit/phpunit": "^6",
  1826. "squizlabs/php_codesniffer": "^2.8"
  1827. },
  1828. "type": "composer-plugin",
  1829. "extra": {
  1830. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  1831. "branch-alias": {
  1832. "dev-master": "2.0.x-dev"
  1833. }
  1834. },
  1835. "autoload": {
  1836. "psr-4": {
  1837. "DrupalComposer\\DrupalScaffold\\": "src/"
  1838. }
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "GPL-2.0-or-later"
  1843. ],
  1844. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  1845. "time": "2019-03-30T10:41:38+00:00"
  1846. },
  1847. {
  1848. "name": "drupal/addtoany",
  1849. "version": "1.12.0",
  1850. "source": {
  1851. "type": "git",
  1852. "url": "https://git.drupalcode.org/project/addtoany.git",
  1853. "reference": "8.x-1.12"
  1854. },
  1855. "dist": {
  1856. "type": "zip",
  1857. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.12.zip",
  1858. "reference": "8.x-1.12",
  1859. "shasum": "f66b3cb0a95b500e4802e8ff9c29af04554327d8"
  1860. },
  1861. "require": {
  1862. "drupal/core": "*"
  1863. },
  1864. "type": "drupal-module",
  1865. "extra": {
  1866. "branch-alias": {
  1867. "dev-1.x": "1.x-dev"
  1868. },
  1869. "drupal": {
  1870. "version": "8.x-1.12",
  1871. "datestamp": "1554702781",
  1872. "security-coverage": {
  1873. "status": "covered",
  1874. "message": "Covered by Drupal's security advisory policy"
  1875. }
  1876. }
  1877. },
  1878. "notification-url": "https://packages.drupal.org/8/downloads",
  1879. "license": [
  1880. "GPL-2.0-or-later"
  1881. ],
  1882. "authors": [
  1883. {
  1884. "name": "AddToAny",
  1885. "homepage": "https://www.drupal.org/user/2640913"
  1886. },
  1887. {
  1888. "name": "micropat",
  1889. "homepage": "https://www.drupal.org/user/260224"
  1890. }
  1891. ],
  1892. "description": "Share buttons by AddToAny, including the AddToAny universal sharing button, Facebook, Twitter, Google+, Pinterest, and over 100 more on the <a href=\"https://www.addtoany.com/\" target=\"_blank\">AddToAny</a> platform.",
  1893. "homepage": "https://www.drupal.org/project/addtoany",
  1894. "support": {
  1895. "source": "https://git.drupalcode.org/project/addtoany"
  1896. }
  1897. },
  1898. {
  1899. "name": "drupal/admin_toolbar",
  1900. "version": "1.26.0",
  1901. "source": {
  1902. "type": "git",
  1903. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1904. "reference": "8.x-1.26"
  1905. },
  1906. "dist": {
  1907. "type": "zip",
  1908. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.26.zip",
  1909. "reference": "8.x-1.26",
  1910. "shasum": "7be9f91008bf17cf49b43d1c8e2211e7a8e40ce4"
  1911. },
  1912. "require": {
  1913. "drupal/core": "*"
  1914. },
  1915. "type": "drupal-module",
  1916. "extra": {
  1917. "branch-alias": {
  1918. "dev-1.x": "1.x-dev"
  1919. },
  1920. "drupal": {
  1921. "version": "8.x-1.26",
  1922. "datestamp": "1549559402",
  1923. "security-coverage": {
  1924. "status": "covered",
  1925. "message": "Covered by Drupal's security advisory policy"
  1926. }
  1927. }
  1928. },
  1929. "notification-url": "https://packages.drupal.org/8/downloads",
  1930. "license": [
  1931. "GPL-2.0+"
  1932. ],
  1933. "authors": [
  1934. {
  1935. "name": "Wilfrid Roze (eme)",
  1936. "homepage": "https://www.drupal.org/u/eme",
  1937. "role": "Maintainer"
  1938. },
  1939. {
  1940. "name": "Romain Jarraud (romainj)",
  1941. "homepage": "https://www.drupal.org/u/romainj",
  1942. "role": "Maintainer"
  1943. },
  1944. {
  1945. "name": "Adrian Cid Almaguer (adriancid)",
  1946. "homepage": "https://www.drupal.org/u/adriancid",
  1947. "email": "adriancid@gmail.com",
  1948. "role": "Maintainer"
  1949. },
  1950. {
  1951. "name": "Mohamed Anis Taktak (matio89)",
  1952. "homepage": "https://www.drupal.org/u/matio89",
  1953. "role": "Maintainer"
  1954. },
  1955. {
  1956. "name": "fethi.krout",
  1957. "homepage": "https://www.drupal.org/user/3206765"
  1958. },
  1959. {
  1960. "name": "matio89",
  1961. "homepage": "https://www.drupal.org/user/2320090"
  1962. },
  1963. {
  1964. "name": "romainj",
  1965. "homepage": "https://www.drupal.org/user/370706"
  1966. }
  1967. ],
  1968. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1969. "homepage": "http://drupal.org/project/admin_toolbar",
  1970. "keywords": [
  1971. "Drupal",
  1972. "Toolbar"
  1973. ],
  1974. "support": {
  1975. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1976. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1977. }
  1978. },
  1979. {
  1980. "name": "drupal/adminimal_theme",
  1981. "version": "1.4.0",
  1982. "source": {
  1983. "type": "git",
  1984. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1985. "reference": "8.x-1.4"
  1986. },
  1987. "dist": {
  1988. "type": "zip",
  1989. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.4.zip",
  1990. "reference": "8.x-1.4",
  1991. "shasum": "af9cbce473d0bd9590889992200ed175cb7e1159"
  1992. },
  1993. "require": {
  1994. "drupal/core": "~8.0"
  1995. },
  1996. "type": "drupal-theme",
  1997. "extra": {
  1998. "branch-alias": {
  1999. "dev-1.x": "1.x-dev"
  2000. },
  2001. "drupal": {
  2002. "version": "8.x-1.4",
  2003. "datestamp": "1547996580",
  2004. "security-coverage": {
  2005. "status": "covered",
  2006. "message": "Covered by Drupal's security advisory policy"
  2007. }
  2008. }
  2009. },
  2010. "notification-url": "https://packages.drupal.org/8/downloads",
  2011. "license": [
  2012. "GPL-2.0+"
  2013. ],
  2014. "authors": [
  2015. {
  2016. "name": "ANDiTKO",
  2017. "homepage": "https://www.drupal.org/user/1428124"
  2018. },
  2019. {
  2020. "name": "andrey.troeglazov",
  2021. "homepage": "https://www.drupal.org/user/3145389"
  2022. },
  2023. {
  2024. "name": "realityloop",
  2025. "homepage": "https://www.drupal.org/user/139189"
  2026. }
  2027. ],
  2028. "description": "Drupal administration theme with modern minimalist design.",
  2029. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2030. "support": {
  2031. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2032. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2033. }
  2034. },
  2035. {
  2036. "name": "drupal/audiofield",
  2037. "version": "1.9.0",
  2038. "source": {
  2039. "type": "git",
  2040. "url": "https://git.drupalcode.org/project/audiofield.git",
  2041. "reference": "8.x-1.9"
  2042. },
  2043. "dist": {
  2044. "type": "zip",
  2045. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  2046. "reference": "8.x-1.9",
  2047. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  2048. },
  2049. "require": {
  2050. "drupal/core": "~8.0"
  2051. },
  2052. "type": "drupal-module",
  2053. "extra": {
  2054. "branch-alias": {
  2055. "dev-1.x": "1.x-dev"
  2056. },
  2057. "drupal": {
  2058. "version": "8.x-1.9",
  2059. "datestamp": "1553712781",
  2060. "security-coverage": {
  2061. "status": "covered",
  2062. "message": "Covered by Drupal's security advisory policy"
  2063. }
  2064. },
  2065. "drush": {
  2066. "services": {
  2067. "drush.services.yml": "^9"
  2068. }
  2069. }
  2070. },
  2071. "notification-url": "https://packages.drupal.org/8/downloads",
  2072. "license": [
  2073. "GPL-2.0+"
  2074. ],
  2075. "authors": [
  2076. {
  2077. "name": "Daniel Moberly",
  2078. "homepage": "https://www.drupal.org/u/danielmoberly",
  2079. "role": "Maintainer"
  2080. },
  2081. {
  2082. "name": "josipsaric",
  2083. "homepage": "https://www.drupal.org/user/3063287"
  2084. },
  2085. {
  2086. "name": "tamerzg",
  2087. "homepage": "https://www.drupal.org/user/464564"
  2088. }
  2089. ],
  2090. "description": "AudioField Module",
  2091. "homepage": "https://www.drupal.org/project/audiofield",
  2092. "support": {
  2093. "source": "https://git.drupalcode.org/project/audiofield",
  2094. "issues": "https://www.drupal.org/project/issues/audiofield"
  2095. }
  2096. },
  2097. {
  2098. "name": "drupal/autologout",
  2099. "version": "1.0.0",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://git.drupalcode.org/project/autologout.git",
  2103. "reference": "8.x-1.0"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2108. "reference": "8.x-1.0",
  2109. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2110. },
  2111. "require": {
  2112. "drupal/core": "~8.0"
  2113. },
  2114. "type": "drupal-module",
  2115. "extra": {
  2116. "branch-alias": {
  2117. "dev-1.x": "1.x-dev"
  2118. },
  2119. "drupal": {
  2120. "version": "8.x-1.0",
  2121. "datestamp": "1494237185",
  2122. "security-coverage": {
  2123. "status": "covered",
  2124. "message": "Covered by Drupal's security advisory policy"
  2125. }
  2126. }
  2127. },
  2128. "notification-url": "https://packages.drupal.org/8/downloads",
  2129. "license": [
  2130. "GPL-2.0+"
  2131. ],
  2132. "authors": [
  2133. {
  2134. "name": "AjK",
  2135. "homepage": "https://www.drupal.org/user/39030"
  2136. },
  2137. {
  2138. "name": "AjitS",
  2139. "homepage": "https://www.drupal.org/user/981944"
  2140. },
  2141. {
  2142. "name": "boshtian",
  2143. "homepage": "https://www.drupal.org/user/1773456"
  2144. },
  2145. {
  2146. "name": "dandrews",
  2147. "homepage": "https://www.drupal.org/user/2014490"
  2148. },
  2149. {
  2150. "name": "darksnow",
  2151. "homepage": "https://www.drupal.org/user/391915"
  2152. },
  2153. {
  2154. "name": "johnennew",
  2155. "homepage": "https://www.drupal.org/user/1150042"
  2156. },
  2157. {
  2158. "name": "jrglasgow",
  2159. "homepage": "https://www.drupal.org/user/36590"
  2160. },
  2161. {
  2162. "name": "kmasood",
  2163. "homepage": "https://www.drupal.org/user/1262860"
  2164. },
  2165. {
  2166. "name": "levelos",
  2167. "homepage": "https://www.drupal.org/user/54135"
  2168. },
  2169. {
  2170. "name": "prabeen.giri",
  2171. "homepage": "https://www.drupal.org/user/913078"
  2172. },
  2173. {
  2174. "name": "str8",
  2175. "homepage": "https://www.drupal.org/user/2865063"
  2176. }
  2177. ],
  2178. "description": "Adds automated timed logout.",
  2179. "homepage": "http://drupal.org/project/autologout",
  2180. "support": {
  2181. "source": "https://git.drupalcode.org/project/autologout"
  2182. }
  2183. },
  2184. {
  2185. "name": "drupal/basic",
  2186. "version": "1.3.0",
  2187. "source": {
  2188. "type": "git",
  2189. "url": "https://git.drupalcode.org/project/basic.git",
  2190. "reference": "8.x-1.3"
  2191. },
  2192. "dist": {
  2193. "type": "zip",
  2194. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  2195. "reference": "8.x-1.3",
  2196. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  2197. },
  2198. "require": {
  2199. "drupal/core": "~8.0"
  2200. },
  2201. "type": "drupal-theme",
  2202. "extra": {
  2203. "branch-alias": {
  2204. "dev-1.x": "1.x-dev"
  2205. },
  2206. "drupal": {
  2207. "version": "8.x-1.3",
  2208. "datestamp": "1508096944",
  2209. "security-coverage": {
  2210. "status": "covered",
  2211. "message": "Covered by Drupal's security advisory policy"
  2212. }
  2213. }
  2214. },
  2215. "notification-url": "https://packages.drupal.org/8/downloads",
  2216. "license": [
  2217. "GPL-2.0+"
  2218. ],
  2219. "authors": [
  2220. {
  2221. "name": "Steve Krueger",
  2222. "homepage": "http://thejibe.com",
  2223. "email": "steve@thejibe.com",
  2224. "role": "Maintainer"
  2225. },
  2226. {
  2227. "name": "Joël Pittet",
  2228. "homepage": "https://www.drupal.org/u/joelpittet",
  2229. "email": "joel@pittet.ca",
  2230. "role": "Maintainer"
  2231. },
  2232. {
  2233. "name": "Leah Wagner",
  2234. "homepage": "http://thejibe.com",
  2235. "email": "leah@thejibe.com",
  2236. "role": "Maintainer"
  2237. },
  2238. {
  2239. "name": "Catherine Winters",
  2240. "homepage": "http://www.catherinewinters.com",
  2241. "email": "catherine@catherinewinters.com",
  2242. "role": "Maintainer"
  2243. },
  2244. {
  2245. "name": "Johannes Schmidt",
  2246. "homepage": "http://2tabs.com",
  2247. "email": "mail@2tabs.com",
  2248. "role": "Maintainer"
  2249. },
  2250. {
  2251. "name": "johannez",
  2252. "homepage": "https://www.drupal.org/user/670988"
  2253. },
  2254. {
  2255. "name": "leahtard",
  2256. "homepage": "https://www.drupal.org/user/683812"
  2257. }
  2258. ],
  2259. "description": "HTML5, SASS, Responsive grid starter theme.",
  2260. "homepage": "http://drupal.org/project/basic",
  2261. "support": {
  2262. "source": "http://cgit.drupalcode.org/basic",
  2263. "issues": "https://www.drupal.org/project/issues/basic",
  2264. "irc": "irc://irc.freenode.org/drupal-contribute"
  2265. }
  2266. },
  2267. {
  2268. "name": "drupal/better_messages",
  2269. "version": "1.0.0-alpha2",
  2270. "source": {
  2271. "type": "git",
  2272. "url": "https://git.drupalcode.org/project/better_messages.git",
  2273. "reference": "8.x-1.0-alpha2"
  2274. },
  2275. "dist": {
  2276. "type": "zip",
  2277. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2278. "reference": "8.x-1.0-alpha2",
  2279. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2280. },
  2281. "require": {
  2282. "drupal/core": "~8.0"
  2283. },
  2284. "type": "drupal-module",
  2285. "extra": {
  2286. "branch-alias": {
  2287. "dev-1.x": "1.x-dev"
  2288. },
  2289. "drupal": {
  2290. "version": "8.x-1.0-alpha2",
  2291. "datestamp": "1517663880",
  2292. "security-coverage": {
  2293. "status": "not-covered",
  2294. "message": "Alpha releases are not covered by Drupal security advisories."
  2295. }
  2296. }
  2297. },
  2298. "notification-url": "https://packages.drupal.org/8/downloads",
  2299. "license": [
  2300. "GPL-2.0-or-later"
  2301. ],
  2302. "authors": [
  2303. {
  2304. "name": "Mohammed J. Razem",
  2305. "homepage": "https://www.drupal.org/user/255384"
  2306. },
  2307. {
  2308. "name": "bucefal91",
  2309. "homepage": "https://www.drupal.org/user/504128"
  2310. },
  2311. {
  2312. "name": "le72",
  2313. "homepage": "https://www.drupal.org/user/1866896"
  2314. }
  2315. ],
  2316. "description": "Better Messages module for Drupal 8.",
  2317. "homepage": "https://www.drupal.org/project/better_messages",
  2318. "support": {
  2319. "source": "https://git.drupalcode.org/project/better_messages"
  2320. }
  2321. },
  2322. {
  2323. "name": "drupal/bulkdelete",
  2324. "version": "dev-1.x",
  2325. "source": {
  2326. "type": "git",
  2327. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2328. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2329. },
  2330. "require": {
  2331. "drupal/core": "~8.0"
  2332. },
  2333. "type": "drupal-module",
  2334. "extra": {
  2335. "branch-alias": {
  2336. "dev-1.x": "1.x-dev"
  2337. },
  2338. "drupal": {
  2339. "version": "8.x-1.x-dev",
  2340. "datestamp": "1495565583",
  2341. "security-coverage": {
  2342. "status": "not-covered",
  2343. "message": "Dev releases are not covered by Drupal security advisories."
  2344. }
  2345. }
  2346. },
  2347. "notification-url": "https://packages.drupal.org/8/downloads",
  2348. "license": [
  2349. "GPL-2.0-or-later"
  2350. ],
  2351. "authors": [
  2352. {
  2353. "name": "Kars-T",
  2354. "homepage": "https://www.drupal.org/user/224499"
  2355. },
  2356. {
  2357. "name": "Rahul Seth",
  2358. "homepage": "https://www.drupal.org/user/2694359"
  2359. },
  2360. {
  2361. "name": "adriancid",
  2362. "homepage": "https://www.drupal.org/user/1962106"
  2363. },
  2364. {
  2365. "name": "robertDouglass",
  2366. "homepage": "https://www.drupal.org/user/5449"
  2367. }
  2368. ],
  2369. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2370. "homepage": "https://www.drupal.org/project/bulkdelete",
  2371. "support": {
  2372. "source": "https://git.drupalcode.org/project/bulkdelete"
  2373. },
  2374. "time": "2017-05-23T18:49:48+00:00"
  2375. },
  2376. {
  2377. "name": "drupal/color_field",
  2378. "version": "2.0.0",
  2379. "source": {
  2380. "type": "git",
  2381. "url": "https://git.drupalcode.org/project/color_field.git",
  2382. "reference": "8.x-2.0"
  2383. },
  2384. "dist": {
  2385. "type": "zip",
  2386. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.0.zip",
  2387. "reference": "8.x-2.0",
  2388. "shasum": "27c510d258e409e1d029d69cf7747e96c1087df6"
  2389. },
  2390. "require": {
  2391. "drupal/core": "*"
  2392. },
  2393. "require-dev": {
  2394. "drupal/token": "~1.3"
  2395. },
  2396. "suggest": {
  2397. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2398. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2399. },
  2400. "type": "drupal-module",
  2401. "extra": {
  2402. "branch-alias": {
  2403. "dev-2.x": "2.x-dev"
  2404. },
  2405. "drupal": {
  2406. "version": "8.x-2.0",
  2407. "datestamp": "1536168780",
  2408. "security-coverage": {
  2409. "status": "covered",
  2410. "message": "Covered by Drupal's security advisory policy"
  2411. }
  2412. }
  2413. },
  2414. "notification-url": "https://packages.drupal.org/8/downloads",
  2415. "license": [
  2416. "GPL-2.0-or-later"
  2417. ],
  2418. "authors": [
  2419. {
  2420. "name": "targoo",
  2421. "homepage": "https://www.drupal.org/user/431910",
  2422. "role": "Maintainer"
  2423. },
  2424. {
  2425. "name": "Nick Wilde",
  2426. "homepage": "https://www.drupal.org/user/nickwilde",
  2427. "role": "Maintainer"
  2428. }
  2429. ],
  2430. "description": "Provides a color field type to store the color value and opacity",
  2431. "homepage": "https://www.drupal.org/project/color_field",
  2432. "support": {
  2433. "source": "http://cgit.drupalcode.org/color_field",
  2434. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2435. }
  2436. },
  2437. {
  2438. "name": "drupal/config_devel",
  2439. "version": "1.2.0",
  2440. "source": {
  2441. "type": "git",
  2442. "url": "https://git.drupalcode.org/project/config_devel.git",
  2443. "reference": "8.x-1.2"
  2444. },
  2445. "dist": {
  2446. "type": "zip",
  2447. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2448. "reference": "8.x-1.2",
  2449. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2450. },
  2451. "require": {
  2452. "drupal/core": "~8.0"
  2453. },
  2454. "type": "drupal-module",
  2455. "extra": {
  2456. "branch-alias": {
  2457. "dev-1.x": "1.x-dev"
  2458. },
  2459. "drupal": {
  2460. "version": "8.x-1.2",
  2461. "datestamp": "1510843084",
  2462. "security-coverage": {
  2463. "status": "covered",
  2464. "message": "Covered by Drupal's security advisory policy"
  2465. }
  2466. }
  2467. },
  2468. "notification-url": "https://packages.drupal.org/8/downloads",
  2469. "license": [
  2470. "GPL-2.0+"
  2471. ],
  2472. "authors": [
  2473. {
  2474. "name": "alexpott",
  2475. "homepage": "https://www.drupal.org/user/157725"
  2476. },
  2477. {
  2478. "name": "benjy",
  2479. "homepage": "https://www.drupal.org/user/1852732"
  2480. },
  2481. {
  2482. "name": "chx",
  2483. "homepage": "https://www.drupal.org/user/9446"
  2484. },
  2485. {
  2486. "name": "joachim",
  2487. "homepage": "https://www.drupal.org/user/107701"
  2488. },
  2489. {
  2490. "name": "nedjo",
  2491. "homepage": "https://www.drupal.org/user/4481"
  2492. },
  2493. {
  2494. "name": "tim.plunkett",
  2495. "homepage": "https://www.drupal.org/user/241634"
  2496. },
  2497. {
  2498. "name": "vijaycs85",
  2499. "homepage": "https://www.drupal.org/user/93488"
  2500. }
  2501. ],
  2502. "description": "Helps developers work with configuration.",
  2503. "homepage": "https://www.drupal.org/project/config_devel",
  2504. "support": {
  2505. "source": "https://git.drupalcode.org/project/config_devel"
  2506. }
  2507. },
  2508. {
  2509. "name": "drupal/config_filter",
  2510. "version": "1.4.0",
  2511. "source": {
  2512. "type": "git",
  2513. "url": "https://git.drupalcode.org/project/config_filter.git",
  2514. "reference": "8.x-1.4"
  2515. },
  2516. "dist": {
  2517. "type": "zip",
  2518. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.4.zip",
  2519. "reference": "8.x-1.4",
  2520. "shasum": "4b2b7f4dfc8358212f9e25f63dcc77cc2c1dcf6c"
  2521. },
  2522. "require": {
  2523. "drupal/core": "~8.0"
  2524. },
  2525. "suggest": {
  2526. "drupal/config_split": "Split site configuration for different environments."
  2527. },
  2528. "type": "drupal-module",
  2529. "extra": {
  2530. "branch-alias": {
  2531. "dev-1.x": "1.x-dev"
  2532. },
  2533. "drupal": {
  2534. "version": "8.x-1.4",
  2535. "datestamp": "1542184982",
  2536. "security-coverage": {
  2537. "status": "covered",
  2538. "message": "Covered by Drupal's security advisory policy"
  2539. }
  2540. }
  2541. },
  2542. "notification-url": "https://packages.drupal.org/8/downloads",
  2543. "license": [
  2544. "GPL-2.0+"
  2545. ],
  2546. "authors": [
  2547. {
  2548. "name": "Fabian Bircher",
  2549. "homepage": "https://www.drupal.org/u/bircher",
  2550. "email": "opensource@fabianbircher.com",
  2551. "role": "Maintainer"
  2552. },
  2553. {
  2554. "name": "Nuvole Web",
  2555. "homepage": "http://nuvole.org",
  2556. "email": "info@nuvole.org",
  2557. "role": "Maintainer"
  2558. },
  2559. {
  2560. "name": "pescetti",
  2561. "homepage": "https://www.drupal.org/user/436244"
  2562. }
  2563. ],
  2564. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2565. "homepage": "https://www.drupal.org/project/config_filter",
  2566. "keywords": [
  2567. "Drupal",
  2568. "configuration",
  2569. "configuration management"
  2570. ],
  2571. "support": {
  2572. "source": "http://cgit.drupalcode.org/config_filter",
  2573. "issues": "https://www.drupal.org/project/issues/config_filter",
  2574. "irc": "irc://irc.freenode.org/drupal-contribute"
  2575. }
  2576. },
  2577. {
  2578. "name": "drupal/config_ignore",
  2579. "version": "2.1.0",
  2580. "source": {
  2581. "type": "git",
  2582. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2583. "reference": "8.x-2.1"
  2584. },
  2585. "dist": {
  2586. "type": "zip",
  2587. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2588. "reference": "8.x-2.1",
  2589. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2590. },
  2591. "require": {
  2592. "drupal/config_filter": "1.*",
  2593. "drupal/core": "~8.0"
  2594. },
  2595. "type": "drupal-module",
  2596. "extra": {
  2597. "branch-alias": {
  2598. "dev-2.x": "2.x-dev"
  2599. },
  2600. "drupal": {
  2601. "version": "8.x-2.1",
  2602. "datestamp": "1507706044",
  2603. "security-coverage": {
  2604. "status": "covered",
  2605. "message": "Covered by Drupal's security advisory policy"
  2606. }
  2607. }
  2608. },
  2609. "notification-url": "https://packages.drupal.org/8/downloads",
  2610. "license": [
  2611. "GPL-2.0+"
  2612. ],
  2613. "authors": [
  2614. {
  2615. "name": "Tommy Lynge Jørgensen",
  2616. "homepage": "https://www.drupal.org/u/tlyngej",
  2617. "email": "tlyngej@gmail.com",
  2618. "role": "Maintainer"
  2619. },
  2620. {
  2621. "name": "Fabian Bircher",
  2622. "homepage": "https://www.drupal.org/u/bircher",
  2623. "role": "Maintainer"
  2624. }
  2625. ],
  2626. "description": "Ignore certain configuration during import.",
  2627. "homepage": "http://drupal.org/project/config_ignore",
  2628. "support": {
  2629. "source": "http://cgit.drupalcode.org/config_ignore",
  2630. "issues": "http://drupal.org/project/config_ignore",
  2631. "irc": "irc://irc.freenode.org/drupal-contribute"
  2632. }
  2633. },
  2634. {
  2635. "name": "drupal/config_update",
  2636. "version": "1.6.0",
  2637. "source": {
  2638. "type": "git",
  2639. "url": "https://git.drupalcode.org/project/config_update.git",
  2640. "reference": "8.x-1.6"
  2641. },
  2642. "dist": {
  2643. "type": "zip",
  2644. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2645. "reference": "8.x-1.6",
  2646. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2647. },
  2648. "require": {
  2649. "drupal/core": "*"
  2650. },
  2651. "type": "drupal-module",
  2652. "extra": {
  2653. "branch-alias": {
  2654. "dev-1.x": "1.x-dev"
  2655. },
  2656. "drupal": {
  2657. "version": "8.x-1.6",
  2658. "datestamp": "1545090480",
  2659. "security-coverage": {
  2660. "status": "covered",
  2661. "message": "Covered by Drupal's security advisory policy"
  2662. }
  2663. }
  2664. },
  2665. "notification-url": "https://packages.drupal.org/8/downloads",
  2666. "license": [
  2667. "GPL-2.0-or-later"
  2668. ],
  2669. "authors": [
  2670. {
  2671. "name": "jhodgdon",
  2672. "homepage": "https://www.drupal.org/user/155601"
  2673. },
  2674. {
  2675. "name": "nedjo",
  2676. "homepage": "https://www.drupal.org/user/4481"
  2677. }
  2678. ],
  2679. "description": "Provides basic revert and update functionality for other modules",
  2680. "homepage": "https://www.drupal.org/project/config_update",
  2681. "support": {
  2682. "source": "https://git.drupalcode.org/project/config_update"
  2683. }
  2684. },
  2685. {
  2686. "name": "drupal/console",
  2687. "version": "1.8.0",
  2688. "source": {
  2689. "type": "git",
  2690. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2691. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  2692. },
  2693. "dist": {
  2694. "type": "zip",
  2695. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2696. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2697. "shasum": ""
  2698. },
  2699. "require": {
  2700. "alchemy/zippy": "0.4.3",
  2701. "composer/installers": "~1.0",
  2702. "doctrine/annotations": "^1.2",
  2703. "doctrine/collections": "^1.3",
  2704. "drupal/console-core": "1.8.0",
  2705. "drupal/console-extend-plugin": "~0",
  2706. "guzzlehttp/guzzle": "~6.1",
  2707. "php": "^5.5.9 || ^7.0",
  2708. "psy/psysh": "0.6.* || ~0.8",
  2709. "symfony/css-selector": "~2.8|~3.0",
  2710. "symfony/dom-crawler": "~2.8|~3.0",
  2711. "symfony/http-foundation": "~2.8|~3.0"
  2712. },
  2713. "suggest": {
  2714. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  2715. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  2716. },
  2717. "bin": [
  2718. "bin/drupal"
  2719. ],
  2720. "type": "library",
  2721. "autoload": {
  2722. "psr-4": {
  2723. "Drupal\\Console\\": "src"
  2724. }
  2725. },
  2726. "notification-url": "https://packagist.org/downloads/",
  2727. "license": [
  2728. "GPL-2.0-or-later"
  2729. ],
  2730. "authors": [
  2731. {
  2732. "name": "David Flores",
  2733. "email": "dmousex@gmail.com",
  2734. "homepage": "http://dmouse.net"
  2735. },
  2736. {
  2737. "name": "Jesus Manuel Olivas",
  2738. "email": "jesus.olivas@gmail.com",
  2739. "homepage": "http://jmolivas.com"
  2740. },
  2741. {
  2742. "name": "Eduardo Garcia",
  2743. "email": "enzo@enzolutions.com",
  2744. "homepage": "http://enzolutions.com/"
  2745. },
  2746. {
  2747. "name": "Omar Aguirre",
  2748. "email": "omersguchigu@gmail.com"
  2749. },
  2750. {
  2751. "name": "Drupal Console Contributors",
  2752. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  2753. }
  2754. ],
  2755. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  2756. "homepage": "http://drupalconsole.com/",
  2757. "keywords": [
  2758. "console",
  2759. "development",
  2760. "drupal",
  2761. "symfony"
  2762. ],
  2763. "time": "2018-03-21T20:50:16+00:00"
  2764. },
  2765. {
  2766. "name": "drupal/console-core",
  2767. "version": "1.8.0",
  2768. "source": {
  2769. "type": "git",
  2770. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  2771. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  2772. },
  2773. "dist": {
  2774. "type": "zip",
  2775. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  2776. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  2777. "shasum": ""
  2778. },
  2779. "require": {
  2780. "dflydev/dot-access-configuration": "^1.0",
  2781. "drupal/console-en": "1.8.0",
  2782. "php": "^5.5.9 || ^7.0",
  2783. "stecman/symfony-console-completion": "~0.7",
  2784. "symfony/config": "~2.8|~3.0",
  2785. "symfony/console": "~2.8|~3.0",
  2786. "symfony/debug": "~2.8|~3.0",
  2787. "symfony/dependency-injection": "~2.8|~3.0",
  2788. "symfony/event-dispatcher": "~2.8|~3.0",
  2789. "symfony/filesystem": "~2.8|~3.0",
  2790. "symfony/finder": "~2.8|~3.0",
  2791. "symfony/process": "~2.8|~3.0",
  2792. "symfony/translation": "~2.8|~3.0",
  2793. "symfony/yaml": "~2.8|~3.0",
  2794. "twig/twig": "^1.23.1",
  2795. "webflo/drupal-finder": "^1.0",
  2796. "webmozart/path-util": "^2.3"
  2797. },
  2798. "type": "library",
  2799. "autoload": {
  2800. "files": [
  2801. "src/functions.php"
  2802. ],
  2803. "psr-4": {
  2804. "Drupal\\Console\\Core\\": "src"
  2805. }
  2806. },
  2807. "notification-url": "https://packagist.org/downloads/",
  2808. "license": [
  2809. "GPL-2.0-or-later"
  2810. ],
  2811. "authors": [
  2812. {
  2813. "name": "David Flores",
  2814. "email": "dmousex@gmail.com",
  2815. "homepage": "http://dmouse.net"
  2816. },
  2817. {
  2818. "name": "Jesus Manuel Olivas",
  2819. "email": "jesus.olivas@gmail.com",
  2820. "homepage": "http://jmolivas.com"
  2821. },
  2822. {
  2823. "name": "Drupal Console Contributors",
  2824. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2825. },
  2826. {
  2827. "name": "Eduardo Garcia",
  2828. "email": "enzo@enzolutions.com",
  2829. "homepage": "http://enzolutions.com/"
  2830. },
  2831. {
  2832. "name": "Omar Aguirre",
  2833. "email": "omersguchigu@gmail.com"
  2834. }
  2835. ],
  2836. "description": "Drupal Console Core",
  2837. "homepage": "http://drupalconsole.com/",
  2838. "keywords": [
  2839. "console",
  2840. "development",
  2841. "drupal",
  2842. "symfony"
  2843. ],
  2844. "time": "2018-03-21T19:33:23+00:00"
  2845. },
  2846. {
  2847. "name": "drupal/console-en",
  2848. "version": "1.8.0",
  2849. "source": {
  2850. "type": "git",
  2851. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  2852. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  2853. },
  2854. "dist": {
  2855. "type": "zip",
  2856. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  2857. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  2858. "shasum": ""
  2859. },
  2860. "type": "drupal-console-language",
  2861. "notification-url": "https://packagist.org/downloads/",
  2862. "license": [
  2863. "GPL-2.0-or-later"
  2864. ],
  2865. "authors": [
  2866. {
  2867. "name": "David Flores",
  2868. "email": "dmousex@gmail.com",
  2869. "homepage": "http://dmouse.net"
  2870. },
  2871. {
  2872. "name": "Jesus Manuel Olivas",
  2873. "email": "jesus.olivas@gmail.com",
  2874. "homepage": "http://jmolivas.com"
  2875. },
  2876. {
  2877. "name": "Drupal Console Contributors",
  2878. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  2879. },
  2880. {
  2881. "name": "Eduardo Garcia",
  2882. "email": "enzo@enzolutions.com",
  2883. "homepage": "http://enzolutions.com/"
  2884. },
  2885. {
  2886. "name": "Omar Aguirre",
  2887. "email": "omersguchigu@gmail.com"
  2888. }
  2889. ],
  2890. "description": "Drupal Console English Language",
  2891. "homepage": "http://drupalconsole.com/",
  2892. "keywords": [
  2893. "console",
  2894. "development",
  2895. "drupal",
  2896. "symfony"
  2897. ],
  2898. "time": "2018-03-21T19:16:27+00:00"
  2899. },
  2900. {
  2901. "name": "drupal/console-extend-plugin",
  2902. "version": "0.9.2",
  2903. "source": {
  2904. "type": "git",
  2905. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  2906. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  2907. },
  2908. "dist": {
  2909. "type": "zip",
  2910. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  2911. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  2912. "shasum": ""
  2913. },
  2914. "require": {
  2915. "composer-plugin-api": "^1.0",
  2916. "symfony/finder": "~2.7|~3.0",
  2917. "symfony/yaml": "~2.7|~3.0"
  2918. },
  2919. "type": "composer-plugin",
  2920. "extra": {
  2921. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  2922. },
  2923. "autoload": {
  2924. "psr-4": {
  2925. "Drupal\\Console\\Composer\\Plugin\\": "src"
  2926. }
  2927. },
  2928. "notification-url": "https://packagist.org/downloads/",
  2929. "license": [
  2930. "GPL-2.0+"
  2931. ],
  2932. "authors": [
  2933. {
  2934. "name": "Jesus Manuel Olivas",
  2935. "email": "jesus.olivas@gmail.com"
  2936. }
  2937. ],
  2938. "description": "Drupal Console Extend Plugin",
  2939. "time": "2017-07-28T17:11:54+00:00"
  2940. },
  2941. {
  2942. "name": "drupal/context",
  2943. "version": "4.0.0-beta2",
  2944. "source": {
  2945. "type": "git",
  2946. "url": "https://git.drupalcode.org/project/context.git",
  2947. "reference": "8.x-4.0-beta2"
  2948. },
  2949. "dist": {
  2950. "type": "zip",
  2951. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  2952. "reference": "8.x-4.0-beta2",
  2953. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  2954. },
  2955. "require": {
  2956. "drupal/core": "~8.0"
  2957. },
  2958. "type": "drupal-module",
  2959. "extra": {
  2960. "branch-alias": {
  2961. "dev-4.x": "4.x-dev"
  2962. },
  2963. "drupal": {
  2964. "version": "8.x-4.0-beta2",
  2965. "datestamp": "1505378944",
  2966. "security-coverage": {
  2967. "status": "not-covered",
  2968. "message": "Beta releases are not covered by Drupal security advisories."
  2969. }
  2970. }
  2971. },
  2972. "notification-url": "https://packages.drupal.org/8/downloads",
  2973. "license": [
  2974. "MIT"
  2975. ],
  2976. "authors": [
  2977. {
  2978. "name": "Christoffer Palm",
  2979. "homepage": "http://www.oddhill.se/",
  2980. "email": "christoffer.palm@oddhill.se",
  2981. "role": "Developer"
  2982. },
  2983. {
  2984. "name": "Steven Jones",
  2985. "homepage": "https://www.drupal.org/user/99644"
  2986. },
  2987. {
  2988. "name": "alex_b",
  2989. "homepage": "https://www.drupal.org/user/53995"
  2990. },
  2991. {
  2992. "name": "boshtian",
  2993. "homepage": "https://www.drupal.org/user/1773456"
  2994. },
  2995. {
  2996. "name": "colan",
  2997. "homepage": "https://www.drupal.org/user/58704"
  2998. },
  2999. {
  3000. "name": "emanaton",
  3001. "homepage": "https://www.drupal.org/user/120853"
  3002. },
  3003. {
  3004. "name": "febbraro",
  3005. "homepage": "https://www.drupal.org/user/43670"
  3006. },
  3007. {
  3008. "name": "fizk",
  3009. "homepage": "https://www.drupal.org/user/473174"
  3010. },
  3011. {
  3012. "name": "hass",
  3013. "homepage": "https://www.drupal.org/user/85918"
  3014. },
  3015. {
  3016. "name": "hefox",
  3017. "homepage": "https://www.drupal.org/user/426416"
  3018. },
  3019. {
  3020. "name": "hyrcan",
  3021. "homepage": "https://www.drupal.org/user/26618"
  3022. },
  3023. {
  3024. "name": "jmiccolis",
  3025. "homepage": "https://www.drupal.org/user/31731"
  3026. },
  3027. {
  3028. "name": "nedjo",
  3029. "homepage": "https://www.drupal.org/user/4481"
  3030. },
  3031. {
  3032. "name": "tekante",
  3033. "homepage": "https://www.drupal.org/user/640024"
  3034. },
  3035. {
  3036. "name": "yhahn",
  3037. "homepage": "https://www.drupal.org/user/264833"
  3038. }
  3039. ],
  3040. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3041. "homepage": "https://github.com/oddhill/context",
  3042. "keywords": [
  3043. "Drupal",
  3044. "block",
  3045. "conditions",
  3046. "context",
  3047. "visibility"
  3048. ],
  3049. "support": {
  3050. "source": "https://github.com/oddhill/context",
  3051. "issues": "https://github.com/oddhill/context/issues",
  3052. "docs": "https://github.com/oddhill/context"
  3053. }
  3054. },
  3055. {
  3056. "name": "drupal/core",
  3057. "version": "8.6.15",
  3058. "source": {
  3059. "type": "git",
  3060. "url": "https://github.com/drupal/core.git",
  3061. "reference": "936456cdeac25c6bbd2f55b0d587239c6a81ba86"
  3062. },
  3063. "dist": {
  3064. "type": "zip",
  3065. "url": "https://api.github.com/repos/drupal/core/zipball/936456cdeac25c6bbd2f55b0d587239c6a81ba86",
  3066. "reference": "936456cdeac25c6bbd2f55b0d587239c6a81ba86",
  3067. "shasum": ""
  3068. },
  3069. "require": {
  3070. "asm89/stack-cors": "^1.1",
  3071. "composer/semver": "^1.0",
  3072. "doctrine/annotations": "^1.2",
  3073. "doctrine/common": "^2.5",
  3074. "easyrdf/easyrdf": "^0.9",
  3075. "egulias/email-validator": "^1.2",
  3076. "ext-date": "*",
  3077. "ext-dom": "*",
  3078. "ext-filter": "*",
  3079. "ext-gd": "*",
  3080. "ext-hash": "*",
  3081. "ext-json": "*",
  3082. "ext-pcre": "*",
  3083. "ext-pdo": "*",
  3084. "ext-session": "*",
  3085. "ext-simplexml": "*",
  3086. "ext-spl": "*",
  3087. "ext-tokenizer": "*",
  3088. "ext-xml": "*",
  3089. "guzzlehttp/guzzle": "^6.2.1",
  3090. "masterminds/html5": "^2.1",
  3091. "paragonie/random_compat": "^1.0|^2.0",
  3092. "php": "^5.5.9|>=7.0.8",
  3093. "stack/builder": "^1.0",
  3094. "symfony-cmf/routing": "^1.4",
  3095. "symfony/class-loader": "~3.4.0",
  3096. "symfony/console": "~3.4.0",
  3097. "symfony/dependency-injection": "~3.4.26",
  3098. "symfony/event-dispatcher": "~3.4.0",
  3099. "symfony/http-foundation": "~3.4.26",
  3100. "symfony/http-kernel": "~3.4.14",
  3101. "symfony/polyfill-iconv": "^1.0",
  3102. "symfony/process": "~3.4.0",
  3103. "symfony/psr-http-message-bridge": "^1.0",
  3104. "symfony/routing": "~3.4.0",
  3105. "symfony/serializer": "~3.4.0",
  3106. "symfony/translation": "~3.4.0",
  3107. "symfony/validator": "~3.4.0",
  3108. "symfony/yaml": "~3.4.5",
  3109. "twig/twig": "^1.38.2",
  3110. "typo3/phar-stream-wrapper": "^2.0.1",
  3111. "zendframework/zend-diactoros": "^1.1",
  3112. "zendframework/zend-feed": "^2.4"
  3113. },
  3114. "conflict": {
  3115. "drush/drush": "<8.1.10"
  3116. },
  3117. "replace": {
  3118. "drupal/action": "self.version",
  3119. "drupal/aggregator": "self.version",
  3120. "drupal/automated_cron": "self.version",
  3121. "drupal/ban": "self.version",
  3122. "drupal/bartik": "self.version",
  3123. "drupal/basic_auth": "self.version",
  3124. "drupal/big_pipe": "self.version",
  3125. "drupal/block": "self.version",
  3126. "drupal/block_content": "self.version",
  3127. "drupal/block_place": "self.version",
  3128. "drupal/book": "self.version",
  3129. "drupal/breakpoint": "self.version",
  3130. "drupal/ckeditor": "self.version",
  3131. "drupal/classy": "self.version",
  3132. "drupal/color": "self.version",
  3133. "drupal/comment": "self.version",
  3134. "drupal/config": "self.version",
  3135. "drupal/config_translation": "self.version",
  3136. "drupal/contact": "self.version",
  3137. "drupal/content_moderation": "self.version",
  3138. "drupal/content_translation": "self.version",
  3139. "drupal/contextual": "self.version",
  3140. "drupal/core-annotation": "self.version",
  3141. "drupal/core-assertion": "self.version",
  3142. "drupal/core-bridge": "self.version",
  3143. "drupal/core-class-finder": "self.version",
  3144. "drupal/core-datetime": "self.version",
  3145. "drupal/core-dependency-injection": "self.version",
  3146. "drupal/core-diff": "self.version",
  3147. "drupal/core-discovery": "self.version",
  3148. "drupal/core-event-dispatcher": "self.version",
  3149. "drupal/core-file-cache": "self.version",
  3150. "drupal/core-filesystem": "self.version",
  3151. "drupal/core-gettext": "self.version",
  3152. "drupal/core-graph": "self.version",
  3153. "drupal/core-http-foundation": "self.version",
  3154. "drupal/core-php-storage": "self.version",
  3155. "drupal/core-plugin": "self.version",
  3156. "drupal/core-proxy-builder": "self.version",
  3157. "drupal/core-render": "self.version",
  3158. "drupal/core-serialization": "self.version",
  3159. "drupal/core-transliteration": "self.version",
  3160. "drupal/core-utility": "self.version",
  3161. "drupal/core-uuid": "self.version",
  3162. "drupal/datetime": "self.version",
  3163. "drupal/datetime_range": "self.version",
  3164. "drupal/dblog": "self.version",
  3165. "drupal/dynamic_page_cache": "self.version",
  3166. "drupal/editor": "self.version",
  3167. "drupal/entity_reference": "self.version",
  3168. "drupal/field": "self.version",
  3169. "drupal/field_layout": "self.version",
  3170. "drupal/field_ui": "self.version",
  3171. "drupal/file": "self.version",
  3172. "drupal/filter": "self.version",
  3173. "drupal/forum": "self.version",
  3174. "drupal/hal": "self.version",
  3175. "drupal/help": "self.version",
  3176. "drupal/history": "self.version",
  3177. "drupal/image": "self.version",
  3178. "drupal/inline_form_errors": "self.version",
  3179. "drupal/language": "self.version",
  3180. "drupal/layout_builder": "self.version",
  3181. "drupal/layout_discovery": "self.version",
  3182. "drupal/link": "self.version",
  3183. "drupal/locale": "self.version",
  3184. "drupal/media": "self.version",
  3185. "drupal/media_library": "self.version",
  3186. "drupal/menu_link_content": "self.version",
  3187. "drupal/menu_ui": "self.version",
  3188. "drupal/migrate": "self.version",
  3189. "drupal/migrate_drupal": "self.version",
  3190. "drupal/migrate_drupal_multilingual": "self.version",
  3191. "drupal/migrate_drupal_ui": "self.version",
  3192. "drupal/minimal": "self.version",
  3193. "drupal/node": "self.version",
  3194. "drupal/options": "self.version",
  3195. "drupal/page_cache": "self.version",
  3196. "drupal/path": "self.version",
  3197. "drupal/quickedit": "self.version",
  3198. "drupal/rdf": "self.version",
  3199. "drupal/responsive_image": "self.version",
  3200. "drupal/rest": "self.version",
  3201. "drupal/search": "self.version",
  3202. "drupal/serialization": "self.version",
  3203. "drupal/settings_tray": "self.version",
  3204. "drupal/seven": "self.version",
  3205. "drupal/shortcut": "self.version",
  3206. "drupal/simpletest": "self.version",
  3207. "drupal/standard": "self.version",
  3208. "drupal/stark": "self.version",
  3209. "drupal/statistics": "self.version",
  3210. "drupal/syslog": "self.version",
  3211. "drupal/system": "self.version",
  3212. "drupal/taxonomy": "self.version",
  3213. "drupal/telephone": "self.version",
  3214. "drupal/text": "self.version",
  3215. "drupal/toolbar": "self.version",
  3216. "drupal/tour": "self.version",
  3217. "drupal/tracker": "self.version",
  3218. "drupal/update": "self.version",
  3219. "drupal/user": "self.version",
  3220. "drupal/views": "self.version",
  3221. "drupal/views_ui": "self.version",
  3222. "drupal/workflows": "self.version",
  3223. "drupal/workspaces": "self.version"
  3224. },
  3225. "require-dev": {
  3226. "behat/mink": "1.7.x-dev",
  3227. "behat/mink-goutte-driver": "^1.2",
  3228. "behat/mink-selenium2-driver": "1.3.x-dev",
  3229. "drupal/coder": "^8.2.12",
  3230. "jcalderonzumba/gastonjs": "^1.0.2",
  3231. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3232. "mikey179/vfsstream": "^1.2",
  3233. "phpspec/prophecy": "^1.7",
  3234. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3235. "symfony/css-selector": "^3.4.0",
  3236. "symfony/debug": "^3.4.0",
  3237. "symfony/phpunit-bridge": "^3.4.3"
  3238. },
  3239. "type": "drupal-core",
  3240. "extra": {
  3241. "merge-plugin": {
  3242. "require": [
  3243. "core/lib/Drupal/Component/Annotation/composer.json",
  3244. "core/lib/Drupal/Component/Assertion/composer.json",
  3245. "core/lib/Drupal/Component/Bridge/composer.json",
  3246. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3247. "core/lib/Drupal/Component/Datetime/composer.json",
  3248. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3249. "core/lib/Drupal/Component/Diff/composer.json",
  3250. "core/lib/Drupal/Component/Discovery/composer.json",
  3251. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3252. "core/lib/Drupal/Component/FileCache/composer.json",
  3253. "core/lib/Drupal/Component/FileSystem/composer.json",
  3254. "core/lib/Drupal/Component/Gettext/composer.json",
  3255. "core/lib/Drupal/Component/Graph/composer.json",
  3256. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3257. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3258. "core/lib/Drupal/Component/Plugin/composer.json",
  3259. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3260. "core/lib/Drupal/Component/Render/composer.json",
  3261. "core/lib/Drupal/Component/Serialization/composer.json",
  3262. "core/lib/Drupal/Component/Transliteration/composer.json",
  3263. "core/lib/Drupal/Component/Utility/composer.json",
  3264. "core/lib/Drupal/Component/Uuid/composer.json"
  3265. ],
  3266. "recurse": false,
  3267. "replace": false,
  3268. "merge-extra": false
  3269. }
  3270. },
  3271. "autoload": {
  3272. "psr-4": {
  3273. "Drupal\\Core\\": "lib/Drupal/Core",
  3274. "Drupal\\Component\\": "lib/Drupal/Component",
  3275. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3276. },
  3277. "classmap": [
  3278. "lib/Drupal.php",
  3279. "lib/Drupal/Component/Utility/Timer.php",
  3280. "lib/Drupal/Component/Utility/Unicode.php",
  3281. "lib/Drupal/Core/Database/Database.php",
  3282. "lib/Drupal/Core/DrupalKernel.php",
  3283. "lib/Drupal/Core/DrupalKernelInterface.php",
  3284. "lib/Drupal/Core/Site/Settings.php"
  3285. ]
  3286. },
  3287. "notification-url": "https://packagist.org/downloads/",
  3288. "license": [
  3289. "GPL-2.0-or-later"
  3290. ],
  3291. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3292. "time": "2019-04-17T20:00:11+00:00"
  3293. },
  3294. {
  3295. "name": "drupal/ctools",
  3296. "version": "3.2.0",
  3297. "source": {
  3298. "type": "git",
  3299. "url": "https://git.drupalcode.org/project/ctools.git",
  3300. "reference": "8.x-3.2"
  3301. },
  3302. "dist": {
  3303. "type": "zip",
  3304. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip",
  3305. "reference": "8.x-3.2",
  3306. "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091"
  3307. },
  3308. "require": {
  3309. "drupal/core": "^8.5"
  3310. },
  3311. "type": "drupal-module",
  3312. "extra": {
  3313. "branch-alias": {
  3314. "dev-3.x": "3.x-dev"
  3315. },
  3316. "drupal": {
  3317. "version": "8.x-3.2",
  3318. "datestamp": "1550728386",
  3319. "security-coverage": {
  3320. "status": "covered",
  3321. "message": "Covered by Drupal's security advisory policy"
  3322. }
  3323. }
  3324. },
  3325. "notification-url": "https://packages.drupal.org/8/downloads",
  3326. "license": [
  3327. "GPL-2.0+"
  3328. ],
  3329. "authors": [
  3330. {
  3331. "name": "Kris Vanderwater (EclipseGc)",
  3332. "homepage": "https://www.drupal.org/u/eclipsegc",
  3333. "role": "Maintainer"
  3334. },
  3335. {
  3336. "name": "Jakob Perry (japerry)",
  3337. "homepage": "https://www.drupal.org/u/japerry",
  3338. "role": "Maintainer"
  3339. },
  3340. {
  3341. "name": "Tim Plunkett (tim.plunkett)",
  3342. "homepage": "https://www.drupal.org/u/timplunkett",
  3343. "role": "Maintainer"
  3344. },
  3345. {
  3346. "name": "James Gilliland (neclimdul)",
  3347. "homepage": "https://www.drupal.org/u/neclimdul",
  3348. "role": "Maintainer"
  3349. },
  3350. {
  3351. "name": "Daniel Wehner (dawehner)",
  3352. "homepage": "https://www.drupal.org/u/dawehner",
  3353. "role": "Maintainer"
  3354. },
  3355. {
  3356. "name": "joelpittet",
  3357. "homepage": "https://www.drupal.org/user/160302"
  3358. },
  3359. {
  3360. "name": "merlinofchaos",
  3361. "homepage": "https://www.drupal.org/user/26979"
  3362. },
  3363. {
  3364. "name": "neclimdul",
  3365. "homepage": "https://www.drupal.org/user/48673"
  3366. },
  3367. {
  3368. "name": "sdboyer",
  3369. "homepage": "https://www.drupal.org/user/146719"
  3370. },
  3371. {
  3372. "name": "sun",
  3373. "homepage": "https://www.drupal.org/user/54136"
  3374. },
  3375. {
  3376. "name": "tim.plunkett",
  3377. "homepage": "https://www.drupal.org/user/241634"
  3378. }
  3379. ],
  3380. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3381. "homepage": "https://www.drupal.org/project/ctools",
  3382. "support": {
  3383. "source": "http://cgit.drupalcode.org/ctools",
  3384. "issues": "https://www.drupal.org/project/issues/ctools"
  3385. }
  3386. },
  3387. {
  3388. "name": "drupal/date_range_formatter",
  3389. "version": "3.1.0",
  3390. "source": {
  3391. "type": "git",
  3392. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3393. "reference": "8.x-3.1"
  3394. },
  3395. "dist": {
  3396. "type": "zip",
  3397. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3398. "reference": "8.x-3.1",
  3399. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3400. },
  3401. "require": {
  3402. "drupal/core": "*"
  3403. },
  3404. "type": "drupal-module",
  3405. "extra": {
  3406. "branch-alias": {
  3407. "dev-3.x": "3.x-dev"
  3408. },
  3409. "drupal": {
  3410. "version": "8.x-3.1",
  3411. "datestamp": "1502454544",
  3412. "security-coverage": {
  3413. "status": "covered",
  3414. "message": "Covered by Drupal's security advisory policy"
  3415. }
  3416. }
  3417. },
  3418. "notification-url": "https://packages.drupal.org/8/downloads",
  3419. "license": [
  3420. "GPL-2.0-or-later"
  3421. ],
  3422. "authors": [
  3423. {
  3424. "name": "maximpodorov",
  3425. "homepage": "https://www.drupal.org/user/515310"
  3426. },
  3427. {
  3428. "name": "sudishth",
  3429. "homepage": "https://www.drupal.org/user/1440562"
  3430. }
  3431. ],
  3432. "description": "Formats date ranges.",
  3433. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3434. "support": {
  3435. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3436. }
  3437. },
  3438. {
  3439. "name": "drupal/devel",
  3440. "version": "2.1.0",
  3441. "source": {
  3442. "type": "git",
  3443. "url": "https://git.drupalcode.org/project/devel.git",
  3444. "reference": "8.x-2.1"
  3445. },
  3446. "dist": {
  3447. "type": "zip",
  3448. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3449. "reference": "8.x-2.1",
  3450. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3451. },
  3452. "require": {
  3453. "drupal/core": "~8.0",
  3454. "symfony/var-dumper": "~2.7|^3|^4"
  3455. },
  3456. "type": "drupal-module",
  3457. "extra": {
  3458. "branch-alias": {
  3459. "dev-2.x": "2.x-dev"
  3460. },
  3461. "drupal": {
  3462. "version": "8.x-2.1",
  3463. "datestamp": "1556799496",
  3464. "security-coverage": {
  3465. "status": "covered",
  3466. "message": "Covered by Drupal's security advisory policy"
  3467. }
  3468. },
  3469. "drush": {
  3470. "services": {
  3471. "drush.services.yml": "^9"
  3472. }
  3473. }
  3474. },
  3475. "notification-url": "https://packages.drupal.org/8/downloads",
  3476. "license": [
  3477. "GPL-2.0+"
  3478. ],
  3479. "authors": [
  3480. {
  3481. "name": "Moshe Weitzman",
  3482. "homepage": "https://github.com/weitzman",
  3483. "email": "weitzman@tejasa.com",
  3484. "role": "Maintainer"
  3485. },
  3486. {
  3487. "name": "Hans Salvisberg",
  3488. "homepage": "https://www.drupal.org/u/salvis",
  3489. "email": "drupal@salvisberg.com",
  3490. "role": "Maintainer"
  3491. },
  3492. {
  3493. "name": "Luca Lusso",
  3494. "homepage": "https://www.drupal.org/u/lussoluca",
  3495. "role": "Maintainer"
  3496. },
  3497. {
  3498. "name": "Marco (willzyx)",
  3499. "homepage": "https://www.drupal.org/u/willzyx",
  3500. "role": "Maintainer"
  3501. },
  3502. {
  3503. "name": "See contributors",
  3504. "homepage": "https://www.drupal.org/node/3236/committers"
  3505. },
  3506. {
  3507. "name": "salvis",
  3508. "homepage": "https://www.drupal.org/user/82964"
  3509. },
  3510. {
  3511. "name": "willzyx",
  3512. "homepage": "https://www.drupal.org/user/1043862"
  3513. }
  3514. ],
  3515. "description": "Various blocks, pages, and functions for developers.",
  3516. "homepage": "http://drupal.org/project/devel",
  3517. "support": {
  3518. "source": "http://cgit.drupalcode.org/devel",
  3519. "issues": "http://drupal.org/project/devel",
  3520. "irc": "irc://irc.freenode.org/drupal-contribute"
  3521. }
  3522. },
  3523. {
  3524. "name": "drupal/domain",
  3525. "version": "1.0.0-alpha15",
  3526. "source": {
  3527. "type": "git",
  3528. "url": "https://git.drupalcode.org/project/domain.git",
  3529. "reference": "8.x-1.0-alpha15"
  3530. },
  3531. "dist": {
  3532. "type": "zip",
  3533. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha15.zip",
  3534. "reference": "8.x-1.0-alpha15",
  3535. "shasum": "e981d5224bd7883776c6729135b876141f0437d3"
  3536. },
  3537. "require": {
  3538. "drupal/core": "^8.5"
  3539. },
  3540. "require-dev": {
  3541. "drupal/domain_access": "*"
  3542. },
  3543. "type": "drupal-module",
  3544. "extra": {
  3545. "branch-alias": {
  3546. "dev-1.x": "1.x-dev"
  3547. },
  3548. "drupal": {
  3549. "version": "8.x-1.0-alpha15",
  3550. "datestamp": "1550763184",
  3551. "security-coverage": {
  3552. "status": "not-covered",
  3553. "message": "Alpha releases are not covered by Drupal security advisories."
  3554. }
  3555. }
  3556. },
  3557. "notification-url": "https://packages.drupal.org/8/downloads",
  3558. "license": [
  3559. "GPL-2.0-or-later"
  3560. ],
  3561. "authors": [
  3562. {
  3563. "name": "agentrickard",
  3564. "homepage": "https://www.drupal.org/user/20975"
  3565. },
  3566. {
  3567. "name": "nonsie",
  3568. "homepage": "https://www.drupal.org/user/29899"
  3569. }
  3570. ],
  3571. "description": "Creates domain records within a Drupal installation.",
  3572. "homepage": "https://www.drupal.org/project/domain",
  3573. "support": {
  3574. "source": "https://git.drupalcode.org/project/domain"
  3575. }
  3576. },
  3577. {
  3578. "name": "drupal/domain_access",
  3579. "version": "1.0.0-alpha15",
  3580. "require": {
  3581. "drupal/core": "*",
  3582. "drupal/domain": "self.version"
  3583. },
  3584. "type": "metapackage",
  3585. "extra": {
  3586. "branch-alias": {
  3587. "dev-1.x": "1.x-dev"
  3588. },
  3589. "drupal": {
  3590. "version": "8.x-1.0-alpha15",
  3591. "datestamp": "1550763184",
  3592. "security-coverage": {
  3593. "status": "not-covered",
  3594. "message": "Alpha releases are not covered by Drupal security advisories."
  3595. }
  3596. }
  3597. },
  3598. "notification-url": "https://packages.drupal.org/8/downloads",
  3599. "license": [
  3600. "GPL-2.0-or-later"
  3601. ],
  3602. "authors": [
  3603. {
  3604. "name": "agentrickard",
  3605. "homepage": "https://www.drupal.org/user/20975"
  3606. },
  3607. {
  3608. "name": "nonsie",
  3609. "homepage": "https://www.drupal.org/user/29899"
  3610. }
  3611. ],
  3612. "description": "Domain-based access control for content.",
  3613. "homepage": "https://www.drupal.org/project/domain",
  3614. "support": {
  3615. "source": "https://git.drupalcode.org/project/domain"
  3616. }
  3617. },
  3618. {
  3619. "name": "drupal/domain_config",
  3620. "version": "1.0.0-alpha15",
  3621. "require": {
  3622. "drupal/core": "~8.0",
  3623. "drupal/domain": "self.version"
  3624. },
  3625. "type": "metapackage",
  3626. "extra": {
  3627. "branch-alias": {
  3628. "dev-1.x": "1.x-dev"
  3629. },
  3630. "drupal": {
  3631. "version": "8.x-1.0-alpha15",
  3632. "datestamp": "1550763184",
  3633. "security-coverage": {
  3634. "status": "not-covered",
  3635. "message": "Alpha releases are not covered by Drupal security advisories."
  3636. }
  3637. }
  3638. },
  3639. "notification-url": "https://packages.drupal.org/8/downloads",
  3640. "license": [
  3641. "GPL-2.0-or-later"
  3642. ],
  3643. "authors": [
  3644. {
  3645. "name": "agentrickard",
  3646. "homepage": "https://www.drupal.org/user/20975"
  3647. },
  3648. {
  3649. "name": "nonsie",
  3650. "homepage": "https://www.drupal.org/user/29899"
  3651. }
  3652. ],
  3653. "description": "Allows domain specific configuration.",
  3654. "homepage": "https://www.drupal.org/project/domain",
  3655. "support": {
  3656. "source": "https://git.drupalcode.org/project/domain"
  3657. }
  3658. },
  3659. {
  3660. "name": "drupal/domain_menu_access",
  3661. "version": "dev-1.x",
  3662. "source": {
  3663. "type": "git",
  3664. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3665. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  3666. },
  3667. "require": {
  3668. "drupal/core": "~8.0",
  3669. "drupal/domain": "^1",
  3670. "drupal/domain_access": "^1"
  3671. },
  3672. "type": "drupal-module",
  3673. "extra": {
  3674. "branch-alias": {
  3675. "dev-1.x": "1.x-dev"
  3676. },
  3677. "drupal": {
  3678. "version": "8.x-1.0-alpha2+3-dev",
  3679. "datestamp": "1551553085",
  3680. "security-coverage": {
  3681. "status": "not-covered",
  3682. "message": "Dev releases are not covered by Drupal security advisories."
  3683. }
  3684. }
  3685. },
  3686. "notification-url": "https://packages.drupal.org/8/downloads",
  3687. "license": [
  3688. "GPL-2.0+"
  3689. ],
  3690. "authors": [
  3691. {
  3692. "name": "Sebastien @Actualys",
  3693. "homepage": "https://www.drupal.org/user/380104"
  3694. },
  3695. {
  3696. "name": "maciej.zgadzaj",
  3697. "homepage": "https://www.drupal.org/user/271491"
  3698. },
  3699. {
  3700. "name": "pifagor",
  3701. "homepage": "https://www.drupal.org/user/2375692"
  3702. }
  3703. ],
  3704. "description": "Domain-based access control for menu link.",
  3705. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3706. "support": {
  3707. "source": "https://git.drupalcode.org/project/domain_menu_access"
  3708. },
  3709. "time": "2019-04-11T06:07:16+00:00"
  3710. },
  3711. {
  3712. "name": "drupal/domain_site_settings",
  3713. "version": "1.3.0",
  3714. "source": {
  3715. "type": "git",
  3716. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3717. "reference": "8.x-1.3"
  3718. },
  3719. "dist": {
  3720. "type": "zip",
  3721. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  3722. "reference": "8.x-1.3",
  3723. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  3724. },
  3725. "require": {
  3726. "drupal/core": "~8.0",
  3727. "drupal/domain": "*",
  3728. "drupal/domain_config": "*"
  3729. },
  3730. "type": "drupal-module",
  3731. "extra": {
  3732. "branch-alias": {
  3733. "dev-1.x": "1.x-dev"
  3734. },
  3735. "drupal": {
  3736. "version": "8.x-1.3",
  3737. "datestamp": "1537684980",
  3738. "security-coverage": {
  3739. "status": "covered",
  3740. "message": "Covered by Drupal's security advisory policy"
  3741. }
  3742. },
  3743. "patches_applied": {
  3744. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  3745. }
  3746. },
  3747. "notification-url": "https://packages.drupal.org/8/downloads",
  3748. "license": [
  3749. "GPL-2.0+"
  3750. ],
  3751. "authors": [
  3752. {
  3753. "name": "aloknarwaria",
  3754. "homepage": "https://www.drupal.org/user/906640"
  3755. }
  3756. ],
  3757. "description": "Basic Site Setting for Domains.",
  3758. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3759. "keywords": [
  3760. "Drupal"
  3761. ],
  3762. "support": {
  3763. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3764. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3765. }
  3766. },
  3767. {
  3768. "name": "drupal/email_registration",
  3769. "version": "1.0.0-rc6",
  3770. "source": {
  3771. "type": "git",
  3772. "url": "https://git.drupalcode.org/project/email_registration.git",
  3773. "reference": "8.x-1.0-rc6"
  3774. },
  3775. "dist": {
  3776. "type": "zip",
  3777. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc6.zip",
  3778. "reference": "8.x-1.0-rc6",
  3779. "shasum": "b004bc24b79faaa9e8b2fe59a04eaab02f44c363"
  3780. },
  3781. "require": {
  3782. "drupal/core": "*"
  3783. },
  3784. "type": "drupal-module",
  3785. "extra": {
  3786. "branch-alias": {
  3787. "dev-1.x": "1.x-dev"
  3788. },
  3789. "drupal": {
  3790. "version": "8.x-1.0-rc6",
  3791. "datestamp": "1545350880",
  3792. "security-coverage": {
  3793. "status": "not-covered",
  3794. "message": "RC releases are not covered by Drupal security advisories."
  3795. }
  3796. }
  3797. },
  3798. "notification-url": "https://packages.drupal.org/8/downloads",
  3799. "license": [
  3800. "GPL-2.0+"
  3801. ],
  3802. "authors": [
  3803. {
  3804. "name": "Greg Knaddison (greggles)",
  3805. "homepage": "https://www.drupal.org/u/greggles",
  3806. "role": "Maintainer"
  3807. },
  3808. {
  3809. "name": "Andrey Postnikov (andypost)",
  3810. "homepage": "https://www.drupal.org/u/andypost",
  3811. "role": "Maintainer"
  3812. },
  3813. {
  3814. "name": "Chris Herberte",
  3815. "homepage": "https://www.drupal.org/u/chris-herberte",
  3816. "role": "Maintainer"
  3817. },
  3818. {
  3819. "name": "Moshe Weitzman (moshe weitzman)",
  3820. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3821. "role": "Maintainer"
  3822. }
  3823. ],
  3824. "description": "Allows users to register with an email address as their username.",
  3825. "homepage": "https://www.drupal.org/project/email_registration",
  3826. "support": {
  3827. "source": "http://cgit.drupalcode.org/email_registration",
  3828. "issues": "http://drupal.org/project/issues/email_registration"
  3829. }
  3830. },
  3831. {
  3832. "name": "drupal/entity",
  3833. "version": "1.0.0-rc2",
  3834. "source": {
  3835. "type": "git",
  3836. "url": "https://git.drupalcode.org/project/entity.git",
  3837. "reference": "8.x-1.0-rc2"
  3838. },
  3839. "dist": {
  3840. "type": "zip",
  3841. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc2.zip",
  3842. "reference": "8.x-1.0-rc2",
  3843. "shasum": "616b4c095dc8cf67f318f2d5504aed1c4d6dd363"
  3844. },
  3845. "require": {
  3846. "drupal/core": "^8.6"
  3847. },
  3848. "type": "drupal-module",
  3849. "extra": {
  3850. "branch-alias": {
  3851. "dev-1.x": "1.x-dev"
  3852. },
  3853. "drupal": {
  3854. "version": "8.x-1.0-rc2",
  3855. "datestamp": "1553254684",
  3856. "security-coverage": {
  3857. "status": "not-covered",
  3858. "message": "RC releases are not covered by Drupal security advisories."
  3859. }
  3860. }
  3861. },
  3862. "notification-url": "https://packages.drupal.org/8/downloads",
  3863. "license": [
  3864. "GPL-2.0+"
  3865. ],
  3866. "authors": [
  3867. {
  3868. "name": "Berdir",
  3869. "homepage": "https://www.drupal.org/user/214652"
  3870. },
  3871. {
  3872. "name": "bojanz",
  3873. "homepage": "https://www.drupal.org/user/86106"
  3874. },
  3875. {
  3876. "name": "dawehner",
  3877. "homepage": "https://www.drupal.org/user/99340"
  3878. },
  3879. {
  3880. "name": "dixon_",
  3881. "homepage": "https://www.drupal.org/user/239911"
  3882. },
  3883. {
  3884. "name": "fago",
  3885. "homepage": "https://www.drupal.org/user/16747"
  3886. }
  3887. ],
  3888. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3889. "homepage": "http://drupal.org/project/entity",
  3890. "support": {
  3891. "source": "https://git.drupalcode.org/project/entity"
  3892. }
  3893. },
  3894. {
  3895. "name": "drupal/features",
  3896. "version": "3.8.0",
  3897. "source": {
  3898. "type": "git",
  3899. "url": "https://git.drupalcode.org/project/features.git",
  3900. "reference": "8.x-3.8"
  3901. },
  3902. "dist": {
  3903. "type": "zip",
  3904. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
  3905. "reference": "8.x-3.8",
  3906. "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
  3907. },
  3908. "require": {
  3909. "drupal/config_update": "^1.4",
  3910. "drupal/core": "*"
  3911. },
  3912. "type": "drupal-module",
  3913. "extra": {
  3914. "branch-alias": {
  3915. "dev-3.x": "3.x-dev"
  3916. },
  3917. "drupal": {
  3918. "version": "8.x-3.8",
  3919. "datestamp": "1536512284",
  3920. "security-coverage": {
  3921. "status": "covered",
  3922. "message": "Covered by Drupal's security advisory policy"
  3923. }
  3924. },
  3925. "drush": {
  3926. "services": {
  3927. "drush.services.yml": "^9"
  3928. }
  3929. }
  3930. },
  3931. "notification-url": "https://packages.drupal.org/8/downloads",
  3932. "license": [
  3933. "GPL-2.0+"
  3934. ],
  3935. "authors": [
  3936. {
  3937. "name": "dawehner",
  3938. "homepage": "https://www.drupal.org/user/99340"
  3939. },
  3940. {
  3941. "name": "e2thex",
  3942. "homepage": "https://www.drupal.org/user/189123"
  3943. },
  3944. {
  3945. "name": "febbraro",
  3946. "homepage": "https://www.drupal.org/user/43670"
  3947. },
  3948. {
  3949. "name": "jmiccolis",
  3950. "homepage": "https://www.drupal.org/user/31731"
  3951. },
  3952. {
  3953. "name": "joseph.olstad",
  3954. "homepage": "https://www.drupal.org/user/1321830"
  3955. },
  3956. {
  3957. "name": "mpotter",
  3958. "homepage": "https://www.drupal.org/user/616192"
  3959. },
  3960. {
  3961. "name": "nedjo",
  3962. "homepage": "https://www.drupal.org/user/4481"
  3963. },
  3964. {
  3965. "name": "tim.plunkett",
  3966. "homepage": "https://www.drupal.org/user/241634"
  3967. }
  3968. ],
  3969. "description": "Enables administrators to package configuration into modules",
  3970. "homepage": "https://www.drupal.org/project/features",
  3971. "support": {
  3972. "source": "https://git.drupalcode.org/project/features"
  3973. }
  3974. },
  3975. {
  3976. "name": "drupal/field_group",
  3977. "version": "3.0.0-beta1",
  3978. "source": {
  3979. "type": "git",
  3980. "url": "https://git.drupalcode.org/project/field_group.git",
  3981. "reference": "8.x-3.0-beta1"
  3982. },
  3983. "dist": {
  3984. "type": "zip",
  3985. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0-beta1.zip",
  3986. "reference": "8.x-3.0-beta1",
  3987. "shasum": "a5dfb66385be7a1b3db232e49779d5bc530a048e"
  3988. },
  3989. "require": {
  3990. "drupal/core": "*"
  3991. },
  3992. "type": "drupal-module",
  3993. "extra": {
  3994. "branch-alias": {
  3995. "dev-3.x": "3.x-dev"
  3996. },
  3997. "drupal": {
  3998. "version": "8.x-3.0-beta1",
  3999. "datestamp": "1510352338",
  4000. "security-coverage": {
  4001. "status": "not-covered",
  4002. "message": "Beta releases are not covered by Drupal security advisories."
  4003. }
  4004. }
  4005. },
  4006. "notification-url": "https://packages.drupal.org/8/downloads",
  4007. "license": [
  4008. "GPL-2.0+"
  4009. ],
  4010. "authors": [
  4011. {
  4012. "name": "Hydra",
  4013. "homepage": "https://www.drupal.org/user/647364"
  4014. },
  4015. {
  4016. "name": "Stalski",
  4017. "homepage": "https://www.drupal.org/user/322618"
  4018. },
  4019. {
  4020. "name": "jyve",
  4021. "homepage": "https://www.drupal.org/user/591438"
  4022. },
  4023. {
  4024. "name": "swentel",
  4025. "homepage": "https://www.drupal.org/user/107403"
  4026. },
  4027. {
  4028. "name": "zuuperman",
  4029. "homepage": "https://www.drupal.org/user/361625"
  4030. }
  4031. ],
  4032. "description": "Provides the field_group module.",
  4033. "homepage": "https://www.drupal.org/project/field_group",
  4034. "support": {
  4035. "source": "https://git.drupalcode.org/project/field_group"
  4036. }
  4037. },
  4038. {
  4039. "name": "drupal/filefield_sources",
  4040. "version": "dev-1.x",
  4041. "source": {
  4042. "type": "git",
  4043. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4044. "reference": "0de87103ee52f3e4965106a6587b4b5e43d6dab5"
  4045. },
  4046. "require": {
  4047. "drupal/core": "*"
  4048. },
  4049. "type": "drupal-module",
  4050. "extra": {
  4051. "branch-alias": {
  4052. "dev-1.x": "1.x-dev"
  4053. },
  4054. "drupal": {
  4055. "version": "8.x-1.0-alpha1+1-dev",
  4056. "datestamp": "1553883485",
  4057. "security-coverage": {
  4058. "status": "not-covered",
  4059. "message": "Dev releases are not covered by Drupal security advisories."
  4060. }
  4061. }
  4062. },
  4063. "notification-url": "https://packages.drupal.org/8/downloads",
  4064. "license": [
  4065. "GPL-2.0-or-later"
  4066. ],
  4067. "authors": [
  4068. {
  4069. "name": "Nate Lampton (quicksketch)",
  4070. "homepage": "https://www.drupal.org/u/quicksketch",
  4071. "role": "Maintainer"
  4072. },
  4073. {
  4074. "name": "Andrey Khromyshev (profak)",
  4075. "homepage": "https://www.drupal.org/u/profak",
  4076. "role": "Maintainer"
  4077. },
  4078. {
  4079. "name": "David Valdez (gnuget)",
  4080. "homepage": "https://www.drupal.org/u/gnuget",
  4081. "role": "Maintainer"
  4082. }
  4083. ],
  4084. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4085. "homepage": "https://www.drupal.org/project/filefield_sources",
  4086. "support": {
  4087. "source": "https://git.drupalcode.org/project/filefield_sources",
  4088. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4089. "irc": "irc://irc.freenode.org/drupal-contribute"
  4090. },
  4091. "time": "2019-04-26T18:53:07+00:00"
  4092. },
  4093. {
  4094. "name": "drupal/filter_perms",
  4095. "version": "dev-1.x",
  4096. "source": {
  4097. "type": "git",
  4098. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4099. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4100. },
  4101. "require": {
  4102. "drupal/core": "*"
  4103. },
  4104. "type": "drupal-module",
  4105. "extra": {
  4106. "branch-alias": {
  4107. "dev-1.x": "1.x-dev"
  4108. },
  4109. "drupal": {
  4110. "version": "8.x-1.x-dev",
  4111. "datestamp": "1469645939",
  4112. "security-coverage": {
  4113. "status": "not-covered",
  4114. "message": "Dev releases are not covered by Drupal security advisories."
  4115. }
  4116. }
  4117. },
  4118. "notification-url": "https://packages.drupal.org/8/downloads",
  4119. "license": [
  4120. "GPL-2.0-or-later"
  4121. ],
  4122. "authors": [
  4123. {
  4124. "name": "cYu",
  4125. "homepage": "https://www.drupal.org/user/202205"
  4126. },
  4127. {
  4128. "name": "deekayen",
  4129. "homepage": "https://www.drupal.org/user/972"
  4130. },
  4131. {
  4132. "name": "willzyx",
  4133. "homepage": "https://www.drupal.org/user/1043862"
  4134. }
  4135. ],
  4136. "description": "Provides role and module filters to simplify the user permissions page.",
  4137. "homepage": "https://www.drupal.org/project/filter_perms",
  4138. "support": {
  4139. "source": "https://git.drupalcode.org/project/filter_perms"
  4140. },
  4141. "time": "2016-07-27T19:01:11+00:00"
  4142. },
  4143. {
  4144. "name": "drupal/honeypot",
  4145. "version": "1.29.0",
  4146. "source": {
  4147. "type": "git",
  4148. "url": "https://git.drupalcode.org/project/honeypot.git",
  4149. "reference": "8.x-1.29"
  4150. },
  4151. "dist": {
  4152. "type": "zip",
  4153. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4154. "reference": "8.x-1.29",
  4155. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4156. },
  4157. "require": {
  4158. "drupal/core": "~8.0"
  4159. },
  4160. "type": "drupal-module",
  4161. "extra": {
  4162. "branch-alias": {
  4163. "dev-1.x": "1.x-dev"
  4164. },
  4165. "drupal": {
  4166. "version": "8.x-1.29",
  4167. "datestamp": "1536179280",
  4168. "security-coverage": {
  4169. "status": "covered",
  4170. "message": "Covered by Drupal's security advisory policy"
  4171. }
  4172. }
  4173. },
  4174. "notification-url": "https://packages.drupal.org/8/downloads",
  4175. "license": [
  4176. "GPL-2.0+"
  4177. ],
  4178. "authors": [
  4179. {
  4180. "name": "Jeff Geerling",
  4181. "homepage": "https://www.drupal.org/user/213194",
  4182. "email": "geerlingguy@mac.com"
  4183. },
  4184. {
  4185. "name": "geerlingguy",
  4186. "homepage": "https://www.drupal.org/user/389011"
  4187. },
  4188. {
  4189. "name": "vijaycs85",
  4190. "homepage": "https://www.drupal.org/user/93488"
  4191. }
  4192. ],
  4193. "description": "Mitigates spam form submissions using the honeypot method.",
  4194. "homepage": "https://www.drupal.org/project/honeypot",
  4195. "keywords": [
  4196. "deterrent",
  4197. "form",
  4198. "honeypot",
  4199. "honeytrap",
  4200. "php",
  4201. "spam"
  4202. ],
  4203. "support": {
  4204. "source": "https://git.drupalcode.org/project/honeypot"
  4205. }
  4206. },
  4207. {
  4208. "name": "drupal/linkit",
  4209. "version": "5.0.0-beta8",
  4210. "source": {
  4211. "type": "git",
  4212. "url": "https://git.drupalcode.org/project/linkit.git",
  4213. "reference": "8.x-5.0-beta8"
  4214. },
  4215. "dist": {
  4216. "type": "zip",
  4217. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta8.zip",
  4218. "reference": "8.x-5.0-beta8",
  4219. "shasum": "677be19d6128f1d5c6d239132e98b1817ad91acb"
  4220. },
  4221. "require": {
  4222. "drupal/core": "~8.0"
  4223. },
  4224. "require-dev": {
  4225. "drupal/imce": "*"
  4226. },
  4227. "type": "drupal-module",
  4228. "extra": {
  4229. "branch-alias": {
  4230. "dev-5.x": "5.x-dev"
  4231. },
  4232. "drupal": {
  4233. "version": "8.x-5.0-beta8",
  4234. "datestamp": "1545966784",
  4235. "security-coverage": {
  4236. "status": "not-covered",
  4237. "message": "Beta releases are not covered by Drupal security advisories."
  4238. }
  4239. }
  4240. },
  4241. "notification-url": "https://packages.drupal.org/8/downloads",
  4242. "license": [
  4243. "GPL-2.0+"
  4244. ],
  4245. "authors": [
  4246. {
  4247. "name": "Emil Stjerneman",
  4248. "homepage": "https://stjerneman.com",
  4249. "email": "emil@stjerneman.com",
  4250. "role": "Maintainer"
  4251. }
  4252. ],
  4253. "description": "Linkit - Enriched linking experience",
  4254. "homepage": "http://drupal.org/project/linkit",
  4255. "support": {
  4256. "source": "http://cgit.drupalcode.org/linkit",
  4257. "issues": "http://drupal.org/project/linkit"
  4258. }
  4259. },
  4260. {
  4261. "name": "drupal/maillog",
  4262. "version": "dev-1.x",
  4263. "source": {
  4264. "type": "git",
  4265. "url": "https://git.drupalcode.org/project/maillog.git",
  4266. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4267. },
  4268. "require": {
  4269. "drupal/core": "*"
  4270. },
  4271. "type": "drupal-module",
  4272. "extra": {
  4273. "branch-alias": {
  4274. "dev-1.x": "1.x-dev"
  4275. },
  4276. "drupal": {
  4277. "version": "8.x-1.x-dev",
  4278. "datestamp": "1470431939",
  4279. "security-coverage": {
  4280. "status": "not-covered",
  4281. "message": "Project has not opted into security advisory coverage!"
  4282. }
  4283. }
  4284. },
  4285. "notification-url": "https://packages.drupal.org/8/downloads",
  4286. "license": [
  4287. "GPL-2.0-or-later"
  4288. ],
  4289. "authors": [
  4290. {
  4291. "name": "Berdir",
  4292. "homepage": "https://www.drupal.org/user/214652"
  4293. },
  4294. {
  4295. "name": "DamienMcKenna",
  4296. "homepage": "https://www.drupal.org/user/108450"
  4297. },
  4298. {
  4299. "name": "miro_dietiker",
  4300. "homepage": "https://www.drupal.org/user/227761"
  4301. },
  4302. {
  4303. "name": "pluess",
  4304. "homepage": "https://www.drupal.org/user/84659"
  4305. }
  4306. ],
  4307. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4308. "homepage": "https://www.drupal.org/project/maillog",
  4309. "support": {
  4310. "source": "https://git.drupalcode.org/project/maillog"
  4311. },
  4312. "time": "2016-08-05T21:18:07+00:00"
  4313. },
  4314. {
  4315. "name": "drupal/matomo",
  4316. "version": "1.9.0",
  4317. "source": {
  4318. "type": "git",
  4319. "url": "https://git.drupalcode.org/project/matomo.git",
  4320. "reference": "8.x-1.9"
  4321. },
  4322. "dist": {
  4323. "type": "zip",
  4324. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4325. "reference": "8.x-1.9",
  4326. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4327. },
  4328. "require": {
  4329. "drupal/core": "~8.5"
  4330. },
  4331. "require-dev": {
  4332. "drupal/php": "*",
  4333. "drupal/token": "*"
  4334. },
  4335. "type": "drupal-module",
  4336. "extra": {
  4337. "branch-alias": {
  4338. "dev-1.x": "1.x-dev"
  4339. },
  4340. "drupal": {
  4341. "version": "8.x-1.9",
  4342. "datestamp": "1549615080",
  4343. "security-coverage": {
  4344. "status": "covered",
  4345. "message": "Covered by Drupal's security advisory policy"
  4346. }
  4347. }
  4348. },
  4349. "notification-url": "https://packages.drupal.org/8/downloads",
  4350. "license": [
  4351. "GPL-2.0+"
  4352. ],
  4353. "authors": [
  4354. {
  4355. "name": "hass",
  4356. "homepage": "https://www.drupal.org/u/hass"
  4357. },
  4358. {
  4359. "name": "See other contributors",
  4360. "homepage": "https://www.drupal.org/node/247808/committers"
  4361. }
  4362. ],
  4363. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4364. "homepage": "https://www.drupal.org/project/matomo",
  4365. "support": {
  4366. "source": "https://git.drupal.org/project/matomo.git",
  4367. "issues": "https://www.drupal.org/project/issues/matomo"
  4368. }
  4369. },
  4370. {
  4371. "name": "drupal/menu_admin_per_menu",
  4372. "version": "1.0.0",
  4373. "source": {
  4374. "type": "git",
  4375. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4376. "reference": "8.x-1.0"
  4377. },
  4378. "dist": {
  4379. "type": "zip",
  4380. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4381. "reference": "8.x-1.0",
  4382. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4383. },
  4384. "require": {
  4385. "drupal/core": "*"
  4386. },
  4387. "type": "drupal-module",
  4388. "extra": {
  4389. "branch-alias": {
  4390. "dev-1.x": "1.x-dev"
  4391. },
  4392. "drupal": {
  4393. "version": "8.x-1.0",
  4394. "datestamp": "1507184944",
  4395. "security-coverage": {
  4396. "status": "covered",
  4397. "message": "Covered by Drupal's security advisory policy"
  4398. }
  4399. }
  4400. },
  4401. "notification-url": "https://packages.drupal.org/8/downloads",
  4402. "license": [
  4403. "GPL-2.0-or-later"
  4404. ],
  4405. "authors": [
  4406. {
  4407. "name": "anrikun",
  4408. "homepage": "https://www.drupal.org/user/410199"
  4409. },
  4410. {
  4411. "name": "mkdok",
  4412. "homepage": "https://www.drupal.org/user/3308753"
  4413. }
  4414. ],
  4415. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4416. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4417. "support": {
  4418. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4419. }
  4420. },
  4421. {
  4422. "name": "drupal/metatag",
  4423. "version": "1.8.0",
  4424. "source": {
  4425. "type": "git",
  4426. "url": "https://git.drupalcode.org/project/metatag.git",
  4427. "reference": "8.x-1.8"
  4428. },
  4429. "dist": {
  4430. "type": "zip",
  4431. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.8.zip",
  4432. "reference": "8.x-1.8",
  4433. "shasum": "fb5d31aa08c8c2e175f096f9917e9741db152ea8"
  4434. },
  4435. "require": {
  4436. "drupal/core": "*",
  4437. "drupal/token": "^1.0"
  4438. },
  4439. "require-dev": {
  4440. "drupal/devel": "^1.0",
  4441. "drupal/metatag_dc": "*",
  4442. "drupal/metatag_open_graph": "*",
  4443. "drupal/page_manager": "^4.0",
  4444. "drupal/redirect": "^1.0",
  4445. "drupal/restui": "^1.0",
  4446. "drupal/schema_metatag": "^1.0",
  4447. "drupal/schema_web_page": "*"
  4448. },
  4449. "type": "drupal-module",
  4450. "extra": {
  4451. "branch-alias": {
  4452. "dev-1.x": "1.x-dev"
  4453. },
  4454. "drupal": {
  4455. "version": "8.x-1.8",
  4456. "datestamp": "1550692511",
  4457. "security-coverage": {
  4458. "status": "covered",
  4459. "message": "Covered by Drupal's security advisory policy"
  4460. }
  4461. }
  4462. },
  4463. "notification-url": "https://packages.drupal.org/8/downloads",
  4464. "license": [
  4465. "GPL-2.0+"
  4466. ],
  4467. "authors": [
  4468. {
  4469. "name": "See contributors",
  4470. "homepage": "https://www.drupal.org/node/640498/committers",
  4471. "role": "Developer"
  4472. },
  4473. {
  4474. "name": "Dave Reid",
  4475. "homepage": "https://www.drupal.org/user/53892"
  4476. }
  4477. ],
  4478. "description": "Manage meta tags for all entities.",
  4479. "homepage": "https://www.drupal.org/project/metatag",
  4480. "keywords": [
  4481. "Drupal",
  4482. "seo"
  4483. ],
  4484. "support": {
  4485. "source": "http://cgit.drupalcode.org/metatag",
  4486. "issues": "http://drupal.org/project/issues/metatag"
  4487. }
  4488. },
  4489. {
  4490. "name": "drupal/migrate_plus",
  4491. "version": "4.2.0",
  4492. "source": {
  4493. "type": "git",
  4494. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4495. "reference": "8.x-4.2"
  4496. },
  4497. "dist": {
  4498. "type": "zip",
  4499. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.2.zip",
  4500. "reference": "8.x-4.2",
  4501. "shasum": "5736a43e39cc5c091d54ceef2849ea35ba979af3"
  4502. },
  4503. "require": {
  4504. "drupal/core": "^8.3"
  4505. },
  4506. "require-dev": {
  4507. "drupal/entity": "*",
  4508. "drupal/migrate_example_advanced_setup": "*",
  4509. "drupal/migrate_example_setup": "*",
  4510. "drupal/migrate_tools": "*",
  4511. "drupal/profile": "*"
  4512. },
  4513. "suggest": {
  4514. "ext-soap": "*",
  4515. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4516. },
  4517. "type": "drupal-module",
  4518. "extra": {
  4519. "branch-alias": {
  4520. "dev-4.x": "4.x-dev"
  4521. },
  4522. "drupal": {
  4523. "version": "8.x-4.2",
  4524. "datestamp": "1555683487",
  4525. "security-coverage": {
  4526. "status": "covered",
  4527. "message": "Covered by Drupal's security advisory policy"
  4528. }
  4529. }
  4530. },
  4531. "notification-url": "https://packages.drupal.org/8/downloads",
  4532. "license": [
  4533. "GPL-2.0+"
  4534. ],
  4535. "authors": [
  4536. {
  4537. "name": "Mike Ryan",
  4538. "homepage": "https://www.drupal.org/u/mikeryan",
  4539. "role": "Maintainer"
  4540. },
  4541. {
  4542. "name": "mikeryan",
  4543. "homepage": "https://www.drupal.org/user/4420"
  4544. }
  4545. ],
  4546. "description": "Enhancements to core migration support.",
  4547. "homepage": "https://www.drupal.org/project/migrate_plus",
  4548. "support": {
  4549. "source": "https://cgit.drupalcode.org/migrate_plus",
  4550. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4551. "irc": "irc://irc.freenode.org/drupal-migrate"
  4552. }
  4553. },
  4554. {
  4555. "name": "drupal/migrate_tools",
  4556. "version": "4.1.0",
  4557. "source": {
  4558. "type": "git",
  4559. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4560. "reference": "8.x-4.1"
  4561. },
  4562. "dist": {
  4563. "type": "zip",
  4564. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.1.zip",
  4565. "reference": "8.x-4.1",
  4566. "shasum": "0355d5309fbb738759332779d0ecf5f19a1da0a4"
  4567. },
  4568. "require": {
  4569. "drupal/core": "^8.3",
  4570. "drupal/migrate_plus": "^4"
  4571. },
  4572. "require-dev": {
  4573. "drupal/migrate_plus": "4.x-dev",
  4574. "drupal/migrate_source_csv": "^2.2",
  4575. "drush/drush": "^9"
  4576. },
  4577. "type": "drupal-module",
  4578. "extra": {
  4579. "branch-alias": {
  4580. "dev-4.x": "4.x-dev"
  4581. },
  4582. "drupal": {
  4583. "version": "8.x-4.1",
  4584. "datestamp": "1546879080",
  4585. "security-coverage": {
  4586. "status": "covered",
  4587. "message": "Covered by Drupal's security advisory policy"
  4588. }
  4589. },
  4590. "drush": {
  4591. "services": {
  4592. "drush.services.yml": "^9"
  4593. }
  4594. }
  4595. },
  4596. "notification-url": "https://packages.drupal.org/8/downloads",
  4597. "license": [
  4598. "GPL-2.0-or-later"
  4599. ],
  4600. "authors": [
  4601. {
  4602. "name": "heddn",
  4603. "homepage": "https://www.drupal.org/user/1463982"
  4604. },
  4605. {
  4606. "name": "mikeryan",
  4607. "homepage": "https://www.drupal.org/user/4420"
  4608. },
  4609. {
  4610. "name": "moshe weitzman",
  4611. "homepage": "https://www.drupal.org/user/23"
  4612. }
  4613. ],
  4614. "description": "Tools to assist in developing and running migrations.",
  4615. "homepage": "http://drupal.org/project/migrate_tools",
  4616. "support": {
  4617. "source": "http://cgit.drupalcode.org/migrate_tools",
  4618. "issues": "http://drupal.org/project/migrate_tools",
  4619. "irc": "irc://irc.freenode.org/drupal-migrate"
  4620. }
  4621. },
  4622. {
  4623. "name": "drupal/path_alias_xt",
  4624. "version": "dev-1.x",
  4625. "source": {
  4626. "type": "git",
  4627. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4628. "reference": "2a79ac72191dc59ef656d1edd85e651538c6a389"
  4629. },
  4630. "require": {
  4631. "drupal/core": "*"
  4632. },
  4633. "type": "drupal-module",
  4634. "extra": {
  4635. "branch-alias": {
  4636. "dev-1.x": "1.x-dev"
  4637. },
  4638. "drupal": {
  4639. "version": "8.x-1.x-dev",
  4640. "datestamp": "1548876480",
  4641. "security-coverage": {
  4642. "status": "not-covered",
  4643. "message": "Dev releases are not covered by Drupal security advisories."
  4644. }
  4645. }
  4646. },
  4647. "notification-url": "https://packages.drupal.org/8/downloads",
  4648. "license": [
  4649. "GPL-2.0-or-later"
  4650. ],
  4651. "authors": [
  4652. {
  4653. "name": "RdeBoer",
  4654. "homepage": "https://www.drupal.org/user/404007"
  4655. },
  4656. {
  4657. "name": "adriancid",
  4658. "homepage": "https://www.drupal.org/user/1962106"
  4659. },
  4660. {
  4661. "name": "sdstyles",
  4662. "homepage": "https://www.drupal.org/user/1420228"
  4663. }
  4664. ],
  4665. "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.",
  4666. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4667. "support": {
  4668. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4669. },
  4670. "time": "2019-01-30T19:27:58+00:00"
  4671. },
  4672. {
  4673. "name": "drupal/pathauto",
  4674. "version": "1.4.0",
  4675. "source": {
  4676. "type": "git",
  4677. "url": "https://git.drupalcode.org/project/pathauto.git",
  4678. "reference": "8.x-1.4"
  4679. },
  4680. "dist": {
  4681. "type": "zip",
  4682. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.4.zip",
  4683. "reference": "8.x-1.4",
  4684. "shasum": "ddfb047ae04ca2ddf475d65f6c09bceb44169e25"
  4685. },
  4686. "require": {
  4687. "drupal/core": "^8.5",
  4688. "drupal/ctools": "*",
  4689. "drupal/token": "*"
  4690. },
  4691. "type": "drupal-module",
  4692. "extra": {
  4693. "branch-alias": {
  4694. "dev-1.x": "1.x-dev"
  4695. },
  4696. "drupal": {
  4697. "version": "8.x-1.4",
  4698. "datestamp": "1554239887",
  4699. "security-coverage": {
  4700. "status": "covered",
  4701. "message": "Covered by Drupal's security advisory policy"
  4702. }
  4703. }
  4704. },
  4705. "notification-url": "https://packages.drupal.org/8/downloads",
  4706. "license": [
  4707. "GPL-2.0-or-later"
  4708. ],
  4709. "authors": [
  4710. {
  4711. "name": "Berdir",
  4712. "homepage": "https://www.drupal.org/user/214652"
  4713. },
  4714. {
  4715. "name": "Dave Reid",
  4716. "homepage": "https://www.drupal.org/user/53892"
  4717. },
  4718. {
  4719. "name": "Freso",
  4720. "homepage": "https://www.drupal.org/user/27504"
  4721. },
  4722. {
  4723. "name": "greggles",
  4724. "homepage": "https://www.drupal.org/user/36762"
  4725. }
  4726. ],
  4727. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4728. "homepage": "https://www.drupal.org/project/pathauto",
  4729. "support": {
  4730. "source": "https://git.drupalcode.org/project/pathauto"
  4731. }
  4732. },
  4733. {
  4734. "name": "drupal/piwik",
  4735. "version": "1.4.0",
  4736. "source": {
  4737. "type": "git",
  4738. "url": "https://git.drupalcode.org/project/piwik.git",
  4739. "reference": "8.x-1.4"
  4740. },
  4741. "dist": {
  4742. "type": "zip",
  4743. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  4744. "reference": "8.x-1.4",
  4745. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  4746. },
  4747. "require": {
  4748. "drupal/core": "~8.0",
  4749. "drupal/matomo": "^1.0"
  4750. },
  4751. "require-dev": {
  4752. "drupal/php": "*",
  4753. "drupal/token": "*"
  4754. },
  4755. "type": "drupal-module",
  4756. "extra": {
  4757. "branch-alias": {
  4758. "dev-1.x": "1.x-dev"
  4759. },
  4760. "drupal": {
  4761. "version": "8.x-1.4",
  4762. "datestamp": "1530437786",
  4763. "security-coverage": {
  4764. "status": "covered",
  4765. "message": "Covered by Drupal's security advisory policy"
  4766. }
  4767. }
  4768. },
  4769. "notification-url": "https://packages.drupal.org/8/downloads",
  4770. "license": [
  4771. "GPL-2.0+"
  4772. ],
  4773. "authors": [
  4774. {
  4775. "name": "hass",
  4776. "homepage": "https://www.drupal.org/u/hass"
  4777. },
  4778. {
  4779. "name": "See other contributors",
  4780. "homepage": "https://www.drupal.org/node/247808/committers"
  4781. }
  4782. ],
  4783. "description": "Adds Piwik javascript tracking code to all your site's pages",
  4784. "homepage": "https://www.drupal.org/project/piwik",
  4785. "support": {
  4786. "source": "http://git.drupal.org/project/piwik.git",
  4787. "issues": "https://www.drupal.org/project/issues/piwik"
  4788. }
  4789. },
  4790. {
  4791. "name": "drupal/profile",
  4792. "version": "1.0.0-rc4",
  4793. "source": {
  4794. "type": "git",
  4795. "url": "https://git.drupalcode.org/project/profile.git",
  4796. "reference": "8.x-1.0-rc4"
  4797. },
  4798. "dist": {
  4799. "type": "zip",
  4800. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc4.zip",
  4801. "reference": "8.x-1.0-rc4",
  4802. "shasum": "0dffde8100312f33bec9f1e999797a1b4c995c17"
  4803. },
  4804. "require": {
  4805. "drupal/core": "^8.5",
  4806. "drupal/entity": "^1.0-rc1"
  4807. },
  4808. "require-dev": {
  4809. "drupal/token": "1.0"
  4810. },
  4811. "type": "drupal-module",
  4812. "extra": {
  4813. "branch-alias": {
  4814. "dev-1.x": "1.x-dev"
  4815. },
  4816. "drupal": {
  4817. "version": "8.x-1.0-rc4",
  4818. "datestamp": "1552407486",
  4819. "security-coverage": {
  4820. "status": "not-covered",
  4821. "message": "RC releases are not covered by Drupal security advisories."
  4822. }
  4823. }
  4824. },
  4825. "notification-url": "https://packages.drupal.org/8/downloads",
  4826. "license": [
  4827. "GPL-2.0+"
  4828. ],
  4829. "authors": [
  4830. {
  4831. "name": "bojanz",
  4832. "homepage": "https://www.drupal.org/user/86106"
  4833. },
  4834. {
  4835. "name": "daggerhart",
  4836. "homepage": "https://www.drupal.org/user/167806"
  4837. },
  4838. {
  4839. "name": "fago",
  4840. "homepage": "https://www.drupal.org/user/16747"
  4841. },
  4842. {
  4843. "name": "mglaman",
  4844. "homepage": "https://www.drupal.org/user/2416470"
  4845. },
  4846. {
  4847. "name": "pcambra",
  4848. "homepage": "https://www.drupal.org/user/122101"
  4849. }
  4850. ],
  4851. "description": "Provides configurable user profiles.",
  4852. "homepage": "http://drupal.org/project/profile",
  4853. "support": {
  4854. "source": "https://git.drupalcode.org/project/profile"
  4855. }
  4856. },
  4857. {
  4858. "name": "drupal/redirect",
  4859. "version": "1.3.0",
  4860. "source": {
  4861. "type": "git",
  4862. "url": "https://git.drupalcode.org/project/redirect.git",
  4863. "reference": "8.x-1.3"
  4864. },
  4865. "dist": {
  4866. "type": "zip",
  4867. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  4868. "reference": "8.x-1.3",
  4869. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  4870. },
  4871. "require": {
  4872. "drupal/core": "~8"
  4873. },
  4874. "type": "drupal-module",
  4875. "extra": {
  4876. "branch-alias": {
  4877. "dev-1.x": "1.x-dev"
  4878. },
  4879. "drupal": {
  4880. "version": "8.x-1.3",
  4881. "datestamp": "1539682684",
  4882. "security-coverage": {
  4883. "status": "covered",
  4884. "message": "Covered by Drupal's security advisory policy"
  4885. }
  4886. }
  4887. },
  4888. "notification-url": "https://packages.drupal.org/8/downloads",
  4889. "license": [
  4890. "GPL-2.0+"
  4891. ],
  4892. "authors": [
  4893. {
  4894. "name": "Berdir",
  4895. "homepage": "https://www.drupal.org/user/214652"
  4896. },
  4897. {
  4898. "name": "Dave Reid",
  4899. "homepage": "https://www.drupal.org/user/53892"
  4900. },
  4901. {
  4902. "name": "pifagor",
  4903. "homepage": "https://www.drupal.org/user/2375692"
  4904. }
  4905. ],
  4906. "description": "Allows users to redirect from old URLs to new URLs.",
  4907. "homepage": "https://www.drupal.org/project/redirect",
  4908. "support": {
  4909. "source": "https://git.drupalcode.org/project/redirect"
  4910. }
  4911. },
  4912. {
  4913. "name": "drupal/redis",
  4914. "version": "1.1.0",
  4915. "source": {
  4916. "type": "git",
  4917. "url": "https://git.drupalcode.org/project/redis.git",
  4918. "reference": "8.x-1.1"
  4919. },
  4920. "dist": {
  4921. "type": "zip",
  4922. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.1.zip",
  4923. "reference": "8.x-1.1",
  4924. "shasum": "33337fe1cbd2824797e87533b30e4886b48ecd77"
  4925. },
  4926. "require": {
  4927. "drupal/core": "~8.0"
  4928. },
  4929. "suggest": {
  4930. "predis/predis": "^1.1.1"
  4931. },
  4932. "type": "drupal-module",
  4933. "extra": {
  4934. "branch-alias": {
  4935. "dev-1.x": "1.x-dev"
  4936. },
  4937. "drupal": {
  4938. "version": "8.x-1.1",
  4939. "datestamp": "1541600580",
  4940. "security-coverage": {
  4941. "status": "covered",
  4942. "message": "Covered by Drupal's security advisory policy"
  4943. }
  4944. }
  4945. },
  4946. "autoload": {
  4947. "psr-4": {
  4948. "Drupal\\redis\\": "src"
  4949. }
  4950. },
  4951. "notification-url": "https://packages.drupal.org/8/downloads",
  4952. "license": [
  4953. "GPL-2.0"
  4954. ],
  4955. "authors": [
  4956. {
  4957. "name": "Berdir",
  4958. "homepage": "https://www.drupal.org/user/214652"
  4959. },
  4960. {
  4961. "name": "pounard",
  4962. "homepage": "https://www.drupal.org/user/240164"
  4963. }
  4964. ],
  4965. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  4966. "homepage": "https://www.drupal.org/project/redis",
  4967. "support": {
  4968. "source": "https://git.drupalcode.org/project/redis"
  4969. }
  4970. },
  4971. {
  4972. "name": "drupal/search_api",
  4973. "version": "1.12.0",
  4974. "source": {
  4975. "type": "git",
  4976. "url": "https://git.drupalcode.org/project/search_api.git",
  4977. "reference": "8.x-1.12"
  4978. },
  4979. "dist": {
  4980. "type": "zip",
  4981. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.12.zip",
  4982. "reference": "8.x-1.12",
  4983. "shasum": "db203e2fdd669d6e9ff2c99688c0816d248a1fff"
  4984. },
  4985. "require": {
  4986. "drupal/core": "^8.5"
  4987. },
  4988. "require-dev": {
  4989. "drupal/search_api_autocomplete": "@dev",
  4990. "drupal/search_api_db": "*"
  4991. },
  4992. "suggest": {
  4993. "drupal/facets": "Adds the ability to create faceted searches.",
  4994. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4995. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4996. },
  4997. "type": "drupal-module",
  4998. "extra": {
  4999. "branch-alias": {
  5000. "dev-1.x": "1.x-dev"
  5001. },
  5002. "drupal": {
  5003. "version": "8.x-1.12",
  5004. "datestamp": "1552334285",
  5005. "security-coverage": {
  5006. "status": "covered",
  5007. "message": "Covered by Drupal's security advisory policy"
  5008. }
  5009. },
  5010. "drush": {
  5011. "services": {
  5012. "drush.services.yml": "^9"
  5013. }
  5014. }
  5015. },
  5016. "notification-url": "https://packages.drupal.org/8/downloads",
  5017. "license": [
  5018. "GPL-2.0+"
  5019. ],
  5020. "authors": [
  5021. {
  5022. "name": "Thomas Seidl",
  5023. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5024. },
  5025. {
  5026. "name": "Nick Veenhof",
  5027. "homepage": "https://www.drupal.org/u/nick_vh"
  5028. },
  5029. {
  5030. "name": "See other contributors",
  5031. "homepage": "https://www.drupal.org/node/790418/committers"
  5032. }
  5033. ],
  5034. "description": "Provides a generic framework for modules offering search capabilities.",
  5035. "homepage": "https://www.drupal.org/project/search_api",
  5036. "support": {
  5037. "source": "http://git.drupal.org/project/search_api.git",
  5038. "issues": "https://www.drupal.org/project/issues/search_api",
  5039. "irc": "irc://irc.freenode.org/drupal-search-api"
  5040. }
  5041. },
  5042. {
  5043. "name": "drupal/simple_sitemap",
  5044. "version": "3.1.0",
  5045. "source": {
  5046. "type": "git",
  5047. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5048. "reference": "8.x-3.1"
  5049. },
  5050. "dist": {
  5051. "type": "zip",
  5052. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.1.zip",
  5053. "reference": "8.x-3.1",
  5054. "shasum": "7194caf8482c4a80a5b7eddf28d94e798bb4786d"
  5055. },
  5056. "require": {
  5057. "drupal/core": "~8.0",
  5058. "ext-xmlwriter": "*"
  5059. },
  5060. "type": "drupal-module",
  5061. "extra": {
  5062. "branch-alias": {
  5063. "dev-3.x": "3.x-dev"
  5064. },
  5065. "drupal": {
  5066. "version": "8.x-3.1",
  5067. "datestamp": "1555534615",
  5068. "security-coverage": {
  5069. "status": "covered",
  5070. "message": "Covered by Drupal's security advisory policy"
  5071. }
  5072. },
  5073. "drush": {
  5074. "services": {
  5075. "drush.services.yml": "^9"
  5076. }
  5077. }
  5078. },
  5079. "notification-url": "https://packages.drupal.org/8/downloads",
  5080. "license": [
  5081. "GPL-2.0+"
  5082. ],
  5083. "authors": [
  5084. {
  5085. "name": "Pawel Ginalski (gbyte.co)",
  5086. "homepage": "https://www.drupal.org/u/gbyte.co",
  5087. "email": "contact@gbyte.co",
  5088. "role": "Maintainer"
  5089. },
  5090. {
  5091. "name": "gbyte.co",
  5092. "homepage": "https://www.drupal.org/user/2381352"
  5093. }
  5094. ],
  5095. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5096. "homepage": "https://drupal.org/project/simple_sitemap",
  5097. "support": {
  5098. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5099. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5100. "irc": "irc://irc.freenode.org/drupal-contribute"
  5101. }
  5102. },
  5103. {
  5104. "name": "drupal/synonyms",
  5105. "version": "dev-1.x",
  5106. "source": {
  5107. "type": "git",
  5108. "url": "https://git.drupalcode.org/project/synonyms.git",
  5109. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5110. },
  5111. "require": {
  5112. "drupal/core": "^8.2"
  5113. },
  5114. "type": "drupal-module",
  5115. "extra": {
  5116. "branch-alias": {
  5117. "dev-1.x": "1.x-dev"
  5118. },
  5119. "drupal": {
  5120. "version": "8.x-1.0-alpha1+5-dev",
  5121. "datestamp": "1540141681",
  5122. "security-coverage": {
  5123. "status": "not-covered",
  5124. "message": "Dev releases are not covered by Drupal security advisories."
  5125. }
  5126. }
  5127. },
  5128. "notification-url": "https://packages.drupal.org/8/downloads",
  5129. "license": [
  5130. "GPL-2.0-or-later"
  5131. ],
  5132. "authors": [
  5133. {
  5134. "name": "Zen",
  5135. "homepage": "https://www.drupal.org/user/21209"
  5136. },
  5137. {
  5138. "name": "bojanz",
  5139. "homepage": "https://www.drupal.org/user/86106"
  5140. },
  5141. {
  5142. "name": "bucefal91",
  5143. "homepage": "https://www.drupal.org/user/504128"
  5144. }
  5145. ],
  5146. "description": "Provides synonyms feature for content entities.",
  5147. "homepage": "https://www.drupal.org/project/synonyms",
  5148. "support": {
  5149. "source": "https://git.drupalcode.org/project/synonyms"
  5150. },
  5151. "time": "2018-10-21T17:05:25+00:00"
  5152. },
  5153. {
  5154. "name": "drupal/token",
  5155. "version": "1.5.0",
  5156. "source": {
  5157. "type": "git",
  5158. "url": "https://git.drupalcode.org/project/token.git",
  5159. "reference": "8.x-1.5"
  5160. },
  5161. "dist": {
  5162. "type": "zip",
  5163. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  5164. "reference": "8.x-1.5",
  5165. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  5166. },
  5167. "require": {
  5168. "drupal/core": "^8.5"
  5169. },
  5170. "type": "drupal-module",
  5171. "extra": {
  5172. "branch-alias": {
  5173. "dev-1.x": "1.x-dev"
  5174. },
  5175. "drupal": {
  5176. "version": "8.x-1.5",
  5177. "datestamp": "1537557481",
  5178. "security-coverage": {
  5179. "status": "covered",
  5180. "message": "Covered by Drupal's security advisory policy"
  5181. }
  5182. }
  5183. },
  5184. "notification-url": "https://packages.drupal.org/8/downloads",
  5185. "license": [
  5186. "GPL-2.0-or-later"
  5187. ],
  5188. "authors": [
  5189. {
  5190. "name": "Berdir",
  5191. "homepage": "https://www.drupal.org/user/214652"
  5192. },
  5193. {
  5194. "name": "Dave Reid",
  5195. "homepage": "https://www.drupal.org/user/53892"
  5196. },
  5197. {
  5198. "name": "eaton",
  5199. "homepage": "https://www.drupal.org/user/16496"
  5200. },
  5201. {
  5202. "name": "fago",
  5203. "homepage": "https://www.drupal.org/user/16747"
  5204. },
  5205. {
  5206. "name": "greggles",
  5207. "homepage": "https://www.drupal.org/user/36762"
  5208. },
  5209. {
  5210. "name": "mikeryan",
  5211. "homepage": "https://www.drupal.org/user/4420"
  5212. }
  5213. ],
  5214. "description": "Provides a user interface for the Token API and some missing core tokens.",
  5215. "homepage": "https://www.drupal.org/project/token",
  5216. "support": {
  5217. "source": "https://git.drupalcode.org/project/token"
  5218. }
  5219. },
  5220. {
  5221. "name": "drupal/toolbar_themes",
  5222. "version": "dev-1.x",
  5223. "source": {
  5224. "type": "git",
  5225. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5226. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5227. },
  5228. "require": {
  5229. "drupal/core": "*"
  5230. },
  5231. "type": "drupal-module",
  5232. "extra": {
  5233. "branch-alias": {
  5234. "dev-1.x": "1.x-dev"
  5235. },
  5236. "drupal": {
  5237. "version": "8.x-1.0-alpha4+10-dev",
  5238. "datestamp": "1510689485",
  5239. "security-coverage": {
  5240. "status": "not-covered",
  5241. "message": "Project has not opted into security advisory coverage!"
  5242. }
  5243. }
  5244. },
  5245. "notification-url": "https://packages.drupal.org/8/downloads",
  5246. "license": [
  5247. "GPL-2.0-or-later"
  5248. ],
  5249. "authors": [
  5250. {
  5251. "name": "Jeff Burnz",
  5252. "homepage": "https://www.drupal.org/user/61393"
  5253. }
  5254. ],
  5255. "description": "Apply themes to the toolbar.",
  5256. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5257. "support": {
  5258. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5259. },
  5260. "time": "2017-11-14T19:57:02+00:00"
  5261. },
  5262. {
  5263. "name": "drupal/translation_views",
  5264. "version": "1.0.0-alpha5",
  5265. "source": {
  5266. "type": "git",
  5267. "url": "https://git.drupalcode.org/project/translation_views.git",
  5268. "reference": "8.x-1.0-alpha5"
  5269. },
  5270. "dist": {
  5271. "type": "zip",
  5272. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha5.zip",
  5273. "reference": "8.x-1.0-alpha5",
  5274. "shasum": "f1fc54c4648bca5194c0bdcb6df02dae1e8fefd9"
  5275. },
  5276. "require": {
  5277. "drupal/core": "*"
  5278. },
  5279. "require-dev": {
  5280. "drupal/local_translation": "*"
  5281. },
  5282. "type": "drupal-module",
  5283. "extra": {
  5284. "branch-alias": {
  5285. "dev-1.x": "1.x-dev"
  5286. },
  5287. "drupal": {
  5288. "version": "8.x-1.0-alpha5",
  5289. "datestamp": "1551353287",
  5290. "security-coverage": {
  5291. "status": "not-covered",
  5292. "message": "Project has not opted into security advisory coverage!"
  5293. }
  5294. }
  5295. },
  5296. "notification-url": "https://packages.drupal.org/8/downloads",
  5297. "license": [
  5298. "GPL-2.0-or-later"
  5299. ],
  5300. "authors": [
  5301. {
  5302. "name": "matsbla",
  5303. "homepage": "https://www.drupal.org/user/2325394"
  5304. },
  5305. {
  5306. "name": "vlad.dancer",
  5307. "homepage": "https://www.drupal.org/user/903844"
  5308. }
  5309. ],
  5310. "description": "Create customized lists and queries of translations from your database.",
  5311. "homepage": "https://www.drupal.org/project/translation_views",
  5312. "support": {
  5313. "source": "https://git.drupalcode.org/project/translation_views"
  5314. }
  5315. },
  5316. {
  5317. "name": "drupal/url_to_video_filter",
  5318. "version": "1.3.0",
  5319. "source": {
  5320. "type": "git",
  5321. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5322. "reference": "8.x-1.3"
  5323. },
  5324. "dist": {
  5325. "type": "zip",
  5326. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  5327. "reference": "8.x-1.3",
  5328. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  5329. },
  5330. "require": {
  5331. "drupal/core": "~8.0"
  5332. },
  5333. "type": "drupal-module",
  5334. "extra": {
  5335. "branch-alias": {
  5336. "dev-1.x": "1.x-dev"
  5337. },
  5338. "drupal": {
  5339. "version": "8.x-1.3",
  5340. "datestamp": "1532695981",
  5341. "security-coverage": {
  5342. "status": "covered",
  5343. "message": "Covered by Drupal's security advisory policy"
  5344. }
  5345. }
  5346. },
  5347. "notification-url": "https://packages.drupal.org/8/downloads",
  5348. "license": [
  5349. "GPL-2.0-or-later"
  5350. ],
  5351. "authors": [
  5352. {
  5353. "name": "Jaypan",
  5354. "homepage": "https://www.drupal.org/user/324696"
  5355. }
  5356. ],
  5357. "description": "Text filter to convert URLs to embedded videos",
  5358. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5359. "support": {
  5360. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5361. }
  5362. },
  5363. {
  5364. "name": "drupal/views_bulk_edit",
  5365. "version": "2.2.0",
  5366. "source": {
  5367. "type": "git",
  5368. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5369. "reference": "8.x-2.2"
  5370. },
  5371. "dist": {
  5372. "type": "zip",
  5373. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  5374. "reference": "8.x-2.2",
  5375. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  5376. },
  5377. "require": {
  5378. "drupal/core": "*",
  5379. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  5380. },
  5381. "type": "drupal-module",
  5382. "extra": {
  5383. "branch-alias": {
  5384. "dev-2.x": "2.x-dev"
  5385. },
  5386. "drupal": {
  5387. "version": "8.x-2.2",
  5388. "datestamp": "1532689085",
  5389. "security-coverage": {
  5390. "status": "covered",
  5391. "message": "Covered by Drupal's security advisory policy"
  5392. }
  5393. }
  5394. },
  5395. "notification-url": "https://packages.drupal.org/8/downloads",
  5396. "license": [
  5397. "GPL-2.0+"
  5398. ],
  5399. "authors": [
  5400. {
  5401. "name": "Marcin Grabias",
  5402. "homepage": "https://www.drupal.org/u/graber"
  5403. },
  5404. {
  5405. "name": "benjy",
  5406. "homepage": "https://www.drupal.org/user/1852732"
  5407. }
  5408. ],
  5409. "description": "Allows bulk edition of entity field values.",
  5410. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5411. "support": {
  5412. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5413. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5414. }
  5415. },
  5416. {
  5417. "name": "drupal/views_bulk_operations",
  5418. "version": "2.5.0",
  5419. "source": {
  5420. "type": "git",
  5421. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5422. "reference": "8.x-2.5"
  5423. },
  5424. "dist": {
  5425. "type": "zip",
  5426. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.5.zip",
  5427. "reference": "8.x-2.5",
  5428. "shasum": "3ec848b4f235720d05cb9713ea80a86415b6909f"
  5429. },
  5430. "require": {
  5431. "drupal/core": "^8.4"
  5432. },
  5433. "type": "drupal-module",
  5434. "extra": {
  5435. "branch-alias": {
  5436. "dev-2.x": "2.x-dev"
  5437. },
  5438. "drupal": {
  5439. "version": "8.x-2.5",
  5440. "datestamp": "1550740384",
  5441. "security-coverage": {
  5442. "status": "covered",
  5443. "message": "Covered by Drupal's security advisory policy"
  5444. }
  5445. },
  5446. "drush": {
  5447. "services": {
  5448. "drush.services.yml": "^9"
  5449. }
  5450. }
  5451. },
  5452. "notification-url": "https://packages.drupal.org/8/downloads",
  5453. "license": [
  5454. "GPL-2.0+"
  5455. ],
  5456. "authors": [
  5457. {
  5458. "name": "Marcin Grabias",
  5459. "homepage": "https://www.drupal.org/u/graber"
  5460. },
  5461. {
  5462. "name": "Jon Pugh",
  5463. "homepage": "https://www.drupal.org/user/17028"
  5464. },
  5465. {
  5466. "name": "bojanz",
  5467. "homepage": "https://www.drupal.org/user/86106"
  5468. },
  5469. {
  5470. "name": "infojunkie",
  5471. "homepage": "https://www.drupal.org/user/48424"
  5472. },
  5473. {
  5474. "name": "joelpittet",
  5475. "homepage": "https://www.drupal.org/user/160302"
  5476. }
  5477. ],
  5478. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5479. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5480. "support": {
  5481. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5482. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5483. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5484. }
  5485. },
  5486. {
  5487. "name": "drupal/workflow",
  5488. "version": "dev-1.x",
  5489. "source": {
  5490. "type": "git",
  5491. "url": "https://git.drupalcode.org/project/workflow.git",
  5492. "reference": "19030d5b4dd9523153a7af6e2df44cd9a03109b2"
  5493. },
  5494. "require": {
  5495. "drupal/core": "*"
  5496. },
  5497. "type": "drupal-module",
  5498. "extra": {
  5499. "branch-alias": {
  5500. "dev-1.x": "1.x-dev"
  5501. },
  5502. "drupal": {
  5503. "version": "8.x-1.1+35-dev",
  5504. "datestamp": "1548801480",
  5505. "security-coverage": {
  5506. "status": "not-covered",
  5507. "message": "Dev releases are not covered by Drupal security advisories."
  5508. }
  5509. }
  5510. },
  5511. "notification-url": "https://packages.drupal.org/8/downloads",
  5512. "license": [
  5513. "GPL-2.0-or-later"
  5514. ],
  5515. "authors": [
  5516. {
  5517. "name": "Bastlynn",
  5518. "homepage": "https://www.drupal.org/user/275249"
  5519. },
  5520. {
  5521. "name": "Heine",
  5522. "homepage": "https://www.drupal.org/user/17943"
  5523. },
  5524. {
  5525. "name": "JacobSingh",
  5526. "homepage": "https://www.drupal.org/user/68912"
  5527. },
  5528. {
  5529. "name": "NancyDru",
  5530. "homepage": "https://www.drupal.org/user/101412"
  5531. },
  5532. {
  5533. "name": "eaton",
  5534. "homepage": "https://www.drupal.org/user/16496"
  5535. },
  5536. {
  5537. "name": "johnv",
  5538. "homepage": "https://www.drupal.org/user/591042"
  5539. },
  5540. {
  5541. "name": "jvandyk",
  5542. "homepage": "https://www.drupal.org/user/2375"
  5543. },
  5544. {
  5545. "name": "mfredrickson",
  5546. "homepage": "https://www.drupal.org/user/31994"
  5547. },
  5548. {
  5549. "name": "q0rban",
  5550. "homepage": "https://www.drupal.org/user/31022"
  5551. }
  5552. ],
  5553. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5554. "homepage": "https://www.drupal.org/project/workflow",
  5555. "support": {
  5556. "source": "https://git.drupalcode.org/project/workflow"
  5557. },
  5558. "time": "2019-01-29T22:35:30+00:00"
  5559. },
  5560. {
  5561. "name": "drush/drush",
  5562. "version": "9.6.2",
  5563. "source": {
  5564. "type": "git",
  5565. "url": "https://github.com/drush-ops/drush.git",
  5566. "reference": "65d36cf542308d0b88f77c80f818a978d2844b80"
  5567. },
  5568. "dist": {
  5569. "type": "zip",
  5570. "url": "https://api.github.com/repos/drush-ops/drush/zipball/65d36cf542308d0b88f77c80f818a978d2844b80",
  5571. "reference": "65d36cf542308d0b88f77c80f818a978d2844b80",
  5572. "shasum": ""
  5573. },
  5574. "require": {
  5575. "chi-teck/drupal-code-generator": "^1.28.1",
  5576. "composer/semver": "^1.4",
  5577. "consolidation/annotated-command": "^2.12",
  5578. "consolidation/config": "^1.2",
  5579. "consolidation/filter-via-dot-access-data": "^1",
  5580. "consolidation/output-formatters": "^3.3.1",
  5581. "consolidation/robo": "^1.4.6",
  5582. "consolidation/site-alias": "^3.0.0@stable",
  5583. "consolidation/site-process": "^2.0.1",
  5584. "ext-dom": "*",
  5585. "grasmash/yaml-expander": "^1.1.1",
  5586. "league/container": "~2",
  5587. "php": ">=5.6.0",
  5588. "psr/log": "~1.0",
  5589. "psy/psysh": "~0.6",
  5590. "symfony/console": "^3.4",
  5591. "symfony/event-dispatcher": "^3.4",
  5592. "symfony/finder": "^3.4 || ^4.0",
  5593. "symfony/process": "^3.4",
  5594. "symfony/var-dumper": "^3.4 || ^4.0",
  5595. "symfony/yaml": "^3.4",
  5596. "webflo/drupal-finder": "^1.1",
  5597. "webmozart/path-util": "^2.1.0"
  5598. },
  5599. "require-dev": {
  5600. "composer/installers": "^1.2",
  5601. "cweagans/composer-patches": "~1.0",
  5602. "drupal/alinks": "1.0.0",
  5603. "drupal/devel": "^2",
  5604. "drupal/empty_theme": "1.0",
  5605. "g1a/composer-test-scenarios": "^3",
  5606. "lox/xhprof": "dev-master",
  5607. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5608. "squizlabs/php_codesniffer": "^2.7",
  5609. "vlucas/phpdotenv": "^2.4",
  5610. "webflo/drupal-core-strict": "8.6.x-dev"
  5611. },
  5612. "bin": [
  5613. "drush"
  5614. ],
  5615. "type": "library",
  5616. "extra": {
  5617. "installer-paths": {
  5618. "sut/core": [
  5619. "type:drupal-core"
  5620. ],
  5621. "sut/libraries/{$name}": [
  5622. "type:drupal-library"
  5623. ],
  5624. "sut/modules/unish/{$name}": [
  5625. "drupal/devel"
  5626. ],
  5627. "sut/themes/unish/{$name}": [
  5628. "drupal/empty_theme"
  5629. ],
  5630. "sut/modules/contrib/{$name}": [
  5631. "type:drupal-module"
  5632. ],
  5633. "sut/profiles/contrib/{$name}": [
  5634. "type:drupal-profile"
  5635. ],
  5636. "sut/themes/contrib/{$name}": [
  5637. "type:drupal-theme"
  5638. ],
  5639. "sut/drush/contrib/{$name}": [
  5640. "type:drupal-drush"
  5641. ]
  5642. },
  5643. "scenarios": {
  5644. "php5": {
  5645. "config": {
  5646. "platform": {
  5647. "php": "5.6.38"
  5648. }
  5649. }
  5650. }
  5651. },
  5652. "branch-alias": {
  5653. "dev-master": "9.x-dev"
  5654. }
  5655. },
  5656. "autoload": {
  5657. "psr-4": {
  5658. "Drush\\": "src/",
  5659. "Drush\\Internal\\": "src/internal-forks"
  5660. }
  5661. },
  5662. "notification-url": "https://packagist.org/downloads/",
  5663. "license": [
  5664. "GPL-2.0-or-later"
  5665. ],
  5666. "authors": [
  5667. {
  5668. "name": "Moshe Weitzman",
  5669. "email": "weitzman@tejasa.com"
  5670. },
  5671. {
  5672. "name": "Owen Barton",
  5673. "email": "drupal@owenbarton.com"
  5674. },
  5675. {
  5676. "name": "Greg Anderson",
  5677. "email": "greg.1.anderson@greenknowe.org"
  5678. },
  5679. {
  5680. "name": "Jonathan Araña Cruz",
  5681. "email": "jonhattan@faita.net"
  5682. },
  5683. {
  5684. "name": "Jonathan Hedstrom",
  5685. "email": "jhedstrom@gmail.com"
  5686. },
  5687. {
  5688. "name": "Christopher Gervais",
  5689. "email": "chris@ergonlogic.com"
  5690. },
  5691. {
  5692. "name": "Dave Reid",
  5693. "email": "dave@davereid.net"
  5694. },
  5695. {
  5696. "name": "Damian Lee",
  5697. "email": "damiankloip@googlemail.com"
  5698. }
  5699. ],
  5700. "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.",
  5701. "homepage": "http://www.drush.org",
  5702. "time": "2019-04-03T11:17:00+00:00"
  5703. },
  5704. {
  5705. "name": "easyrdf/easyrdf",
  5706. "version": "0.9.1",
  5707. "source": {
  5708. "type": "git",
  5709. "url": "https://github.com/njh/easyrdf.git",
  5710. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5711. },
  5712. "dist": {
  5713. "type": "zip",
  5714. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5715. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5716. "shasum": ""
  5717. },
  5718. "require": {
  5719. "ext-mbstring": "*",
  5720. "ext-pcre": "*",
  5721. "php": ">=5.2.8"
  5722. },
  5723. "require-dev": {
  5724. "phpunit/phpunit": "~3.5",
  5725. "sami/sami": "~1.4",
  5726. "squizlabs/php_codesniffer": "~1.4.3"
  5727. },
  5728. "suggest": {
  5729. "ml/json-ld": "~1.0"
  5730. },
  5731. "type": "library",
  5732. "autoload": {
  5733. "psr-0": {
  5734. "EasyRdf_": "lib/"
  5735. }
  5736. },
  5737. "notification-url": "https://packagist.org/downloads/",
  5738. "license": [
  5739. "BSD-3-Clause"
  5740. ],
  5741. "authors": [
  5742. {
  5743. "name": "Nicholas Humfrey",
  5744. "email": "njh@aelius.com",
  5745. "homepage": "http://www.aelius.com/njh/",
  5746. "role": "Developer"
  5747. },
  5748. {
  5749. "name": "Alexey Zakhlestin",
  5750. "email": "indeyets@gmail.com",
  5751. "role": "Developer"
  5752. }
  5753. ],
  5754. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5755. "homepage": "http://www.easyrdf.org/",
  5756. "keywords": [
  5757. "Linked Data",
  5758. "RDF",
  5759. "Semantic Web",
  5760. "Turtle",
  5761. "rdfa",
  5762. "sparql"
  5763. ],
  5764. "time": "2015-02-27T09:45:49+00:00"
  5765. },
  5766. {
  5767. "name": "egulias/email-validator",
  5768. "version": "1.2.15",
  5769. "source": {
  5770. "type": "git",
  5771. "url": "https://github.com/egulias/EmailValidator.git",
  5772. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  5773. },
  5774. "dist": {
  5775. "type": "zip",
  5776. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  5777. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  5778. "shasum": ""
  5779. },
  5780. "require": {
  5781. "doctrine/lexer": "^1.0.1",
  5782. "php": ">= 5.3.3"
  5783. },
  5784. "require-dev": {
  5785. "phpunit/phpunit": "^4.8.24"
  5786. },
  5787. "type": "library",
  5788. "extra": {
  5789. "branch-alias": {
  5790. "dev-master": "2.0.x-dev"
  5791. }
  5792. },
  5793. "autoload": {
  5794. "psr-0": {
  5795. "Egulias\\": "src/"
  5796. }
  5797. },
  5798. "notification-url": "https://packagist.org/downloads/",
  5799. "license": [
  5800. "MIT"
  5801. ],
  5802. "authors": [
  5803. {
  5804. "name": "Eduardo Gulias Davis"
  5805. }
  5806. ],
  5807. "description": "A library for validating emails",
  5808. "homepage": "https://github.com/egulias/EmailValidator",
  5809. "keywords": [
  5810. "email",
  5811. "emailvalidation",
  5812. "emailvalidator",
  5813. "validation",
  5814. "validator"
  5815. ],
  5816. "time": "2018-09-25T20:59:41+00:00"
  5817. },
  5818. {
  5819. "name": "grasmash/expander",
  5820. "version": "1.0.0",
  5821. "source": {
  5822. "type": "git",
  5823. "url": "https://github.com/grasmash/expander.git",
  5824. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5825. },
  5826. "dist": {
  5827. "type": "zip",
  5828. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5829. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5830. "shasum": ""
  5831. },
  5832. "require": {
  5833. "dflydev/dot-access-data": "^1.1.0",
  5834. "php": ">=5.4"
  5835. },
  5836. "require-dev": {
  5837. "greg-1-anderson/composer-test-scenarios": "^1",
  5838. "phpunit/phpunit": "^4|^5.5.4",
  5839. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5840. "squizlabs/php_codesniffer": "^2.7"
  5841. },
  5842. "type": "library",
  5843. "extra": {
  5844. "branch-alias": {
  5845. "dev-master": "1.x-dev"
  5846. }
  5847. },
  5848. "autoload": {
  5849. "psr-4": {
  5850. "Grasmash\\Expander\\": "src/"
  5851. }
  5852. },
  5853. "notification-url": "https://packagist.org/downloads/",
  5854. "license": [
  5855. "MIT"
  5856. ],
  5857. "authors": [
  5858. {
  5859. "name": "Matthew Grasmick"
  5860. }
  5861. ],
  5862. "description": "Expands internal property references in PHP arrays file.",
  5863. "time": "2017-12-21T22:14:55+00:00"
  5864. },
  5865. {
  5866. "name": "grasmash/yaml-expander",
  5867. "version": "1.4.0",
  5868. "source": {
  5869. "type": "git",
  5870. "url": "https://github.com/grasmash/yaml-expander.git",
  5871. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5872. },
  5873. "dist": {
  5874. "type": "zip",
  5875. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5876. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5877. "shasum": ""
  5878. },
  5879. "require": {
  5880. "dflydev/dot-access-data": "^1.1.0",
  5881. "php": ">=5.4",
  5882. "symfony/yaml": "^2.8.11|^3|^4"
  5883. },
  5884. "require-dev": {
  5885. "greg-1-anderson/composer-test-scenarios": "^1",
  5886. "phpunit/phpunit": "^4.8|^5.5.4",
  5887. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5888. "squizlabs/php_codesniffer": "^2.7"
  5889. },
  5890. "type": "library",
  5891. "extra": {
  5892. "branch-alias": {
  5893. "dev-master": "1.x-dev"
  5894. }
  5895. },
  5896. "autoload": {
  5897. "psr-4": {
  5898. "Grasmash\\YamlExpander\\": "src/"
  5899. }
  5900. },
  5901. "notification-url": "https://packagist.org/downloads/",
  5902. "license": [
  5903. "MIT"
  5904. ],
  5905. "authors": [
  5906. {
  5907. "name": "Matthew Grasmick"
  5908. }
  5909. ],
  5910. "description": "Expands internal property references in a yaml file.",
  5911. "time": "2017-12-16T16:06:03+00:00"
  5912. },
  5913. {
  5914. "name": "guzzlehttp/guzzle",
  5915. "version": "6.3.3",
  5916. "source": {
  5917. "type": "git",
  5918. "url": "https://github.com/guzzle/guzzle.git",
  5919. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  5920. },
  5921. "dist": {
  5922. "type": "zip",
  5923. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  5924. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  5925. "shasum": ""
  5926. },
  5927. "require": {
  5928. "guzzlehttp/promises": "^1.0",
  5929. "guzzlehttp/psr7": "^1.4",
  5930. "php": ">=5.5"
  5931. },
  5932. "require-dev": {
  5933. "ext-curl": "*",
  5934. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5935. "psr/log": "^1.0"
  5936. },
  5937. "suggest": {
  5938. "psr/log": "Required for using the Log middleware"
  5939. },
  5940. "type": "library",
  5941. "extra": {
  5942. "branch-alias": {
  5943. "dev-master": "6.3-dev"
  5944. }
  5945. },
  5946. "autoload": {
  5947. "files": [
  5948. "src/functions_include.php"
  5949. ],
  5950. "psr-4": {
  5951. "GuzzleHttp\\": "src/"
  5952. }
  5953. },
  5954. "notification-url": "https://packagist.org/downloads/",
  5955. "license": [
  5956. "MIT"
  5957. ],
  5958. "authors": [
  5959. {
  5960. "name": "Michael Dowling",
  5961. "email": "mtdowling@gmail.com",
  5962. "homepage": "https://github.com/mtdowling"
  5963. }
  5964. ],
  5965. "description": "Guzzle is a PHP HTTP client library",
  5966. "homepage": "http://guzzlephp.org/",
  5967. "keywords": [
  5968. "client",
  5969. "curl",
  5970. "framework",
  5971. "http",
  5972. "http client",
  5973. "rest",
  5974. "web service"
  5975. ],
  5976. "time": "2018-04-22T15:46:56+00:00"
  5977. },
  5978. {
  5979. "name": "guzzlehttp/promises",
  5980. "version": "v1.3.1",
  5981. "source": {
  5982. "type": "git",
  5983. "url": "https://github.com/guzzle/promises.git",
  5984. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  5985. },
  5986. "dist": {
  5987. "type": "zip",
  5988. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5989. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  5990. "shasum": ""
  5991. },
  5992. "require": {
  5993. "php": ">=5.5.0"
  5994. },
  5995. "require-dev": {
  5996. "phpunit/phpunit": "^4.0"
  5997. },
  5998. "type": "library",
  5999. "extra": {
  6000. "branch-alias": {
  6001. "dev-master": "1.4-dev"
  6002. }
  6003. },
  6004. "autoload": {
  6005. "psr-4": {
  6006. "GuzzleHttp\\Promise\\": "src/"
  6007. },
  6008. "files": [
  6009. "src/functions_include.php"
  6010. ]
  6011. },
  6012. "notification-url": "https://packagist.org/downloads/",
  6013. "license": [
  6014. "MIT"
  6015. ],
  6016. "authors": [
  6017. {
  6018. "name": "Michael Dowling",
  6019. "email": "mtdowling@gmail.com",
  6020. "homepage": "https://github.com/mtdowling"
  6021. }
  6022. ],
  6023. "description": "Guzzle promises library",
  6024. "keywords": [
  6025. "promise"
  6026. ],
  6027. "time": "2016-12-20T10:07:11+00:00"
  6028. },
  6029. {
  6030. "name": "guzzlehttp/psr7",
  6031. "version": "1.5.2",
  6032. "source": {
  6033. "type": "git",
  6034. "url": "https://github.com/guzzle/psr7.git",
  6035. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  6036. },
  6037. "dist": {
  6038. "type": "zip",
  6039. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  6040. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  6041. "shasum": ""
  6042. },
  6043. "require": {
  6044. "php": ">=5.4.0",
  6045. "psr/http-message": "~1.0",
  6046. "ralouphie/getallheaders": "^2.0.5"
  6047. },
  6048. "provide": {
  6049. "psr/http-message-implementation": "1.0"
  6050. },
  6051. "require-dev": {
  6052. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6053. },
  6054. "type": "library",
  6055. "extra": {
  6056. "branch-alias": {
  6057. "dev-master": "1.5-dev"
  6058. }
  6059. },
  6060. "autoload": {
  6061. "psr-4": {
  6062. "GuzzleHttp\\Psr7\\": "src/"
  6063. },
  6064. "files": [
  6065. "src/functions_include.php"
  6066. ]
  6067. },
  6068. "notification-url": "https://packagist.org/downloads/",
  6069. "license": [
  6070. "MIT"
  6071. ],
  6072. "authors": [
  6073. {
  6074. "name": "Michael Dowling",
  6075. "email": "mtdowling@gmail.com",
  6076. "homepage": "https://github.com/mtdowling"
  6077. },
  6078. {
  6079. "name": "Tobias Schultze",
  6080. "homepage": "https://github.com/Tobion"
  6081. }
  6082. ],
  6083. "description": "PSR-7 message implementation that also provides common utility methods",
  6084. "keywords": [
  6085. "http",
  6086. "message",
  6087. "psr-7",
  6088. "request",
  6089. "response",
  6090. "stream",
  6091. "uri",
  6092. "url"
  6093. ],
  6094. "time": "2018-12-04T20:46:45+00:00"
  6095. },
  6096. {
  6097. "name": "jakub-onderka/php-console-color",
  6098. "version": "v0.2",
  6099. "source": {
  6100. "type": "git",
  6101. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6102. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6103. },
  6104. "dist": {
  6105. "type": "zip",
  6106. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6107. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6108. "shasum": ""
  6109. },
  6110. "require": {
  6111. "php": ">=5.4.0"
  6112. },
  6113. "require-dev": {
  6114. "jakub-onderka/php-code-style": "1.0",
  6115. "jakub-onderka/php-parallel-lint": "1.0",
  6116. "jakub-onderka/php-var-dump-check": "0.*",
  6117. "phpunit/phpunit": "~4.3",
  6118. "squizlabs/php_codesniffer": "1.*"
  6119. },
  6120. "type": "library",
  6121. "autoload": {
  6122. "psr-4": {
  6123. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6124. }
  6125. },
  6126. "notification-url": "https://packagist.org/downloads/",
  6127. "license": [
  6128. "BSD-2-Clause"
  6129. ],
  6130. "authors": [
  6131. {
  6132. "name": "Jakub Onderka",
  6133. "email": "jakub.onderka@gmail.com"
  6134. }
  6135. ],
  6136. "time": "2018-09-29T17:23:10+00:00"
  6137. },
  6138. {
  6139. "name": "jakub-onderka/php-console-highlighter",
  6140. "version": "v0.4",
  6141. "source": {
  6142. "type": "git",
  6143. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6144. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6145. },
  6146. "dist": {
  6147. "type": "zip",
  6148. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6149. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6150. "shasum": ""
  6151. },
  6152. "require": {
  6153. "ext-tokenizer": "*",
  6154. "jakub-onderka/php-console-color": "~0.2",
  6155. "php": ">=5.4.0"
  6156. },
  6157. "require-dev": {
  6158. "jakub-onderka/php-code-style": "~1.0",
  6159. "jakub-onderka/php-parallel-lint": "~1.0",
  6160. "jakub-onderka/php-var-dump-check": "~0.1",
  6161. "phpunit/phpunit": "~4.0",
  6162. "squizlabs/php_codesniffer": "~1.5"
  6163. },
  6164. "type": "library",
  6165. "autoload": {
  6166. "psr-4": {
  6167. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6168. }
  6169. },
  6170. "notification-url": "https://packagist.org/downloads/",
  6171. "license": [
  6172. "MIT"
  6173. ],
  6174. "authors": [
  6175. {
  6176. "name": "Jakub Onderka",
  6177. "email": "acci@acci.cz",
  6178. "homepage": "http://www.acci.cz/"
  6179. }
  6180. ],
  6181. "description": "Highlight PHP code in terminal",
  6182. "time": "2018-09-29T18:48:56+00:00"
  6183. },
  6184. {
  6185. "name": "league/container",
  6186. "version": "2.4.1",
  6187. "source": {
  6188. "type": "git",
  6189. "url": "https://github.com/thephpleague/container.git",
  6190. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6191. },
  6192. "dist": {
  6193. "type": "zip",
  6194. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6195. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6196. "shasum": ""
  6197. },
  6198. "require": {
  6199. "container-interop/container-interop": "^1.2",
  6200. "php": "^5.4.0 || ^7.0"
  6201. },
  6202. "provide": {
  6203. "container-interop/container-interop-implementation": "^1.2",
  6204. "psr/container-implementation": "^1.0"
  6205. },
  6206. "replace": {
  6207. "orno/di": "~2.0"
  6208. },
  6209. "require-dev": {
  6210. "phpunit/phpunit": "4.*"
  6211. },
  6212. "type": "library",
  6213. "extra": {
  6214. "branch-alias": {
  6215. "dev-2.x": "2.x-dev",
  6216. "dev-1.x": "1.x-dev"
  6217. }
  6218. },
  6219. "autoload": {
  6220. "psr-4": {
  6221. "League\\Container\\": "src"
  6222. }
  6223. },
  6224. "notification-url": "https://packagist.org/downloads/",
  6225. "license": [
  6226. "MIT"
  6227. ],
  6228. "authors": [
  6229. {
  6230. "name": "Phil Bennett",
  6231. "email": "philipobenito@gmail.com",
  6232. "homepage": "http://www.philipobenito.com",
  6233. "role": "Developer"
  6234. }
  6235. ],
  6236. "description": "A fast and intuitive dependency injection container.",
  6237. "homepage": "https://github.com/thephpleague/container",
  6238. "keywords": [
  6239. "container",
  6240. "dependency",
  6241. "di",
  6242. "injection",
  6243. "league",
  6244. "provider",
  6245. "service"
  6246. ],
  6247. "time": "2017-05-10T09:20:27+00:00"
  6248. },
  6249. {
  6250. "name": "masterminds/html5",
  6251. "version": "2.6.0",
  6252. "source": {
  6253. "type": "git",
  6254. "url": "https://github.com/Masterminds/html5-php.git",
  6255. "reference": "c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad"
  6256. },
  6257. "dist": {
  6258. "type": "zip",
  6259. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad",
  6260. "reference": "c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad",
  6261. "shasum": ""
  6262. },
  6263. "require": {
  6264. "ext-ctype": "*",
  6265. "ext-dom": "*",
  6266. "ext-libxml": "*",
  6267. "php": ">=5.3.0"
  6268. },
  6269. "require-dev": {
  6270. "phpunit/phpunit": "^4.8.35",
  6271. "sami/sami": "~2.0",
  6272. "satooshi/php-coveralls": "1.0.*"
  6273. },
  6274. "type": "library",
  6275. "extra": {
  6276. "branch-alias": {
  6277. "dev-master": "2.6-dev"
  6278. }
  6279. },
  6280. "autoload": {
  6281. "psr-4": {
  6282. "Masterminds\\": "src"
  6283. }
  6284. },
  6285. "notification-url": "https://packagist.org/downloads/",
  6286. "license": [
  6287. "MIT"
  6288. ],
  6289. "authors": [
  6290. {
  6291. "name": "Matt Butcher",
  6292. "email": "technosophos@gmail.com"
  6293. },
  6294. {
  6295. "name": "Asmir Mustafic",
  6296. "email": "goetas@gmail.com"
  6297. },
  6298. {
  6299. "name": "Matt Farina",
  6300. "email": "matt@mattfarina.com"
  6301. }
  6302. ],
  6303. "description": "An HTML5 parser and serializer.",
  6304. "homepage": "http://masterminds.github.io/html5-php",
  6305. "keywords": [
  6306. "HTML5",
  6307. "dom",
  6308. "html",
  6309. "parser",
  6310. "querypath",
  6311. "serializer",
  6312. "xml"
  6313. ],
  6314. "time": "2019-03-10T11:41:28+00:00"
  6315. },
  6316. {
  6317. "name": "nikic/php-parser",
  6318. "version": "v4.2.1",
  6319. "source": {
  6320. "type": "git",
  6321. "url": "https://github.com/nikic/PHP-Parser.git",
  6322. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0"
  6323. },
  6324. "dist": {
  6325. "type": "zip",
  6326. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0",
  6327. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0",
  6328. "shasum": ""
  6329. },
  6330. "require": {
  6331. "ext-tokenizer": "*",
  6332. "php": ">=7.0"
  6333. },
  6334. "require-dev": {
  6335. "phpunit/phpunit": "^6.5 || ^7.0"
  6336. },
  6337. "bin": [
  6338. "bin/php-parse"
  6339. ],
  6340. "type": "library",
  6341. "extra": {
  6342. "branch-alias": {
  6343. "dev-master": "4.2-dev"
  6344. }
  6345. },
  6346. "autoload": {
  6347. "psr-4": {
  6348. "PhpParser\\": "lib/PhpParser"
  6349. }
  6350. },
  6351. "notification-url": "https://packagist.org/downloads/",
  6352. "license": [
  6353. "BSD-3-Clause"
  6354. ],
  6355. "authors": [
  6356. {
  6357. "name": "Nikita Popov"
  6358. }
  6359. ],
  6360. "description": "A PHP parser written in PHP",
  6361. "keywords": [
  6362. "parser",
  6363. "php"
  6364. ],
  6365. "time": "2019-02-16T20:54:15+00:00"
  6366. },
  6367. {
  6368. "name": "oomphinc/composer-installers-extender",
  6369. "version": "v1.1.2",
  6370. "source": {
  6371. "type": "git",
  6372. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  6373. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  6374. },
  6375. "dist": {
  6376. "type": "zip",
  6377. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6378. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6379. "shasum": ""
  6380. },
  6381. "require": {
  6382. "composer-plugin-api": "^1.0",
  6383. "composer/installers": "^1.0"
  6384. },
  6385. "type": "composer-plugin",
  6386. "extra": {
  6387. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  6388. },
  6389. "autoload": {
  6390. "psr-4": {
  6391. "OomphInc\\ComposerInstallersExtender\\": "src/"
  6392. }
  6393. },
  6394. "notification-url": "https://packagist.org/downloads/",
  6395. "license": [
  6396. "MIT"
  6397. ],
  6398. "authors": [
  6399. {
  6400. "name": "Stephen Beemsterboer",
  6401. "email": "stephen@oomphinc.com",
  6402. "homepage": "https://github.com/balbuf"
  6403. }
  6404. ],
  6405. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  6406. "homepage": "http://www.oomphinc.com/",
  6407. "time": "2017-03-31T16:57:39+00:00"
  6408. },
  6409. {
  6410. "name": "paragonie/random_compat",
  6411. "version": "v2.0.18",
  6412. "source": {
  6413. "type": "git",
  6414. "url": "https://github.com/paragonie/random_compat.git",
  6415. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  6416. },
  6417. "dist": {
  6418. "type": "zip",
  6419. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  6420. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  6421. "shasum": ""
  6422. },
  6423. "require": {
  6424. "php": ">=5.2.0"
  6425. },
  6426. "require-dev": {
  6427. "phpunit/phpunit": "4.*|5.*"
  6428. },
  6429. "suggest": {
  6430. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6431. },
  6432. "type": "library",
  6433. "autoload": {
  6434. "files": [
  6435. "lib/random.php"
  6436. ]
  6437. },
  6438. "notification-url": "https://packagist.org/downloads/",
  6439. "license": [
  6440. "MIT"
  6441. ],
  6442. "authors": [
  6443. {
  6444. "name": "Paragon Initiative Enterprises",
  6445. "email": "security@paragonie.com",
  6446. "homepage": "https://paragonie.com"
  6447. }
  6448. ],
  6449. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6450. "keywords": [
  6451. "csprng",
  6452. "polyfill",
  6453. "pseudorandom",
  6454. "random"
  6455. ],
  6456. "time": "2019-01-03T20:59:08+00:00"
  6457. },
  6458. {
  6459. "name": "psr/container",
  6460. "version": "1.0.0",
  6461. "source": {
  6462. "type": "git",
  6463. "url": "https://github.com/php-fig/container.git",
  6464. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  6465. },
  6466. "dist": {
  6467. "type": "zip",
  6468. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6469. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6470. "shasum": ""
  6471. },
  6472. "require": {
  6473. "php": ">=5.3.0"
  6474. },
  6475. "type": "library",
  6476. "extra": {
  6477. "branch-alias": {
  6478. "dev-master": "1.0.x-dev"
  6479. }
  6480. },
  6481. "autoload": {
  6482. "psr-4": {
  6483. "Psr\\Container\\": "src/"
  6484. }
  6485. },
  6486. "notification-url": "https://packagist.org/downloads/",
  6487. "license": [
  6488. "MIT"
  6489. ],
  6490. "authors": [
  6491. {
  6492. "name": "PHP-FIG",
  6493. "homepage": "http://www.php-fig.org/"
  6494. }
  6495. ],
  6496. "description": "Common Container Interface (PHP FIG PSR-11)",
  6497. "homepage": "https://github.com/php-fig/container",
  6498. "keywords": [
  6499. "PSR-11",
  6500. "container",
  6501. "container-interface",
  6502. "container-interop",
  6503. "psr"
  6504. ],
  6505. "time": "2017-02-14T16:28:37+00:00"
  6506. },
  6507. {
  6508. "name": "psr/http-message",
  6509. "version": "1.0.1",
  6510. "source": {
  6511. "type": "git",
  6512. "url": "https://github.com/php-fig/http-message.git",
  6513. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  6514. },
  6515. "dist": {
  6516. "type": "zip",
  6517. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  6518. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  6519. "shasum": ""
  6520. },
  6521. "require": {
  6522. "php": ">=5.3.0"
  6523. },
  6524. "type": "library",
  6525. "extra": {
  6526. "branch-alias": {
  6527. "dev-master": "1.0.x-dev"
  6528. }
  6529. },
  6530. "autoload": {
  6531. "psr-4": {
  6532. "Psr\\Http\\Message\\": "src/"
  6533. }
  6534. },
  6535. "notification-url": "https://packagist.org/downloads/",
  6536. "license": [
  6537. "MIT"
  6538. ],
  6539. "authors": [
  6540. {
  6541. "name": "PHP-FIG",
  6542. "homepage": "http://www.php-fig.org/"
  6543. }
  6544. ],
  6545. "description": "Common interface for HTTP messages",
  6546. "homepage": "https://github.com/php-fig/http-message",
  6547. "keywords": [
  6548. "http",
  6549. "http-message",
  6550. "psr",
  6551. "psr-7",
  6552. "request",
  6553. "response"
  6554. ],
  6555. "time": "2016-08-06T14:39:51+00:00"
  6556. },
  6557. {
  6558. "name": "psr/log",
  6559. "version": "1.1.0",
  6560. "source": {
  6561. "type": "git",
  6562. "url": "https://github.com/php-fig/log.git",
  6563. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  6564. },
  6565. "dist": {
  6566. "type": "zip",
  6567. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  6568. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  6569. "shasum": ""
  6570. },
  6571. "require": {
  6572. "php": ">=5.3.0"
  6573. },
  6574. "type": "library",
  6575. "extra": {
  6576. "branch-alias": {
  6577. "dev-master": "1.0.x-dev"
  6578. }
  6579. },
  6580. "autoload": {
  6581. "psr-4": {
  6582. "Psr\\Log\\": "Psr/Log/"
  6583. }
  6584. },
  6585. "notification-url": "https://packagist.org/downloads/",
  6586. "license": [
  6587. "MIT"
  6588. ],
  6589. "authors": [
  6590. {
  6591. "name": "PHP-FIG",
  6592. "homepage": "http://www.php-fig.org/"
  6593. }
  6594. ],
  6595. "description": "Common interface for logging libraries",
  6596. "homepage": "https://github.com/php-fig/log",
  6597. "keywords": [
  6598. "log",
  6599. "psr",
  6600. "psr-3"
  6601. ],
  6602. "time": "2018-11-20T15:27:04+00:00"
  6603. },
  6604. {
  6605. "name": "psy/psysh",
  6606. "version": "v0.9.9",
  6607. "source": {
  6608. "type": "git",
  6609. "url": "https://github.com/bobthecow/psysh.git",
  6610. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  6611. },
  6612. "dist": {
  6613. "type": "zip",
  6614. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  6615. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  6616. "shasum": ""
  6617. },
  6618. "require": {
  6619. "dnoegel/php-xdg-base-dir": "0.1",
  6620. "ext-json": "*",
  6621. "ext-tokenizer": "*",
  6622. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  6623. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  6624. "php": ">=5.4.0",
  6625. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  6626. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  6627. },
  6628. "require-dev": {
  6629. "bamarni/composer-bin-plugin": "^1.2",
  6630. "hoa/console": "~2.15|~3.16",
  6631. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  6632. },
  6633. "suggest": {
  6634. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6635. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6636. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6637. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  6638. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  6639. },
  6640. "bin": [
  6641. "bin/psysh"
  6642. ],
  6643. "type": "library",
  6644. "extra": {
  6645. "branch-alias": {
  6646. "dev-develop": "0.9.x-dev"
  6647. }
  6648. },
  6649. "autoload": {
  6650. "files": [
  6651. "src/functions.php"
  6652. ],
  6653. "psr-4": {
  6654. "Psy\\": "src/"
  6655. }
  6656. },
  6657. "notification-url": "https://packagist.org/downloads/",
  6658. "license": [
  6659. "MIT"
  6660. ],
  6661. "authors": [
  6662. {
  6663. "name": "Justin Hileman",
  6664. "email": "justin@justinhileman.info",
  6665. "homepage": "http://justinhileman.com"
  6666. }
  6667. ],
  6668. "description": "An interactive shell for modern PHP.",
  6669. "homepage": "http://psysh.org",
  6670. "keywords": [
  6671. "REPL",
  6672. "console",
  6673. "interactive",
  6674. "shell"
  6675. ],
  6676. "time": "2018-10-13T15:16:03+00:00"
  6677. },
  6678. {
  6679. "name": "ralouphie/getallheaders",
  6680. "version": "2.0.5",
  6681. "source": {
  6682. "type": "git",
  6683. "url": "https://github.com/ralouphie/getallheaders.git",
  6684. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  6685. },
  6686. "dist": {
  6687. "type": "zip",
  6688. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  6689. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  6690. "shasum": ""
  6691. },
  6692. "require": {
  6693. "php": ">=5.3"
  6694. },
  6695. "require-dev": {
  6696. "phpunit/phpunit": "~3.7.0",
  6697. "satooshi/php-coveralls": ">=1.0"
  6698. },
  6699. "type": "library",
  6700. "autoload": {
  6701. "files": [
  6702. "src/getallheaders.php"
  6703. ]
  6704. },
  6705. "notification-url": "https://packagist.org/downloads/",
  6706. "license": [
  6707. "MIT"
  6708. ],
  6709. "authors": [
  6710. {
  6711. "name": "Ralph Khattar",
  6712. "email": "ralph.khattar@gmail.com"
  6713. }
  6714. ],
  6715. "description": "A polyfill for getallheaders.",
  6716. "time": "2016-02-11T07:05:27+00:00"
  6717. },
  6718. {
  6719. "name": "stack/builder",
  6720. "version": "v1.0.5",
  6721. "source": {
  6722. "type": "git",
  6723. "url": "https://github.com/stackphp/builder.git",
  6724. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  6725. },
  6726. "dist": {
  6727. "type": "zip",
  6728. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  6729. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  6730. "shasum": ""
  6731. },
  6732. "require": {
  6733. "php": ">=5.3.0",
  6734. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  6735. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  6736. },
  6737. "require-dev": {
  6738. "silex/silex": "~1.0"
  6739. },
  6740. "type": "library",
  6741. "extra": {
  6742. "branch-alias": {
  6743. "dev-master": "1.0-dev"
  6744. }
  6745. },
  6746. "autoload": {
  6747. "psr-0": {
  6748. "Stack": "src"
  6749. }
  6750. },
  6751. "notification-url": "https://packagist.org/downloads/",
  6752. "license": [
  6753. "MIT"
  6754. ],
  6755. "authors": [
  6756. {
  6757. "name": "Igor Wiedler",
  6758. "email": "igor@wiedler.ch"
  6759. }
  6760. ],
  6761. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  6762. "keywords": [
  6763. "stack"
  6764. ],
  6765. "time": "2017-11-18T14:57:29+00:00"
  6766. },
  6767. {
  6768. "name": "stecman/symfony-console-completion",
  6769. "version": "0.10.0",
  6770. "source": {
  6771. "type": "git",
  6772. "url": "https://github.com/stecman/symfony-console-completion.git",
  6773. "reference": "bc095febf00aa42ace233b344d4561071d7c912b"
  6774. },
  6775. "dist": {
  6776. "type": "zip",
  6777. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/bc095febf00aa42ace233b344d4561071d7c912b",
  6778. "reference": "bc095febf00aa42ace233b344d4561071d7c912b",
  6779. "shasum": ""
  6780. },
  6781. "require": {
  6782. "php": ">=5.3.2",
  6783. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  6784. },
  6785. "require-dev": {
  6786. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  6787. },
  6788. "type": "library",
  6789. "extra": {
  6790. "branch-alias": {
  6791. "dev-master": "0.6.x-dev"
  6792. }
  6793. },
  6794. "autoload": {
  6795. "psr-4": {
  6796. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  6797. }
  6798. },
  6799. "notification-url": "https://packagist.org/downloads/",
  6800. "license": [
  6801. "MIT"
  6802. ],
  6803. "authors": [
  6804. {
  6805. "name": "Stephen Holdaway",
  6806. "email": "stephen@stecman.co.nz"
  6807. }
  6808. ],
  6809. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  6810. "time": "2019-04-26T12:14:26+00:00"
  6811. },
  6812. {
  6813. "name": "symfony-cmf/routing",
  6814. "version": "1.4.1",
  6815. "source": {
  6816. "type": "git",
  6817. "url": "https://github.com/symfony-cmf/routing.git",
  6818. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  6819. },
  6820. "dist": {
  6821. "type": "zip",
  6822. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  6823. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  6824. "shasum": ""
  6825. },
  6826. "require": {
  6827. "php": "^5.3.9|^7.0",
  6828. "psr/log": "1.*",
  6829. "symfony/http-kernel": "^2.2|3.*",
  6830. "symfony/routing": "^2.2|3.*"
  6831. },
  6832. "require-dev": {
  6833. "friendsofsymfony/jsrouting-bundle": "^1.1",
  6834. "symfony-cmf/testing": "^1.3",
  6835. "symfony/config": "^2.2|3.*",
  6836. "symfony/dependency-injection": "^2.0.5|3.*",
  6837. "symfony/event-dispatcher": "^2.1|3.*"
  6838. },
  6839. "suggest": {
  6840. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  6841. },
  6842. "type": "library",
  6843. "extra": {
  6844. "branch-alias": {
  6845. "dev-master": "1.4-dev"
  6846. }
  6847. },
  6848. "autoload": {
  6849. "psr-4": {
  6850. "Symfony\\Cmf\\Component\\Routing\\": ""
  6851. }
  6852. },
  6853. "notification-url": "https://packagist.org/downloads/",
  6854. "license": [
  6855. "MIT"
  6856. ],
  6857. "authors": [
  6858. {
  6859. "name": "Symfony CMF Community",
  6860. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  6861. }
  6862. ],
  6863. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  6864. "homepage": "http://cmf.symfony.com",
  6865. "keywords": [
  6866. "database",
  6867. "routing"
  6868. ],
  6869. "time": "2017-05-09T08:10:41+00:00"
  6870. },
  6871. {
  6872. "name": "symfony/class-loader",
  6873. "version": "v3.4.26",
  6874. "source": {
  6875. "type": "git",
  6876. "url": "https://github.com/symfony/class-loader.git",
  6877. "reference": "4459eef5298dedfb69f771186a580062b8516497"
  6878. },
  6879. "dist": {
  6880. "type": "zip",
  6881. "url": "https://api.github.com/repos/symfony/class-loader/zipball/4459eef5298dedfb69f771186a580062b8516497",
  6882. "reference": "4459eef5298dedfb69f771186a580062b8516497",
  6883. "shasum": ""
  6884. },
  6885. "require": {
  6886. "php": "^5.5.9|>=7.0.8"
  6887. },
  6888. "require-dev": {
  6889. "symfony/finder": "~2.8|~3.0|~4.0",
  6890. "symfony/polyfill-apcu": "~1.1"
  6891. },
  6892. "suggest": {
  6893. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  6894. },
  6895. "type": "library",
  6896. "extra": {
  6897. "branch-alias": {
  6898. "dev-master": "3.4-dev"
  6899. }
  6900. },
  6901. "autoload": {
  6902. "psr-4": {
  6903. "Symfony\\Component\\ClassLoader\\": ""
  6904. },
  6905. "exclude-from-classmap": [
  6906. "/Tests/"
  6907. ]
  6908. },
  6909. "notification-url": "https://packagist.org/downloads/",
  6910. "license": [
  6911. "MIT"
  6912. ],
  6913. "authors": [
  6914. {
  6915. "name": "Fabien Potencier",
  6916. "email": "fabien@symfony.com"
  6917. },
  6918. {
  6919. "name": "Symfony Community",
  6920. "homepage": "https://symfony.com/contributors"
  6921. }
  6922. ],
  6923. "description": "Symfony ClassLoader Component",
  6924. "homepage": "https://symfony.com",
  6925. "time": "2019-01-16T09:39:14+00:00"
  6926. },
  6927. {
  6928. "name": "symfony/config",
  6929. "version": "v3.4.26",
  6930. "source": {
  6931. "type": "git",
  6932. "url": "https://github.com/symfony/config.git",
  6933. "reference": "177a276c01575253c95cefe0866e3d1b57637fe0"
  6934. },
  6935. "dist": {
  6936. "type": "zip",
  6937. "url": "https://api.github.com/repos/symfony/config/zipball/177a276c01575253c95cefe0866e3d1b57637fe0",
  6938. "reference": "177a276c01575253c95cefe0866e3d1b57637fe0",
  6939. "shasum": ""
  6940. },
  6941. "require": {
  6942. "php": "^5.5.9|>=7.0.8",
  6943. "symfony/filesystem": "~2.8|~3.0|~4.0",
  6944. "symfony/polyfill-ctype": "~1.8"
  6945. },
  6946. "conflict": {
  6947. "symfony/dependency-injection": "<3.3",
  6948. "symfony/finder": "<3.3"
  6949. },
  6950. "require-dev": {
  6951. "symfony/dependency-injection": "~3.3|~4.0",
  6952. "symfony/event-dispatcher": "~3.3|~4.0",
  6953. "symfony/finder": "~3.3|~4.0",
  6954. "symfony/yaml": "~3.0|~4.0"
  6955. },
  6956. "suggest": {
  6957. "symfony/yaml": "To use the yaml reference dumper"
  6958. },
  6959. "type": "library",
  6960. "extra": {
  6961. "branch-alias": {
  6962. "dev-master": "3.4-dev"
  6963. }
  6964. },
  6965. "autoload": {
  6966. "psr-4": {
  6967. "Symfony\\Component\\Config\\": ""
  6968. },
  6969. "exclude-from-classmap": [
  6970. "/Tests/"
  6971. ]
  6972. },
  6973. "notification-url": "https://packagist.org/downloads/",
  6974. "license": [
  6975. "MIT"
  6976. ],
  6977. "authors": [
  6978. {
  6979. "name": "Fabien Potencier",
  6980. "email": "fabien@symfony.com"
  6981. },
  6982. {
  6983. "name": "Symfony Community",
  6984. "homepage": "https://symfony.com/contributors"
  6985. }
  6986. ],
  6987. "description": "Symfony Config Component",
  6988. "homepage": "https://symfony.com",
  6989. "time": "2019-02-23T15:06:07+00:00"
  6990. },
  6991. {
  6992. "name": "symfony/console",
  6993. "version": "v3.4.26",
  6994. "source": {
  6995. "type": "git",
  6996. "url": "https://github.com/symfony/console.git",
  6997. "reference": "15a9104356436cb26e08adab97706654799d31d8"
  6998. },
  6999. "dist": {
  7000. "type": "zip",
  7001. "url": "https://api.github.com/repos/symfony/console/zipball/15a9104356436cb26e08adab97706654799d31d8",
  7002. "reference": "15a9104356436cb26e08adab97706654799d31d8",
  7003. "shasum": ""
  7004. },
  7005. "require": {
  7006. "php": "^5.5.9|>=7.0.8",
  7007. "symfony/debug": "~2.8|~3.0|~4.0",
  7008. "symfony/polyfill-mbstring": "~1.0"
  7009. },
  7010. "conflict": {
  7011. "symfony/dependency-injection": "<3.4",
  7012. "symfony/process": "<3.3"
  7013. },
  7014. "provide": {
  7015. "psr/log-implementation": "1.0"
  7016. },
  7017. "require-dev": {
  7018. "psr/log": "~1.0",
  7019. "symfony/config": "~3.3|~4.0",
  7020. "symfony/dependency-injection": "~3.4|~4.0",
  7021. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7022. "symfony/lock": "~3.4|~4.0",
  7023. "symfony/process": "~3.3|~4.0"
  7024. },
  7025. "suggest": {
  7026. "psr/log": "For using the console logger",
  7027. "symfony/event-dispatcher": "",
  7028. "symfony/lock": "",
  7029. "symfony/process": ""
  7030. },
  7031. "type": "library",
  7032. "extra": {
  7033. "branch-alias": {
  7034. "dev-master": "3.4-dev"
  7035. }
  7036. },
  7037. "autoload": {
  7038. "psr-4": {
  7039. "Symfony\\Component\\Console\\": ""
  7040. },
  7041. "exclude-from-classmap": [
  7042. "/Tests/"
  7043. ]
  7044. },
  7045. "notification-url": "https://packagist.org/downloads/",
  7046. "license": [
  7047. "MIT"
  7048. ],
  7049. "authors": [
  7050. {
  7051. "name": "Fabien Potencier",
  7052. "email": "fabien@symfony.com"
  7053. },
  7054. {
  7055. "name": "Symfony Community",
  7056. "homepage": "https://symfony.com/contributors"
  7057. }
  7058. ],
  7059. "description": "Symfony Console Component",
  7060. "homepage": "https://symfony.com",
  7061. "time": "2019-04-08T09:29:13+00:00"
  7062. },
  7063. {
  7064. "name": "symfony/css-selector",
  7065. "version": "v3.4.26",
  7066. "source": {
  7067. "type": "git",
  7068. "url": "https://github.com/symfony/css-selector.git",
  7069. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf"
  7070. },
  7071. "dist": {
  7072. "type": "zip",
  7073. "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  7074. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  7075. "shasum": ""
  7076. },
  7077. "require": {
  7078. "php": "^5.5.9|>=7.0.8"
  7079. },
  7080. "type": "library",
  7081. "extra": {
  7082. "branch-alias": {
  7083. "dev-master": "3.4-dev"
  7084. }
  7085. },
  7086. "autoload": {
  7087. "psr-4": {
  7088. "Symfony\\Component\\CssSelector\\": ""
  7089. },
  7090. "exclude-from-classmap": [
  7091. "/Tests/"
  7092. ]
  7093. },
  7094. "notification-url": "https://packagist.org/downloads/",
  7095. "license": [
  7096. "MIT"
  7097. ],
  7098. "authors": [
  7099. {
  7100. "name": "Jean-François Simon",
  7101. "email": "jeanfrancois.simon@sensiolabs.com"
  7102. },
  7103. {
  7104. "name": "Fabien Potencier",
  7105. "email": "fabien@symfony.com"
  7106. },
  7107. {
  7108. "name": "Symfony Community",
  7109. "homepage": "https://symfony.com/contributors"
  7110. }
  7111. ],
  7112. "description": "Symfony CssSelector Component",
  7113. "homepage": "https://symfony.com",
  7114. "time": "2019-01-16T09:39:14+00:00"
  7115. },
  7116. {
  7117. "name": "symfony/debug",
  7118. "version": "v3.4.26",
  7119. "source": {
  7120. "type": "git",
  7121. "url": "https://github.com/symfony/debug.git",
  7122. "reference": "681afbb26488903c5ac15e63734f1d8ac430c9b9"
  7123. },
  7124. "dist": {
  7125. "type": "zip",
  7126. "url": "https://api.github.com/repos/symfony/debug/zipball/681afbb26488903c5ac15e63734f1d8ac430c9b9",
  7127. "reference": "681afbb26488903c5ac15e63734f1d8ac430c9b9",
  7128. "shasum": ""
  7129. },
  7130. "require": {
  7131. "php": "^5.5.9|>=7.0.8",
  7132. "psr/log": "~1.0"
  7133. },
  7134. "conflict": {
  7135. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7136. },
  7137. "require-dev": {
  7138. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7139. },
  7140. "type": "library",
  7141. "extra": {
  7142. "branch-alias": {
  7143. "dev-master": "3.4-dev"
  7144. }
  7145. },
  7146. "autoload": {
  7147. "psr-4": {
  7148. "Symfony\\Component\\Debug\\": ""
  7149. },
  7150. "exclude-from-classmap": [
  7151. "/Tests/"
  7152. ]
  7153. },
  7154. "notification-url": "https://packagist.org/downloads/",
  7155. "license": [
  7156. "MIT"
  7157. ],
  7158. "authors": [
  7159. {
  7160. "name": "Fabien Potencier",
  7161. "email": "fabien@symfony.com"
  7162. },
  7163. {
  7164. "name": "Symfony Community",
  7165. "homepage": "https://symfony.com/contributors"
  7166. }
  7167. ],
  7168. "description": "Symfony Debug Component",
  7169. "homepage": "https://symfony.com",
  7170. "time": "2019-04-11T09:48:14+00:00"
  7171. },
  7172. {
  7173. "name": "symfony/dependency-injection",
  7174. "version": "v3.4.26",
  7175. "source": {
  7176. "type": "git",
  7177. "url": "https://github.com/symfony/dependency-injection.git",
  7178. "reference": "dee85a9148399cdb2731603802842bcfd8afe5ab"
  7179. },
  7180. "dist": {
  7181. "type": "zip",
  7182. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/dee85a9148399cdb2731603802842bcfd8afe5ab",
  7183. "reference": "dee85a9148399cdb2731603802842bcfd8afe5ab",
  7184. "shasum": ""
  7185. },
  7186. "require": {
  7187. "php": "^5.5.9|>=7.0.8",
  7188. "psr/container": "^1.0"
  7189. },
  7190. "conflict": {
  7191. "symfony/config": "<3.3.7",
  7192. "symfony/finder": "<3.3",
  7193. "symfony/proxy-manager-bridge": "<3.4",
  7194. "symfony/yaml": "<3.4"
  7195. },
  7196. "provide": {
  7197. "psr/container-implementation": "1.0"
  7198. },
  7199. "require-dev": {
  7200. "symfony/config": "~3.3|~4.0",
  7201. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7202. "symfony/yaml": "~3.4|~4.0"
  7203. },
  7204. "suggest": {
  7205. "symfony/config": "",
  7206. "symfony/expression-language": "For using expressions in service container configuration",
  7207. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7208. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7209. "symfony/yaml": ""
  7210. },
  7211. "type": "library",
  7212. "extra": {
  7213. "branch-alias": {
  7214. "dev-master": "3.4-dev"
  7215. }
  7216. },
  7217. "autoload": {
  7218. "psr-4": {
  7219. "Symfony\\Component\\DependencyInjection\\": ""
  7220. },
  7221. "exclude-from-classmap": [
  7222. "/Tests/"
  7223. ]
  7224. },
  7225. "notification-url": "https://packagist.org/downloads/",
  7226. "license": [
  7227. "MIT"
  7228. ],
  7229. "authors": [
  7230. {
  7231. "name": "Fabien Potencier",
  7232. "email": "fabien@symfony.com"
  7233. },
  7234. {
  7235. "name": "Symfony Community",
  7236. "homepage": "https://symfony.com/contributors"
  7237. }
  7238. ],
  7239. "description": "Symfony DependencyInjection Component",
  7240. "homepage": "https://symfony.com",
  7241. "time": "2019-04-16T11:13:42+00:00"
  7242. },
  7243. {
  7244. "name": "symfony/dom-crawler",
  7245. "version": "v3.4.26",
  7246. "source": {
  7247. "type": "git",
  7248. "url": "https://github.com/symfony/dom-crawler.git",
  7249. "reference": "d40023c057393fb25f7ca80af2a56ed948c45a09"
  7250. },
  7251. "dist": {
  7252. "type": "zip",
  7253. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/d40023c057393fb25f7ca80af2a56ed948c45a09",
  7254. "reference": "d40023c057393fb25f7ca80af2a56ed948c45a09",
  7255. "shasum": ""
  7256. },
  7257. "require": {
  7258. "php": "^5.5.9|>=7.0.8",
  7259. "symfony/polyfill-ctype": "~1.8",
  7260. "symfony/polyfill-mbstring": "~1.0"
  7261. },
  7262. "require-dev": {
  7263. "symfony/css-selector": "~2.8|~3.0|~4.0"
  7264. },
  7265. "suggest": {
  7266. "symfony/css-selector": ""
  7267. },
  7268. "type": "library",
  7269. "extra": {
  7270. "branch-alias": {
  7271. "dev-master": "3.4-dev"
  7272. }
  7273. },
  7274. "autoload": {
  7275. "psr-4": {
  7276. "Symfony\\Component\\DomCrawler\\": ""
  7277. },
  7278. "exclude-from-classmap": [
  7279. "/Tests/"
  7280. ]
  7281. },
  7282. "notification-url": "https://packagist.org/downloads/",
  7283. "license": [
  7284. "MIT"
  7285. ],
  7286. "authors": [
  7287. {
  7288. "name": "Fabien Potencier",
  7289. "email": "fabien@symfony.com"
  7290. },
  7291. {
  7292. "name": "Symfony Community",
  7293. "homepage": "https://symfony.com/contributors"
  7294. }
  7295. ],
  7296. "description": "Symfony DomCrawler Component",
  7297. "homepage": "https://symfony.com",
  7298. "time": "2019-02-23T15:06:07+00:00"
  7299. },
  7300. {
  7301. "name": "symfony/event-dispatcher",
  7302. "version": "v3.4.26",
  7303. "source": {
  7304. "type": "git",
  7305. "url": "https://github.com/symfony/event-dispatcher.git",
  7306. "reference": "a088aafcefb4eef2520a290ed82e4374092a6dff"
  7307. },
  7308. "dist": {
  7309. "type": "zip",
  7310. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a088aafcefb4eef2520a290ed82e4374092a6dff",
  7311. "reference": "a088aafcefb4eef2520a290ed82e4374092a6dff",
  7312. "shasum": ""
  7313. },
  7314. "require": {
  7315. "php": "^5.5.9|>=7.0.8"
  7316. },
  7317. "conflict": {
  7318. "symfony/dependency-injection": "<3.3"
  7319. },
  7320. "require-dev": {
  7321. "psr/log": "~1.0",
  7322. "symfony/config": "~2.8|~3.0|~4.0",
  7323. "symfony/dependency-injection": "~3.3|~4.0",
  7324. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7325. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7326. },
  7327. "suggest": {
  7328. "symfony/dependency-injection": "",
  7329. "symfony/http-kernel": ""
  7330. },
  7331. "type": "library",
  7332. "extra": {
  7333. "branch-alias": {
  7334. "dev-master": "3.4-dev"
  7335. }
  7336. },
  7337. "autoload": {
  7338. "psr-4": {
  7339. "Symfony\\Component\\EventDispatcher\\": ""
  7340. },
  7341. "exclude-from-classmap": [
  7342. "/Tests/"
  7343. ]
  7344. },
  7345. "notification-url": "https://packagist.org/downloads/",
  7346. "license": [
  7347. "MIT"
  7348. ],
  7349. "authors": [
  7350. {
  7351. "name": "Fabien Potencier",
  7352. "email": "fabien@symfony.com"
  7353. },
  7354. {
  7355. "name": "Symfony Community",
  7356. "homepage": "https://symfony.com/contributors"
  7357. }
  7358. ],
  7359. "description": "Symfony EventDispatcher Component",
  7360. "homepage": "https://symfony.com",
  7361. "time": "2019-04-02T08:51:52+00:00"
  7362. },
  7363. {
  7364. "name": "symfony/filesystem",
  7365. "version": "v3.4.26",
  7366. "source": {
  7367. "type": "git",
  7368. "url": "https://github.com/symfony/filesystem.git",
  7369. "reference": "acf99758b1df8e9295e6b85aa69f294565c9fedb"
  7370. },
  7371. "dist": {
  7372. "type": "zip",
  7373. "url": "https://api.github.com/repos/symfony/filesystem/zipball/acf99758b1df8e9295e6b85aa69f294565c9fedb",
  7374. "reference": "acf99758b1df8e9295e6b85aa69f294565c9fedb",
  7375. "shasum": ""
  7376. },
  7377. "require": {
  7378. "php": "^5.5.9|>=7.0.8",
  7379. "symfony/polyfill-ctype": "~1.8"
  7380. },
  7381. "type": "library",
  7382. "extra": {
  7383. "branch-alias": {
  7384. "dev-master": "3.4-dev"
  7385. }
  7386. },
  7387. "autoload": {
  7388. "psr-4": {
  7389. "Symfony\\Component\\Filesystem\\": ""
  7390. },
  7391. "exclude-from-classmap": [
  7392. "/Tests/"
  7393. ]
  7394. },
  7395. "notification-url": "https://packagist.org/downloads/",
  7396. "license": [
  7397. "MIT"
  7398. ],
  7399. "authors": [
  7400. {
  7401. "name": "Fabien Potencier",
  7402. "email": "fabien@symfony.com"
  7403. },
  7404. {
  7405. "name": "Symfony Community",
  7406. "homepage": "https://symfony.com/contributors"
  7407. }
  7408. ],
  7409. "description": "Symfony Filesystem Component",
  7410. "homepage": "https://symfony.com",
  7411. "time": "2019-02-04T21:34:32+00:00"
  7412. },
  7413. {
  7414. "name": "symfony/finder",
  7415. "version": "v3.4.26",
  7416. "source": {
  7417. "type": "git",
  7418. "url": "https://github.com/symfony/finder.git",
  7419. "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98"
  7420. },
  7421. "dist": {
  7422. "type": "zip",
  7423. "url": "https://api.github.com/repos/symfony/finder/zipball/61af5ce0b34b942d414fe8f1b11950d0e9a90e98",
  7424. "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98",
  7425. "shasum": ""
  7426. },
  7427. "require": {
  7428. "php": "^5.5.9|>=7.0.8"
  7429. },
  7430. "type": "library",
  7431. "extra": {
  7432. "branch-alias": {
  7433. "dev-master": "3.4-dev"
  7434. }
  7435. },
  7436. "autoload": {
  7437. "psr-4": {
  7438. "Symfony\\Component\\Finder\\": ""
  7439. },
  7440. "exclude-from-classmap": [
  7441. "/Tests/"
  7442. ]
  7443. },
  7444. "notification-url": "https://packagist.org/downloads/",
  7445. "license": [
  7446. "MIT"
  7447. ],
  7448. "authors": [
  7449. {
  7450. "name": "Fabien Potencier",
  7451. "email": "fabien@symfony.com"
  7452. },
  7453. {
  7454. "name": "Symfony Community",
  7455. "homepage": "https://symfony.com/contributors"
  7456. }
  7457. ],
  7458. "description": "Symfony Finder Component",
  7459. "homepage": "https://symfony.com",
  7460. "time": "2019-04-02T19:54:57+00:00"
  7461. },
  7462. {
  7463. "name": "symfony/http-foundation",
  7464. "version": "v3.4.26",
  7465. "source": {
  7466. "type": "git",
  7467. "url": "https://github.com/symfony/http-foundation.git",
  7468. "reference": "90454ad44c95d75faf3507d56388056001b74baf"
  7469. },
  7470. "dist": {
  7471. "type": "zip",
  7472. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/90454ad44c95d75faf3507d56388056001b74baf",
  7473. "reference": "90454ad44c95d75faf3507d56388056001b74baf",
  7474. "shasum": ""
  7475. },
  7476. "require": {
  7477. "php": "^5.5.9|>=7.0.8",
  7478. "symfony/polyfill-mbstring": "~1.1",
  7479. "symfony/polyfill-php70": "~1.6"
  7480. },
  7481. "require-dev": {
  7482. "symfony/expression-language": "~2.8|~3.0|~4.0"
  7483. },
  7484. "type": "library",
  7485. "extra": {
  7486. "branch-alias": {
  7487. "dev-master": "3.4-dev"
  7488. }
  7489. },
  7490. "autoload": {
  7491. "psr-4": {
  7492. "Symfony\\Component\\HttpFoundation\\": ""
  7493. },
  7494. "exclude-from-classmap": [
  7495. "/Tests/"
  7496. ]
  7497. },
  7498. "notification-url": "https://packagist.org/downloads/",
  7499. "license": [
  7500. "MIT"
  7501. ],
  7502. "authors": [
  7503. {
  7504. "name": "Fabien Potencier",
  7505. "email": "fabien@symfony.com"
  7506. },
  7507. {
  7508. "name": "Symfony Community",
  7509. "homepage": "https://symfony.com/contributors"
  7510. }
  7511. ],
  7512. "description": "Symfony HttpFoundation Component",
  7513. "homepage": "https://symfony.com",
  7514. "time": "2019-04-17T14:51:18+00:00"
  7515. },
  7516. {
  7517. "name": "symfony/http-kernel",
  7518. "version": "v3.4.26",
  7519. "source": {
  7520. "type": "git",
  7521. "url": "https://github.com/symfony/http-kernel.git",
  7522. "reference": "14fa41ccd38570b5e3120a3754bbaa144a15f311"
  7523. },
  7524. "dist": {
  7525. "type": "zip",
  7526. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/14fa41ccd38570b5e3120a3754bbaa144a15f311",
  7527. "reference": "14fa41ccd38570b5e3120a3754bbaa144a15f311",
  7528. "shasum": ""
  7529. },
  7530. "require": {
  7531. "php": "^5.5.9|>=7.0.8",
  7532. "psr/log": "~1.0",
  7533. "symfony/debug": "^3.3.3|~4.0",
  7534. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7535. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  7536. "symfony/polyfill-ctype": "~1.8"
  7537. },
  7538. "conflict": {
  7539. "symfony/config": "<2.8",
  7540. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  7541. "symfony/var-dumper": "<3.3",
  7542. "twig/twig": "<1.34|<2.4,>=2"
  7543. },
  7544. "provide": {
  7545. "psr/log-implementation": "1.0"
  7546. },
  7547. "require-dev": {
  7548. "psr/cache": "~1.0",
  7549. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  7550. "symfony/class-loader": "~2.8|~3.0",
  7551. "symfony/config": "~2.8|~3.0|~4.0",
  7552. "symfony/console": "~2.8|~3.0|~4.0",
  7553. "symfony/css-selector": "~2.8|~3.0|~4.0",
  7554. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  7555. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  7556. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7557. "symfony/finder": "~2.8|~3.0|~4.0",
  7558. "symfony/process": "~2.8|~3.0|~4.0",
  7559. "symfony/routing": "~3.4|~4.0",
  7560. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  7561. "symfony/templating": "~2.8|~3.0|~4.0",
  7562. "symfony/translation": "~2.8|~3.0|~4.0",
  7563. "symfony/var-dumper": "~3.3|~4.0"
  7564. },
  7565. "suggest": {
  7566. "symfony/browser-kit": "",
  7567. "symfony/config": "",
  7568. "symfony/console": "",
  7569. "symfony/dependency-injection": "",
  7570. "symfony/finder": "",
  7571. "symfony/var-dumper": ""
  7572. },
  7573. "type": "library",
  7574. "extra": {
  7575. "branch-alias": {
  7576. "dev-master": "3.4-dev"
  7577. }
  7578. },
  7579. "autoload": {
  7580. "psr-4": {
  7581. "Symfony\\Component\\HttpKernel\\": ""
  7582. },
  7583. "exclude-from-classmap": [
  7584. "/Tests/"
  7585. ]
  7586. },
  7587. "notification-url": "https://packagist.org/downloads/",
  7588. "license": [
  7589. "MIT"
  7590. ],
  7591. "authors": [
  7592. {
  7593. "name": "Fabien Potencier",
  7594. "email": "fabien@symfony.com"
  7595. },
  7596. {
  7597. "name": "Symfony Community",
  7598. "homepage": "https://symfony.com/contributors"
  7599. }
  7600. ],
  7601. "description": "Symfony HttpKernel Component",
  7602. "homepage": "https://symfony.com",
  7603. "time": "2019-04-17T15:57:07+00:00"
  7604. },
  7605. {
  7606. "name": "symfony/polyfill-ctype",
  7607. "version": "v1.11.0",
  7608. "source": {
  7609. "type": "git",
  7610. "url": "https://github.com/symfony/polyfill-ctype.git",
  7611. "reference": "82ebae02209c21113908c229e9883c419720738a"
  7612. },
  7613. "dist": {
  7614. "type": "zip",
  7615. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  7616. "reference": "82ebae02209c21113908c229e9883c419720738a",
  7617. "shasum": ""
  7618. },
  7619. "require": {
  7620. "php": ">=5.3.3"
  7621. },
  7622. "suggest": {
  7623. "ext-ctype": "For best performance"
  7624. },
  7625. "type": "library",
  7626. "extra": {
  7627. "branch-alias": {
  7628. "dev-master": "1.11-dev"
  7629. }
  7630. },
  7631. "autoload": {
  7632. "psr-4": {
  7633. "Symfony\\Polyfill\\Ctype\\": ""
  7634. },
  7635. "files": [
  7636. "bootstrap.php"
  7637. ]
  7638. },
  7639. "notification-url": "https://packagist.org/downloads/",
  7640. "license": [
  7641. "MIT"
  7642. ],
  7643. "authors": [
  7644. {
  7645. "name": "Symfony Community",
  7646. "homepage": "https://symfony.com/contributors"
  7647. },
  7648. {
  7649. "name": "Gert de Pagter",
  7650. "email": "BackEndTea@gmail.com"
  7651. }
  7652. ],
  7653. "description": "Symfony polyfill for ctype functions",
  7654. "homepage": "https://symfony.com",
  7655. "keywords": [
  7656. "compatibility",
  7657. "ctype",
  7658. "polyfill",
  7659. "portable"
  7660. ],
  7661. "time": "2019-02-06T07:57:58+00:00"
  7662. },
  7663. {
  7664. "name": "symfony/polyfill-iconv",
  7665. "version": "v1.11.0",
  7666. "source": {
  7667. "type": "git",
  7668. "url": "https://github.com/symfony/polyfill-iconv.git",
  7669. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7"
  7670. },
  7671. "dist": {
  7672. "type": "zip",
  7673. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  7674. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  7675. "shasum": ""
  7676. },
  7677. "require": {
  7678. "php": ">=5.3.3"
  7679. },
  7680. "suggest": {
  7681. "ext-iconv": "For best performance"
  7682. },
  7683. "type": "library",
  7684. "extra": {
  7685. "branch-alias": {
  7686. "dev-master": "1.11-dev"
  7687. }
  7688. },
  7689. "autoload": {
  7690. "psr-4": {
  7691. "Symfony\\Polyfill\\Iconv\\": ""
  7692. },
  7693. "files": [
  7694. "bootstrap.php"
  7695. ]
  7696. },
  7697. "notification-url": "https://packagist.org/downloads/",
  7698. "license": [
  7699. "MIT"
  7700. ],
  7701. "authors": [
  7702. {
  7703. "name": "Nicolas Grekas",
  7704. "email": "p@tchwork.com"
  7705. },
  7706. {
  7707. "name": "Symfony Community",
  7708. "homepage": "https://symfony.com/contributors"
  7709. }
  7710. ],
  7711. "description": "Symfony polyfill for the Iconv extension",
  7712. "homepage": "https://symfony.com",
  7713. "keywords": [
  7714. "compatibility",
  7715. "iconv",
  7716. "polyfill",
  7717. "portable",
  7718. "shim"
  7719. ],
  7720. "time": "2019-02-06T07:57:58+00:00"
  7721. },
  7722. {
  7723. "name": "symfony/polyfill-mbstring",
  7724. "version": "v1.11.0",
  7725. "source": {
  7726. "type": "git",
  7727. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7728. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  7729. },
  7730. "dist": {
  7731. "type": "zip",
  7732. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  7733. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  7734. "shasum": ""
  7735. },
  7736. "require": {
  7737. "php": ">=5.3.3"
  7738. },
  7739. "suggest": {
  7740. "ext-mbstring": "For best performance"
  7741. },
  7742. "type": "library",
  7743. "extra": {
  7744. "branch-alias": {
  7745. "dev-master": "1.11-dev"
  7746. }
  7747. },
  7748. "autoload": {
  7749. "psr-4": {
  7750. "Symfony\\Polyfill\\Mbstring\\": ""
  7751. },
  7752. "files": [
  7753. "bootstrap.php"
  7754. ]
  7755. },
  7756. "notification-url": "https://packagist.org/downloads/",
  7757. "license": [
  7758. "MIT"
  7759. ],
  7760. "authors": [
  7761. {
  7762. "name": "Nicolas Grekas",
  7763. "email": "p@tchwork.com"
  7764. },
  7765. {
  7766. "name": "Symfony Community",
  7767. "homepage": "https://symfony.com/contributors"
  7768. }
  7769. ],
  7770. "description": "Symfony polyfill for the Mbstring extension",
  7771. "homepage": "https://symfony.com",
  7772. "keywords": [
  7773. "compatibility",
  7774. "mbstring",
  7775. "polyfill",
  7776. "portable",
  7777. "shim"
  7778. ],
  7779. "time": "2019-02-06T07:57:58+00:00"
  7780. },
  7781. {
  7782. "name": "symfony/polyfill-php70",
  7783. "version": "v1.11.0",
  7784. "source": {
  7785. "type": "git",
  7786. "url": "https://github.com/symfony/polyfill-php70.git",
  7787. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  7788. },
  7789. "dist": {
  7790. "type": "zip",
  7791. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  7792. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  7793. "shasum": ""
  7794. },
  7795. "require": {
  7796. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  7797. "php": ">=5.3.3"
  7798. },
  7799. "type": "library",
  7800. "extra": {
  7801. "branch-alias": {
  7802. "dev-master": "1.11-dev"
  7803. }
  7804. },
  7805. "autoload": {
  7806. "psr-4": {
  7807. "Symfony\\Polyfill\\Php70\\": ""
  7808. },
  7809. "files": [
  7810. "bootstrap.php"
  7811. ],
  7812. "classmap": [
  7813. "Resources/stubs"
  7814. ]
  7815. },
  7816. "notification-url": "https://packagist.org/downloads/",
  7817. "license": [
  7818. "MIT"
  7819. ],
  7820. "authors": [
  7821. {
  7822. "name": "Nicolas Grekas",
  7823. "email": "p@tchwork.com"
  7824. },
  7825. {
  7826. "name": "Symfony Community",
  7827. "homepage": "https://symfony.com/contributors"
  7828. }
  7829. ],
  7830. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  7831. "homepage": "https://symfony.com",
  7832. "keywords": [
  7833. "compatibility",
  7834. "polyfill",
  7835. "portable",
  7836. "shim"
  7837. ],
  7838. "time": "2019-02-06T07:57:58+00:00"
  7839. },
  7840. {
  7841. "name": "symfony/process",
  7842. "version": "v3.4.26",
  7843. "source": {
  7844. "type": "git",
  7845. "url": "https://github.com/symfony/process.git",
  7846. "reference": "a9c4dfbf653023b668c282e4e02609d131f4057a"
  7847. },
  7848. "dist": {
  7849. "type": "zip",
  7850. "url": "https://api.github.com/repos/symfony/process/zipball/a9c4dfbf653023b668c282e4e02609d131f4057a",
  7851. "reference": "a9c4dfbf653023b668c282e4e02609d131f4057a",
  7852. "shasum": ""
  7853. },
  7854. "require": {
  7855. "php": "^5.5.9|>=7.0.8"
  7856. },
  7857. "type": "library",
  7858. "extra": {
  7859. "branch-alias": {
  7860. "dev-master": "3.4-dev"
  7861. }
  7862. },
  7863. "autoload": {
  7864. "psr-4": {
  7865. "Symfony\\Component\\Process\\": ""
  7866. },
  7867. "exclude-from-classmap": [
  7868. "/Tests/"
  7869. ]
  7870. },
  7871. "notification-url": "https://packagist.org/downloads/",
  7872. "license": [
  7873. "MIT"
  7874. ],
  7875. "authors": [
  7876. {
  7877. "name": "Fabien Potencier",
  7878. "email": "fabien@symfony.com"
  7879. },
  7880. {
  7881. "name": "Symfony Community",
  7882. "homepage": "https://symfony.com/contributors"
  7883. }
  7884. ],
  7885. "description": "Symfony Process Component",
  7886. "homepage": "https://symfony.com",
  7887. "time": "2019-04-08T16:15:54+00:00"
  7888. },
  7889. {
  7890. "name": "symfony/psr-http-message-bridge",
  7891. "version": "v1.1.2",
  7892. "source": {
  7893. "type": "git",
  7894. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7895. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  7896. },
  7897. "dist": {
  7898. "type": "zip",
  7899. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  7900. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  7901. "shasum": ""
  7902. },
  7903. "require": {
  7904. "php": "^5.3.3 || ^7.0",
  7905. "psr/http-message": "^1.0",
  7906. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  7907. },
  7908. "require-dev": {
  7909. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  7910. },
  7911. "suggest": {
  7912. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7913. },
  7914. "type": "symfony-bridge",
  7915. "extra": {
  7916. "branch-alias": {
  7917. "dev-master": "1.1-dev"
  7918. }
  7919. },
  7920. "autoload": {
  7921. "psr-4": {
  7922. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7923. },
  7924. "exclude-from-classmap": [
  7925. "/Tests/"
  7926. ]
  7927. },
  7928. "notification-url": "https://packagist.org/downloads/",
  7929. "license": [
  7930. "MIT"
  7931. ],
  7932. "authors": [
  7933. {
  7934. "name": "Symfony Community",
  7935. "homepage": "http://symfony.com/contributors"
  7936. },
  7937. {
  7938. "name": "Fabien Potencier",
  7939. "email": "fabien@symfony.com"
  7940. }
  7941. ],
  7942. "description": "PSR HTTP message bridge",
  7943. "homepage": "http://symfony.com",
  7944. "keywords": [
  7945. "http",
  7946. "http-message",
  7947. "psr-17",
  7948. "psr-7"
  7949. ],
  7950. "time": "2019-04-03T17:09:40+00:00"
  7951. },
  7952. {
  7953. "name": "symfony/routing",
  7954. "version": "v3.4.26",
  7955. "source": {
  7956. "type": "git",
  7957. "url": "https://github.com/symfony/routing.git",
  7958. "reference": "ff11aac46d6cb8a65f2855687bb9a1ac9d860eec"
  7959. },
  7960. "dist": {
  7961. "type": "zip",
  7962. "url": "https://api.github.com/repos/symfony/routing/zipball/ff11aac46d6cb8a65f2855687bb9a1ac9d860eec",
  7963. "reference": "ff11aac46d6cb8a65f2855687bb9a1ac9d860eec",
  7964. "shasum": ""
  7965. },
  7966. "require": {
  7967. "php": "^5.5.9|>=7.0.8"
  7968. },
  7969. "conflict": {
  7970. "symfony/config": "<3.3.1",
  7971. "symfony/dependency-injection": "<3.3",
  7972. "symfony/yaml": "<3.4"
  7973. },
  7974. "require-dev": {
  7975. "doctrine/annotations": "~1.0",
  7976. "psr/log": "~1.0",
  7977. "symfony/config": "^3.3.1|~4.0",
  7978. "symfony/dependency-injection": "~3.3|~4.0",
  7979. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7980. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  7981. "symfony/yaml": "~3.4|~4.0"
  7982. },
  7983. "suggest": {
  7984. "doctrine/annotations": "For using the annotation loader",
  7985. "symfony/config": "For using the all-in-one router or any loader",
  7986. "symfony/expression-language": "For using expression matching",
  7987. "symfony/http-foundation": "For using a Symfony Request object",
  7988. "symfony/yaml": "For using the YAML loader"
  7989. },
  7990. "type": "library",
  7991. "extra": {
  7992. "branch-alias": {
  7993. "dev-master": "3.4-dev"
  7994. }
  7995. },
  7996. "autoload": {
  7997. "psr-4": {
  7998. "Symfony\\Component\\Routing\\": ""
  7999. },
  8000. "exclude-from-classmap": [
  8001. "/Tests/"
  8002. ]
  8003. },
  8004. "notification-url": "https://packagist.org/downloads/",
  8005. "license": [
  8006. "MIT"
  8007. ],
  8008. "authors": [
  8009. {
  8010. "name": "Fabien Potencier",
  8011. "email": "fabien@symfony.com"
  8012. },
  8013. {
  8014. "name": "Symfony Community",
  8015. "homepage": "https://symfony.com/contributors"
  8016. }
  8017. ],
  8018. "description": "Symfony Routing Component",
  8019. "homepage": "https://symfony.com",
  8020. "keywords": [
  8021. "router",
  8022. "routing",
  8023. "uri",
  8024. "url"
  8025. ],
  8026. "time": "2019-03-29T21:58:42+00:00"
  8027. },
  8028. {
  8029. "name": "symfony/serializer",
  8030. "version": "v3.4.26",
  8031. "source": {
  8032. "type": "git",
  8033. "url": "https://github.com/symfony/serializer.git",
  8034. "reference": "14b3221cc41dcfef404205f0060cda873f43a534"
  8035. },
  8036. "dist": {
  8037. "type": "zip",
  8038. "url": "https://api.github.com/repos/symfony/serializer/zipball/14b3221cc41dcfef404205f0060cda873f43a534",
  8039. "reference": "14b3221cc41dcfef404205f0060cda873f43a534",
  8040. "shasum": ""
  8041. },
  8042. "require": {
  8043. "php": "^5.5.9|>=7.0.8",
  8044. "symfony/polyfill-ctype": "~1.8"
  8045. },
  8046. "conflict": {
  8047. "phpdocumentor/type-resolver": "<0.2.1",
  8048. "symfony/dependency-injection": "<3.2",
  8049. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  8050. "symfony/property-info": "<3.1",
  8051. "symfony/yaml": "<3.4"
  8052. },
  8053. "require-dev": {
  8054. "doctrine/annotations": "~1.0",
  8055. "doctrine/cache": "~1.0",
  8056. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  8057. "symfony/cache": "~3.1|~4.0",
  8058. "symfony/config": "~2.8|~3.0|~4.0",
  8059. "symfony/dependency-injection": "~3.2|~4.0",
  8060. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8061. "symfony/property-access": "~2.8|~3.0|~4.0",
  8062. "symfony/property-info": "~3.1|~4.0",
  8063. "symfony/yaml": "~3.4|~4.0"
  8064. },
  8065. "suggest": {
  8066. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8067. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8068. "psr/cache-implementation": "For using the metadata cache.",
  8069. "symfony/config": "For using the XML mapping loader.",
  8070. "symfony/http-foundation": "To use the DataUriNormalizer.",
  8071. "symfony/property-access": "For using the ObjectNormalizer.",
  8072. "symfony/property-info": "To deserialize relations.",
  8073. "symfony/yaml": "For using the default YAML mapping loader."
  8074. },
  8075. "type": "library",
  8076. "extra": {
  8077. "branch-alias": {
  8078. "dev-master": "3.4-dev"
  8079. }
  8080. },
  8081. "autoload": {
  8082. "psr-4": {
  8083. "Symfony\\Component\\Serializer\\": ""
  8084. },
  8085. "exclude-from-classmap": [
  8086. "/Tests/"
  8087. ]
  8088. },
  8089. "notification-url": "https://packagist.org/downloads/",
  8090. "license": [
  8091. "MIT"
  8092. ],
  8093. "authors": [
  8094. {
  8095. "name": "Fabien Potencier",
  8096. "email": "fabien@symfony.com"
  8097. },
  8098. {
  8099. "name": "Symfony Community",
  8100. "homepage": "https://symfony.com/contributors"
  8101. }
  8102. ],
  8103. "description": "Symfony Serializer Component",
  8104. "homepage": "https://symfony.com",
  8105. "time": "2019-04-11T05:44:34+00:00"
  8106. },
  8107. {
  8108. "name": "symfony/translation",
  8109. "version": "v3.4.26",
  8110. "source": {
  8111. "type": "git",
  8112. "url": "https://github.com/symfony/translation.git",
  8113. "reference": "aae26f143da71adc8707eb489f1dc86aef7d376b"
  8114. },
  8115. "dist": {
  8116. "type": "zip",
  8117. "url": "https://api.github.com/repos/symfony/translation/zipball/aae26f143da71adc8707eb489f1dc86aef7d376b",
  8118. "reference": "aae26f143da71adc8707eb489f1dc86aef7d376b",
  8119. "shasum": ""
  8120. },
  8121. "require": {
  8122. "php": "^5.5.9|>=7.0.8",
  8123. "symfony/polyfill-mbstring": "~1.0"
  8124. },
  8125. "conflict": {
  8126. "symfony/config": "<2.8",
  8127. "symfony/dependency-injection": "<3.4",
  8128. "symfony/yaml": "<3.4"
  8129. },
  8130. "require-dev": {
  8131. "psr/log": "~1.0",
  8132. "symfony/config": "~2.8|~3.0|~4.0",
  8133. "symfony/dependency-injection": "~3.4|~4.0",
  8134. "symfony/finder": "~2.8|~3.0|~4.0",
  8135. "symfony/http-kernel": "~3.4|~4.0",
  8136. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8137. "symfony/var-dumper": "~3.4|~4.0",
  8138. "symfony/yaml": "~3.4|~4.0"
  8139. },
  8140. "suggest": {
  8141. "psr/log-implementation": "To use logging capability in translator",
  8142. "symfony/config": "",
  8143. "symfony/yaml": ""
  8144. },
  8145. "type": "library",
  8146. "extra": {
  8147. "branch-alias": {
  8148. "dev-master": "3.4-dev"
  8149. }
  8150. },
  8151. "autoload": {
  8152. "psr-4": {
  8153. "Symfony\\Component\\Translation\\": ""
  8154. },
  8155. "exclude-from-classmap": [
  8156. "/Tests/"
  8157. ]
  8158. },
  8159. "notification-url": "https://packagist.org/downloads/",
  8160. "license": [
  8161. "MIT"
  8162. ],
  8163. "authors": [
  8164. {
  8165. "name": "Fabien Potencier",
  8166. "email": "fabien@symfony.com"
  8167. },
  8168. {
  8169. "name": "Symfony Community",
  8170. "homepage": "https://symfony.com/contributors"
  8171. }
  8172. ],
  8173. "description": "Symfony Translation Component",
  8174. "homepage": "https://symfony.com",
  8175. "time": "2019-04-10T16:00:48+00:00"
  8176. },
  8177. {
  8178. "name": "symfony/validator",
  8179. "version": "v3.4.26",
  8180. "source": {
  8181. "type": "git",
  8182. "url": "https://github.com/symfony/validator.git",
  8183. "reference": "83da5259779aaf9dde220130e62b785f74e2ac49"
  8184. },
  8185. "dist": {
  8186. "type": "zip",
  8187. "url": "https://api.github.com/repos/symfony/validator/zipball/83da5259779aaf9dde220130e62b785f74e2ac49",
  8188. "reference": "83da5259779aaf9dde220130e62b785f74e2ac49",
  8189. "shasum": ""
  8190. },
  8191. "require": {
  8192. "php": "^5.5.9|>=7.0.8",
  8193. "symfony/polyfill-ctype": "~1.8",
  8194. "symfony/polyfill-mbstring": "~1.0",
  8195. "symfony/translation": "~2.8|~3.0|~4.0"
  8196. },
  8197. "conflict": {
  8198. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8199. "symfony/dependency-injection": "<3.3",
  8200. "symfony/http-kernel": "<3.3.5",
  8201. "symfony/yaml": "<3.4"
  8202. },
  8203. "require-dev": {
  8204. "doctrine/annotations": "~1.0",
  8205. "doctrine/cache": "~1.0",
  8206. "egulias/email-validator": "^1.2.8|~2.0",
  8207. "symfony/cache": "~3.1|~4.0",
  8208. "symfony/config": "~2.8|~3.0|~4.0",
  8209. "symfony/dependency-injection": "~3.3|~4.0",
  8210. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8211. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8212. "symfony/http-kernel": "^3.3.5|~4.0",
  8213. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8214. "symfony/property-access": "~2.8|~3.0|~4.0",
  8215. "symfony/var-dumper": "~3.3|~4.0",
  8216. "symfony/yaml": "~3.4|~4.0"
  8217. },
  8218. "suggest": {
  8219. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8220. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8221. "egulias/email-validator": "Strict (RFC compliant) email validation",
  8222. "psr/cache-implementation": "For using the metadata cache.",
  8223. "symfony/config": "",
  8224. "symfony/expression-language": "For using the Expression validator",
  8225. "symfony/http-foundation": "",
  8226. "symfony/intl": "",
  8227. "symfony/property-access": "For accessing properties within comparison constraints",
  8228. "symfony/yaml": ""
  8229. },
  8230. "type": "library",
  8231. "extra": {
  8232. "branch-alias": {
  8233. "dev-master": "3.4-dev"
  8234. }
  8235. },
  8236. "autoload": {
  8237. "psr-4": {
  8238. "Symfony\\Component\\Validator\\": ""
  8239. },
  8240. "exclude-from-classmap": [
  8241. "/Tests/"
  8242. ]
  8243. },
  8244. "notification-url": "https://packagist.org/downloads/",
  8245. "license": [
  8246. "MIT"
  8247. ],
  8248. "authors": [
  8249. {
  8250. "name": "Fabien Potencier",
  8251. "email": "fabien@symfony.com"
  8252. },
  8253. {
  8254. "name": "Symfony Community",
  8255. "homepage": "https://symfony.com/contributors"
  8256. }
  8257. ],
  8258. "description": "Symfony Validator Component",
  8259. "homepage": "https://symfony.com",
  8260. "time": "2019-04-16T11:21:44+00:00"
  8261. },
  8262. {
  8263. "name": "symfony/var-dumper",
  8264. "version": "v3.4.26",
  8265. "source": {
  8266. "type": "git",
  8267. "url": "https://github.com/symfony/var-dumper.git",
  8268. "reference": "f0883812642a6d6583a9e2ae6aec4ba134436f40"
  8269. },
  8270. "dist": {
  8271. "type": "zip",
  8272. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f0883812642a6d6583a9e2ae6aec4ba134436f40",
  8273. "reference": "f0883812642a6d6583a9e2ae6aec4ba134436f40",
  8274. "shasum": ""
  8275. },
  8276. "require": {
  8277. "php": "^5.5.9|>=7.0.8",
  8278. "symfony/polyfill-mbstring": "~1.0"
  8279. },
  8280. "conflict": {
  8281. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  8282. },
  8283. "require-dev": {
  8284. "ext-iconv": "*",
  8285. "twig/twig": "~1.34|~2.4"
  8286. },
  8287. "suggest": {
  8288. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8289. "ext-intl": "To show region name in time zone dump",
  8290. "ext-symfony_debug": ""
  8291. },
  8292. "type": "library",
  8293. "extra": {
  8294. "branch-alias": {
  8295. "dev-master": "3.4-dev"
  8296. }
  8297. },
  8298. "autoload": {
  8299. "files": [
  8300. "Resources/functions/dump.php"
  8301. ],
  8302. "psr-4": {
  8303. "Symfony\\Component\\VarDumper\\": ""
  8304. },
  8305. "exclude-from-classmap": [
  8306. "/Tests/"
  8307. ]
  8308. },
  8309. "notification-url": "https://packagist.org/downloads/",
  8310. "license": [
  8311. "MIT"
  8312. ],
  8313. "authors": [
  8314. {
  8315. "name": "Nicolas Grekas",
  8316. "email": "p@tchwork.com"
  8317. },
  8318. {
  8319. "name": "Symfony Community",
  8320. "homepage": "https://symfony.com/contributors"
  8321. }
  8322. ],
  8323. "description": "Symfony mechanism for exploring and dumping PHP variables",
  8324. "homepage": "https://symfony.com",
  8325. "keywords": [
  8326. "debug",
  8327. "dump"
  8328. ],
  8329. "time": "2019-04-16T13:58:17+00:00"
  8330. },
  8331. {
  8332. "name": "symfony/yaml",
  8333. "version": "v3.4.26",
  8334. "source": {
  8335. "type": "git",
  8336. "url": "https://github.com/symfony/yaml.git",
  8337. "reference": "212a27b731e5bfb735679d1ffaac82bd6a1dc996"
  8338. },
  8339. "dist": {
  8340. "type": "zip",
  8341. "url": "https://api.github.com/repos/symfony/yaml/zipball/212a27b731e5bfb735679d1ffaac82bd6a1dc996",
  8342. "reference": "212a27b731e5bfb735679d1ffaac82bd6a1dc996",
  8343. "shasum": ""
  8344. },
  8345. "require": {
  8346. "php": "^5.5.9|>=7.0.8",
  8347. "symfony/polyfill-ctype": "~1.8"
  8348. },
  8349. "conflict": {
  8350. "symfony/console": "<3.4"
  8351. },
  8352. "require-dev": {
  8353. "symfony/console": "~3.4|~4.0"
  8354. },
  8355. "suggest": {
  8356. "symfony/console": "For validating YAML files using the lint command"
  8357. },
  8358. "type": "library",
  8359. "extra": {
  8360. "branch-alias": {
  8361. "dev-master": "3.4-dev"
  8362. }
  8363. },
  8364. "autoload": {
  8365. "psr-4": {
  8366. "Symfony\\Component\\Yaml\\": ""
  8367. },
  8368. "exclude-from-classmap": [
  8369. "/Tests/"
  8370. ]
  8371. },
  8372. "notification-url": "https://packagist.org/downloads/",
  8373. "license": [
  8374. "MIT"
  8375. ],
  8376. "authors": [
  8377. {
  8378. "name": "Fabien Potencier",
  8379. "email": "fabien@symfony.com"
  8380. },
  8381. {
  8382. "name": "Symfony Community",
  8383. "homepage": "https://symfony.com/contributors"
  8384. }
  8385. ],
  8386. "description": "Symfony Yaml Component",
  8387. "homepage": "https://symfony.com",
  8388. "time": "2019-03-25T07:48:46+00:00"
  8389. },
  8390. {
  8391. "name": "twig/twig",
  8392. "version": "v1.40.1",
  8393. "source": {
  8394. "type": "git",
  8395. "url": "https://github.com/twigphp/Twig.git",
  8396. "reference": "35889516bbd6bbe46a600c2c33b03515df4a076e"
  8397. },
  8398. "dist": {
  8399. "type": "zip",
  8400. "url": "https://api.github.com/repos/twigphp/Twig/zipball/35889516bbd6bbe46a600c2c33b03515df4a076e",
  8401. "reference": "35889516bbd6bbe46a600c2c33b03515df4a076e",
  8402. "shasum": ""
  8403. },
  8404. "require": {
  8405. "php": ">=5.4.0",
  8406. "symfony/polyfill-ctype": "^1.8"
  8407. },
  8408. "require-dev": {
  8409. "psr/container": "^1.0",
  8410. "symfony/debug": "^2.7",
  8411. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  8412. },
  8413. "type": "library",
  8414. "extra": {
  8415. "branch-alias": {
  8416. "dev-master": "1.40-dev"
  8417. }
  8418. },
  8419. "autoload": {
  8420. "psr-0": {
  8421. "Twig_": "lib/"
  8422. },
  8423. "psr-4": {
  8424. "Twig\\": "src/"
  8425. }
  8426. },
  8427. "notification-url": "https://packagist.org/downloads/",
  8428. "license": [
  8429. "BSD-3-Clause"
  8430. ],
  8431. "authors": [
  8432. {
  8433. "name": "Fabien Potencier",
  8434. "email": "fabien@symfony.com",
  8435. "homepage": "http://fabien.potencier.org",
  8436. "role": "Lead Developer"
  8437. },
  8438. {
  8439. "name": "Armin Ronacher",
  8440. "email": "armin.ronacher@active-4.com",
  8441. "role": "Project Founder"
  8442. },
  8443. {
  8444. "name": "Twig Team",
  8445. "homepage": "https://twig.symfony.com/contributors",
  8446. "role": "Contributors"
  8447. }
  8448. ],
  8449. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8450. "homepage": "https://twig.symfony.com",
  8451. "keywords": [
  8452. "templating"
  8453. ],
  8454. "time": "2019-04-29T14:12:28+00:00"
  8455. },
  8456. {
  8457. "name": "typo3/phar-stream-wrapper",
  8458. "version": "v2.1.0",
  8459. "source": {
  8460. "type": "git",
  8461. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  8462. "reference": "b7a21f0859059ed5d9754af8c11f852d43762334"
  8463. },
  8464. "dist": {
  8465. "type": "zip",
  8466. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/b7a21f0859059ed5d9754af8c11f852d43762334",
  8467. "reference": "b7a21f0859059ed5d9754af8c11f852d43762334",
  8468. "shasum": ""
  8469. },
  8470. "require": {
  8471. "brumann/polyfill-unserialize": "^1.0",
  8472. "ext-fileinfo": "*",
  8473. "ext-json": "*",
  8474. "php": "^5.3.3|^7.0"
  8475. },
  8476. "require-dev": {
  8477. "phpunit/phpunit": "^4.8.36"
  8478. },
  8479. "type": "library",
  8480. "autoload": {
  8481. "psr-4": {
  8482. "TYPO3\\PharStreamWrapper\\": "src/"
  8483. }
  8484. },
  8485. "notification-url": "https://packagist.org/downloads/",
  8486. "license": [
  8487. "MIT"
  8488. ],
  8489. "description": "Interceptors for PHP's native phar:// stream handling",
  8490. "homepage": "https://typo3.org/",
  8491. "keywords": [
  8492. "phar",
  8493. "php",
  8494. "security",
  8495. "stream-wrapper"
  8496. ],
  8497. "time": "2019-03-01T17:43:52+00:00"
  8498. },
  8499. {
  8500. "name": "vlucas/phpdotenv",
  8501. "version": "v2.6.1",
  8502. "source": {
  8503. "type": "git",
  8504. "url": "https://github.com/vlucas/phpdotenv.git",
  8505. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  8506. },
  8507. "dist": {
  8508. "type": "zip",
  8509. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  8510. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  8511. "shasum": ""
  8512. },
  8513. "require": {
  8514. "php": ">=5.3.9",
  8515. "symfony/polyfill-ctype": "^1.9"
  8516. },
  8517. "require-dev": {
  8518. "phpunit/phpunit": "^4.8.35 || ^5.0"
  8519. },
  8520. "type": "library",
  8521. "extra": {
  8522. "branch-alias": {
  8523. "dev-master": "2.6-dev"
  8524. }
  8525. },
  8526. "autoload": {
  8527. "psr-4": {
  8528. "Dotenv\\": "src/"
  8529. }
  8530. },
  8531. "notification-url": "https://packagist.org/downloads/",
  8532. "license": [
  8533. "BSD-3-Clause"
  8534. ],
  8535. "authors": [
  8536. {
  8537. "name": "Vance Lucas",
  8538. "email": "vance@vancelucas.com",
  8539. "homepage": "http://www.vancelucas.com"
  8540. }
  8541. ],
  8542. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8543. "keywords": [
  8544. "dotenv",
  8545. "env",
  8546. "environment"
  8547. ],
  8548. "time": "2019-01-29T11:11:52+00:00"
  8549. },
  8550. {
  8551. "name": "webflo/drupal-core-strict",
  8552. "version": "8.0.0-beta15",
  8553. "source": {
  8554. "type": "git",
  8555. "url": "https://github.com/webflo/drupal-core-strict.git",
  8556. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057"
  8557. },
  8558. "dist": {
  8559. "type": "zip",
  8560. "url": "https://api.github.com/repos/webflo/drupal-core-strict/zipball/1eb044b722ebe44bc6af86a03888415d7f31c057",
  8561. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057",
  8562. "shasum": ""
  8563. },
  8564. "type": "metapackage",
  8565. "notification-url": "https://packagist.org/downloads/",
  8566. "license": [
  8567. "GPL-2.0-or-later"
  8568. ],
  8569. "description": "Locked core dependencies",
  8570. "time": "2018-01-30T18:48:19+00:00"
  8571. },
  8572. {
  8573. "name": "webflo/drupal-finder",
  8574. "version": "1.1.0",
  8575. "source": {
  8576. "type": "git",
  8577. "url": "https://github.com/webflo/drupal-finder.git",
  8578. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  8579. },
  8580. "dist": {
  8581. "type": "zip",
  8582. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  8583. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  8584. "shasum": ""
  8585. },
  8586. "require-dev": {
  8587. "mikey179/vfsstream": "^1.6",
  8588. "phpunit/phpunit": "^4.8"
  8589. },
  8590. "type": "library",
  8591. "autoload": {
  8592. "classmap": [
  8593. "src/DrupalFinder.php"
  8594. ]
  8595. },
  8596. "notification-url": "https://packagist.org/downloads/",
  8597. "license": [
  8598. "GPL-2.0+"
  8599. ],
  8600. "authors": [
  8601. {
  8602. "name": "Florian Weber",
  8603. "email": "florian@webflo.org"
  8604. }
  8605. ],
  8606. "description": "Helper class to locate a Drupal installation from a given path.",
  8607. "time": "2017-10-24T08:12:11+00:00"
  8608. },
  8609. {
  8610. "name": "webmozart/assert",
  8611. "version": "1.4.0",
  8612. "source": {
  8613. "type": "git",
  8614. "url": "https://github.com/webmozart/assert.git",
  8615. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  8616. },
  8617. "dist": {
  8618. "type": "zip",
  8619. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  8620. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  8621. "shasum": ""
  8622. },
  8623. "require": {
  8624. "php": "^5.3.3 || ^7.0",
  8625. "symfony/polyfill-ctype": "^1.8"
  8626. },
  8627. "require-dev": {
  8628. "phpunit/phpunit": "^4.6",
  8629. "sebastian/version": "^1.0.1"
  8630. },
  8631. "type": "library",
  8632. "extra": {
  8633. "branch-alias": {
  8634. "dev-master": "1.3-dev"
  8635. }
  8636. },
  8637. "autoload": {
  8638. "psr-4": {
  8639. "Webmozart\\Assert\\": "src/"
  8640. }
  8641. },
  8642. "notification-url": "https://packagist.org/downloads/",
  8643. "license": [
  8644. "MIT"
  8645. ],
  8646. "authors": [
  8647. {
  8648. "name": "Bernhard Schussek",
  8649. "email": "bschussek@gmail.com"
  8650. }
  8651. ],
  8652. "description": "Assertions to validate method input/output with nice error messages.",
  8653. "keywords": [
  8654. "assert",
  8655. "check",
  8656. "validate"
  8657. ],
  8658. "time": "2018-12-25T11:19:39+00:00"
  8659. },
  8660. {
  8661. "name": "webmozart/path-util",
  8662. "version": "2.3.0",
  8663. "source": {
  8664. "type": "git",
  8665. "url": "https://github.com/webmozart/path-util.git",
  8666. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  8667. },
  8668. "dist": {
  8669. "type": "zip",
  8670. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  8671. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  8672. "shasum": ""
  8673. },
  8674. "require": {
  8675. "php": ">=5.3.3",
  8676. "webmozart/assert": "~1.0"
  8677. },
  8678. "require-dev": {
  8679. "phpunit/phpunit": "^4.6",
  8680. "sebastian/version": "^1.0.1"
  8681. },
  8682. "type": "library",
  8683. "extra": {
  8684. "branch-alias": {
  8685. "dev-master": "2.3-dev"
  8686. }
  8687. },
  8688. "autoload": {
  8689. "psr-4": {
  8690. "Webmozart\\PathUtil\\": "src/"
  8691. }
  8692. },
  8693. "notification-url": "https://packagist.org/downloads/",
  8694. "license": [
  8695. "MIT"
  8696. ],
  8697. "authors": [
  8698. {
  8699. "name": "Bernhard Schussek",
  8700. "email": "bschussek@gmail.com"
  8701. }
  8702. ],
  8703. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  8704. "time": "2015-12-17T08:42:14+00:00"
  8705. },
  8706. {
  8707. "name": "zaporylie/composer-drupal-optimizations",
  8708. "version": "1.1.0",
  8709. "source": {
  8710. "type": "git",
  8711. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  8712. "reference": "173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8"
  8713. },
  8714. "dist": {
  8715. "type": "zip",
  8716. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8",
  8717. "reference": "173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8",
  8718. "shasum": ""
  8719. },
  8720. "require": {
  8721. "composer-plugin-api": "^1.1"
  8722. },
  8723. "require-dev": {
  8724. "composer/composer": "^1.6",
  8725. "phpunit/phpunit": "^6"
  8726. },
  8727. "type": "composer-plugin",
  8728. "extra": {
  8729. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  8730. },
  8731. "autoload": {
  8732. "psr-4": {
  8733. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  8734. }
  8735. },
  8736. "notification-url": "https://packagist.org/downloads/",
  8737. "license": [
  8738. "GPL-2.0-or-later"
  8739. ],
  8740. "authors": [
  8741. {
  8742. "name": "Jakub Piasecki",
  8743. "email": "jakub@piaseccy.pl"
  8744. }
  8745. ],
  8746. "description": "Composer plugin to improve composer performance for Drupal projects",
  8747. "time": "2019-02-20T10:00:17+00:00"
  8748. },
  8749. {
  8750. "name": "zendframework/zend-diactoros",
  8751. "version": "1.8.6",
  8752. "source": {
  8753. "type": "git",
  8754. "url": "https://github.com/zendframework/zend-diactoros.git",
  8755. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  8756. },
  8757. "dist": {
  8758. "type": "zip",
  8759. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  8760. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  8761. "shasum": ""
  8762. },
  8763. "require": {
  8764. "php": "^5.6 || ^7.0",
  8765. "psr/http-message": "^1.0"
  8766. },
  8767. "provide": {
  8768. "psr/http-message-implementation": "1.0"
  8769. },
  8770. "require-dev": {
  8771. "ext-dom": "*",
  8772. "ext-libxml": "*",
  8773. "php-http/psr7-integration-tests": "dev-master",
  8774. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  8775. "zendframework/zend-coding-standard": "~1.0"
  8776. },
  8777. "type": "library",
  8778. "extra": {
  8779. "branch-alias": {
  8780. "dev-master": "1.8.x-dev",
  8781. "dev-develop": "1.9.x-dev",
  8782. "dev-release-2.0": "2.0.x-dev"
  8783. }
  8784. },
  8785. "autoload": {
  8786. "files": [
  8787. "src/functions/create_uploaded_file.php",
  8788. "src/functions/marshal_headers_from_sapi.php",
  8789. "src/functions/marshal_method_from_sapi.php",
  8790. "src/functions/marshal_protocol_version_from_sapi.php",
  8791. "src/functions/marshal_uri_from_sapi.php",
  8792. "src/functions/normalize_server.php",
  8793. "src/functions/normalize_uploaded_files.php",
  8794. "src/functions/parse_cookie_header.php"
  8795. ],
  8796. "psr-4": {
  8797. "Zend\\Diactoros\\": "src/"
  8798. }
  8799. },
  8800. "notification-url": "https://packagist.org/downloads/",
  8801. "license": [
  8802. "BSD-2-Clause"
  8803. ],
  8804. "description": "PSR HTTP Message implementations",
  8805. "homepage": "https://github.com/zendframework/zend-diactoros",
  8806. "keywords": [
  8807. "http",
  8808. "psr",
  8809. "psr-7"
  8810. ],
  8811. "time": "2018-09-05T19:29:37+00:00"
  8812. },
  8813. {
  8814. "name": "zendframework/zend-escaper",
  8815. "version": "2.6.0",
  8816. "source": {
  8817. "type": "git",
  8818. "url": "https://github.com/zendframework/zend-escaper.git",
  8819. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  8820. },
  8821. "dist": {
  8822. "type": "zip",
  8823. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  8824. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  8825. "shasum": ""
  8826. },
  8827. "require": {
  8828. "php": "^5.6 || ^7.0"
  8829. },
  8830. "require-dev": {
  8831. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  8832. "zendframework/zend-coding-standard": "~1.0.0"
  8833. },
  8834. "type": "library",
  8835. "extra": {
  8836. "branch-alias": {
  8837. "dev-master": "2.6.x-dev",
  8838. "dev-develop": "2.7.x-dev"
  8839. }
  8840. },
  8841. "autoload": {
  8842. "psr-4": {
  8843. "Zend\\Escaper\\": "src/"
  8844. }
  8845. },
  8846. "notification-url": "https://packagist.org/downloads/",
  8847. "license": [
  8848. "BSD-3-Clause"
  8849. ],
  8850. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  8851. "keywords": [
  8852. "ZendFramework",
  8853. "escaper",
  8854. "zf"
  8855. ],
  8856. "time": "2018-04-25T15:48:53+00:00"
  8857. },
  8858. {
  8859. "name": "zendframework/zend-feed",
  8860. "version": "2.12.0",
  8861. "source": {
  8862. "type": "git",
  8863. "url": "https://github.com/zendframework/zend-feed.git",
  8864. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  8865. },
  8866. "dist": {
  8867. "type": "zip",
  8868. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  8869. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  8870. "shasum": ""
  8871. },
  8872. "require": {
  8873. "ext-dom": "*",
  8874. "ext-libxml": "*",
  8875. "php": "^5.6 || ^7.0",
  8876. "zendframework/zend-escaper": "^2.5.2",
  8877. "zendframework/zend-stdlib": "^3.2.1"
  8878. },
  8879. "require-dev": {
  8880. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  8881. "psr/http-message": "^1.0.1",
  8882. "zendframework/zend-cache": "^2.7.2",
  8883. "zendframework/zend-coding-standard": "~1.0.0",
  8884. "zendframework/zend-db": "^2.8.2",
  8885. "zendframework/zend-http": "^2.7",
  8886. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  8887. "zendframework/zend-validator": "^2.10.1"
  8888. },
  8889. "suggest": {
  8890. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  8891. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  8892. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  8893. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  8894. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  8895. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  8896. },
  8897. "type": "library",
  8898. "extra": {
  8899. "branch-alias": {
  8900. "dev-master": "2.12.x-dev",
  8901. "dev-develop": "2.13.x-dev"
  8902. }
  8903. },
  8904. "autoload": {
  8905. "psr-4": {
  8906. "Zend\\Feed\\": "src/"
  8907. }
  8908. },
  8909. "notification-url": "https://packagist.org/downloads/",
  8910. "license": [
  8911. "BSD-3-Clause"
  8912. ],
  8913. "description": "provides functionality for consuming RSS and Atom feeds",
  8914. "keywords": [
  8915. "ZendFramework",
  8916. "feed",
  8917. "zf"
  8918. ],
  8919. "time": "2019-03-05T20:08:49+00:00"
  8920. },
  8921. {
  8922. "name": "zendframework/zend-stdlib",
  8923. "version": "3.2.1",
  8924. "source": {
  8925. "type": "git",
  8926. "url": "https://github.com/zendframework/zend-stdlib.git",
  8927. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  8928. },
  8929. "dist": {
  8930. "type": "zip",
  8931. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  8932. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  8933. "shasum": ""
  8934. },
  8935. "require": {
  8936. "php": "^5.6 || ^7.0"
  8937. },
  8938. "require-dev": {
  8939. "phpbench/phpbench": "^0.13",
  8940. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  8941. "zendframework/zend-coding-standard": "~1.0.0"
  8942. },
  8943. "type": "library",
  8944. "extra": {
  8945. "branch-alias": {
  8946. "dev-master": "3.2.x-dev",
  8947. "dev-develop": "3.3.x-dev"
  8948. }
  8949. },
  8950. "autoload": {
  8951. "psr-4": {
  8952. "Zend\\Stdlib\\": "src/"
  8953. }
  8954. },
  8955. "notification-url": "https://packagist.org/downloads/",
  8956. "license": [
  8957. "BSD-3-Clause"
  8958. ],
  8959. "description": "SPL extensions, array utilities, error handlers, and more",
  8960. "keywords": [
  8961. "ZendFramework",
  8962. "stdlib",
  8963. "zf"
  8964. ],
  8965. "time": "2018-08-28T21:34:05+00:00"
  8966. }
  8967. ],
  8968. "packages-dev": [
  8969. {
  8970. "name": "behat/mink",
  8971. "version": "dev-master",
  8972. "source": {
  8973. "type": "git",
  8974. "url": "https://github.com/minkphp/Mink.git",
  8975. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  8976. },
  8977. "dist": {
  8978. "type": "zip",
  8979. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  8980. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  8981. "shasum": ""
  8982. },
  8983. "require": {
  8984. "php": ">=5.3.1",
  8985. "symfony/css-selector": "^2.7|^3.0|^4.0"
  8986. },
  8987. "require-dev": {
  8988. "symfony/phpunit-bridge": "^3.3|^4.0"
  8989. },
  8990. "suggest": {
  8991. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  8992. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  8993. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  8994. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  8995. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  8996. },
  8997. "type": "library",
  8998. "extra": {
  8999. "branch-alias": {
  9000. "dev-master": "1.7.x-dev"
  9001. }
  9002. },
  9003. "autoload": {
  9004. "psr-4": {
  9005. "Behat\\Mink\\": "src/"
  9006. }
  9007. },
  9008. "notification-url": "https://packagist.org/downloads/",
  9009. "license": [
  9010. "MIT"
  9011. ],
  9012. "authors": [
  9013. {
  9014. "name": "Konstantin Kudryashov",
  9015. "email": "ever.zet@gmail.com",
  9016. "homepage": "http://everzet.com"
  9017. }
  9018. ],
  9019. "description": "Browser controller/emulator abstraction for PHP",
  9020. "homepage": "http://mink.behat.org/",
  9021. "keywords": [
  9022. "browser",
  9023. "testing",
  9024. "web"
  9025. ],
  9026. "time": "2018-06-24T20:08:51+00:00"
  9027. },
  9028. {
  9029. "name": "behat/mink-browserkit-driver",
  9030. "version": "1.3.3",
  9031. "source": {
  9032. "type": "git",
  9033. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  9034. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  9035. },
  9036. "dist": {
  9037. "type": "zip",
  9038. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  9039. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  9040. "shasum": ""
  9041. },
  9042. "require": {
  9043. "behat/mink": "^1.7.1@dev",
  9044. "php": ">=5.3.6",
  9045. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  9046. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  9047. },
  9048. "require-dev": {
  9049. "mink/driver-testsuite": "dev-master",
  9050. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  9051. },
  9052. "type": "mink-driver",
  9053. "extra": {
  9054. "branch-alias": {
  9055. "dev-master": "1.3.x-dev"
  9056. }
  9057. },
  9058. "autoload": {
  9059. "psr-4": {
  9060. "Behat\\Mink\\Driver\\": "src/"
  9061. }
  9062. },
  9063. "notification-url": "https://packagist.org/downloads/",
  9064. "license": [
  9065. "MIT"
  9066. ],
  9067. "authors": [
  9068. {
  9069. "name": "Konstantin Kudryashov",
  9070. "email": "ever.zet@gmail.com",
  9071. "homepage": "http://everzet.com"
  9072. }
  9073. ],
  9074. "description": "Symfony2 BrowserKit driver for Mink framework",
  9075. "homepage": "http://mink.behat.org/",
  9076. "keywords": [
  9077. "Mink",
  9078. "Symfony2",
  9079. "browser",
  9080. "testing"
  9081. ],
  9082. "time": "2018-05-02T09:25:31+00:00"
  9083. },
  9084. {
  9085. "name": "behat/mink-goutte-driver",
  9086. "version": "v1.2.1",
  9087. "source": {
  9088. "type": "git",
  9089. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  9090. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  9091. },
  9092. "dist": {
  9093. "type": "zip",
  9094. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  9095. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  9096. "shasum": ""
  9097. },
  9098. "require": {
  9099. "behat/mink": "~1.6@dev",
  9100. "behat/mink-browserkit-driver": "~1.2@dev",
  9101. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  9102. "php": ">=5.3.1"
  9103. },
  9104. "require-dev": {
  9105. "symfony/phpunit-bridge": "~2.7|~3.0"
  9106. },
  9107. "type": "mink-driver",
  9108. "extra": {
  9109. "branch-alias": {
  9110. "dev-master": "1.2.x-dev"
  9111. }
  9112. },
  9113. "autoload": {
  9114. "psr-4": {
  9115. "Behat\\Mink\\Driver\\": "src/"
  9116. }
  9117. },
  9118. "notification-url": "https://packagist.org/downloads/",
  9119. "license": [
  9120. "MIT"
  9121. ],
  9122. "authors": [
  9123. {
  9124. "name": "Konstantin Kudryashov",
  9125. "email": "ever.zet@gmail.com",
  9126. "homepage": "http://everzet.com"
  9127. }
  9128. ],
  9129. "description": "Goutte driver for Mink framework",
  9130. "homepage": "http://mink.behat.org/",
  9131. "keywords": [
  9132. "browser",
  9133. "goutte",
  9134. "headless",
  9135. "testing"
  9136. ],
  9137. "time": "2016-03-05T09:04:22+00:00"
  9138. },
  9139. {
  9140. "name": "behat/mink-selenium2-driver",
  9141. "version": "dev-master",
  9142. "source": {
  9143. "type": "git",
  9144. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  9145. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  9146. },
  9147. "dist": {
  9148. "type": "zip",
  9149. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  9150. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  9151. "shasum": ""
  9152. },
  9153. "require": {
  9154. "behat/mink": "~1.7@dev",
  9155. "instaclick/php-webdriver": "~1.1",
  9156. "php": ">=5.3.1"
  9157. },
  9158. "require-dev": {
  9159. "mink/driver-testsuite": "dev-master"
  9160. },
  9161. "type": "mink-driver",
  9162. "extra": {
  9163. "branch-alias": {
  9164. "dev-master": "1.3.x-dev"
  9165. }
  9166. },
  9167. "autoload": {
  9168. "psr-4": {
  9169. "Behat\\Mink\\Driver\\": "src/"
  9170. }
  9171. },
  9172. "notification-url": "https://packagist.org/downloads/",
  9173. "license": [
  9174. "MIT"
  9175. ],
  9176. "authors": [
  9177. {
  9178. "name": "Konstantin Kudryashov",
  9179. "email": "ever.zet@gmail.com",
  9180. "homepage": "http://everzet.com"
  9181. },
  9182. {
  9183. "name": "Pete Otaqui",
  9184. "email": "pete@otaqui.com",
  9185. "homepage": "https://github.com/pete-otaqui"
  9186. }
  9187. ],
  9188. "description": "Selenium2 (WebDriver) driver for Mink framework",
  9189. "homepage": "http://mink.behat.org/",
  9190. "keywords": [
  9191. "ajax",
  9192. "browser",
  9193. "javascript",
  9194. "selenium",
  9195. "testing",
  9196. "webdriver"
  9197. ],
  9198. "time": "2018-10-10T12:39:06+00:00"
  9199. },
  9200. {
  9201. "name": "doctrine/instantiator",
  9202. "version": "1.0.5",
  9203. "source": {
  9204. "type": "git",
  9205. "url": "https://github.com/doctrine/instantiator.git",
  9206. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  9207. },
  9208. "dist": {
  9209. "type": "zip",
  9210. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  9211. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  9212. "shasum": ""
  9213. },
  9214. "require": {
  9215. "php": ">=5.3,<8.0-DEV"
  9216. },
  9217. "require-dev": {
  9218. "athletic/athletic": "~0.1.8",
  9219. "ext-pdo": "*",
  9220. "ext-phar": "*",
  9221. "phpunit/phpunit": "~4.0",
  9222. "squizlabs/php_codesniffer": "~2.0"
  9223. },
  9224. "type": "library",
  9225. "extra": {
  9226. "branch-alias": {
  9227. "dev-master": "1.0.x-dev"
  9228. }
  9229. },
  9230. "autoload": {
  9231. "psr-4": {
  9232. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9233. }
  9234. },
  9235. "notification-url": "https://packagist.org/downloads/",
  9236. "license": [
  9237. "MIT"
  9238. ],
  9239. "authors": [
  9240. {
  9241. "name": "Marco Pivetta",
  9242. "email": "ocramius@gmail.com",
  9243. "homepage": "http://ocramius.github.com/"
  9244. }
  9245. ],
  9246. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9247. "homepage": "https://github.com/doctrine/instantiator",
  9248. "keywords": [
  9249. "constructor",
  9250. "instantiate"
  9251. ],
  9252. "time": "2015-06-14T21:17:01+00:00"
  9253. },
  9254. {
  9255. "name": "drupal/coder",
  9256. "version": "8.3.3",
  9257. "source": {
  9258. "type": "git",
  9259. "url": "https://git.drupal.org/project/coder.git",
  9260. "reference": "a33d3388fb2e1d94bd2aee36a8ff79186e9d8f43"
  9261. },
  9262. "require": {
  9263. "ext-mbstring": "*",
  9264. "php": ">=5.5.9",
  9265. "squizlabs/php_codesniffer": "^3.4.1",
  9266. "symfony/yaml": ">=2.0.0"
  9267. },
  9268. "require-dev": {
  9269. "phpunit/phpunit": ">=3.7 <6"
  9270. },
  9271. "type": "phpcodesniffer-standard",
  9272. "autoload": {
  9273. "psr-0": {
  9274. "Drupal\\": "coder_sniffer/Drupal/",
  9275. "DrupalPractice\\": "coder_sniffer/DrupalPractice/"
  9276. }
  9277. },
  9278. "notification-url": "https://packagist.org/downloads/",
  9279. "license": [
  9280. "GPL-2.0+"
  9281. ],
  9282. "description": "Coder is a library to review Drupal code.",
  9283. "homepage": "https://www.drupal.org/project/coder",
  9284. "keywords": [
  9285. "code review",
  9286. "phpcs",
  9287. "standards"
  9288. ],
  9289. "time": "2019-04-16T18:56:06+00:00"
  9290. },
  9291. {
  9292. "name": "fabpot/goutte",
  9293. "version": "v3.2.3",
  9294. "source": {
  9295. "type": "git",
  9296. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  9297. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  9298. },
  9299. "dist": {
  9300. "type": "zip",
  9301. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  9302. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  9303. "shasum": ""
  9304. },
  9305. "require": {
  9306. "guzzlehttp/guzzle": "^6.0",
  9307. "php": ">=5.5.0",
  9308. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  9309. "symfony/css-selector": "~2.1|~3.0|~4.0",
  9310. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  9311. },
  9312. "require-dev": {
  9313. "symfony/phpunit-bridge": "^3.3 || ^4"
  9314. },
  9315. "type": "application",
  9316. "extra": {
  9317. "branch-alias": {
  9318. "dev-master": "3.2-dev"
  9319. }
  9320. },
  9321. "autoload": {
  9322. "psr-4": {
  9323. "Goutte\\": "Goutte"
  9324. },
  9325. "exclude-from-classmap": [
  9326. "Goutte/Tests"
  9327. ]
  9328. },
  9329. "notification-url": "https://packagist.org/downloads/",
  9330. "license": [
  9331. "MIT"
  9332. ],
  9333. "authors": [
  9334. {
  9335. "name": "Fabien Potencier",
  9336. "email": "fabien@symfony.com"
  9337. }
  9338. ],
  9339. "description": "A simple PHP Web Scraper",
  9340. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  9341. "keywords": [
  9342. "scraper"
  9343. ],
  9344. "time": "2018-06-29T15:13:57+00:00"
  9345. },
  9346. {
  9347. "name": "instaclick/php-webdriver",
  9348. "version": "1.4.5",
  9349. "source": {
  9350. "type": "git",
  9351. "url": "https://github.com/instaclick/php-webdriver.git",
  9352. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  9353. },
  9354. "dist": {
  9355. "type": "zip",
  9356. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  9357. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  9358. "shasum": ""
  9359. },
  9360. "require": {
  9361. "ext-curl": "*",
  9362. "php": ">=5.3.2"
  9363. },
  9364. "require-dev": {
  9365. "phpunit/phpunit": "^4.8",
  9366. "satooshi/php-coveralls": "^1.0||^2.0"
  9367. },
  9368. "type": "library",
  9369. "extra": {
  9370. "branch-alias": {
  9371. "dev-master": "1.4.x-dev"
  9372. }
  9373. },
  9374. "autoload": {
  9375. "psr-0": {
  9376. "WebDriver": "lib/"
  9377. }
  9378. },
  9379. "notification-url": "https://packagist.org/downloads/",
  9380. "license": [
  9381. "Apache-2.0"
  9382. ],
  9383. "authors": [
  9384. {
  9385. "name": "Justin Bishop",
  9386. "email": "jubishop@gmail.com",
  9387. "role": "Developer"
  9388. },
  9389. {
  9390. "name": "Anthon Pang",
  9391. "email": "apang@softwaredevelopment.ca",
  9392. "role": "Fork Maintainer"
  9393. }
  9394. ],
  9395. "description": "PHP WebDriver for Selenium 2",
  9396. "homepage": "http://instaclick.com/",
  9397. "keywords": [
  9398. "browser",
  9399. "selenium",
  9400. "webdriver",
  9401. "webtest"
  9402. ],
  9403. "time": "2017-06-30T04:02:48+00:00"
  9404. },
  9405. {
  9406. "name": "jcalderonzumba/gastonjs",
  9407. "version": "v1.2.0",
  9408. "source": {
  9409. "type": "git",
  9410. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  9411. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  9412. },
  9413. "dist": {
  9414. "type": "zip",
  9415. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  9416. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  9417. "shasum": ""
  9418. },
  9419. "require": {
  9420. "guzzlehttp/guzzle": "~5.0|~6.0",
  9421. "php": ">=5.4"
  9422. },
  9423. "require-dev": {
  9424. "phpunit/phpunit": "~4.6",
  9425. "silex/silex": "~1.2",
  9426. "symfony/phpunit-bridge": "~2.7",
  9427. "symfony/process": "~2.1"
  9428. },
  9429. "type": "phantomjs-api",
  9430. "extra": {
  9431. "branch-alias": {
  9432. "dev-master": "1.1.x-dev"
  9433. }
  9434. },
  9435. "autoload": {
  9436. "psr-4": {
  9437. "Zumba\\GastonJS\\": "src"
  9438. }
  9439. },
  9440. "notification-url": "https://packagist.org/downloads/",
  9441. "license": [
  9442. "MIT"
  9443. ],
  9444. "authors": [
  9445. {
  9446. "name": "Juan Francisco Calderón Zumba",
  9447. "email": "juanfcz@gmail.com",
  9448. "homepage": "http://github.com/jcalderonzumba"
  9449. }
  9450. ],
  9451. "description": "PhantomJS API based server for webpage automation",
  9452. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  9453. "keywords": [
  9454. "api",
  9455. "automation",
  9456. "browser",
  9457. "headless",
  9458. "phantomjs"
  9459. ],
  9460. "time": "2017-03-31T07:31:47+00:00"
  9461. },
  9462. {
  9463. "name": "jcalderonzumba/mink-phantomjs-driver",
  9464. "version": "v0.3.3",
  9465. "source": {
  9466. "type": "git",
  9467. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  9468. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  9469. },
  9470. "dist": {
  9471. "type": "zip",
  9472. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  9473. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  9474. "shasum": ""
  9475. },
  9476. "require": {
  9477. "behat/mink": "~1.7",
  9478. "jcalderonzumba/gastonjs": "~1.0",
  9479. "php": ">=5.4",
  9480. "twig/twig": "~1.20|~2.0"
  9481. },
  9482. "require-dev": {
  9483. "mink/driver-testsuite": "dev-master",
  9484. "phpunit/phpunit": "~4.6"
  9485. },
  9486. "type": "mink-driver",
  9487. "extra": {
  9488. "branch-alias": {
  9489. "dev-master": "0.4.x-dev"
  9490. }
  9491. },
  9492. "autoload": {
  9493. "psr-4": {
  9494. "Zumba\\Mink\\Driver\\": "src"
  9495. }
  9496. },
  9497. "notification-url": "https://packagist.org/downloads/",
  9498. "license": [
  9499. "MIT"
  9500. ],
  9501. "authors": [
  9502. {
  9503. "name": "Juan Francisco Calderón Zumba",
  9504. "email": "juanfcz@gmail.com",
  9505. "homepage": "http://github.com/jcalderonzumba"
  9506. }
  9507. ],
  9508. "description": "PhantomJS driver for Mink framework",
  9509. "homepage": "http://mink.behat.org/",
  9510. "keywords": [
  9511. "ajax",
  9512. "browser",
  9513. "headless",
  9514. "javascript",
  9515. "phantomjs",
  9516. "testing"
  9517. ],
  9518. "time": "2016-12-01T10:57:30+00:00"
  9519. },
  9520. {
  9521. "name": "mikey179/vfsStream",
  9522. "version": "v1.6.6",
  9523. "source": {
  9524. "type": "git",
  9525. "url": "https://github.com/bovigo/vfsStream.git",
  9526. "reference": "095238a0711c974ae5b4ebf4c4534a23f3f6c99d"
  9527. },
  9528. "dist": {
  9529. "type": "zip",
  9530. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/095238a0711c974ae5b4ebf4c4534a23f3f6c99d",
  9531. "reference": "095238a0711c974ae5b4ebf4c4534a23f3f6c99d",
  9532. "shasum": ""
  9533. },
  9534. "require": {
  9535. "php": ">=5.3.0"
  9536. },
  9537. "require-dev": {
  9538. "phpunit/phpunit": "~4.5"
  9539. },
  9540. "type": "library",
  9541. "extra": {
  9542. "branch-alias": {
  9543. "dev-master": "1.6.x-dev"
  9544. }
  9545. },
  9546. "autoload": {
  9547. "psr-0": {
  9548. "org\\bovigo\\vfs\\": "src/main/php"
  9549. }
  9550. },
  9551. "notification-url": "https://packagist.org/downloads/",
  9552. "license": [
  9553. "BSD-3-Clause"
  9554. ],
  9555. "authors": [
  9556. {
  9557. "name": "Frank Kleine",
  9558. "homepage": "http://frankkleine.de/",
  9559. "role": "Developer"
  9560. }
  9561. ],
  9562. "description": "Virtual file system to mock the real file system in unit tests.",
  9563. "homepage": "http://vfs.bovigo.org/",
  9564. "time": "2019-04-08T13:54:32+00:00"
  9565. },
  9566. {
  9567. "name": "myclabs/deep-copy",
  9568. "version": "1.7.0",
  9569. "source": {
  9570. "type": "git",
  9571. "url": "https://github.com/myclabs/DeepCopy.git",
  9572. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  9573. },
  9574. "dist": {
  9575. "type": "zip",
  9576. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  9577. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  9578. "shasum": ""
  9579. },
  9580. "require": {
  9581. "php": "^5.6 || ^7.0"
  9582. },
  9583. "require-dev": {
  9584. "doctrine/collections": "^1.0",
  9585. "doctrine/common": "^2.6",
  9586. "phpunit/phpunit": "^4.1"
  9587. },
  9588. "type": "library",
  9589. "autoload": {
  9590. "psr-4": {
  9591. "DeepCopy\\": "src/DeepCopy/"
  9592. },
  9593. "files": [
  9594. "src/DeepCopy/deep_copy.php"
  9595. ]
  9596. },
  9597. "notification-url": "https://packagist.org/downloads/",
  9598. "license": [
  9599. "MIT"
  9600. ],
  9601. "description": "Create deep copies (clones) of your objects",
  9602. "keywords": [
  9603. "clone",
  9604. "copy",
  9605. "duplicate",
  9606. "object",
  9607. "object graph"
  9608. ],
  9609. "time": "2017-10-19T19:58:43+00:00"
  9610. },
  9611. {
  9612. "name": "phar-io/manifest",
  9613. "version": "1.0.1",
  9614. "source": {
  9615. "type": "git",
  9616. "url": "https://github.com/phar-io/manifest.git",
  9617. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  9618. },
  9619. "dist": {
  9620. "type": "zip",
  9621. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  9622. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  9623. "shasum": ""
  9624. },
  9625. "require": {
  9626. "ext-dom": "*",
  9627. "ext-phar": "*",
  9628. "phar-io/version": "^1.0.1",
  9629. "php": "^5.6 || ^7.0"
  9630. },
  9631. "type": "library",
  9632. "extra": {
  9633. "branch-alias": {
  9634. "dev-master": "1.0.x-dev"
  9635. }
  9636. },
  9637. "autoload": {
  9638. "classmap": [
  9639. "src/"
  9640. ]
  9641. },
  9642. "notification-url": "https://packagist.org/downloads/",
  9643. "license": [
  9644. "BSD-3-Clause"
  9645. ],
  9646. "authors": [
  9647. {
  9648. "name": "Arne Blankerts",
  9649. "email": "arne@blankerts.de",
  9650. "role": "Developer"
  9651. },
  9652. {
  9653. "name": "Sebastian Heuer",
  9654. "email": "sebastian@phpeople.de",
  9655. "role": "Developer"
  9656. },
  9657. {
  9658. "name": "Sebastian Bergmann",
  9659. "email": "sebastian@phpunit.de",
  9660. "role": "Developer"
  9661. }
  9662. ],
  9663. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9664. "time": "2017-03-05T18:14:27+00:00"
  9665. },
  9666. {
  9667. "name": "phar-io/version",
  9668. "version": "1.0.1",
  9669. "source": {
  9670. "type": "git",
  9671. "url": "https://github.com/phar-io/version.git",
  9672. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  9673. },
  9674. "dist": {
  9675. "type": "zip",
  9676. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  9677. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  9678. "shasum": ""
  9679. },
  9680. "require": {
  9681. "php": "^5.6 || ^7.0"
  9682. },
  9683. "type": "library",
  9684. "autoload": {
  9685. "classmap": [
  9686. "src/"
  9687. ]
  9688. },
  9689. "notification-url": "https://packagist.org/downloads/",
  9690. "license": [
  9691. "BSD-3-Clause"
  9692. ],
  9693. "authors": [
  9694. {
  9695. "name": "Arne Blankerts",
  9696. "email": "arne@blankerts.de",
  9697. "role": "Developer"
  9698. },
  9699. {
  9700. "name": "Sebastian Heuer",
  9701. "email": "sebastian@phpeople.de",
  9702. "role": "Developer"
  9703. },
  9704. {
  9705. "name": "Sebastian Bergmann",
  9706. "email": "sebastian@phpunit.de",
  9707. "role": "Developer"
  9708. }
  9709. ],
  9710. "description": "Library for handling version information and constraints",
  9711. "time": "2017-03-05T17:38:23+00:00"
  9712. },
  9713. {
  9714. "name": "phpdocumentor/reflection-common",
  9715. "version": "1.0.1",
  9716. "source": {
  9717. "type": "git",
  9718. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9719. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  9720. },
  9721. "dist": {
  9722. "type": "zip",
  9723. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  9724. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  9725. "shasum": ""
  9726. },
  9727. "require": {
  9728. "php": ">=5.5"
  9729. },
  9730. "require-dev": {
  9731. "phpunit/phpunit": "^4.6"
  9732. },
  9733. "type": "library",
  9734. "extra": {
  9735. "branch-alias": {
  9736. "dev-master": "1.0.x-dev"
  9737. }
  9738. },
  9739. "autoload": {
  9740. "psr-4": {
  9741. "phpDocumentor\\Reflection\\": [
  9742. "src"
  9743. ]
  9744. }
  9745. },
  9746. "notification-url": "https://packagist.org/downloads/",
  9747. "license": [
  9748. "MIT"
  9749. ],
  9750. "authors": [
  9751. {
  9752. "name": "Jaap van Otterdijk",
  9753. "email": "opensource@ijaap.nl"
  9754. }
  9755. ],
  9756. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9757. "homepage": "http://www.phpdoc.org",
  9758. "keywords": [
  9759. "FQSEN",
  9760. "phpDocumentor",
  9761. "phpdoc",
  9762. "reflection",
  9763. "static analysis"
  9764. ],
  9765. "time": "2017-09-11T18:02:19+00:00"
  9766. },
  9767. {
  9768. "name": "phpdocumentor/reflection-docblock",
  9769. "version": "4.3.0",
  9770. "source": {
  9771. "type": "git",
  9772. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9773. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  9774. },
  9775. "dist": {
  9776. "type": "zip",
  9777. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  9778. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  9779. "shasum": ""
  9780. },
  9781. "require": {
  9782. "php": "^7.0",
  9783. "phpdocumentor/reflection-common": "^1.0.0",
  9784. "phpdocumentor/type-resolver": "^0.4.0",
  9785. "webmozart/assert": "^1.0"
  9786. },
  9787. "require-dev": {
  9788. "doctrine/instantiator": "~1.0.5",
  9789. "mockery/mockery": "^1.0",
  9790. "phpunit/phpunit": "^6.4"
  9791. },
  9792. "type": "library",
  9793. "extra": {
  9794. "branch-alias": {
  9795. "dev-master": "4.x-dev"
  9796. }
  9797. },
  9798. "autoload": {
  9799. "psr-4": {
  9800. "phpDocumentor\\Reflection\\": [
  9801. "src/"
  9802. ]
  9803. }
  9804. },
  9805. "notification-url": "https://packagist.org/downloads/",
  9806. "license": [
  9807. "MIT"
  9808. ],
  9809. "authors": [
  9810. {
  9811. "name": "Mike van Riel",
  9812. "email": "me@mikevanriel.com"
  9813. }
  9814. ],
  9815. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9816. "time": "2017-11-30T07:14:17+00:00"
  9817. },
  9818. {
  9819. "name": "phpdocumentor/type-resolver",
  9820. "version": "0.4.0",
  9821. "source": {
  9822. "type": "git",
  9823. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9824. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  9825. },
  9826. "dist": {
  9827. "type": "zip",
  9828. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  9829. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  9830. "shasum": ""
  9831. },
  9832. "require": {
  9833. "php": "^5.5 || ^7.0",
  9834. "phpdocumentor/reflection-common": "^1.0"
  9835. },
  9836. "require-dev": {
  9837. "mockery/mockery": "^0.9.4",
  9838. "phpunit/phpunit": "^5.2||^4.8.24"
  9839. },
  9840. "type": "library",
  9841. "extra": {
  9842. "branch-alias": {
  9843. "dev-master": "1.0.x-dev"
  9844. }
  9845. },
  9846. "autoload": {
  9847. "psr-4": {
  9848. "phpDocumentor\\Reflection\\": [
  9849. "src/"
  9850. ]
  9851. }
  9852. },
  9853. "notification-url": "https://packagist.org/downloads/",
  9854. "license": [
  9855. "MIT"
  9856. ],
  9857. "authors": [
  9858. {
  9859. "name": "Mike van Riel",
  9860. "email": "me@mikevanriel.com"
  9861. }
  9862. ],
  9863. "time": "2017-07-14T14:27:02+00:00"
  9864. },
  9865. {
  9866. "name": "phpspec/prophecy",
  9867. "version": "1.8.0",
  9868. "source": {
  9869. "type": "git",
  9870. "url": "https://github.com/phpspec/prophecy.git",
  9871. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  9872. },
  9873. "dist": {
  9874. "type": "zip",
  9875. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  9876. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  9877. "shasum": ""
  9878. },
  9879. "require": {
  9880. "doctrine/instantiator": "^1.0.2",
  9881. "php": "^5.3|^7.0",
  9882. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  9883. "sebastian/comparator": "^1.1|^2.0|^3.0",
  9884. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  9885. },
  9886. "require-dev": {
  9887. "phpspec/phpspec": "^2.5|^3.2",
  9888. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  9889. },
  9890. "type": "library",
  9891. "extra": {
  9892. "branch-alias": {
  9893. "dev-master": "1.8.x-dev"
  9894. }
  9895. },
  9896. "autoload": {
  9897. "psr-0": {
  9898. "Prophecy\\": "src/"
  9899. }
  9900. },
  9901. "notification-url": "https://packagist.org/downloads/",
  9902. "license": [
  9903. "MIT"
  9904. ],
  9905. "authors": [
  9906. {
  9907. "name": "Konstantin Kudryashov",
  9908. "email": "ever.zet@gmail.com",
  9909. "homepage": "http://everzet.com"
  9910. },
  9911. {
  9912. "name": "Marcello Duarte",
  9913. "email": "marcello.duarte@gmail.com"
  9914. }
  9915. ],
  9916. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9917. "homepage": "https://github.com/phpspec/prophecy",
  9918. "keywords": [
  9919. "Double",
  9920. "Dummy",
  9921. "fake",
  9922. "mock",
  9923. "spy",
  9924. "stub"
  9925. ],
  9926. "time": "2018-08-05T17:53:17+00:00"
  9927. },
  9928. {
  9929. "name": "phpunit/php-code-coverage",
  9930. "version": "5.3.2",
  9931. "source": {
  9932. "type": "git",
  9933. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9934. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  9935. },
  9936. "dist": {
  9937. "type": "zip",
  9938. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  9939. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  9940. "shasum": ""
  9941. },
  9942. "require": {
  9943. "ext-dom": "*",
  9944. "ext-xmlwriter": "*",
  9945. "php": "^7.0",
  9946. "phpunit/php-file-iterator": "^1.4.2",
  9947. "phpunit/php-text-template": "^1.2.1",
  9948. "phpunit/php-token-stream": "^2.0.1",
  9949. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9950. "sebastian/environment": "^3.0",
  9951. "sebastian/version": "^2.0.1",
  9952. "theseer/tokenizer": "^1.1"
  9953. },
  9954. "require-dev": {
  9955. "phpunit/phpunit": "^6.0"
  9956. },
  9957. "suggest": {
  9958. "ext-xdebug": "^2.5.5"
  9959. },
  9960. "type": "library",
  9961. "extra": {
  9962. "branch-alias": {
  9963. "dev-master": "5.3.x-dev"
  9964. }
  9965. },
  9966. "autoload": {
  9967. "classmap": [
  9968. "src/"
  9969. ]
  9970. },
  9971. "notification-url": "https://packagist.org/downloads/",
  9972. "license": [
  9973. "BSD-3-Clause"
  9974. ],
  9975. "authors": [
  9976. {
  9977. "name": "Sebastian Bergmann",
  9978. "email": "sebastian@phpunit.de",
  9979. "role": "lead"
  9980. }
  9981. ],
  9982. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9983. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9984. "keywords": [
  9985. "coverage",
  9986. "testing",
  9987. "xunit"
  9988. ],
  9989. "time": "2018-04-06T15:36:58+00:00"
  9990. },
  9991. {
  9992. "name": "phpunit/php-file-iterator",
  9993. "version": "1.4.5",
  9994. "source": {
  9995. "type": "git",
  9996. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9997. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  9998. },
  9999. "dist": {
  10000. "type": "zip",
  10001. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  10002. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  10003. "shasum": ""
  10004. },
  10005. "require": {
  10006. "php": ">=5.3.3"
  10007. },
  10008. "type": "library",
  10009. "extra": {
  10010. "branch-alias": {
  10011. "dev-master": "1.4.x-dev"
  10012. }
  10013. },
  10014. "autoload": {
  10015. "classmap": [
  10016. "src/"
  10017. ]
  10018. },
  10019. "notification-url": "https://packagist.org/downloads/",
  10020. "license": [
  10021. "BSD-3-Clause"
  10022. ],
  10023. "authors": [
  10024. {
  10025. "name": "Sebastian Bergmann",
  10026. "email": "sb@sebastian-bergmann.de",
  10027. "role": "lead"
  10028. }
  10029. ],
  10030. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10031. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10032. "keywords": [
  10033. "filesystem",
  10034. "iterator"
  10035. ],
  10036. "time": "2017-11-27T13:52:08+00:00"
  10037. },
  10038. {
  10039. "name": "phpunit/php-text-template",
  10040. "version": "1.2.1",
  10041. "source": {
  10042. "type": "git",
  10043. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10044. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  10045. },
  10046. "dist": {
  10047. "type": "zip",
  10048. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10049. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10050. "shasum": ""
  10051. },
  10052. "require": {
  10053. "php": ">=5.3.3"
  10054. },
  10055. "type": "library",
  10056. "autoload": {
  10057. "classmap": [
  10058. "src/"
  10059. ]
  10060. },
  10061. "notification-url": "https://packagist.org/downloads/",
  10062. "license": [
  10063. "BSD-3-Clause"
  10064. ],
  10065. "authors": [
  10066. {
  10067. "name": "Sebastian Bergmann",
  10068. "email": "sebastian@phpunit.de",
  10069. "role": "lead"
  10070. }
  10071. ],
  10072. "description": "Simple template engine.",
  10073. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10074. "keywords": [
  10075. "template"
  10076. ],
  10077. "time": "2015-06-21T13:50:34+00:00"
  10078. },
  10079. {
  10080. "name": "phpunit/php-timer",
  10081. "version": "1.0.9",
  10082. "source": {
  10083. "type": "git",
  10084. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10085. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  10086. },
  10087. "dist": {
  10088. "type": "zip",
  10089. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  10090. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  10091. "shasum": ""
  10092. },
  10093. "require": {
  10094. "php": "^5.3.3 || ^7.0"
  10095. },
  10096. "require-dev": {
  10097. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10098. },
  10099. "type": "library",
  10100. "extra": {
  10101. "branch-alias": {
  10102. "dev-master": "1.0-dev"
  10103. }
  10104. },
  10105. "autoload": {
  10106. "classmap": [
  10107. "src/"
  10108. ]
  10109. },
  10110. "notification-url": "https://packagist.org/downloads/",
  10111. "license": [
  10112. "BSD-3-Clause"
  10113. ],
  10114. "authors": [
  10115. {
  10116. "name": "Sebastian Bergmann",
  10117. "email": "sb@sebastian-bergmann.de",
  10118. "role": "lead"
  10119. }
  10120. ],
  10121. "description": "Utility class for timing",
  10122. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10123. "keywords": [
  10124. "timer"
  10125. ],
  10126. "time": "2017-02-26T11:10:40+00:00"
  10127. },
  10128. {
  10129. "name": "phpunit/php-token-stream",
  10130. "version": "2.0.2",
  10131. "source": {
  10132. "type": "git",
  10133. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  10134. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  10135. },
  10136. "dist": {
  10137. "type": "zip",
  10138. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  10139. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  10140. "shasum": ""
  10141. },
  10142. "require": {
  10143. "ext-tokenizer": "*",
  10144. "php": "^7.0"
  10145. },
  10146. "require-dev": {
  10147. "phpunit/phpunit": "^6.2.4"
  10148. },
  10149. "type": "library",
  10150. "extra": {
  10151. "branch-alias": {
  10152. "dev-master": "2.0-dev"
  10153. }
  10154. },
  10155. "autoload": {
  10156. "classmap": [
  10157. "src/"
  10158. ]
  10159. },
  10160. "notification-url": "https://packagist.org/downloads/",
  10161. "license": [
  10162. "BSD-3-Clause"
  10163. ],
  10164. "authors": [
  10165. {
  10166. "name": "Sebastian Bergmann",
  10167. "email": "sebastian@phpunit.de"
  10168. }
  10169. ],
  10170. "description": "Wrapper around PHP's tokenizer extension.",
  10171. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  10172. "keywords": [
  10173. "tokenizer"
  10174. ],
  10175. "time": "2017-11-27T05:48:46+00:00"
  10176. },
  10177. {
  10178. "name": "phpunit/phpunit",
  10179. "version": "6.5.14",
  10180. "source": {
  10181. "type": "git",
  10182. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10183. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  10184. },
  10185. "dist": {
  10186. "type": "zip",
  10187. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  10188. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  10189. "shasum": ""
  10190. },
  10191. "require": {
  10192. "ext-dom": "*",
  10193. "ext-json": "*",
  10194. "ext-libxml": "*",
  10195. "ext-mbstring": "*",
  10196. "ext-xml": "*",
  10197. "myclabs/deep-copy": "^1.6.1",
  10198. "phar-io/manifest": "^1.0.1",
  10199. "phar-io/version": "^1.0",
  10200. "php": "^7.0",
  10201. "phpspec/prophecy": "^1.7",
  10202. "phpunit/php-code-coverage": "^5.3",
  10203. "phpunit/php-file-iterator": "^1.4.3",
  10204. "phpunit/php-text-template": "^1.2.1",
  10205. "phpunit/php-timer": "^1.0.9",
  10206. "phpunit/phpunit-mock-objects": "^5.0.9",
  10207. "sebastian/comparator": "^2.1",
  10208. "sebastian/diff": "^2.0",
  10209. "sebastian/environment": "^3.1",
  10210. "sebastian/exporter": "^3.1",
  10211. "sebastian/global-state": "^2.0",
  10212. "sebastian/object-enumerator": "^3.0.3",
  10213. "sebastian/resource-operations": "^1.0",
  10214. "sebastian/version": "^2.0.1"
  10215. },
  10216. "conflict": {
  10217. "phpdocumentor/reflection-docblock": "3.0.2",
  10218. "phpunit/dbunit": "<3.0"
  10219. },
  10220. "require-dev": {
  10221. "ext-pdo": "*"
  10222. },
  10223. "suggest": {
  10224. "ext-xdebug": "*",
  10225. "phpunit/php-invoker": "^1.1"
  10226. },
  10227. "bin": [
  10228. "phpunit"
  10229. ],
  10230. "type": "library",
  10231. "extra": {
  10232. "branch-alias": {
  10233. "dev-master": "6.5.x-dev"
  10234. }
  10235. },
  10236. "autoload": {
  10237. "classmap": [
  10238. "src/"
  10239. ]
  10240. },
  10241. "notification-url": "https://packagist.org/downloads/",
  10242. "license": [
  10243. "BSD-3-Clause"
  10244. ],
  10245. "authors": [
  10246. {
  10247. "name": "Sebastian Bergmann",
  10248. "email": "sebastian@phpunit.de",
  10249. "role": "lead"
  10250. }
  10251. ],
  10252. "description": "The PHP Unit Testing framework.",
  10253. "homepage": "https://phpunit.de/",
  10254. "keywords": [
  10255. "phpunit",
  10256. "testing",
  10257. "xunit"
  10258. ],
  10259. "time": "2019-02-01T05:22:47+00:00"
  10260. },
  10261. {
  10262. "name": "phpunit/phpunit-mock-objects",
  10263. "version": "5.0.10",
  10264. "source": {
  10265. "type": "git",
  10266. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  10267. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  10268. },
  10269. "dist": {
  10270. "type": "zip",
  10271. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  10272. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  10273. "shasum": ""
  10274. },
  10275. "require": {
  10276. "doctrine/instantiator": "^1.0.5",
  10277. "php": "^7.0",
  10278. "phpunit/php-text-template": "^1.2.1",
  10279. "sebastian/exporter": "^3.1"
  10280. },
  10281. "conflict": {
  10282. "phpunit/phpunit": "<6.0"
  10283. },
  10284. "require-dev": {
  10285. "phpunit/phpunit": "^6.5.11"
  10286. },
  10287. "suggest": {
  10288. "ext-soap": "*"
  10289. },
  10290. "type": "library",
  10291. "extra": {
  10292. "branch-alias": {
  10293. "dev-master": "5.0.x-dev"
  10294. }
  10295. },
  10296. "autoload": {
  10297. "classmap": [
  10298. "src/"
  10299. ]
  10300. },
  10301. "notification-url": "https://packagist.org/downloads/",
  10302. "license": [
  10303. "BSD-3-Clause"
  10304. ],
  10305. "authors": [
  10306. {
  10307. "name": "Sebastian Bergmann",
  10308. "email": "sebastian@phpunit.de",
  10309. "role": "lead"
  10310. }
  10311. ],
  10312. "description": "Mock Object library for PHPUnit",
  10313. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  10314. "keywords": [
  10315. "mock",
  10316. "xunit"
  10317. ],
  10318. "abandoned": true,
  10319. "time": "2018-08-09T05:50:03+00:00"
  10320. },
  10321. {
  10322. "name": "sebastian/code-unit-reverse-lookup",
  10323. "version": "1.0.1",
  10324. "source": {
  10325. "type": "git",
  10326. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10327. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  10328. },
  10329. "dist": {
  10330. "type": "zip",
  10331. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  10332. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  10333. "shasum": ""
  10334. },
  10335. "require": {
  10336. "php": "^5.6 || ^7.0"
  10337. },
  10338. "require-dev": {
  10339. "phpunit/phpunit": "^5.7 || ^6.0"
  10340. },
  10341. "type": "library",
  10342. "extra": {
  10343. "branch-alias": {
  10344. "dev-master": "1.0.x-dev"
  10345. }
  10346. },
  10347. "autoload": {
  10348. "classmap": [
  10349. "src/"
  10350. ]
  10351. },
  10352. "notification-url": "https://packagist.org/downloads/",
  10353. "license": [
  10354. "BSD-3-Clause"
  10355. ],
  10356. "authors": [
  10357. {
  10358. "name": "Sebastian Bergmann",
  10359. "email": "sebastian@phpunit.de"
  10360. }
  10361. ],
  10362. "description": "Looks up which function or method a line of code belongs to",
  10363. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10364. "time": "2017-03-04T06:30:41+00:00"
  10365. },
  10366. {
  10367. "name": "sebastian/comparator",
  10368. "version": "2.1.3",
  10369. "source": {
  10370. "type": "git",
  10371. "url": "https://github.com/sebastianbergmann/comparator.git",
  10372. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  10373. },
  10374. "dist": {
  10375. "type": "zip",
  10376. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  10377. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  10378. "shasum": ""
  10379. },
  10380. "require": {
  10381. "php": "^7.0",
  10382. "sebastian/diff": "^2.0 || ^3.0",
  10383. "sebastian/exporter": "^3.1"
  10384. },
  10385. "require-dev": {
  10386. "phpunit/phpunit": "^6.4"
  10387. },
  10388. "type": "library",
  10389. "extra": {
  10390. "branch-alias": {
  10391. "dev-master": "2.1.x-dev"
  10392. }
  10393. },
  10394. "autoload": {
  10395. "classmap": [
  10396. "src/"
  10397. ]
  10398. },
  10399. "notification-url": "https://packagist.org/downloads/",
  10400. "license": [
  10401. "BSD-3-Clause"
  10402. ],
  10403. "authors": [
  10404. {
  10405. "name": "Jeff Welch",
  10406. "email": "whatthejeff@gmail.com"
  10407. },
  10408. {
  10409. "name": "Volker Dusch",
  10410. "email": "github@wallbash.com"
  10411. },
  10412. {
  10413. "name": "Bernhard Schussek",
  10414. "email": "bschussek@2bepublished.at"
  10415. },
  10416. {
  10417. "name": "Sebastian Bergmann",
  10418. "email": "sebastian@phpunit.de"
  10419. }
  10420. ],
  10421. "description": "Provides the functionality to compare PHP values for equality",
  10422. "homepage": "https://github.com/sebastianbergmann/comparator",
  10423. "keywords": [
  10424. "comparator",
  10425. "compare",
  10426. "equality"
  10427. ],
  10428. "time": "2018-02-01T13:46:46+00:00"
  10429. },
  10430. {
  10431. "name": "sebastian/diff",
  10432. "version": "2.0.1",
  10433. "source": {
  10434. "type": "git",
  10435. "url": "https://github.com/sebastianbergmann/diff.git",
  10436. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  10437. },
  10438. "dist": {
  10439. "type": "zip",
  10440. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  10441. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  10442. "shasum": ""
  10443. },
  10444. "require": {
  10445. "php": "^7.0"
  10446. },
  10447. "require-dev": {
  10448. "phpunit/phpunit": "^6.2"
  10449. },
  10450. "type": "library",
  10451. "extra": {
  10452. "branch-alias": {
  10453. "dev-master": "2.0-dev"
  10454. }
  10455. },
  10456. "autoload": {
  10457. "classmap": [
  10458. "src/"
  10459. ]
  10460. },
  10461. "notification-url": "https://packagist.org/downloads/",
  10462. "license": [
  10463. "BSD-3-Clause"
  10464. ],
  10465. "authors": [
  10466. {
  10467. "name": "Kore Nordmann",
  10468. "email": "mail@kore-nordmann.de"
  10469. },
  10470. {
  10471. "name": "Sebastian Bergmann",
  10472. "email": "sebastian@phpunit.de"
  10473. }
  10474. ],
  10475. "description": "Diff implementation",
  10476. "homepage": "https://github.com/sebastianbergmann/diff",
  10477. "keywords": [
  10478. "diff"
  10479. ],
  10480. "time": "2017-08-03T08:09:46+00:00"
  10481. },
  10482. {
  10483. "name": "sebastian/environment",
  10484. "version": "3.1.0",
  10485. "source": {
  10486. "type": "git",
  10487. "url": "https://github.com/sebastianbergmann/environment.git",
  10488. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  10489. },
  10490. "dist": {
  10491. "type": "zip",
  10492. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  10493. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  10494. "shasum": ""
  10495. },
  10496. "require": {
  10497. "php": "^7.0"
  10498. },
  10499. "require-dev": {
  10500. "phpunit/phpunit": "^6.1"
  10501. },
  10502. "type": "library",
  10503. "extra": {
  10504. "branch-alias": {
  10505. "dev-master": "3.1.x-dev"
  10506. }
  10507. },
  10508. "autoload": {
  10509. "classmap": [
  10510. "src/"
  10511. ]
  10512. },
  10513. "notification-url": "https://packagist.org/downloads/",
  10514. "license": [
  10515. "BSD-3-Clause"
  10516. ],
  10517. "authors": [
  10518. {
  10519. "name": "Sebastian Bergmann",
  10520. "email": "sebastian@phpunit.de"
  10521. }
  10522. ],
  10523. "description": "Provides functionality to handle HHVM/PHP environments",
  10524. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10525. "keywords": [
  10526. "Xdebug",
  10527. "environment",
  10528. "hhvm"
  10529. ],
  10530. "time": "2017-07-01T08:51:00+00:00"
  10531. },
  10532. {
  10533. "name": "sebastian/exporter",
  10534. "version": "3.1.0",
  10535. "source": {
  10536. "type": "git",
  10537. "url": "https://github.com/sebastianbergmann/exporter.git",
  10538. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  10539. },
  10540. "dist": {
  10541. "type": "zip",
  10542. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  10543. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  10544. "shasum": ""
  10545. },
  10546. "require": {
  10547. "php": "^7.0",
  10548. "sebastian/recursion-context": "^3.0"
  10549. },
  10550. "require-dev": {
  10551. "ext-mbstring": "*",
  10552. "phpunit/phpunit": "^6.0"
  10553. },
  10554. "type": "library",
  10555. "extra": {
  10556. "branch-alias": {
  10557. "dev-master": "3.1.x-dev"
  10558. }
  10559. },
  10560. "autoload": {
  10561. "classmap": [
  10562. "src/"
  10563. ]
  10564. },
  10565. "notification-url": "https://packagist.org/downloads/",
  10566. "license": [
  10567. "BSD-3-Clause"
  10568. ],
  10569. "authors": [
  10570. {
  10571. "name": "Jeff Welch",
  10572. "email": "whatthejeff@gmail.com"
  10573. },
  10574. {
  10575. "name": "Volker Dusch",
  10576. "email": "github@wallbash.com"
  10577. },
  10578. {
  10579. "name": "Bernhard Schussek",
  10580. "email": "bschussek@2bepublished.at"
  10581. },
  10582. {
  10583. "name": "Sebastian Bergmann",
  10584. "email": "sebastian@phpunit.de"
  10585. },
  10586. {
  10587. "name": "Adam Harvey",
  10588. "email": "aharvey@php.net"
  10589. }
  10590. ],
  10591. "description": "Provides the functionality to export PHP variables for visualization",
  10592. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10593. "keywords": [
  10594. "export",
  10595. "exporter"
  10596. ],
  10597. "time": "2017-04-03T13:19:02+00:00"
  10598. },
  10599. {
  10600. "name": "sebastian/global-state",
  10601. "version": "2.0.0",
  10602. "source": {
  10603. "type": "git",
  10604. "url": "https://github.com/sebastianbergmann/global-state.git",
  10605. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  10606. },
  10607. "dist": {
  10608. "type": "zip",
  10609. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  10610. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  10611. "shasum": ""
  10612. },
  10613. "require": {
  10614. "php": "^7.0"
  10615. },
  10616. "require-dev": {
  10617. "phpunit/phpunit": "^6.0"
  10618. },
  10619. "suggest": {
  10620. "ext-uopz": "*"
  10621. },
  10622. "type": "library",
  10623. "extra": {
  10624. "branch-alias": {
  10625. "dev-master": "2.0-dev"
  10626. }
  10627. },
  10628. "autoload": {
  10629. "classmap": [
  10630. "src/"
  10631. ]
  10632. },
  10633. "notification-url": "https://packagist.org/downloads/",
  10634. "license": [
  10635. "BSD-3-Clause"
  10636. ],
  10637. "authors": [
  10638. {
  10639. "name": "Sebastian Bergmann",
  10640. "email": "sebastian@phpunit.de"
  10641. }
  10642. ],
  10643. "description": "Snapshotting of global state",
  10644. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10645. "keywords": [
  10646. "global state"
  10647. ],
  10648. "time": "2017-04-27T15:39:26+00:00"
  10649. },
  10650. {
  10651. "name": "sebastian/object-enumerator",
  10652. "version": "3.0.3",
  10653. "source": {
  10654. "type": "git",
  10655. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10656. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  10657. },
  10658. "dist": {
  10659. "type": "zip",
  10660. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  10661. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  10662. "shasum": ""
  10663. },
  10664. "require": {
  10665. "php": "^7.0",
  10666. "sebastian/object-reflector": "^1.1.1",
  10667. "sebastian/recursion-context": "^3.0"
  10668. },
  10669. "require-dev": {
  10670. "phpunit/phpunit": "^6.0"
  10671. },
  10672. "type": "library",
  10673. "extra": {
  10674. "branch-alias": {
  10675. "dev-master": "3.0.x-dev"
  10676. }
  10677. },
  10678. "autoload": {
  10679. "classmap": [
  10680. "src/"
  10681. ]
  10682. },
  10683. "notification-url": "https://packagist.org/downloads/",
  10684. "license": [
  10685. "BSD-3-Clause"
  10686. ],
  10687. "authors": [
  10688. {
  10689. "name": "Sebastian Bergmann",
  10690. "email": "sebastian@phpunit.de"
  10691. }
  10692. ],
  10693. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10694. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10695. "time": "2017-08-03T12:35:26+00:00"
  10696. },
  10697. {
  10698. "name": "sebastian/object-reflector",
  10699. "version": "1.1.1",
  10700. "source": {
  10701. "type": "git",
  10702. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10703. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  10704. },
  10705. "dist": {
  10706. "type": "zip",
  10707. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  10708. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  10709. "shasum": ""
  10710. },
  10711. "require": {
  10712. "php": "^7.0"
  10713. },
  10714. "require-dev": {
  10715. "phpunit/phpunit": "^6.0"
  10716. },
  10717. "type": "library",
  10718. "extra": {
  10719. "branch-alias": {
  10720. "dev-master": "1.1-dev"
  10721. }
  10722. },
  10723. "autoload": {
  10724. "classmap": [
  10725. "src/"
  10726. ]
  10727. },
  10728. "notification-url": "https://packagist.org/downloads/",
  10729. "license": [
  10730. "BSD-3-Clause"
  10731. ],
  10732. "authors": [
  10733. {
  10734. "name": "Sebastian Bergmann",
  10735. "email": "sebastian@phpunit.de"
  10736. }
  10737. ],
  10738. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10739. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10740. "time": "2017-03-29T09:07:27+00:00"
  10741. },
  10742. {
  10743. "name": "sebastian/recursion-context",
  10744. "version": "3.0.0",
  10745. "source": {
  10746. "type": "git",
  10747. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10748. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  10749. },
  10750. "dist": {
  10751. "type": "zip",
  10752. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  10753. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  10754. "shasum": ""
  10755. },
  10756. "require": {
  10757. "php": "^7.0"
  10758. },
  10759. "require-dev": {
  10760. "phpunit/phpunit": "^6.0"
  10761. },
  10762. "type": "library",
  10763. "extra": {
  10764. "branch-alias": {
  10765. "dev-master": "3.0.x-dev"
  10766. }
  10767. },
  10768. "autoload": {
  10769. "classmap": [
  10770. "src/"
  10771. ]
  10772. },
  10773. "notification-url": "https://packagist.org/downloads/",
  10774. "license": [
  10775. "BSD-3-Clause"
  10776. ],
  10777. "authors": [
  10778. {
  10779. "name": "Jeff Welch",
  10780. "email": "whatthejeff@gmail.com"
  10781. },
  10782. {
  10783. "name": "Sebastian Bergmann",
  10784. "email": "sebastian@phpunit.de"
  10785. },
  10786. {
  10787. "name": "Adam Harvey",
  10788. "email": "aharvey@php.net"
  10789. }
  10790. ],
  10791. "description": "Provides functionality to recursively process PHP variables",
  10792. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10793. "time": "2017-03-03T06:23:57+00:00"
  10794. },
  10795. {
  10796. "name": "sebastian/resource-operations",
  10797. "version": "1.0.0",
  10798. "source": {
  10799. "type": "git",
  10800. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10801. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  10802. },
  10803. "dist": {
  10804. "type": "zip",
  10805. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  10806. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  10807. "shasum": ""
  10808. },
  10809. "require": {
  10810. "php": ">=5.6.0"
  10811. },
  10812. "type": "library",
  10813. "extra": {
  10814. "branch-alias": {
  10815. "dev-master": "1.0.x-dev"
  10816. }
  10817. },
  10818. "autoload": {
  10819. "classmap": [
  10820. "src/"
  10821. ]
  10822. },
  10823. "notification-url": "https://packagist.org/downloads/",
  10824. "license": [
  10825. "BSD-3-Clause"
  10826. ],
  10827. "authors": [
  10828. {
  10829. "name": "Sebastian Bergmann",
  10830. "email": "sebastian@phpunit.de"
  10831. }
  10832. ],
  10833. "description": "Provides a list of PHP built-in functions that operate on resources",
  10834. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10835. "time": "2015-07-28T20:34:47+00:00"
  10836. },
  10837. {
  10838. "name": "sebastian/version",
  10839. "version": "2.0.1",
  10840. "source": {
  10841. "type": "git",
  10842. "url": "https://github.com/sebastianbergmann/version.git",
  10843. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10844. },
  10845. "dist": {
  10846. "type": "zip",
  10847. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10848. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10849. "shasum": ""
  10850. },
  10851. "require": {
  10852. "php": ">=5.6"
  10853. },
  10854. "type": "library",
  10855. "extra": {
  10856. "branch-alias": {
  10857. "dev-master": "2.0.x-dev"
  10858. }
  10859. },
  10860. "autoload": {
  10861. "classmap": [
  10862. "src/"
  10863. ]
  10864. },
  10865. "notification-url": "https://packagist.org/downloads/",
  10866. "license": [
  10867. "BSD-3-Clause"
  10868. ],
  10869. "authors": [
  10870. {
  10871. "name": "Sebastian Bergmann",
  10872. "email": "sebastian@phpunit.de",
  10873. "role": "lead"
  10874. }
  10875. ],
  10876. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10877. "homepage": "https://github.com/sebastianbergmann/version",
  10878. "time": "2016-10-03T07:35:21+00:00"
  10879. },
  10880. {
  10881. "name": "squizlabs/php_codesniffer",
  10882. "version": "3.4.2",
  10883. "source": {
  10884. "type": "git",
  10885. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  10886. "reference": "b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8"
  10887. },
  10888. "dist": {
  10889. "type": "zip",
  10890. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8",
  10891. "reference": "b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8",
  10892. "shasum": ""
  10893. },
  10894. "require": {
  10895. "ext-simplexml": "*",
  10896. "ext-tokenizer": "*",
  10897. "ext-xmlwriter": "*",
  10898. "php": ">=5.4.0"
  10899. },
  10900. "require-dev": {
  10901. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  10902. },
  10903. "bin": [
  10904. "bin/phpcs",
  10905. "bin/phpcbf"
  10906. ],
  10907. "type": "library",
  10908. "extra": {
  10909. "branch-alias": {
  10910. "dev-master": "3.x-dev"
  10911. }
  10912. },
  10913. "notification-url": "https://packagist.org/downloads/",
  10914. "license": [
  10915. "BSD-3-Clause"
  10916. ],
  10917. "authors": [
  10918. {
  10919. "name": "Greg Sherwood",
  10920. "role": "lead"
  10921. }
  10922. ],
  10923. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  10924. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  10925. "keywords": [
  10926. "phpcs",
  10927. "standards"
  10928. ],
  10929. "time": "2019-04-10T23:49:02+00:00"
  10930. },
  10931. {
  10932. "name": "symfony/browser-kit",
  10933. "version": "v3.4.26",
  10934. "source": {
  10935. "type": "git",
  10936. "url": "https://github.com/symfony/browser-kit.git",
  10937. "reference": "7f2b0843d5045468225f9a9b27a0cb171ae81828"
  10938. },
  10939. "dist": {
  10940. "type": "zip",
  10941. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/7f2b0843d5045468225f9a9b27a0cb171ae81828",
  10942. "reference": "7f2b0843d5045468225f9a9b27a0cb171ae81828",
  10943. "shasum": ""
  10944. },
  10945. "require": {
  10946. "php": "^5.5.9|>=7.0.8",
  10947. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  10948. },
  10949. "require-dev": {
  10950. "symfony/css-selector": "~2.8|~3.0|~4.0",
  10951. "symfony/process": "~2.8|~3.0|~4.0"
  10952. },
  10953. "suggest": {
  10954. "symfony/process": ""
  10955. },
  10956. "type": "library",
  10957. "extra": {
  10958. "branch-alias": {
  10959. "dev-master": "3.4-dev"
  10960. }
  10961. },
  10962. "autoload": {
  10963. "psr-4": {
  10964. "Symfony\\Component\\BrowserKit\\": ""
  10965. },
  10966. "exclude-from-classmap": [
  10967. "/Tests/"
  10968. ]
  10969. },
  10970. "notification-url": "https://packagist.org/downloads/",
  10971. "license": [
  10972. "MIT"
  10973. ],
  10974. "authors": [
  10975. {
  10976. "name": "Fabien Potencier",
  10977. "email": "fabien@symfony.com"
  10978. },
  10979. {
  10980. "name": "Symfony Community",
  10981. "homepage": "https://symfony.com/contributors"
  10982. }
  10983. ],
  10984. "description": "Symfony BrowserKit Component",
  10985. "homepage": "https://symfony.com",
  10986. "time": "2019-04-06T19:33:58+00:00"
  10987. },
  10988. {
  10989. "name": "symfony/phpunit-bridge",
  10990. "version": "v3.4.26",
  10991. "source": {
  10992. "type": "git",
  10993. "url": "https://github.com/symfony/phpunit-bridge.git",
  10994. "reference": "a43a2f6c465a2d99635fea0addbebddc3864ad97"
  10995. },
  10996. "dist": {
  10997. "type": "zip",
  10998. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/a43a2f6c465a2d99635fea0addbebddc3864ad97",
  10999. "reference": "a43a2f6c465a2d99635fea0addbebddc3864ad97",
  11000. "shasum": ""
  11001. },
  11002. "require": {
  11003. "php": ">=5.3.3"
  11004. },
  11005. "conflict": {
  11006. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  11007. },
  11008. "suggest": {
  11009. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  11010. },
  11011. "bin": [
  11012. "bin/simple-phpunit"
  11013. ],
  11014. "type": "symfony-bridge",
  11015. "extra": {
  11016. "branch-alias": {
  11017. "dev-master": "3.4-dev"
  11018. },
  11019. "thanks": {
  11020. "name": "phpunit/phpunit",
  11021. "url": "https://github.com/sebastianbergmann/phpunit"
  11022. }
  11023. },
  11024. "autoload": {
  11025. "files": [
  11026. "bootstrap.php"
  11027. ],
  11028. "psr-4": {
  11029. "Symfony\\Bridge\\PhpUnit\\": ""
  11030. },
  11031. "exclude-from-classmap": [
  11032. "/Tests/"
  11033. ]
  11034. },
  11035. "notification-url": "https://packagist.org/downloads/",
  11036. "license": [
  11037. "MIT"
  11038. ],
  11039. "authors": [
  11040. {
  11041. "name": "Nicolas Grekas",
  11042. "email": "p@tchwork.com"
  11043. },
  11044. {
  11045. "name": "Symfony Community",
  11046. "homepage": "https://symfony.com/contributors"
  11047. }
  11048. ],
  11049. "description": "Symfony PHPUnit Bridge",
  11050. "homepage": "https://symfony.com",
  11051. "time": "2019-04-16T09:03:16+00:00"
  11052. },
  11053. {
  11054. "name": "theseer/tokenizer",
  11055. "version": "1.1.2",
  11056. "source": {
  11057. "type": "git",
  11058. "url": "https://github.com/theseer/tokenizer.git",
  11059. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8"
  11060. },
  11061. "dist": {
  11062. "type": "zip",
  11063. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/1c42705be2b6c1de5904f8afacef5895cab44bf8",
  11064. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8",
  11065. "shasum": ""
  11066. },
  11067. "require": {
  11068. "ext-dom": "*",
  11069. "ext-tokenizer": "*",
  11070. "ext-xmlwriter": "*",
  11071. "php": "^7.0"
  11072. },
  11073. "type": "library",
  11074. "autoload": {
  11075. "classmap": [
  11076. "src/"
  11077. ]
  11078. },
  11079. "notification-url": "https://packagist.org/downloads/",
  11080. "license": [
  11081. "BSD-3-Clause"
  11082. ],
  11083. "authors": [
  11084. {
  11085. "name": "Arne Blankerts",
  11086. "email": "arne@blankerts.de",
  11087. "role": "Developer"
  11088. }
  11089. ],
  11090. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11091. "time": "2019-04-04T09:56:43+00:00"
  11092. },
  11093. {
  11094. "name": "webflo/drupal-core-require-dev",
  11095. "version": "8.6.15",
  11096. "source": {
  11097. "type": "git",
  11098. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  11099. "reference": "6b3d632fa16e56858706fe0394eafe88a13a9cd0"
  11100. },
  11101. "dist": {
  11102. "type": "zip",
  11103. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/6b3d632fa16e56858706fe0394eafe88a13a9cd0",
  11104. "reference": "6b3d632fa16e56858706fe0394eafe88a13a9cd0",
  11105. "shasum": ""
  11106. },
  11107. "require": {
  11108. "behat/mink": "1.7.x-dev",
  11109. "behat/mink-goutte-driver": "^1.2",
  11110. "behat/mink-selenium2-driver": "1.3.x-dev",
  11111. "drupal/coder": "^8.2.12",
  11112. "drupal/core": "8.6.15",
  11113. "jcalderonzumba/gastonjs": "^1.0.2",
  11114. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  11115. "mikey179/vfsstream": "^1.2",
  11116. "phpspec/prophecy": "^1.7",
  11117. "phpunit/phpunit": "^4.8.35 || ^6.5",
  11118. "symfony/css-selector": "^3.4.0",
  11119. "symfony/debug": "^3.4.0",
  11120. "symfony/phpunit-bridge": "^3.4.3"
  11121. },
  11122. "type": "metapackage",
  11123. "notification-url": "https://packagist.org/downloads/",
  11124. "license": [
  11125. "GPL-2.0-or-later"
  11126. ],
  11127. "description": "require-dev dependencies from drupal/core",
  11128. "time": "2019-04-17T20:31:37+00:00"
  11129. }
  11130. ],
  11131. "aliases": [],
  11132. "minimum-stability": "dev",
  11133. "stability-flags": {
  11134. "drupal/bulkdelete": 20,
  11135. "drupal/domain_menu_access": 20,
  11136. "drupal/filefield_sources": 20,
  11137. "drupal/filter_perms": 20,
  11138. "drupal/maillog": 20,
  11139. "drupal/path_alias_xt": 20,
  11140. "drupal/synonyms": 20,
  11141. "drupal/toolbar_themes": 20,
  11142. "drupal/workflow": 20
  11143. },
  11144. "prefer-stable": true,
  11145. "prefer-lowest": false,
  11146. "platform": {
  11147. "php": ">=5.6"
  11148. },
  11149. "platform-dev": []
  11150. }