composer.lock 403 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207
  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": "007c08cffdf5b5e54fb325830c1b87d5",
  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/module_missing_message_fixer",
  4624. "version": "1.0.0-beta2",
  4625. "source": {
  4626. "type": "git",
  4627. "url": "https://git.drupalcode.org/project/module_missing_message_fixer.git",
  4628. "reference": "8.x-1.0-beta2"
  4629. },
  4630. "dist": {
  4631. "type": "zip",
  4632. "url": "https://ftp.drupal.org/files/projects/module_missing_message_fixer-8.x-1.0-beta2.zip",
  4633. "reference": "8.x-1.0-beta2",
  4634. "shasum": "d2eae91fde477276487ba85792a1e0bf261b6aee"
  4635. },
  4636. "require": {
  4637. "drupal/core": "~8.0"
  4638. },
  4639. "type": "drupal-module",
  4640. "extra": {
  4641. "branch-alias": {
  4642. "dev-1.x": "1.x-dev"
  4643. },
  4644. "drupal": {
  4645. "version": "8.x-1.0-beta2",
  4646. "datestamp": "1554937085",
  4647. "security-coverage": {
  4648. "status": "not-covered",
  4649. "message": "Beta releases are not covered by Drupal security advisories."
  4650. }
  4651. },
  4652. "drush": {
  4653. "services": {
  4654. "drush.services.yml": "^9"
  4655. }
  4656. }
  4657. },
  4658. "notification-url": "https://packages.drupal.org/8/downloads",
  4659. "license": [
  4660. "GPL-2.0+"
  4661. ],
  4662. "authors": [
  4663. {
  4664. "name": "See contributors",
  4665. "homepage": "https://www.drupal.org/node/2951176/committers",
  4666. "role": "Developer"
  4667. }
  4668. ],
  4669. "description": "This module displays a list of missing modules that appear on your site and lets you fix the entries",
  4670. "homepage": "https://www.drupal.org/project/module_missing_message_fixer",
  4671. "keywords": [
  4672. "Drupal"
  4673. ],
  4674. "support": {
  4675. "source": "http://cgit.drupalcode.org/module_missing_message_fixer",
  4676. "issues": "https://www.drupal.org/project/issues/module_missing_message_fixer"
  4677. }
  4678. },
  4679. {
  4680. "name": "drupal/path_alias_xt",
  4681. "version": "dev-1.x",
  4682. "source": {
  4683. "type": "git",
  4684. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4685. "reference": "2a79ac72191dc59ef656d1edd85e651538c6a389"
  4686. },
  4687. "require": {
  4688. "drupal/core": "*"
  4689. },
  4690. "type": "drupal-module",
  4691. "extra": {
  4692. "branch-alias": {
  4693. "dev-1.x": "1.x-dev"
  4694. },
  4695. "drupal": {
  4696. "version": "8.x-1.x-dev",
  4697. "datestamp": "1548876480",
  4698. "security-coverage": {
  4699. "status": "not-covered",
  4700. "message": "Dev releases are not covered by Drupal security advisories."
  4701. }
  4702. }
  4703. },
  4704. "notification-url": "https://packages.drupal.org/8/downloads",
  4705. "license": [
  4706. "GPL-2.0-or-later"
  4707. ],
  4708. "authors": [
  4709. {
  4710. "name": "RdeBoer",
  4711. "homepage": "https://www.drupal.org/user/404007"
  4712. },
  4713. {
  4714. "name": "adriancid",
  4715. "homepage": "https://www.drupal.org/user/1962106"
  4716. },
  4717. {
  4718. "name": "sdstyles",
  4719. "homepage": "https://www.drupal.org/user/1420228"
  4720. }
  4721. ],
  4722. "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.",
  4723. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4724. "support": {
  4725. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4726. },
  4727. "time": "2019-01-30T19:27:58+00:00"
  4728. },
  4729. {
  4730. "name": "drupal/pathauto",
  4731. "version": "1.4.0",
  4732. "source": {
  4733. "type": "git",
  4734. "url": "https://git.drupalcode.org/project/pathauto.git",
  4735. "reference": "8.x-1.4"
  4736. },
  4737. "dist": {
  4738. "type": "zip",
  4739. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.4.zip",
  4740. "reference": "8.x-1.4",
  4741. "shasum": "ddfb047ae04ca2ddf475d65f6c09bceb44169e25"
  4742. },
  4743. "require": {
  4744. "drupal/core": "^8.5",
  4745. "drupal/ctools": "*",
  4746. "drupal/token": "*"
  4747. },
  4748. "type": "drupal-module",
  4749. "extra": {
  4750. "branch-alias": {
  4751. "dev-1.x": "1.x-dev"
  4752. },
  4753. "drupal": {
  4754. "version": "8.x-1.4",
  4755. "datestamp": "1554239887",
  4756. "security-coverage": {
  4757. "status": "covered",
  4758. "message": "Covered by Drupal's security advisory policy"
  4759. }
  4760. }
  4761. },
  4762. "notification-url": "https://packages.drupal.org/8/downloads",
  4763. "license": [
  4764. "GPL-2.0-or-later"
  4765. ],
  4766. "authors": [
  4767. {
  4768. "name": "Berdir",
  4769. "homepage": "https://www.drupal.org/user/214652"
  4770. },
  4771. {
  4772. "name": "Dave Reid",
  4773. "homepage": "https://www.drupal.org/user/53892"
  4774. },
  4775. {
  4776. "name": "Freso",
  4777. "homepage": "https://www.drupal.org/user/27504"
  4778. },
  4779. {
  4780. "name": "greggles",
  4781. "homepage": "https://www.drupal.org/user/36762"
  4782. }
  4783. ],
  4784. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4785. "homepage": "https://www.drupal.org/project/pathauto",
  4786. "support": {
  4787. "source": "https://git.drupalcode.org/project/pathauto"
  4788. }
  4789. },
  4790. {
  4791. "name": "drupal/piwik",
  4792. "version": "1.4.0",
  4793. "source": {
  4794. "type": "git",
  4795. "url": "https://git.drupalcode.org/project/piwik.git",
  4796. "reference": "8.x-1.4"
  4797. },
  4798. "dist": {
  4799. "type": "zip",
  4800. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  4801. "reference": "8.x-1.4",
  4802. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  4803. },
  4804. "require": {
  4805. "drupal/core": "~8.0",
  4806. "drupal/matomo": "^1.0"
  4807. },
  4808. "require-dev": {
  4809. "drupal/php": "*",
  4810. "drupal/token": "*"
  4811. },
  4812. "type": "drupal-module",
  4813. "extra": {
  4814. "branch-alias": {
  4815. "dev-1.x": "1.x-dev"
  4816. },
  4817. "drupal": {
  4818. "version": "8.x-1.4",
  4819. "datestamp": "1530437786",
  4820. "security-coverage": {
  4821. "status": "covered",
  4822. "message": "Covered by Drupal's security advisory policy"
  4823. }
  4824. }
  4825. },
  4826. "notification-url": "https://packages.drupal.org/8/downloads",
  4827. "license": [
  4828. "GPL-2.0+"
  4829. ],
  4830. "authors": [
  4831. {
  4832. "name": "hass",
  4833. "homepage": "https://www.drupal.org/u/hass"
  4834. },
  4835. {
  4836. "name": "See other contributors",
  4837. "homepage": "https://www.drupal.org/node/247808/committers"
  4838. }
  4839. ],
  4840. "description": "Adds Piwik javascript tracking code to all your site's pages",
  4841. "homepage": "https://www.drupal.org/project/piwik",
  4842. "support": {
  4843. "source": "http://git.drupal.org/project/piwik.git",
  4844. "issues": "https://www.drupal.org/project/issues/piwik"
  4845. }
  4846. },
  4847. {
  4848. "name": "drupal/profile",
  4849. "version": "1.0.0-rc4",
  4850. "source": {
  4851. "type": "git",
  4852. "url": "https://git.drupalcode.org/project/profile.git",
  4853. "reference": "8.x-1.0-rc4"
  4854. },
  4855. "dist": {
  4856. "type": "zip",
  4857. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc4.zip",
  4858. "reference": "8.x-1.0-rc4",
  4859. "shasum": "0dffde8100312f33bec9f1e999797a1b4c995c17"
  4860. },
  4861. "require": {
  4862. "drupal/core": "^8.5",
  4863. "drupal/entity": "^1.0-rc1"
  4864. },
  4865. "require-dev": {
  4866. "drupal/token": "1.0"
  4867. },
  4868. "type": "drupal-module",
  4869. "extra": {
  4870. "branch-alias": {
  4871. "dev-1.x": "1.x-dev"
  4872. },
  4873. "drupal": {
  4874. "version": "8.x-1.0-rc4",
  4875. "datestamp": "1552407486",
  4876. "security-coverage": {
  4877. "status": "not-covered",
  4878. "message": "RC releases are not covered by Drupal security advisories."
  4879. }
  4880. }
  4881. },
  4882. "notification-url": "https://packages.drupal.org/8/downloads",
  4883. "license": [
  4884. "GPL-2.0+"
  4885. ],
  4886. "authors": [
  4887. {
  4888. "name": "bojanz",
  4889. "homepage": "https://www.drupal.org/user/86106"
  4890. },
  4891. {
  4892. "name": "daggerhart",
  4893. "homepage": "https://www.drupal.org/user/167806"
  4894. },
  4895. {
  4896. "name": "fago",
  4897. "homepage": "https://www.drupal.org/user/16747"
  4898. },
  4899. {
  4900. "name": "mglaman",
  4901. "homepage": "https://www.drupal.org/user/2416470"
  4902. },
  4903. {
  4904. "name": "pcambra",
  4905. "homepage": "https://www.drupal.org/user/122101"
  4906. }
  4907. ],
  4908. "description": "Provides configurable user profiles.",
  4909. "homepage": "http://drupal.org/project/profile",
  4910. "support": {
  4911. "source": "https://git.drupalcode.org/project/profile"
  4912. }
  4913. },
  4914. {
  4915. "name": "drupal/redirect",
  4916. "version": "1.3.0",
  4917. "source": {
  4918. "type": "git",
  4919. "url": "https://git.drupalcode.org/project/redirect.git",
  4920. "reference": "8.x-1.3"
  4921. },
  4922. "dist": {
  4923. "type": "zip",
  4924. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  4925. "reference": "8.x-1.3",
  4926. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  4927. },
  4928. "require": {
  4929. "drupal/core": "~8"
  4930. },
  4931. "type": "drupal-module",
  4932. "extra": {
  4933. "branch-alias": {
  4934. "dev-1.x": "1.x-dev"
  4935. },
  4936. "drupal": {
  4937. "version": "8.x-1.3",
  4938. "datestamp": "1539682684",
  4939. "security-coverage": {
  4940. "status": "covered",
  4941. "message": "Covered by Drupal's security advisory policy"
  4942. }
  4943. }
  4944. },
  4945. "notification-url": "https://packages.drupal.org/8/downloads",
  4946. "license": [
  4947. "GPL-2.0+"
  4948. ],
  4949. "authors": [
  4950. {
  4951. "name": "Berdir",
  4952. "homepage": "https://www.drupal.org/user/214652"
  4953. },
  4954. {
  4955. "name": "Dave Reid",
  4956. "homepage": "https://www.drupal.org/user/53892"
  4957. },
  4958. {
  4959. "name": "pifagor",
  4960. "homepage": "https://www.drupal.org/user/2375692"
  4961. }
  4962. ],
  4963. "description": "Allows users to redirect from old URLs to new URLs.",
  4964. "homepage": "https://www.drupal.org/project/redirect",
  4965. "support": {
  4966. "source": "https://git.drupalcode.org/project/redirect"
  4967. }
  4968. },
  4969. {
  4970. "name": "drupal/redis",
  4971. "version": "1.1.0",
  4972. "source": {
  4973. "type": "git",
  4974. "url": "https://git.drupalcode.org/project/redis.git",
  4975. "reference": "8.x-1.1"
  4976. },
  4977. "dist": {
  4978. "type": "zip",
  4979. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.1.zip",
  4980. "reference": "8.x-1.1",
  4981. "shasum": "33337fe1cbd2824797e87533b30e4886b48ecd77"
  4982. },
  4983. "require": {
  4984. "drupal/core": "~8.0"
  4985. },
  4986. "suggest": {
  4987. "predis/predis": "^1.1.1"
  4988. },
  4989. "type": "drupal-module",
  4990. "extra": {
  4991. "branch-alias": {
  4992. "dev-1.x": "1.x-dev"
  4993. },
  4994. "drupal": {
  4995. "version": "8.x-1.1",
  4996. "datestamp": "1541600580",
  4997. "security-coverage": {
  4998. "status": "covered",
  4999. "message": "Covered by Drupal's security advisory policy"
  5000. }
  5001. }
  5002. },
  5003. "autoload": {
  5004. "psr-4": {
  5005. "Drupal\\redis\\": "src"
  5006. }
  5007. },
  5008. "notification-url": "https://packages.drupal.org/8/downloads",
  5009. "license": [
  5010. "GPL-2.0"
  5011. ],
  5012. "authors": [
  5013. {
  5014. "name": "Berdir",
  5015. "homepage": "https://www.drupal.org/user/214652"
  5016. },
  5017. {
  5018. "name": "pounard",
  5019. "homepage": "https://www.drupal.org/user/240164"
  5020. }
  5021. ],
  5022. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5023. "homepage": "https://www.drupal.org/project/redis",
  5024. "support": {
  5025. "source": "https://git.drupalcode.org/project/redis"
  5026. }
  5027. },
  5028. {
  5029. "name": "drupal/search_api",
  5030. "version": "1.12.0",
  5031. "source": {
  5032. "type": "git",
  5033. "url": "https://git.drupalcode.org/project/search_api.git",
  5034. "reference": "8.x-1.12"
  5035. },
  5036. "dist": {
  5037. "type": "zip",
  5038. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.12.zip",
  5039. "reference": "8.x-1.12",
  5040. "shasum": "db203e2fdd669d6e9ff2c99688c0816d248a1fff"
  5041. },
  5042. "require": {
  5043. "drupal/core": "^8.5"
  5044. },
  5045. "require-dev": {
  5046. "drupal/search_api_autocomplete": "@dev",
  5047. "drupal/search_api_db": "*"
  5048. },
  5049. "suggest": {
  5050. "drupal/facets": "Adds the ability to create faceted searches.",
  5051. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5052. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5053. },
  5054. "type": "drupal-module",
  5055. "extra": {
  5056. "branch-alias": {
  5057. "dev-1.x": "1.x-dev"
  5058. },
  5059. "drupal": {
  5060. "version": "8.x-1.12",
  5061. "datestamp": "1552334285",
  5062. "security-coverage": {
  5063. "status": "covered",
  5064. "message": "Covered by Drupal's security advisory policy"
  5065. }
  5066. },
  5067. "drush": {
  5068. "services": {
  5069. "drush.services.yml": "^9"
  5070. }
  5071. }
  5072. },
  5073. "notification-url": "https://packages.drupal.org/8/downloads",
  5074. "license": [
  5075. "GPL-2.0+"
  5076. ],
  5077. "authors": [
  5078. {
  5079. "name": "Thomas Seidl",
  5080. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5081. },
  5082. {
  5083. "name": "Nick Veenhof",
  5084. "homepage": "https://www.drupal.org/u/nick_vh"
  5085. },
  5086. {
  5087. "name": "See other contributors",
  5088. "homepage": "https://www.drupal.org/node/790418/committers"
  5089. }
  5090. ],
  5091. "description": "Provides a generic framework for modules offering search capabilities.",
  5092. "homepage": "https://www.drupal.org/project/search_api",
  5093. "support": {
  5094. "source": "http://git.drupal.org/project/search_api.git",
  5095. "issues": "https://www.drupal.org/project/issues/search_api",
  5096. "irc": "irc://irc.freenode.org/drupal-search-api"
  5097. }
  5098. },
  5099. {
  5100. "name": "drupal/simple_sitemap",
  5101. "version": "3.1.0",
  5102. "source": {
  5103. "type": "git",
  5104. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5105. "reference": "8.x-3.1"
  5106. },
  5107. "dist": {
  5108. "type": "zip",
  5109. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.1.zip",
  5110. "reference": "8.x-3.1",
  5111. "shasum": "7194caf8482c4a80a5b7eddf28d94e798bb4786d"
  5112. },
  5113. "require": {
  5114. "drupal/core": "~8.0",
  5115. "ext-xmlwriter": "*"
  5116. },
  5117. "type": "drupal-module",
  5118. "extra": {
  5119. "branch-alias": {
  5120. "dev-3.x": "3.x-dev"
  5121. },
  5122. "drupal": {
  5123. "version": "8.x-3.1",
  5124. "datestamp": "1555534615",
  5125. "security-coverage": {
  5126. "status": "covered",
  5127. "message": "Covered by Drupal's security advisory policy"
  5128. }
  5129. },
  5130. "drush": {
  5131. "services": {
  5132. "drush.services.yml": "^9"
  5133. }
  5134. }
  5135. },
  5136. "notification-url": "https://packages.drupal.org/8/downloads",
  5137. "license": [
  5138. "GPL-2.0+"
  5139. ],
  5140. "authors": [
  5141. {
  5142. "name": "Pawel Ginalski (gbyte.co)",
  5143. "homepage": "https://www.drupal.org/u/gbyte.co",
  5144. "email": "contact@gbyte.co",
  5145. "role": "Maintainer"
  5146. },
  5147. {
  5148. "name": "gbyte.co",
  5149. "homepage": "https://www.drupal.org/user/2381352"
  5150. }
  5151. ],
  5152. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5153. "homepage": "https://drupal.org/project/simple_sitemap",
  5154. "support": {
  5155. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5156. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5157. "irc": "irc://irc.freenode.org/drupal-contribute"
  5158. }
  5159. },
  5160. {
  5161. "name": "drupal/synonyms",
  5162. "version": "dev-1.x",
  5163. "source": {
  5164. "type": "git",
  5165. "url": "https://git.drupalcode.org/project/synonyms.git",
  5166. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5167. },
  5168. "require": {
  5169. "drupal/core": "^8.2"
  5170. },
  5171. "type": "drupal-module",
  5172. "extra": {
  5173. "branch-alias": {
  5174. "dev-1.x": "1.x-dev"
  5175. },
  5176. "drupal": {
  5177. "version": "8.x-1.0-alpha1+5-dev",
  5178. "datestamp": "1540141681",
  5179. "security-coverage": {
  5180. "status": "not-covered",
  5181. "message": "Dev releases are not covered by Drupal security advisories."
  5182. }
  5183. }
  5184. },
  5185. "notification-url": "https://packages.drupal.org/8/downloads",
  5186. "license": [
  5187. "GPL-2.0-or-later"
  5188. ],
  5189. "authors": [
  5190. {
  5191. "name": "Zen",
  5192. "homepage": "https://www.drupal.org/user/21209"
  5193. },
  5194. {
  5195. "name": "bojanz",
  5196. "homepage": "https://www.drupal.org/user/86106"
  5197. },
  5198. {
  5199. "name": "bucefal91",
  5200. "homepage": "https://www.drupal.org/user/504128"
  5201. }
  5202. ],
  5203. "description": "Provides synonyms feature for content entities.",
  5204. "homepage": "https://www.drupal.org/project/synonyms",
  5205. "support": {
  5206. "source": "https://git.drupalcode.org/project/synonyms"
  5207. },
  5208. "time": "2018-10-21T17:05:25+00:00"
  5209. },
  5210. {
  5211. "name": "drupal/token",
  5212. "version": "1.5.0",
  5213. "source": {
  5214. "type": "git",
  5215. "url": "https://git.drupalcode.org/project/token.git",
  5216. "reference": "8.x-1.5"
  5217. },
  5218. "dist": {
  5219. "type": "zip",
  5220. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  5221. "reference": "8.x-1.5",
  5222. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  5223. },
  5224. "require": {
  5225. "drupal/core": "^8.5"
  5226. },
  5227. "type": "drupal-module",
  5228. "extra": {
  5229. "branch-alias": {
  5230. "dev-1.x": "1.x-dev"
  5231. },
  5232. "drupal": {
  5233. "version": "8.x-1.5",
  5234. "datestamp": "1537557481",
  5235. "security-coverage": {
  5236. "status": "covered",
  5237. "message": "Covered by Drupal's security advisory policy"
  5238. }
  5239. }
  5240. },
  5241. "notification-url": "https://packages.drupal.org/8/downloads",
  5242. "license": [
  5243. "GPL-2.0-or-later"
  5244. ],
  5245. "authors": [
  5246. {
  5247. "name": "Berdir",
  5248. "homepage": "https://www.drupal.org/user/214652"
  5249. },
  5250. {
  5251. "name": "Dave Reid",
  5252. "homepage": "https://www.drupal.org/user/53892"
  5253. },
  5254. {
  5255. "name": "eaton",
  5256. "homepage": "https://www.drupal.org/user/16496"
  5257. },
  5258. {
  5259. "name": "fago",
  5260. "homepage": "https://www.drupal.org/user/16747"
  5261. },
  5262. {
  5263. "name": "greggles",
  5264. "homepage": "https://www.drupal.org/user/36762"
  5265. },
  5266. {
  5267. "name": "mikeryan",
  5268. "homepage": "https://www.drupal.org/user/4420"
  5269. }
  5270. ],
  5271. "description": "Provides a user interface for the Token API and some missing core tokens.",
  5272. "homepage": "https://www.drupal.org/project/token",
  5273. "support": {
  5274. "source": "https://git.drupalcode.org/project/token"
  5275. }
  5276. },
  5277. {
  5278. "name": "drupal/toolbar_themes",
  5279. "version": "dev-1.x",
  5280. "source": {
  5281. "type": "git",
  5282. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5283. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5284. },
  5285. "require": {
  5286. "drupal/core": "*"
  5287. },
  5288. "type": "drupal-module",
  5289. "extra": {
  5290. "branch-alias": {
  5291. "dev-1.x": "1.x-dev"
  5292. },
  5293. "drupal": {
  5294. "version": "8.x-1.0-alpha4+10-dev",
  5295. "datestamp": "1510689485",
  5296. "security-coverage": {
  5297. "status": "not-covered",
  5298. "message": "Project has not opted into security advisory coverage!"
  5299. }
  5300. }
  5301. },
  5302. "notification-url": "https://packages.drupal.org/8/downloads",
  5303. "license": [
  5304. "GPL-2.0-or-later"
  5305. ],
  5306. "authors": [
  5307. {
  5308. "name": "Jeff Burnz",
  5309. "homepage": "https://www.drupal.org/user/61393"
  5310. }
  5311. ],
  5312. "description": "Apply themes to the toolbar.",
  5313. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5314. "support": {
  5315. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5316. },
  5317. "time": "2017-11-14T19:57:02+00:00"
  5318. },
  5319. {
  5320. "name": "drupal/translation_views",
  5321. "version": "1.0.0-alpha5",
  5322. "source": {
  5323. "type": "git",
  5324. "url": "https://git.drupalcode.org/project/translation_views.git",
  5325. "reference": "8.x-1.0-alpha5"
  5326. },
  5327. "dist": {
  5328. "type": "zip",
  5329. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha5.zip",
  5330. "reference": "8.x-1.0-alpha5",
  5331. "shasum": "f1fc54c4648bca5194c0bdcb6df02dae1e8fefd9"
  5332. },
  5333. "require": {
  5334. "drupal/core": "*"
  5335. },
  5336. "require-dev": {
  5337. "drupal/local_translation": "*"
  5338. },
  5339. "type": "drupal-module",
  5340. "extra": {
  5341. "branch-alias": {
  5342. "dev-1.x": "1.x-dev"
  5343. },
  5344. "drupal": {
  5345. "version": "8.x-1.0-alpha5",
  5346. "datestamp": "1551353287",
  5347. "security-coverage": {
  5348. "status": "not-covered",
  5349. "message": "Project has not opted into security advisory coverage!"
  5350. }
  5351. }
  5352. },
  5353. "notification-url": "https://packages.drupal.org/8/downloads",
  5354. "license": [
  5355. "GPL-2.0-or-later"
  5356. ],
  5357. "authors": [
  5358. {
  5359. "name": "matsbla",
  5360. "homepage": "https://www.drupal.org/user/2325394"
  5361. },
  5362. {
  5363. "name": "vlad.dancer",
  5364. "homepage": "https://www.drupal.org/user/903844"
  5365. }
  5366. ],
  5367. "description": "Create customized lists and queries of translations from your database.",
  5368. "homepage": "https://www.drupal.org/project/translation_views",
  5369. "support": {
  5370. "source": "https://git.drupalcode.org/project/translation_views"
  5371. }
  5372. },
  5373. {
  5374. "name": "drupal/url_to_video_filter",
  5375. "version": "1.3.0",
  5376. "source": {
  5377. "type": "git",
  5378. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5379. "reference": "8.x-1.3"
  5380. },
  5381. "dist": {
  5382. "type": "zip",
  5383. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  5384. "reference": "8.x-1.3",
  5385. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  5386. },
  5387. "require": {
  5388. "drupal/core": "~8.0"
  5389. },
  5390. "type": "drupal-module",
  5391. "extra": {
  5392. "branch-alias": {
  5393. "dev-1.x": "1.x-dev"
  5394. },
  5395. "drupal": {
  5396. "version": "8.x-1.3",
  5397. "datestamp": "1532695981",
  5398. "security-coverage": {
  5399. "status": "covered",
  5400. "message": "Covered by Drupal's security advisory policy"
  5401. }
  5402. }
  5403. },
  5404. "notification-url": "https://packages.drupal.org/8/downloads",
  5405. "license": [
  5406. "GPL-2.0-or-later"
  5407. ],
  5408. "authors": [
  5409. {
  5410. "name": "Jaypan",
  5411. "homepage": "https://www.drupal.org/user/324696"
  5412. }
  5413. ],
  5414. "description": "Text filter to convert URLs to embedded videos",
  5415. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5416. "support": {
  5417. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5418. }
  5419. },
  5420. {
  5421. "name": "drupal/views_bulk_edit",
  5422. "version": "2.2.0",
  5423. "source": {
  5424. "type": "git",
  5425. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5426. "reference": "8.x-2.2"
  5427. },
  5428. "dist": {
  5429. "type": "zip",
  5430. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  5431. "reference": "8.x-2.2",
  5432. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  5433. },
  5434. "require": {
  5435. "drupal/core": "*",
  5436. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  5437. },
  5438. "type": "drupal-module",
  5439. "extra": {
  5440. "branch-alias": {
  5441. "dev-2.x": "2.x-dev"
  5442. },
  5443. "drupal": {
  5444. "version": "8.x-2.2",
  5445. "datestamp": "1532689085",
  5446. "security-coverage": {
  5447. "status": "covered",
  5448. "message": "Covered by Drupal's security advisory policy"
  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": "benjy",
  5463. "homepage": "https://www.drupal.org/user/1852732"
  5464. }
  5465. ],
  5466. "description": "Allows bulk edition of entity field values.",
  5467. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5468. "support": {
  5469. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5470. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5471. }
  5472. },
  5473. {
  5474. "name": "drupal/views_bulk_operations",
  5475. "version": "2.5.0",
  5476. "source": {
  5477. "type": "git",
  5478. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5479. "reference": "8.x-2.5"
  5480. },
  5481. "dist": {
  5482. "type": "zip",
  5483. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.5.zip",
  5484. "reference": "8.x-2.5",
  5485. "shasum": "3ec848b4f235720d05cb9713ea80a86415b6909f"
  5486. },
  5487. "require": {
  5488. "drupal/core": "^8.4"
  5489. },
  5490. "type": "drupal-module",
  5491. "extra": {
  5492. "branch-alias": {
  5493. "dev-2.x": "2.x-dev"
  5494. },
  5495. "drupal": {
  5496. "version": "8.x-2.5",
  5497. "datestamp": "1550740384",
  5498. "security-coverage": {
  5499. "status": "covered",
  5500. "message": "Covered by Drupal's security advisory policy"
  5501. }
  5502. },
  5503. "drush": {
  5504. "services": {
  5505. "drush.services.yml": "^9"
  5506. }
  5507. }
  5508. },
  5509. "notification-url": "https://packages.drupal.org/8/downloads",
  5510. "license": [
  5511. "GPL-2.0+"
  5512. ],
  5513. "authors": [
  5514. {
  5515. "name": "Marcin Grabias",
  5516. "homepage": "https://www.drupal.org/u/graber"
  5517. },
  5518. {
  5519. "name": "Jon Pugh",
  5520. "homepage": "https://www.drupal.org/user/17028"
  5521. },
  5522. {
  5523. "name": "bojanz",
  5524. "homepage": "https://www.drupal.org/user/86106"
  5525. },
  5526. {
  5527. "name": "infojunkie",
  5528. "homepage": "https://www.drupal.org/user/48424"
  5529. },
  5530. {
  5531. "name": "joelpittet",
  5532. "homepage": "https://www.drupal.org/user/160302"
  5533. }
  5534. ],
  5535. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5536. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5537. "support": {
  5538. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5539. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5540. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5541. }
  5542. },
  5543. {
  5544. "name": "drupal/workflow",
  5545. "version": "dev-1.x",
  5546. "source": {
  5547. "type": "git",
  5548. "url": "https://git.drupalcode.org/project/workflow.git",
  5549. "reference": "19030d5b4dd9523153a7af6e2df44cd9a03109b2"
  5550. },
  5551. "require": {
  5552. "drupal/core": "*"
  5553. },
  5554. "type": "drupal-module",
  5555. "extra": {
  5556. "branch-alias": {
  5557. "dev-1.x": "1.x-dev"
  5558. },
  5559. "drupal": {
  5560. "version": "8.x-1.1+35-dev",
  5561. "datestamp": "1548801480",
  5562. "security-coverage": {
  5563. "status": "not-covered",
  5564. "message": "Dev releases are not covered by Drupal security advisories."
  5565. }
  5566. }
  5567. },
  5568. "notification-url": "https://packages.drupal.org/8/downloads",
  5569. "license": [
  5570. "GPL-2.0-or-later"
  5571. ],
  5572. "authors": [
  5573. {
  5574. "name": "Bastlynn",
  5575. "homepage": "https://www.drupal.org/user/275249"
  5576. },
  5577. {
  5578. "name": "Heine",
  5579. "homepage": "https://www.drupal.org/user/17943"
  5580. },
  5581. {
  5582. "name": "JacobSingh",
  5583. "homepage": "https://www.drupal.org/user/68912"
  5584. },
  5585. {
  5586. "name": "NancyDru",
  5587. "homepage": "https://www.drupal.org/user/101412"
  5588. },
  5589. {
  5590. "name": "eaton",
  5591. "homepage": "https://www.drupal.org/user/16496"
  5592. },
  5593. {
  5594. "name": "johnv",
  5595. "homepage": "https://www.drupal.org/user/591042"
  5596. },
  5597. {
  5598. "name": "jvandyk",
  5599. "homepage": "https://www.drupal.org/user/2375"
  5600. },
  5601. {
  5602. "name": "mfredrickson",
  5603. "homepage": "https://www.drupal.org/user/31994"
  5604. },
  5605. {
  5606. "name": "q0rban",
  5607. "homepage": "https://www.drupal.org/user/31022"
  5608. }
  5609. ],
  5610. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5611. "homepage": "https://www.drupal.org/project/workflow",
  5612. "support": {
  5613. "source": "https://git.drupalcode.org/project/workflow"
  5614. },
  5615. "time": "2019-01-29T22:35:30+00:00"
  5616. },
  5617. {
  5618. "name": "drush/drush",
  5619. "version": "9.6.2",
  5620. "source": {
  5621. "type": "git",
  5622. "url": "https://github.com/drush-ops/drush.git",
  5623. "reference": "65d36cf542308d0b88f77c80f818a978d2844b80"
  5624. },
  5625. "dist": {
  5626. "type": "zip",
  5627. "url": "https://api.github.com/repos/drush-ops/drush/zipball/65d36cf542308d0b88f77c80f818a978d2844b80",
  5628. "reference": "65d36cf542308d0b88f77c80f818a978d2844b80",
  5629. "shasum": ""
  5630. },
  5631. "require": {
  5632. "chi-teck/drupal-code-generator": "^1.28.1",
  5633. "composer/semver": "^1.4",
  5634. "consolidation/annotated-command": "^2.12",
  5635. "consolidation/config": "^1.2",
  5636. "consolidation/filter-via-dot-access-data": "^1",
  5637. "consolidation/output-formatters": "^3.3.1",
  5638. "consolidation/robo": "^1.4.6",
  5639. "consolidation/site-alias": "^3.0.0@stable",
  5640. "consolidation/site-process": "^2.0.1",
  5641. "ext-dom": "*",
  5642. "grasmash/yaml-expander": "^1.1.1",
  5643. "league/container": "~2",
  5644. "php": ">=5.6.0",
  5645. "psr/log": "~1.0",
  5646. "psy/psysh": "~0.6",
  5647. "symfony/console": "^3.4",
  5648. "symfony/event-dispatcher": "^3.4",
  5649. "symfony/finder": "^3.4 || ^4.0",
  5650. "symfony/process": "^3.4",
  5651. "symfony/var-dumper": "^3.4 || ^4.0",
  5652. "symfony/yaml": "^3.4",
  5653. "webflo/drupal-finder": "^1.1",
  5654. "webmozart/path-util": "^2.1.0"
  5655. },
  5656. "require-dev": {
  5657. "composer/installers": "^1.2",
  5658. "cweagans/composer-patches": "~1.0",
  5659. "drupal/alinks": "1.0.0",
  5660. "drupal/devel": "^2",
  5661. "drupal/empty_theme": "1.0",
  5662. "g1a/composer-test-scenarios": "^3",
  5663. "lox/xhprof": "dev-master",
  5664. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5665. "squizlabs/php_codesniffer": "^2.7",
  5666. "vlucas/phpdotenv": "^2.4",
  5667. "webflo/drupal-core-strict": "8.6.x-dev"
  5668. },
  5669. "bin": [
  5670. "drush"
  5671. ],
  5672. "type": "library",
  5673. "extra": {
  5674. "installer-paths": {
  5675. "sut/core": [
  5676. "type:drupal-core"
  5677. ],
  5678. "sut/libraries/{$name}": [
  5679. "type:drupal-library"
  5680. ],
  5681. "sut/modules/unish/{$name}": [
  5682. "drupal/devel"
  5683. ],
  5684. "sut/themes/unish/{$name}": [
  5685. "drupal/empty_theme"
  5686. ],
  5687. "sut/modules/contrib/{$name}": [
  5688. "type:drupal-module"
  5689. ],
  5690. "sut/profiles/contrib/{$name}": [
  5691. "type:drupal-profile"
  5692. ],
  5693. "sut/themes/contrib/{$name}": [
  5694. "type:drupal-theme"
  5695. ],
  5696. "sut/drush/contrib/{$name}": [
  5697. "type:drupal-drush"
  5698. ]
  5699. },
  5700. "scenarios": {
  5701. "php5": {
  5702. "config": {
  5703. "platform": {
  5704. "php": "5.6.38"
  5705. }
  5706. }
  5707. }
  5708. },
  5709. "branch-alias": {
  5710. "dev-master": "9.x-dev"
  5711. }
  5712. },
  5713. "autoload": {
  5714. "psr-4": {
  5715. "Drush\\": "src/",
  5716. "Drush\\Internal\\": "src/internal-forks"
  5717. }
  5718. },
  5719. "notification-url": "https://packagist.org/downloads/",
  5720. "license": [
  5721. "GPL-2.0-or-later"
  5722. ],
  5723. "authors": [
  5724. {
  5725. "name": "Moshe Weitzman",
  5726. "email": "weitzman@tejasa.com"
  5727. },
  5728. {
  5729. "name": "Owen Barton",
  5730. "email": "drupal@owenbarton.com"
  5731. },
  5732. {
  5733. "name": "Greg Anderson",
  5734. "email": "greg.1.anderson@greenknowe.org"
  5735. },
  5736. {
  5737. "name": "Jonathan Araña Cruz",
  5738. "email": "jonhattan@faita.net"
  5739. },
  5740. {
  5741. "name": "Jonathan Hedstrom",
  5742. "email": "jhedstrom@gmail.com"
  5743. },
  5744. {
  5745. "name": "Christopher Gervais",
  5746. "email": "chris@ergonlogic.com"
  5747. },
  5748. {
  5749. "name": "Dave Reid",
  5750. "email": "dave@davereid.net"
  5751. },
  5752. {
  5753. "name": "Damian Lee",
  5754. "email": "damiankloip@googlemail.com"
  5755. }
  5756. ],
  5757. "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.",
  5758. "homepage": "http://www.drush.org",
  5759. "time": "2019-04-03T11:17:00+00:00"
  5760. },
  5761. {
  5762. "name": "easyrdf/easyrdf",
  5763. "version": "0.9.1",
  5764. "source": {
  5765. "type": "git",
  5766. "url": "https://github.com/njh/easyrdf.git",
  5767. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5768. },
  5769. "dist": {
  5770. "type": "zip",
  5771. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5772. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5773. "shasum": ""
  5774. },
  5775. "require": {
  5776. "ext-mbstring": "*",
  5777. "ext-pcre": "*",
  5778. "php": ">=5.2.8"
  5779. },
  5780. "require-dev": {
  5781. "phpunit/phpunit": "~3.5",
  5782. "sami/sami": "~1.4",
  5783. "squizlabs/php_codesniffer": "~1.4.3"
  5784. },
  5785. "suggest": {
  5786. "ml/json-ld": "~1.0"
  5787. },
  5788. "type": "library",
  5789. "autoload": {
  5790. "psr-0": {
  5791. "EasyRdf_": "lib/"
  5792. }
  5793. },
  5794. "notification-url": "https://packagist.org/downloads/",
  5795. "license": [
  5796. "BSD-3-Clause"
  5797. ],
  5798. "authors": [
  5799. {
  5800. "name": "Nicholas Humfrey",
  5801. "email": "njh@aelius.com",
  5802. "homepage": "http://www.aelius.com/njh/",
  5803. "role": "Developer"
  5804. },
  5805. {
  5806. "name": "Alexey Zakhlestin",
  5807. "email": "indeyets@gmail.com",
  5808. "role": "Developer"
  5809. }
  5810. ],
  5811. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5812. "homepage": "http://www.easyrdf.org/",
  5813. "keywords": [
  5814. "Linked Data",
  5815. "RDF",
  5816. "Semantic Web",
  5817. "Turtle",
  5818. "rdfa",
  5819. "sparql"
  5820. ],
  5821. "time": "2015-02-27T09:45:49+00:00"
  5822. },
  5823. {
  5824. "name": "egulias/email-validator",
  5825. "version": "1.2.15",
  5826. "source": {
  5827. "type": "git",
  5828. "url": "https://github.com/egulias/EmailValidator.git",
  5829. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  5830. },
  5831. "dist": {
  5832. "type": "zip",
  5833. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  5834. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  5835. "shasum": ""
  5836. },
  5837. "require": {
  5838. "doctrine/lexer": "^1.0.1",
  5839. "php": ">= 5.3.3"
  5840. },
  5841. "require-dev": {
  5842. "phpunit/phpunit": "^4.8.24"
  5843. },
  5844. "type": "library",
  5845. "extra": {
  5846. "branch-alias": {
  5847. "dev-master": "2.0.x-dev"
  5848. }
  5849. },
  5850. "autoload": {
  5851. "psr-0": {
  5852. "Egulias\\": "src/"
  5853. }
  5854. },
  5855. "notification-url": "https://packagist.org/downloads/",
  5856. "license": [
  5857. "MIT"
  5858. ],
  5859. "authors": [
  5860. {
  5861. "name": "Eduardo Gulias Davis"
  5862. }
  5863. ],
  5864. "description": "A library for validating emails",
  5865. "homepage": "https://github.com/egulias/EmailValidator",
  5866. "keywords": [
  5867. "email",
  5868. "emailvalidation",
  5869. "emailvalidator",
  5870. "validation",
  5871. "validator"
  5872. ],
  5873. "time": "2018-09-25T20:59:41+00:00"
  5874. },
  5875. {
  5876. "name": "grasmash/expander",
  5877. "version": "1.0.0",
  5878. "source": {
  5879. "type": "git",
  5880. "url": "https://github.com/grasmash/expander.git",
  5881. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5882. },
  5883. "dist": {
  5884. "type": "zip",
  5885. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5886. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5887. "shasum": ""
  5888. },
  5889. "require": {
  5890. "dflydev/dot-access-data": "^1.1.0",
  5891. "php": ">=5.4"
  5892. },
  5893. "require-dev": {
  5894. "greg-1-anderson/composer-test-scenarios": "^1",
  5895. "phpunit/phpunit": "^4|^5.5.4",
  5896. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5897. "squizlabs/php_codesniffer": "^2.7"
  5898. },
  5899. "type": "library",
  5900. "extra": {
  5901. "branch-alias": {
  5902. "dev-master": "1.x-dev"
  5903. }
  5904. },
  5905. "autoload": {
  5906. "psr-4": {
  5907. "Grasmash\\Expander\\": "src/"
  5908. }
  5909. },
  5910. "notification-url": "https://packagist.org/downloads/",
  5911. "license": [
  5912. "MIT"
  5913. ],
  5914. "authors": [
  5915. {
  5916. "name": "Matthew Grasmick"
  5917. }
  5918. ],
  5919. "description": "Expands internal property references in PHP arrays file.",
  5920. "time": "2017-12-21T22:14:55+00:00"
  5921. },
  5922. {
  5923. "name": "grasmash/yaml-expander",
  5924. "version": "1.4.0",
  5925. "source": {
  5926. "type": "git",
  5927. "url": "https://github.com/grasmash/yaml-expander.git",
  5928. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5929. },
  5930. "dist": {
  5931. "type": "zip",
  5932. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5933. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5934. "shasum": ""
  5935. },
  5936. "require": {
  5937. "dflydev/dot-access-data": "^1.1.0",
  5938. "php": ">=5.4",
  5939. "symfony/yaml": "^2.8.11|^3|^4"
  5940. },
  5941. "require-dev": {
  5942. "greg-1-anderson/composer-test-scenarios": "^1",
  5943. "phpunit/phpunit": "^4.8|^5.5.4",
  5944. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5945. "squizlabs/php_codesniffer": "^2.7"
  5946. },
  5947. "type": "library",
  5948. "extra": {
  5949. "branch-alias": {
  5950. "dev-master": "1.x-dev"
  5951. }
  5952. },
  5953. "autoload": {
  5954. "psr-4": {
  5955. "Grasmash\\YamlExpander\\": "src/"
  5956. }
  5957. },
  5958. "notification-url": "https://packagist.org/downloads/",
  5959. "license": [
  5960. "MIT"
  5961. ],
  5962. "authors": [
  5963. {
  5964. "name": "Matthew Grasmick"
  5965. }
  5966. ],
  5967. "description": "Expands internal property references in a yaml file.",
  5968. "time": "2017-12-16T16:06:03+00:00"
  5969. },
  5970. {
  5971. "name": "guzzlehttp/guzzle",
  5972. "version": "6.3.3",
  5973. "source": {
  5974. "type": "git",
  5975. "url": "https://github.com/guzzle/guzzle.git",
  5976. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  5977. },
  5978. "dist": {
  5979. "type": "zip",
  5980. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  5981. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  5982. "shasum": ""
  5983. },
  5984. "require": {
  5985. "guzzlehttp/promises": "^1.0",
  5986. "guzzlehttp/psr7": "^1.4",
  5987. "php": ">=5.5"
  5988. },
  5989. "require-dev": {
  5990. "ext-curl": "*",
  5991. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  5992. "psr/log": "^1.0"
  5993. },
  5994. "suggest": {
  5995. "psr/log": "Required for using the Log middleware"
  5996. },
  5997. "type": "library",
  5998. "extra": {
  5999. "branch-alias": {
  6000. "dev-master": "6.3-dev"
  6001. }
  6002. },
  6003. "autoload": {
  6004. "files": [
  6005. "src/functions_include.php"
  6006. ],
  6007. "psr-4": {
  6008. "GuzzleHttp\\": "src/"
  6009. }
  6010. },
  6011. "notification-url": "https://packagist.org/downloads/",
  6012. "license": [
  6013. "MIT"
  6014. ],
  6015. "authors": [
  6016. {
  6017. "name": "Michael Dowling",
  6018. "email": "mtdowling@gmail.com",
  6019. "homepage": "https://github.com/mtdowling"
  6020. }
  6021. ],
  6022. "description": "Guzzle is a PHP HTTP client library",
  6023. "homepage": "http://guzzlephp.org/",
  6024. "keywords": [
  6025. "client",
  6026. "curl",
  6027. "framework",
  6028. "http",
  6029. "http client",
  6030. "rest",
  6031. "web service"
  6032. ],
  6033. "time": "2018-04-22T15:46:56+00:00"
  6034. },
  6035. {
  6036. "name": "guzzlehttp/promises",
  6037. "version": "v1.3.1",
  6038. "source": {
  6039. "type": "git",
  6040. "url": "https://github.com/guzzle/promises.git",
  6041. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6042. },
  6043. "dist": {
  6044. "type": "zip",
  6045. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6046. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6047. "shasum": ""
  6048. },
  6049. "require": {
  6050. "php": ">=5.5.0"
  6051. },
  6052. "require-dev": {
  6053. "phpunit/phpunit": "^4.0"
  6054. },
  6055. "type": "library",
  6056. "extra": {
  6057. "branch-alias": {
  6058. "dev-master": "1.4-dev"
  6059. }
  6060. },
  6061. "autoload": {
  6062. "psr-4": {
  6063. "GuzzleHttp\\Promise\\": "src/"
  6064. },
  6065. "files": [
  6066. "src/functions_include.php"
  6067. ]
  6068. },
  6069. "notification-url": "https://packagist.org/downloads/",
  6070. "license": [
  6071. "MIT"
  6072. ],
  6073. "authors": [
  6074. {
  6075. "name": "Michael Dowling",
  6076. "email": "mtdowling@gmail.com",
  6077. "homepage": "https://github.com/mtdowling"
  6078. }
  6079. ],
  6080. "description": "Guzzle promises library",
  6081. "keywords": [
  6082. "promise"
  6083. ],
  6084. "time": "2016-12-20T10:07:11+00:00"
  6085. },
  6086. {
  6087. "name": "guzzlehttp/psr7",
  6088. "version": "1.5.2",
  6089. "source": {
  6090. "type": "git",
  6091. "url": "https://github.com/guzzle/psr7.git",
  6092. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  6093. },
  6094. "dist": {
  6095. "type": "zip",
  6096. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  6097. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  6098. "shasum": ""
  6099. },
  6100. "require": {
  6101. "php": ">=5.4.0",
  6102. "psr/http-message": "~1.0",
  6103. "ralouphie/getallheaders": "^2.0.5"
  6104. },
  6105. "provide": {
  6106. "psr/http-message-implementation": "1.0"
  6107. },
  6108. "require-dev": {
  6109. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6110. },
  6111. "type": "library",
  6112. "extra": {
  6113. "branch-alias": {
  6114. "dev-master": "1.5-dev"
  6115. }
  6116. },
  6117. "autoload": {
  6118. "psr-4": {
  6119. "GuzzleHttp\\Psr7\\": "src/"
  6120. },
  6121. "files": [
  6122. "src/functions_include.php"
  6123. ]
  6124. },
  6125. "notification-url": "https://packagist.org/downloads/",
  6126. "license": [
  6127. "MIT"
  6128. ],
  6129. "authors": [
  6130. {
  6131. "name": "Michael Dowling",
  6132. "email": "mtdowling@gmail.com",
  6133. "homepage": "https://github.com/mtdowling"
  6134. },
  6135. {
  6136. "name": "Tobias Schultze",
  6137. "homepage": "https://github.com/Tobion"
  6138. }
  6139. ],
  6140. "description": "PSR-7 message implementation that also provides common utility methods",
  6141. "keywords": [
  6142. "http",
  6143. "message",
  6144. "psr-7",
  6145. "request",
  6146. "response",
  6147. "stream",
  6148. "uri",
  6149. "url"
  6150. ],
  6151. "time": "2018-12-04T20:46:45+00:00"
  6152. },
  6153. {
  6154. "name": "jakub-onderka/php-console-color",
  6155. "version": "v0.2",
  6156. "source": {
  6157. "type": "git",
  6158. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6159. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6160. },
  6161. "dist": {
  6162. "type": "zip",
  6163. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6164. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6165. "shasum": ""
  6166. },
  6167. "require": {
  6168. "php": ">=5.4.0"
  6169. },
  6170. "require-dev": {
  6171. "jakub-onderka/php-code-style": "1.0",
  6172. "jakub-onderka/php-parallel-lint": "1.0",
  6173. "jakub-onderka/php-var-dump-check": "0.*",
  6174. "phpunit/phpunit": "~4.3",
  6175. "squizlabs/php_codesniffer": "1.*"
  6176. },
  6177. "type": "library",
  6178. "autoload": {
  6179. "psr-4": {
  6180. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6181. }
  6182. },
  6183. "notification-url": "https://packagist.org/downloads/",
  6184. "license": [
  6185. "BSD-2-Clause"
  6186. ],
  6187. "authors": [
  6188. {
  6189. "name": "Jakub Onderka",
  6190. "email": "jakub.onderka@gmail.com"
  6191. }
  6192. ],
  6193. "time": "2018-09-29T17:23:10+00:00"
  6194. },
  6195. {
  6196. "name": "jakub-onderka/php-console-highlighter",
  6197. "version": "v0.4",
  6198. "source": {
  6199. "type": "git",
  6200. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6201. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6202. },
  6203. "dist": {
  6204. "type": "zip",
  6205. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6206. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6207. "shasum": ""
  6208. },
  6209. "require": {
  6210. "ext-tokenizer": "*",
  6211. "jakub-onderka/php-console-color": "~0.2",
  6212. "php": ">=5.4.0"
  6213. },
  6214. "require-dev": {
  6215. "jakub-onderka/php-code-style": "~1.0",
  6216. "jakub-onderka/php-parallel-lint": "~1.0",
  6217. "jakub-onderka/php-var-dump-check": "~0.1",
  6218. "phpunit/phpunit": "~4.0",
  6219. "squizlabs/php_codesniffer": "~1.5"
  6220. },
  6221. "type": "library",
  6222. "autoload": {
  6223. "psr-4": {
  6224. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6225. }
  6226. },
  6227. "notification-url": "https://packagist.org/downloads/",
  6228. "license": [
  6229. "MIT"
  6230. ],
  6231. "authors": [
  6232. {
  6233. "name": "Jakub Onderka",
  6234. "email": "acci@acci.cz",
  6235. "homepage": "http://www.acci.cz/"
  6236. }
  6237. ],
  6238. "description": "Highlight PHP code in terminal",
  6239. "time": "2018-09-29T18:48:56+00:00"
  6240. },
  6241. {
  6242. "name": "league/container",
  6243. "version": "2.4.1",
  6244. "source": {
  6245. "type": "git",
  6246. "url": "https://github.com/thephpleague/container.git",
  6247. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6248. },
  6249. "dist": {
  6250. "type": "zip",
  6251. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6252. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6253. "shasum": ""
  6254. },
  6255. "require": {
  6256. "container-interop/container-interop": "^1.2",
  6257. "php": "^5.4.0 || ^7.0"
  6258. },
  6259. "provide": {
  6260. "container-interop/container-interop-implementation": "^1.2",
  6261. "psr/container-implementation": "^1.0"
  6262. },
  6263. "replace": {
  6264. "orno/di": "~2.0"
  6265. },
  6266. "require-dev": {
  6267. "phpunit/phpunit": "4.*"
  6268. },
  6269. "type": "library",
  6270. "extra": {
  6271. "branch-alias": {
  6272. "dev-2.x": "2.x-dev",
  6273. "dev-1.x": "1.x-dev"
  6274. }
  6275. },
  6276. "autoload": {
  6277. "psr-4": {
  6278. "League\\Container\\": "src"
  6279. }
  6280. },
  6281. "notification-url": "https://packagist.org/downloads/",
  6282. "license": [
  6283. "MIT"
  6284. ],
  6285. "authors": [
  6286. {
  6287. "name": "Phil Bennett",
  6288. "email": "philipobenito@gmail.com",
  6289. "homepage": "http://www.philipobenito.com",
  6290. "role": "Developer"
  6291. }
  6292. ],
  6293. "description": "A fast and intuitive dependency injection container.",
  6294. "homepage": "https://github.com/thephpleague/container",
  6295. "keywords": [
  6296. "container",
  6297. "dependency",
  6298. "di",
  6299. "injection",
  6300. "league",
  6301. "provider",
  6302. "service"
  6303. ],
  6304. "time": "2017-05-10T09:20:27+00:00"
  6305. },
  6306. {
  6307. "name": "masterminds/html5",
  6308. "version": "2.6.0",
  6309. "source": {
  6310. "type": "git",
  6311. "url": "https://github.com/Masterminds/html5-php.git",
  6312. "reference": "c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad"
  6313. },
  6314. "dist": {
  6315. "type": "zip",
  6316. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad",
  6317. "reference": "c961ca6a0a81dc6b55b6859b3f9ea7f402edf9ad",
  6318. "shasum": ""
  6319. },
  6320. "require": {
  6321. "ext-ctype": "*",
  6322. "ext-dom": "*",
  6323. "ext-libxml": "*",
  6324. "php": ">=5.3.0"
  6325. },
  6326. "require-dev": {
  6327. "phpunit/phpunit": "^4.8.35",
  6328. "sami/sami": "~2.0",
  6329. "satooshi/php-coveralls": "1.0.*"
  6330. },
  6331. "type": "library",
  6332. "extra": {
  6333. "branch-alias": {
  6334. "dev-master": "2.6-dev"
  6335. }
  6336. },
  6337. "autoload": {
  6338. "psr-4": {
  6339. "Masterminds\\": "src"
  6340. }
  6341. },
  6342. "notification-url": "https://packagist.org/downloads/",
  6343. "license": [
  6344. "MIT"
  6345. ],
  6346. "authors": [
  6347. {
  6348. "name": "Matt Butcher",
  6349. "email": "technosophos@gmail.com"
  6350. },
  6351. {
  6352. "name": "Asmir Mustafic",
  6353. "email": "goetas@gmail.com"
  6354. },
  6355. {
  6356. "name": "Matt Farina",
  6357. "email": "matt@mattfarina.com"
  6358. }
  6359. ],
  6360. "description": "An HTML5 parser and serializer.",
  6361. "homepage": "http://masterminds.github.io/html5-php",
  6362. "keywords": [
  6363. "HTML5",
  6364. "dom",
  6365. "html",
  6366. "parser",
  6367. "querypath",
  6368. "serializer",
  6369. "xml"
  6370. ],
  6371. "time": "2019-03-10T11:41:28+00:00"
  6372. },
  6373. {
  6374. "name": "nikic/php-parser",
  6375. "version": "v4.2.1",
  6376. "source": {
  6377. "type": "git",
  6378. "url": "https://github.com/nikic/PHP-Parser.git",
  6379. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0"
  6380. },
  6381. "dist": {
  6382. "type": "zip",
  6383. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0",
  6384. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0",
  6385. "shasum": ""
  6386. },
  6387. "require": {
  6388. "ext-tokenizer": "*",
  6389. "php": ">=7.0"
  6390. },
  6391. "require-dev": {
  6392. "phpunit/phpunit": "^6.5 || ^7.0"
  6393. },
  6394. "bin": [
  6395. "bin/php-parse"
  6396. ],
  6397. "type": "library",
  6398. "extra": {
  6399. "branch-alias": {
  6400. "dev-master": "4.2-dev"
  6401. }
  6402. },
  6403. "autoload": {
  6404. "psr-4": {
  6405. "PhpParser\\": "lib/PhpParser"
  6406. }
  6407. },
  6408. "notification-url": "https://packagist.org/downloads/",
  6409. "license": [
  6410. "BSD-3-Clause"
  6411. ],
  6412. "authors": [
  6413. {
  6414. "name": "Nikita Popov"
  6415. }
  6416. ],
  6417. "description": "A PHP parser written in PHP",
  6418. "keywords": [
  6419. "parser",
  6420. "php"
  6421. ],
  6422. "time": "2019-02-16T20:54:15+00:00"
  6423. },
  6424. {
  6425. "name": "oomphinc/composer-installers-extender",
  6426. "version": "v1.1.2",
  6427. "source": {
  6428. "type": "git",
  6429. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  6430. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  6431. },
  6432. "dist": {
  6433. "type": "zip",
  6434. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6435. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  6436. "shasum": ""
  6437. },
  6438. "require": {
  6439. "composer-plugin-api": "^1.0",
  6440. "composer/installers": "^1.0"
  6441. },
  6442. "type": "composer-plugin",
  6443. "extra": {
  6444. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  6445. },
  6446. "autoload": {
  6447. "psr-4": {
  6448. "OomphInc\\ComposerInstallersExtender\\": "src/"
  6449. }
  6450. },
  6451. "notification-url": "https://packagist.org/downloads/",
  6452. "license": [
  6453. "MIT"
  6454. ],
  6455. "authors": [
  6456. {
  6457. "name": "Stephen Beemsterboer",
  6458. "email": "stephen@oomphinc.com",
  6459. "homepage": "https://github.com/balbuf"
  6460. }
  6461. ],
  6462. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  6463. "homepage": "http://www.oomphinc.com/",
  6464. "time": "2017-03-31T16:57:39+00:00"
  6465. },
  6466. {
  6467. "name": "paragonie/random_compat",
  6468. "version": "v2.0.18",
  6469. "source": {
  6470. "type": "git",
  6471. "url": "https://github.com/paragonie/random_compat.git",
  6472. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  6473. },
  6474. "dist": {
  6475. "type": "zip",
  6476. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  6477. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  6478. "shasum": ""
  6479. },
  6480. "require": {
  6481. "php": ">=5.2.0"
  6482. },
  6483. "require-dev": {
  6484. "phpunit/phpunit": "4.*|5.*"
  6485. },
  6486. "suggest": {
  6487. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6488. },
  6489. "type": "library",
  6490. "autoload": {
  6491. "files": [
  6492. "lib/random.php"
  6493. ]
  6494. },
  6495. "notification-url": "https://packagist.org/downloads/",
  6496. "license": [
  6497. "MIT"
  6498. ],
  6499. "authors": [
  6500. {
  6501. "name": "Paragon Initiative Enterprises",
  6502. "email": "security@paragonie.com",
  6503. "homepage": "https://paragonie.com"
  6504. }
  6505. ],
  6506. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6507. "keywords": [
  6508. "csprng",
  6509. "polyfill",
  6510. "pseudorandom",
  6511. "random"
  6512. ],
  6513. "time": "2019-01-03T20:59:08+00:00"
  6514. },
  6515. {
  6516. "name": "psr/container",
  6517. "version": "1.0.0",
  6518. "source": {
  6519. "type": "git",
  6520. "url": "https://github.com/php-fig/container.git",
  6521. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  6522. },
  6523. "dist": {
  6524. "type": "zip",
  6525. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6526. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  6527. "shasum": ""
  6528. },
  6529. "require": {
  6530. "php": ">=5.3.0"
  6531. },
  6532. "type": "library",
  6533. "extra": {
  6534. "branch-alias": {
  6535. "dev-master": "1.0.x-dev"
  6536. }
  6537. },
  6538. "autoload": {
  6539. "psr-4": {
  6540. "Psr\\Container\\": "src/"
  6541. }
  6542. },
  6543. "notification-url": "https://packagist.org/downloads/",
  6544. "license": [
  6545. "MIT"
  6546. ],
  6547. "authors": [
  6548. {
  6549. "name": "PHP-FIG",
  6550. "homepage": "http://www.php-fig.org/"
  6551. }
  6552. ],
  6553. "description": "Common Container Interface (PHP FIG PSR-11)",
  6554. "homepage": "https://github.com/php-fig/container",
  6555. "keywords": [
  6556. "PSR-11",
  6557. "container",
  6558. "container-interface",
  6559. "container-interop",
  6560. "psr"
  6561. ],
  6562. "time": "2017-02-14T16:28:37+00:00"
  6563. },
  6564. {
  6565. "name": "psr/http-message",
  6566. "version": "1.0.1",
  6567. "source": {
  6568. "type": "git",
  6569. "url": "https://github.com/php-fig/http-message.git",
  6570. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  6571. },
  6572. "dist": {
  6573. "type": "zip",
  6574. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  6575. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  6576. "shasum": ""
  6577. },
  6578. "require": {
  6579. "php": ">=5.3.0"
  6580. },
  6581. "type": "library",
  6582. "extra": {
  6583. "branch-alias": {
  6584. "dev-master": "1.0.x-dev"
  6585. }
  6586. },
  6587. "autoload": {
  6588. "psr-4": {
  6589. "Psr\\Http\\Message\\": "src/"
  6590. }
  6591. },
  6592. "notification-url": "https://packagist.org/downloads/",
  6593. "license": [
  6594. "MIT"
  6595. ],
  6596. "authors": [
  6597. {
  6598. "name": "PHP-FIG",
  6599. "homepage": "http://www.php-fig.org/"
  6600. }
  6601. ],
  6602. "description": "Common interface for HTTP messages",
  6603. "homepage": "https://github.com/php-fig/http-message",
  6604. "keywords": [
  6605. "http",
  6606. "http-message",
  6607. "psr",
  6608. "psr-7",
  6609. "request",
  6610. "response"
  6611. ],
  6612. "time": "2016-08-06T14:39:51+00:00"
  6613. },
  6614. {
  6615. "name": "psr/log",
  6616. "version": "1.1.0",
  6617. "source": {
  6618. "type": "git",
  6619. "url": "https://github.com/php-fig/log.git",
  6620. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  6621. },
  6622. "dist": {
  6623. "type": "zip",
  6624. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  6625. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  6626. "shasum": ""
  6627. },
  6628. "require": {
  6629. "php": ">=5.3.0"
  6630. },
  6631. "type": "library",
  6632. "extra": {
  6633. "branch-alias": {
  6634. "dev-master": "1.0.x-dev"
  6635. }
  6636. },
  6637. "autoload": {
  6638. "psr-4": {
  6639. "Psr\\Log\\": "Psr/Log/"
  6640. }
  6641. },
  6642. "notification-url": "https://packagist.org/downloads/",
  6643. "license": [
  6644. "MIT"
  6645. ],
  6646. "authors": [
  6647. {
  6648. "name": "PHP-FIG",
  6649. "homepage": "http://www.php-fig.org/"
  6650. }
  6651. ],
  6652. "description": "Common interface for logging libraries",
  6653. "homepage": "https://github.com/php-fig/log",
  6654. "keywords": [
  6655. "log",
  6656. "psr",
  6657. "psr-3"
  6658. ],
  6659. "time": "2018-11-20T15:27:04+00:00"
  6660. },
  6661. {
  6662. "name": "psy/psysh",
  6663. "version": "v0.9.9",
  6664. "source": {
  6665. "type": "git",
  6666. "url": "https://github.com/bobthecow/psysh.git",
  6667. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  6668. },
  6669. "dist": {
  6670. "type": "zip",
  6671. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  6672. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  6673. "shasum": ""
  6674. },
  6675. "require": {
  6676. "dnoegel/php-xdg-base-dir": "0.1",
  6677. "ext-json": "*",
  6678. "ext-tokenizer": "*",
  6679. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  6680. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  6681. "php": ">=5.4.0",
  6682. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  6683. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  6684. },
  6685. "require-dev": {
  6686. "bamarni/composer-bin-plugin": "^1.2",
  6687. "hoa/console": "~2.15|~3.16",
  6688. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  6689. },
  6690. "suggest": {
  6691. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6692. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6693. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6694. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  6695. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  6696. },
  6697. "bin": [
  6698. "bin/psysh"
  6699. ],
  6700. "type": "library",
  6701. "extra": {
  6702. "branch-alias": {
  6703. "dev-develop": "0.9.x-dev"
  6704. }
  6705. },
  6706. "autoload": {
  6707. "files": [
  6708. "src/functions.php"
  6709. ],
  6710. "psr-4": {
  6711. "Psy\\": "src/"
  6712. }
  6713. },
  6714. "notification-url": "https://packagist.org/downloads/",
  6715. "license": [
  6716. "MIT"
  6717. ],
  6718. "authors": [
  6719. {
  6720. "name": "Justin Hileman",
  6721. "email": "justin@justinhileman.info",
  6722. "homepage": "http://justinhileman.com"
  6723. }
  6724. ],
  6725. "description": "An interactive shell for modern PHP.",
  6726. "homepage": "http://psysh.org",
  6727. "keywords": [
  6728. "REPL",
  6729. "console",
  6730. "interactive",
  6731. "shell"
  6732. ],
  6733. "time": "2018-10-13T15:16:03+00:00"
  6734. },
  6735. {
  6736. "name": "ralouphie/getallheaders",
  6737. "version": "2.0.5",
  6738. "source": {
  6739. "type": "git",
  6740. "url": "https://github.com/ralouphie/getallheaders.git",
  6741. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  6742. },
  6743. "dist": {
  6744. "type": "zip",
  6745. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  6746. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  6747. "shasum": ""
  6748. },
  6749. "require": {
  6750. "php": ">=5.3"
  6751. },
  6752. "require-dev": {
  6753. "phpunit/phpunit": "~3.7.0",
  6754. "satooshi/php-coveralls": ">=1.0"
  6755. },
  6756. "type": "library",
  6757. "autoload": {
  6758. "files": [
  6759. "src/getallheaders.php"
  6760. ]
  6761. },
  6762. "notification-url": "https://packagist.org/downloads/",
  6763. "license": [
  6764. "MIT"
  6765. ],
  6766. "authors": [
  6767. {
  6768. "name": "Ralph Khattar",
  6769. "email": "ralph.khattar@gmail.com"
  6770. }
  6771. ],
  6772. "description": "A polyfill for getallheaders.",
  6773. "time": "2016-02-11T07:05:27+00:00"
  6774. },
  6775. {
  6776. "name": "stack/builder",
  6777. "version": "v1.0.5",
  6778. "source": {
  6779. "type": "git",
  6780. "url": "https://github.com/stackphp/builder.git",
  6781. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  6782. },
  6783. "dist": {
  6784. "type": "zip",
  6785. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  6786. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  6787. "shasum": ""
  6788. },
  6789. "require": {
  6790. "php": ">=5.3.0",
  6791. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  6792. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  6793. },
  6794. "require-dev": {
  6795. "silex/silex": "~1.0"
  6796. },
  6797. "type": "library",
  6798. "extra": {
  6799. "branch-alias": {
  6800. "dev-master": "1.0-dev"
  6801. }
  6802. },
  6803. "autoload": {
  6804. "psr-0": {
  6805. "Stack": "src"
  6806. }
  6807. },
  6808. "notification-url": "https://packagist.org/downloads/",
  6809. "license": [
  6810. "MIT"
  6811. ],
  6812. "authors": [
  6813. {
  6814. "name": "Igor Wiedler",
  6815. "email": "igor@wiedler.ch"
  6816. }
  6817. ],
  6818. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  6819. "keywords": [
  6820. "stack"
  6821. ],
  6822. "time": "2017-11-18T14:57:29+00:00"
  6823. },
  6824. {
  6825. "name": "stecman/symfony-console-completion",
  6826. "version": "0.10.0",
  6827. "source": {
  6828. "type": "git",
  6829. "url": "https://github.com/stecman/symfony-console-completion.git",
  6830. "reference": "bc095febf00aa42ace233b344d4561071d7c912b"
  6831. },
  6832. "dist": {
  6833. "type": "zip",
  6834. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/bc095febf00aa42ace233b344d4561071d7c912b",
  6835. "reference": "bc095febf00aa42ace233b344d4561071d7c912b",
  6836. "shasum": ""
  6837. },
  6838. "require": {
  6839. "php": ">=5.3.2",
  6840. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  6841. },
  6842. "require-dev": {
  6843. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  6844. },
  6845. "type": "library",
  6846. "extra": {
  6847. "branch-alias": {
  6848. "dev-master": "0.6.x-dev"
  6849. }
  6850. },
  6851. "autoload": {
  6852. "psr-4": {
  6853. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  6854. }
  6855. },
  6856. "notification-url": "https://packagist.org/downloads/",
  6857. "license": [
  6858. "MIT"
  6859. ],
  6860. "authors": [
  6861. {
  6862. "name": "Stephen Holdaway",
  6863. "email": "stephen@stecman.co.nz"
  6864. }
  6865. ],
  6866. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  6867. "time": "2019-04-26T12:14:26+00:00"
  6868. },
  6869. {
  6870. "name": "symfony-cmf/routing",
  6871. "version": "1.4.1",
  6872. "source": {
  6873. "type": "git",
  6874. "url": "https://github.com/symfony-cmf/routing.git",
  6875. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  6876. },
  6877. "dist": {
  6878. "type": "zip",
  6879. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  6880. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  6881. "shasum": ""
  6882. },
  6883. "require": {
  6884. "php": "^5.3.9|^7.0",
  6885. "psr/log": "1.*",
  6886. "symfony/http-kernel": "^2.2|3.*",
  6887. "symfony/routing": "^2.2|3.*"
  6888. },
  6889. "require-dev": {
  6890. "friendsofsymfony/jsrouting-bundle": "^1.1",
  6891. "symfony-cmf/testing": "^1.3",
  6892. "symfony/config": "^2.2|3.*",
  6893. "symfony/dependency-injection": "^2.0.5|3.*",
  6894. "symfony/event-dispatcher": "^2.1|3.*"
  6895. },
  6896. "suggest": {
  6897. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  6898. },
  6899. "type": "library",
  6900. "extra": {
  6901. "branch-alias": {
  6902. "dev-master": "1.4-dev"
  6903. }
  6904. },
  6905. "autoload": {
  6906. "psr-4": {
  6907. "Symfony\\Cmf\\Component\\Routing\\": ""
  6908. }
  6909. },
  6910. "notification-url": "https://packagist.org/downloads/",
  6911. "license": [
  6912. "MIT"
  6913. ],
  6914. "authors": [
  6915. {
  6916. "name": "Symfony CMF Community",
  6917. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  6918. }
  6919. ],
  6920. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  6921. "homepage": "http://cmf.symfony.com",
  6922. "keywords": [
  6923. "database",
  6924. "routing"
  6925. ],
  6926. "time": "2017-05-09T08:10:41+00:00"
  6927. },
  6928. {
  6929. "name": "symfony/class-loader",
  6930. "version": "v3.4.26",
  6931. "source": {
  6932. "type": "git",
  6933. "url": "https://github.com/symfony/class-loader.git",
  6934. "reference": "4459eef5298dedfb69f771186a580062b8516497"
  6935. },
  6936. "dist": {
  6937. "type": "zip",
  6938. "url": "https://api.github.com/repos/symfony/class-loader/zipball/4459eef5298dedfb69f771186a580062b8516497",
  6939. "reference": "4459eef5298dedfb69f771186a580062b8516497",
  6940. "shasum": ""
  6941. },
  6942. "require": {
  6943. "php": "^5.5.9|>=7.0.8"
  6944. },
  6945. "require-dev": {
  6946. "symfony/finder": "~2.8|~3.0|~4.0",
  6947. "symfony/polyfill-apcu": "~1.1"
  6948. },
  6949. "suggest": {
  6950. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  6951. },
  6952. "type": "library",
  6953. "extra": {
  6954. "branch-alias": {
  6955. "dev-master": "3.4-dev"
  6956. }
  6957. },
  6958. "autoload": {
  6959. "psr-4": {
  6960. "Symfony\\Component\\ClassLoader\\": ""
  6961. },
  6962. "exclude-from-classmap": [
  6963. "/Tests/"
  6964. ]
  6965. },
  6966. "notification-url": "https://packagist.org/downloads/",
  6967. "license": [
  6968. "MIT"
  6969. ],
  6970. "authors": [
  6971. {
  6972. "name": "Fabien Potencier",
  6973. "email": "fabien@symfony.com"
  6974. },
  6975. {
  6976. "name": "Symfony Community",
  6977. "homepage": "https://symfony.com/contributors"
  6978. }
  6979. ],
  6980. "description": "Symfony ClassLoader Component",
  6981. "homepage": "https://symfony.com",
  6982. "time": "2019-01-16T09:39:14+00:00"
  6983. },
  6984. {
  6985. "name": "symfony/config",
  6986. "version": "v3.4.26",
  6987. "source": {
  6988. "type": "git",
  6989. "url": "https://github.com/symfony/config.git",
  6990. "reference": "177a276c01575253c95cefe0866e3d1b57637fe0"
  6991. },
  6992. "dist": {
  6993. "type": "zip",
  6994. "url": "https://api.github.com/repos/symfony/config/zipball/177a276c01575253c95cefe0866e3d1b57637fe0",
  6995. "reference": "177a276c01575253c95cefe0866e3d1b57637fe0",
  6996. "shasum": ""
  6997. },
  6998. "require": {
  6999. "php": "^5.5.9|>=7.0.8",
  7000. "symfony/filesystem": "~2.8|~3.0|~4.0",
  7001. "symfony/polyfill-ctype": "~1.8"
  7002. },
  7003. "conflict": {
  7004. "symfony/dependency-injection": "<3.3",
  7005. "symfony/finder": "<3.3"
  7006. },
  7007. "require-dev": {
  7008. "symfony/dependency-injection": "~3.3|~4.0",
  7009. "symfony/event-dispatcher": "~3.3|~4.0",
  7010. "symfony/finder": "~3.3|~4.0",
  7011. "symfony/yaml": "~3.0|~4.0"
  7012. },
  7013. "suggest": {
  7014. "symfony/yaml": "To use the yaml reference dumper"
  7015. },
  7016. "type": "library",
  7017. "extra": {
  7018. "branch-alias": {
  7019. "dev-master": "3.4-dev"
  7020. }
  7021. },
  7022. "autoload": {
  7023. "psr-4": {
  7024. "Symfony\\Component\\Config\\": ""
  7025. },
  7026. "exclude-from-classmap": [
  7027. "/Tests/"
  7028. ]
  7029. },
  7030. "notification-url": "https://packagist.org/downloads/",
  7031. "license": [
  7032. "MIT"
  7033. ],
  7034. "authors": [
  7035. {
  7036. "name": "Fabien Potencier",
  7037. "email": "fabien@symfony.com"
  7038. },
  7039. {
  7040. "name": "Symfony Community",
  7041. "homepage": "https://symfony.com/contributors"
  7042. }
  7043. ],
  7044. "description": "Symfony Config Component",
  7045. "homepage": "https://symfony.com",
  7046. "time": "2019-02-23T15:06:07+00:00"
  7047. },
  7048. {
  7049. "name": "symfony/console",
  7050. "version": "v3.4.26",
  7051. "source": {
  7052. "type": "git",
  7053. "url": "https://github.com/symfony/console.git",
  7054. "reference": "15a9104356436cb26e08adab97706654799d31d8"
  7055. },
  7056. "dist": {
  7057. "type": "zip",
  7058. "url": "https://api.github.com/repos/symfony/console/zipball/15a9104356436cb26e08adab97706654799d31d8",
  7059. "reference": "15a9104356436cb26e08adab97706654799d31d8",
  7060. "shasum": ""
  7061. },
  7062. "require": {
  7063. "php": "^5.5.9|>=7.0.8",
  7064. "symfony/debug": "~2.8|~3.0|~4.0",
  7065. "symfony/polyfill-mbstring": "~1.0"
  7066. },
  7067. "conflict": {
  7068. "symfony/dependency-injection": "<3.4",
  7069. "symfony/process": "<3.3"
  7070. },
  7071. "provide": {
  7072. "psr/log-implementation": "1.0"
  7073. },
  7074. "require-dev": {
  7075. "psr/log": "~1.0",
  7076. "symfony/config": "~3.3|~4.0",
  7077. "symfony/dependency-injection": "~3.4|~4.0",
  7078. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7079. "symfony/lock": "~3.4|~4.0",
  7080. "symfony/process": "~3.3|~4.0"
  7081. },
  7082. "suggest": {
  7083. "psr/log": "For using the console logger",
  7084. "symfony/event-dispatcher": "",
  7085. "symfony/lock": "",
  7086. "symfony/process": ""
  7087. },
  7088. "type": "library",
  7089. "extra": {
  7090. "branch-alias": {
  7091. "dev-master": "3.4-dev"
  7092. }
  7093. },
  7094. "autoload": {
  7095. "psr-4": {
  7096. "Symfony\\Component\\Console\\": ""
  7097. },
  7098. "exclude-from-classmap": [
  7099. "/Tests/"
  7100. ]
  7101. },
  7102. "notification-url": "https://packagist.org/downloads/",
  7103. "license": [
  7104. "MIT"
  7105. ],
  7106. "authors": [
  7107. {
  7108. "name": "Fabien Potencier",
  7109. "email": "fabien@symfony.com"
  7110. },
  7111. {
  7112. "name": "Symfony Community",
  7113. "homepage": "https://symfony.com/contributors"
  7114. }
  7115. ],
  7116. "description": "Symfony Console Component",
  7117. "homepage": "https://symfony.com",
  7118. "time": "2019-04-08T09:29:13+00:00"
  7119. },
  7120. {
  7121. "name": "symfony/css-selector",
  7122. "version": "v3.4.26",
  7123. "source": {
  7124. "type": "git",
  7125. "url": "https://github.com/symfony/css-selector.git",
  7126. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf"
  7127. },
  7128. "dist": {
  7129. "type": "zip",
  7130. "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  7131. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  7132. "shasum": ""
  7133. },
  7134. "require": {
  7135. "php": "^5.5.9|>=7.0.8"
  7136. },
  7137. "type": "library",
  7138. "extra": {
  7139. "branch-alias": {
  7140. "dev-master": "3.4-dev"
  7141. }
  7142. },
  7143. "autoload": {
  7144. "psr-4": {
  7145. "Symfony\\Component\\CssSelector\\": ""
  7146. },
  7147. "exclude-from-classmap": [
  7148. "/Tests/"
  7149. ]
  7150. },
  7151. "notification-url": "https://packagist.org/downloads/",
  7152. "license": [
  7153. "MIT"
  7154. ],
  7155. "authors": [
  7156. {
  7157. "name": "Jean-François Simon",
  7158. "email": "jeanfrancois.simon@sensiolabs.com"
  7159. },
  7160. {
  7161. "name": "Fabien Potencier",
  7162. "email": "fabien@symfony.com"
  7163. },
  7164. {
  7165. "name": "Symfony Community",
  7166. "homepage": "https://symfony.com/contributors"
  7167. }
  7168. ],
  7169. "description": "Symfony CssSelector Component",
  7170. "homepage": "https://symfony.com",
  7171. "time": "2019-01-16T09:39:14+00:00"
  7172. },
  7173. {
  7174. "name": "symfony/debug",
  7175. "version": "v3.4.26",
  7176. "source": {
  7177. "type": "git",
  7178. "url": "https://github.com/symfony/debug.git",
  7179. "reference": "681afbb26488903c5ac15e63734f1d8ac430c9b9"
  7180. },
  7181. "dist": {
  7182. "type": "zip",
  7183. "url": "https://api.github.com/repos/symfony/debug/zipball/681afbb26488903c5ac15e63734f1d8ac430c9b9",
  7184. "reference": "681afbb26488903c5ac15e63734f1d8ac430c9b9",
  7185. "shasum": ""
  7186. },
  7187. "require": {
  7188. "php": "^5.5.9|>=7.0.8",
  7189. "psr/log": "~1.0"
  7190. },
  7191. "conflict": {
  7192. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  7193. },
  7194. "require-dev": {
  7195. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  7196. },
  7197. "type": "library",
  7198. "extra": {
  7199. "branch-alias": {
  7200. "dev-master": "3.4-dev"
  7201. }
  7202. },
  7203. "autoload": {
  7204. "psr-4": {
  7205. "Symfony\\Component\\Debug\\": ""
  7206. },
  7207. "exclude-from-classmap": [
  7208. "/Tests/"
  7209. ]
  7210. },
  7211. "notification-url": "https://packagist.org/downloads/",
  7212. "license": [
  7213. "MIT"
  7214. ],
  7215. "authors": [
  7216. {
  7217. "name": "Fabien Potencier",
  7218. "email": "fabien@symfony.com"
  7219. },
  7220. {
  7221. "name": "Symfony Community",
  7222. "homepage": "https://symfony.com/contributors"
  7223. }
  7224. ],
  7225. "description": "Symfony Debug Component",
  7226. "homepage": "https://symfony.com",
  7227. "time": "2019-04-11T09:48:14+00:00"
  7228. },
  7229. {
  7230. "name": "symfony/dependency-injection",
  7231. "version": "v3.4.26",
  7232. "source": {
  7233. "type": "git",
  7234. "url": "https://github.com/symfony/dependency-injection.git",
  7235. "reference": "dee85a9148399cdb2731603802842bcfd8afe5ab"
  7236. },
  7237. "dist": {
  7238. "type": "zip",
  7239. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/dee85a9148399cdb2731603802842bcfd8afe5ab",
  7240. "reference": "dee85a9148399cdb2731603802842bcfd8afe5ab",
  7241. "shasum": ""
  7242. },
  7243. "require": {
  7244. "php": "^5.5.9|>=7.0.8",
  7245. "psr/container": "^1.0"
  7246. },
  7247. "conflict": {
  7248. "symfony/config": "<3.3.7",
  7249. "symfony/finder": "<3.3",
  7250. "symfony/proxy-manager-bridge": "<3.4",
  7251. "symfony/yaml": "<3.4"
  7252. },
  7253. "provide": {
  7254. "psr/container-implementation": "1.0"
  7255. },
  7256. "require-dev": {
  7257. "symfony/config": "~3.3|~4.0",
  7258. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7259. "symfony/yaml": "~3.4|~4.0"
  7260. },
  7261. "suggest": {
  7262. "symfony/config": "",
  7263. "symfony/expression-language": "For using expressions in service container configuration",
  7264. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  7265. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  7266. "symfony/yaml": ""
  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\\DependencyInjection\\": ""
  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 DependencyInjection Component",
  7297. "homepage": "https://symfony.com",
  7298. "time": "2019-04-16T11:13:42+00:00"
  7299. },
  7300. {
  7301. "name": "symfony/dom-crawler",
  7302. "version": "v3.4.26",
  7303. "source": {
  7304. "type": "git",
  7305. "url": "https://github.com/symfony/dom-crawler.git",
  7306. "reference": "d40023c057393fb25f7ca80af2a56ed948c45a09"
  7307. },
  7308. "dist": {
  7309. "type": "zip",
  7310. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/d40023c057393fb25f7ca80af2a56ed948c45a09",
  7311. "reference": "d40023c057393fb25f7ca80af2a56ed948c45a09",
  7312. "shasum": ""
  7313. },
  7314. "require": {
  7315. "php": "^5.5.9|>=7.0.8",
  7316. "symfony/polyfill-ctype": "~1.8",
  7317. "symfony/polyfill-mbstring": "~1.0"
  7318. },
  7319. "require-dev": {
  7320. "symfony/css-selector": "~2.8|~3.0|~4.0"
  7321. },
  7322. "suggest": {
  7323. "symfony/css-selector": ""
  7324. },
  7325. "type": "library",
  7326. "extra": {
  7327. "branch-alias": {
  7328. "dev-master": "3.4-dev"
  7329. }
  7330. },
  7331. "autoload": {
  7332. "psr-4": {
  7333. "Symfony\\Component\\DomCrawler\\": ""
  7334. },
  7335. "exclude-from-classmap": [
  7336. "/Tests/"
  7337. ]
  7338. },
  7339. "notification-url": "https://packagist.org/downloads/",
  7340. "license": [
  7341. "MIT"
  7342. ],
  7343. "authors": [
  7344. {
  7345. "name": "Fabien Potencier",
  7346. "email": "fabien@symfony.com"
  7347. },
  7348. {
  7349. "name": "Symfony Community",
  7350. "homepage": "https://symfony.com/contributors"
  7351. }
  7352. ],
  7353. "description": "Symfony DomCrawler Component",
  7354. "homepage": "https://symfony.com",
  7355. "time": "2019-02-23T15:06:07+00:00"
  7356. },
  7357. {
  7358. "name": "symfony/event-dispatcher",
  7359. "version": "v3.4.26",
  7360. "source": {
  7361. "type": "git",
  7362. "url": "https://github.com/symfony/event-dispatcher.git",
  7363. "reference": "a088aafcefb4eef2520a290ed82e4374092a6dff"
  7364. },
  7365. "dist": {
  7366. "type": "zip",
  7367. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a088aafcefb4eef2520a290ed82e4374092a6dff",
  7368. "reference": "a088aafcefb4eef2520a290ed82e4374092a6dff",
  7369. "shasum": ""
  7370. },
  7371. "require": {
  7372. "php": "^5.5.9|>=7.0.8"
  7373. },
  7374. "conflict": {
  7375. "symfony/dependency-injection": "<3.3"
  7376. },
  7377. "require-dev": {
  7378. "psr/log": "~1.0",
  7379. "symfony/config": "~2.8|~3.0|~4.0",
  7380. "symfony/dependency-injection": "~3.3|~4.0",
  7381. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7382. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  7383. },
  7384. "suggest": {
  7385. "symfony/dependency-injection": "",
  7386. "symfony/http-kernel": ""
  7387. },
  7388. "type": "library",
  7389. "extra": {
  7390. "branch-alias": {
  7391. "dev-master": "3.4-dev"
  7392. }
  7393. },
  7394. "autoload": {
  7395. "psr-4": {
  7396. "Symfony\\Component\\EventDispatcher\\": ""
  7397. },
  7398. "exclude-from-classmap": [
  7399. "/Tests/"
  7400. ]
  7401. },
  7402. "notification-url": "https://packagist.org/downloads/",
  7403. "license": [
  7404. "MIT"
  7405. ],
  7406. "authors": [
  7407. {
  7408. "name": "Fabien Potencier",
  7409. "email": "fabien@symfony.com"
  7410. },
  7411. {
  7412. "name": "Symfony Community",
  7413. "homepage": "https://symfony.com/contributors"
  7414. }
  7415. ],
  7416. "description": "Symfony EventDispatcher Component",
  7417. "homepage": "https://symfony.com",
  7418. "time": "2019-04-02T08:51:52+00:00"
  7419. },
  7420. {
  7421. "name": "symfony/filesystem",
  7422. "version": "v3.4.26",
  7423. "source": {
  7424. "type": "git",
  7425. "url": "https://github.com/symfony/filesystem.git",
  7426. "reference": "acf99758b1df8e9295e6b85aa69f294565c9fedb"
  7427. },
  7428. "dist": {
  7429. "type": "zip",
  7430. "url": "https://api.github.com/repos/symfony/filesystem/zipball/acf99758b1df8e9295e6b85aa69f294565c9fedb",
  7431. "reference": "acf99758b1df8e9295e6b85aa69f294565c9fedb",
  7432. "shasum": ""
  7433. },
  7434. "require": {
  7435. "php": "^5.5.9|>=7.0.8",
  7436. "symfony/polyfill-ctype": "~1.8"
  7437. },
  7438. "type": "library",
  7439. "extra": {
  7440. "branch-alias": {
  7441. "dev-master": "3.4-dev"
  7442. }
  7443. },
  7444. "autoload": {
  7445. "psr-4": {
  7446. "Symfony\\Component\\Filesystem\\": ""
  7447. },
  7448. "exclude-from-classmap": [
  7449. "/Tests/"
  7450. ]
  7451. },
  7452. "notification-url": "https://packagist.org/downloads/",
  7453. "license": [
  7454. "MIT"
  7455. ],
  7456. "authors": [
  7457. {
  7458. "name": "Fabien Potencier",
  7459. "email": "fabien@symfony.com"
  7460. },
  7461. {
  7462. "name": "Symfony Community",
  7463. "homepage": "https://symfony.com/contributors"
  7464. }
  7465. ],
  7466. "description": "Symfony Filesystem Component",
  7467. "homepage": "https://symfony.com",
  7468. "time": "2019-02-04T21:34:32+00:00"
  7469. },
  7470. {
  7471. "name": "symfony/finder",
  7472. "version": "v3.4.26",
  7473. "source": {
  7474. "type": "git",
  7475. "url": "https://github.com/symfony/finder.git",
  7476. "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98"
  7477. },
  7478. "dist": {
  7479. "type": "zip",
  7480. "url": "https://api.github.com/repos/symfony/finder/zipball/61af5ce0b34b942d414fe8f1b11950d0e9a90e98",
  7481. "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98",
  7482. "shasum": ""
  7483. },
  7484. "require": {
  7485. "php": "^5.5.9|>=7.0.8"
  7486. },
  7487. "type": "library",
  7488. "extra": {
  7489. "branch-alias": {
  7490. "dev-master": "3.4-dev"
  7491. }
  7492. },
  7493. "autoload": {
  7494. "psr-4": {
  7495. "Symfony\\Component\\Finder\\": ""
  7496. },
  7497. "exclude-from-classmap": [
  7498. "/Tests/"
  7499. ]
  7500. },
  7501. "notification-url": "https://packagist.org/downloads/",
  7502. "license": [
  7503. "MIT"
  7504. ],
  7505. "authors": [
  7506. {
  7507. "name": "Fabien Potencier",
  7508. "email": "fabien@symfony.com"
  7509. },
  7510. {
  7511. "name": "Symfony Community",
  7512. "homepage": "https://symfony.com/contributors"
  7513. }
  7514. ],
  7515. "description": "Symfony Finder Component",
  7516. "homepage": "https://symfony.com",
  7517. "time": "2019-04-02T19:54:57+00:00"
  7518. },
  7519. {
  7520. "name": "symfony/http-foundation",
  7521. "version": "v3.4.26",
  7522. "source": {
  7523. "type": "git",
  7524. "url": "https://github.com/symfony/http-foundation.git",
  7525. "reference": "90454ad44c95d75faf3507d56388056001b74baf"
  7526. },
  7527. "dist": {
  7528. "type": "zip",
  7529. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/90454ad44c95d75faf3507d56388056001b74baf",
  7530. "reference": "90454ad44c95d75faf3507d56388056001b74baf",
  7531. "shasum": ""
  7532. },
  7533. "require": {
  7534. "php": "^5.5.9|>=7.0.8",
  7535. "symfony/polyfill-mbstring": "~1.1",
  7536. "symfony/polyfill-php70": "~1.6"
  7537. },
  7538. "require-dev": {
  7539. "symfony/expression-language": "~2.8|~3.0|~4.0"
  7540. },
  7541. "type": "library",
  7542. "extra": {
  7543. "branch-alias": {
  7544. "dev-master": "3.4-dev"
  7545. }
  7546. },
  7547. "autoload": {
  7548. "psr-4": {
  7549. "Symfony\\Component\\HttpFoundation\\": ""
  7550. },
  7551. "exclude-from-classmap": [
  7552. "/Tests/"
  7553. ]
  7554. },
  7555. "notification-url": "https://packagist.org/downloads/",
  7556. "license": [
  7557. "MIT"
  7558. ],
  7559. "authors": [
  7560. {
  7561. "name": "Fabien Potencier",
  7562. "email": "fabien@symfony.com"
  7563. },
  7564. {
  7565. "name": "Symfony Community",
  7566. "homepage": "https://symfony.com/contributors"
  7567. }
  7568. ],
  7569. "description": "Symfony HttpFoundation Component",
  7570. "homepage": "https://symfony.com",
  7571. "time": "2019-04-17T14:51:18+00:00"
  7572. },
  7573. {
  7574. "name": "symfony/http-kernel",
  7575. "version": "v3.4.26",
  7576. "source": {
  7577. "type": "git",
  7578. "url": "https://github.com/symfony/http-kernel.git",
  7579. "reference": "14fa41ccd38570b5e3120a3754bbaa144a15f311"
  7580. },
  7581. "dist": {
  7582. "type": "zip",
  7583. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/14fa41ccd38570b5e3120a3754bbaa144a15f311",
  7584. "reference": "14fa41ccd38570b5e3120a3754bbaa144a15f311",
  7585. "shasum": ""
  7586. },
  7587. "require": {
  7588. "php": "^5.5.9|>=7.0.8",
  7589. "psr/log": "~1.0",
  7590. "symfony/debug": "^3.3.3|~4.0",
  7591. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  7592. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  7593. "symfony/polyfill-ctype": "~1.8"
  7594. },
  7595. "conflict": {
  7596. "symfony/config": "<2.8",
  7597. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  7598. "symfony/var-dumper": "<3.3",
  7599. "twig/twig": "<1.34|<2.4,>=2"
  7600. },
  7601. "provide": {
  7602. "psr/log-implementation": "1.0"
  7603. },
  7604. "require-dev": {
  7605. "psr/cache": "~1.0",
  7606. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  7607. "symfony/class-loader": "~2.8|~3.0",
  7608. "symfony/config": "~2.8|~3.0|~4.0",
  7609. "symfony/console": "~2.8|~3.0|~4.0",
  7610. "symfony/css-selector": "~2.8|~3.0|~4.0",
  7611. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  7612. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  7613. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7614. "symfony/finder": "~2.8|~3.0|~4.0",
  7615. "symfony/process": "~2.8|~3.0|~4.0",
  7616. "symfony/routing": "~3.4|~4.0",
  7617. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  7618. "symfony/templating": "~2.8|~3.0|~4.0",
  7619. "symfony/translation": "~2.8|~3.0|~4.0",
  7620. "symfony/var-dumper": "~3.3|~4.0"
  7621. },
  7622. "suggest": {
  7623. "symfony/browser-kit": "",
  7624. "symfony/config": "",
  7625. "symfony/console": "",
  7626. "symfony/dependency-injection": "",
  7627. "symfony/finder": "",
  7628. "symfony/var-dumper": ""
  7629. },
  7630. "type": "library",
  7631. "extra": {
  7632. "branch-alias": {
  7633. "dev-master": "3.4-dev"
  7634. }
  7635. },
  7636. "autoload": {
  7637. "psr-4": {
  7638. "Symfony\\Component\\HttpKernel\\": ""
  7639. },
  7640. "exclude-from-classmap": [
  7641. "/Tests/"
  7642. ]
  7643. },
  7644. "notification-url": "https://packagist.org/downloads/",
  7645. "license": [
  7646. "MIT"
  7647. ],
  7648. "authors": [
  7649. {
  7650. "name": "Fabien Potencier",
  7651. "email": "fabien@symfony.com"
  7652. },
  7653. {
  7654. "name": "Symfony Community",
  7655. "homepage": "https://symfony.com/contributors"
  7656. }
  7657. ],
  7658. "description": "Symfony HttpKernel Component",
  7659. "homepage": "https://symfony.com",
  7660. "time": "2019-04-17T15:57:07+00:00"
  7661. },
  7662. {
  7663. "name": "symfony/polyfill-ctype",
  7664. "version": "v1.11.0",
  7665. "source": {
  7666. "type": "git",
  7667. "url": "https://github.com/symfony/polyfill-ctype.git",
  7668. "reference": "82ebae02209c21113908c229e9883c419720738a"
  7669. },
  7670. "dist": {
  7671. "type": "zip",
  7672. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  7673. "reference": "82ebae02209c21113908c229e9883c419720738a",
  7674. "shasum": ""
  7675. },
  7676. "require": {
  7677. "php": ">=5.3.3"
  7678. },
  7679. "suggest": {
  7680. "ext-ctype": "For best performance"
  7681. },
  7682. "type": "library",
  7683. "extra": {
  7684. "branch-alias": {
  7685. "dev-master": "1.11-dev"
  7686. }
  7687. },
  7688. "autoload": {
  7689. "psr-4": {
  7690. "Symfony\\Polyfill\\Ctype\\": ""
  7691. },
  7692. "files": [
  7693. "bootstrap.php"
  7694. ]
  7695. },
  7696. "notification-url": "https://packagist.org/downloads/",
  7697. "license": [
  7698. "MIT"
  7699. ],
  7700. "authors": [
  7701. {
  7702. "name": "Symfony Community",
  7703. "homepage": "https://symfony.com/contributors"
  7704. },
  7705. {
  7706. "name": "Gert de Pagter",
  7707. "email": "BackEndTea@gmail.com"
  7708. }
  7709. ],
  7710. "description": "Symfony polyfill for ctype functions",
  7711. "homepage": "https://symfony.com",
  7712. "keywords": [
  7713. "compatibility",
  7714. "ctype",
  7715. "polyfill",
  7716. "portable"
  7717. ],
  7718. "time": "2019-02-06T07:57:58+00:00"
  7719. },
  7720. {
  7721. "name": "symfony/polyfill-iconv",
  7722. "version": "v1.11.0",
  7723. "source": {
  7724. "type": "git",
  7725. "url": "https://github.com/symfony/polyfill-iconv.git",
  7726. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7"
  7727. },
  7728. "dist": {
  7729. "type": "zip",
  7730. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  7731. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  7732. "shasum": ""
  7733. },
  7734. "require": {
  7735. "php": ">=5.3.3"
  7736. },
  7737. "suggest": {
  7738. "ext-iconv": "For best performance"
  7739. },
  7740. "type": "library",
  7741. "extra": {
  7742. "branch-alias": {
  7743. "dev-master": "1.11-dev"
  7744. }
  7745. },
  7746. "autoload": {
  7747. "psr-4": {
  7748. "Symfony\\Polyfill\\Iconv\\": ""
  7749. },
  7750. "files": [
  7751. "bootstrap.php"
  7752. ]
  7753. },
  7754. "notification-url": "https://packagist.org/downloads/",
  7755. "license": [
  7756. "MIT"
  7757. ],
  7758. "authors": [
  7759. {
  7760. "name": "Nicolas Grekas",
  7761. "email": "p@tchwork.com"
  7762. },
  7763. {
  7764. "name": "Symfony Community",
  7765. "homepage": "https://symfony.com/contributors"
  7766. }
  7767. ],
  7768. "description": "Symfony polyfill for the Iconv extension",
  7769. "homepage": "https://symfony.com",
  7770. "keywords": [
  7771. "compatibility",
  7772. "iconv",
  7773. "polyfill",
  7774. "portable",
  7775. "shim"
  7776. ],
  7777. "time": "2019-02-06T07:57:58+00:00"
  7778. },
  7779. {
  7780. "name": "symfony/polyfill-mbstring",
  7781. "version": "v1.11.0",
  7782. "source": {
  7783. "type": "git",
  7784. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7785. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  7786. },
  7787. "dist": {
  7788. "type": "zip",
  7789. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  7790. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  7791. "shasum": ""
  7792. },
  7793. "require": {
  7794. "php": ">=5.3.3"
  7795. },
  7796. "suggest": {
  7797. "ext-mbstring": "For best performance"
  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\\Mbstring\\": ""
  7808. },
  7809. "files": [
  7810. "bootstrap.php"
  7811. ]
  7812. },
  7813. "notification-url": "https://packagist.org/downloads/",
  7814. "license": [
  7815. "MIT"
  7816. ],
  7817. "authors": [
  7818. {
  7819. "name": "Nicolas Grekas",
  7820. "email": "p@tchwork.com"
  7821. },
  7822. {
  7823. "name": "Symfony Community",
  7824. "homepage": "https://symfony.com/contributors"
  7825. }
  7826. ],
  7827. "description": "Symfony polyfill for the Mbstring extension",
  7828. "homepage": "https://symfony.com",
  7829. "keywords": [
  7830. "compatibility",
  7831. "mbstring",
  7832. "polyfill",
  7833. "portable",
  7834. "shim"
  7835. ],
  7836. "time": "2019-02-06T07:57:58+00:00"
  7837. },
  7838. {
  7839. "name": "symfony/polyfill-php70",
  7840. "version": "v1.11.0",
  7841. "source": {
  7842. "type": "git",
  7843. "url": "https://github.com/symfony/polyfill-php70.git",
  7844. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  7845. },
  7846. "dist": {
  7847. "type": "zip",
  7848. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  7849. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  7850. "shasum": ""
  7851. },
  7852. "require": {
  7853. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  7854. "php": ">=5.3.3"
  7855. },
  7856. "type": "library",
  7857. "extra": {
  7858. "branch-alias": {
  7859. "dev-master": "1.11-dev"
  7860. }
  7861. },
  7862. "autoload": {
  7863. "psr-4": {
  7864. "Symfony\\Polyfill\\Php70\\": ""
  7865. },
  7866. "files": [
  7867. "bootstrap.php"
  7868. ],
  7869. "classmap": [
  7870. "Resources/stubs"
  7871. ]
  7872. },
  7873. "notification-url": "https://packagist.org/downloads/",
  7874. "license": [
  7875. "MIT"
  7876. ],
  7877. "authors": [
  7878. {
  7879. "name": "Nicolas Grekas",
  7880. "email": "p@tchwork.com"
  7881. },
  7882. {
  7883. "name": "Symfony Community",
  7884. "homepage": "https://symfony.com/contributors"
  7885. }
  7886. ],
  7887. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  7888. "homepage": "https://symfony.com",
  7889. "keywords": [
  7890. "compatibility",
  7891. "polyfill",
  7892. "portable",
  7893. "shim"
  7894. ],
  7895. "time": "2019-02-06T07:57:58+00:00"
  7896. },
  7897. {
  7898. "name": "symfony/process",
  7899. "version": "v3.4.26",
  7900. "source": {
  7901. "type": "git",
  7902. "url": "https://github.com/symfony/process.git",
  7903. "reference": "a9c4dfbf653023b668c282e4e02609d131f4057a"
  7904. },
  7905. "dist": {
  7906. "type": "zip",
  7907. "url": "https://api.github.com/repos/symfony/process/zipball/a9c4dfbf653023b668c282e4e02609d131f4057a",
  7908. "reference": "a9c4dfbf653023b668c282e4e02609d131f4057a",
  7909. "shasum": ""
  7910. },
  7911. "require": {
  7912. "php": "^5.5.9|>=7.0.8"
  7913. },
  7914. "type": "library",
  7915. "extra": {
  7916. "branch-alias": {
  7917. "dev-master": "3.4-dev"
  7918. }
  7919. },
  7920. "autoload": {
  7921. "psr-4": {
  7922. "Symfony\\Component\\Process\\": ""
  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": "Fabien Potencier",
  7935. "email": "fabien@symfony.com"
  7936. },
  7937. {
  7938. "name": "Symfony Community",
  7939. "homepage": "https://symfony.com/contributors"
  7940. }
  7941. ],
  7942. "description": "Symfony Process Component",
  7943. "homepage": "https://symfony.com",
  7944. "time": "2019-04-08T16:15:54+00:00"
  7945. },
  7946. {
  7947. "name": "symfony/psr-http-message-bridge",
  7948. "version": "v1.1.2",
  7949. "source": {
  7950. "type": "git",
  7951. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7952. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  7953. },
  7954. "dist": {
  7955. "type": "zip",
  7956. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  7957. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  7958. "shasum": ""
  7959. },
  7960. "require": {
  7961. "php": "^5.3.3 || ^7.0",
  7962. "psr/http-message": "^1.0",
  7963. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  7964. },
  7965. "require-dev": {
  7966. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  7967. },
  7968. "suggest": {
  7969. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7970. },
  7971. "type": "symfony-bridge",
  7972. "extra": {
  7973. "branch-alias": {
  7974. "dev-master": "1.1-dev"
  7975. }
  7976. },
  7977. "autoload": {
  7978. "psr-4": {
  7979. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7980. },
  7981. "exclude-from-classmap": [
  7982. "/Tests/"
  7983. ]
  7984. },
  7985. "notification-url": "https://packagist.org/downloads/",
  7986. "license": [
  7987. "MIT"
  7988. ],
  7989. "authors": [
  7990. {
  7991. "name": "Symfony Community",
  7992. "homepage": "http://symfony.com/contributors"
  7993. },
  7994. {
  7995. "name": "Fabien Potencier",
  7996. "email": "fabien@symfony.com"
  7997. }
  7998. ],
  7999. "description": "PSR HTTP message bridge",
  8000. "homepage": "http://symfony.com",
  8001. "keywords": [
  8002. "http",
  8003. "http-message",
  8004. "psr-17",
  8005. "psr-7"
  8006. ],
  8007. "time": "2019-04-03T17:09:40+00:00"
  8008. },
  8009. {
  8010. "name": "symfony/routing",
  8011. "version": "v3.4.26",
  8012. "source": {
  8013. "type": "git",
  8014. "url": "https://github.com/symfony/routing.git",
  8015. "reference": "ff11aac46d6cb8a65f2855687bb9a1ac9d860eec"
  8016. },
  8017. "dist": {
  8018. "type": "zip",
  8019. "url": "https://api.github.com/repos/symfony/routing/zipball/ff11aac46d6cb8a65f2855687bb9a1ac9d860eec",
  8020. "reference": "ff11aac46d6cb8a65f2855687bb9a1ac9d860eec",
  8021. "shasum": ""
  8022. },
  8023. "require": {
  8024. "php": "^5.5.9|>=7.0.8"
  8025. },
  8026. "conflict": {
  8027. "symfony/config": "<3.3.1",
  8028. "symfony/dependency-injection": "<3.3",
  8029. "symfony/yaml": "<3.4"
  8030. },
  8031. "require-dev": {
  8032. "doctrine/annotations": "~1.0",
  8033. "psr/log": "~1.0",
  8034. "symfony/config": "^3.3.1|~4.0",
  8035. "symfony/dependency-injection": "~3.3|~4.0",
  8036. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8037. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8038. "symfony/yaml": "~3.4|~4.0"
  8039. },
  8040. "suggest": {
  8041. "doctrine/annotations": "For using the annotation loader",
  8042. "symfony/config": "For using the all-in-one router or any loader",
  8043. "symfony/expression-language": "For using expression matching",
  8044. "symfony/http-foundation": "For using a Symfony Request object",
  8045. "symfony/yaml": "For using the YAML loader"
  8046. },
  8047. "type": "library",
  8048. "extra": {
  8049. "branch-alias": {
  8050. "dev-master": "3.4-dev"
  8051. }
  8052. },
  8053. "autoload": {
  8054. "psr-4": {
  8055. "Symfony\\Component\\Routing\\": ""
  8056. },
  8057. "exclude-from-classmap": [
  8058. "/Tests/"
  8059. ]
  8060. },
  8061. "notification-url": "https://packagist.org/downloads/",
  8062. "license": [
  8063. "MIT"
  8064. ],
  8065. "authors": [
  8066. {
  8067. "name": "Fabien Potencier",
  8068. "email": "fabien@symfony.com"
  8069. },
  8070. {
  8071. "name": "Symfony Community",
  8072. "homepage": "https://symfony.com/contributors"
  8073. }
  8074. ],
  8075. "description": "Symfony Routing Component",
  8076. "homepage": "https://symfony.com",
  8077. "keywords": [
  8078. "router",
  8079. "routing",
  8080. "uri",
  8081. "url"
  8082. ],
  8083. "time": "2019-03-29T21:58:42+00:00"
  8084. },
  8085. {
  8086. "name": "symfony/serializer",
  8087. "version": "v3.4.26",
  8088. "source": {
  8089. "type": "git",
  8090. "url": "https://github.com/symfony/serializer.git",
  8091. "reference": "14b3221cc41dcfef404205f0060cda873f43a534"
  8092. },
  8093. "dist": {
  8094. "type": "zip",
  8095. "url": "https://api.github.com/repos/symfony/serializer/zipball/14b3221cc41dcfef404205f0060cda873f43a534",
  8096. "reference": "14b3221cc41dcfef404205f0060cda873f43a534",
  8097. "shasum": ""
  8098. },
  8099. "require": {
  8100. "php": "^5.5.9|>=7.0.8",
  8101. "symfony/polyfill-ctype": "~1.8"
  8102. },
  8103. "conflict": {
  8104. "phpdocumentor/type-resolver": "<0.2.1",
  8105. "symfony/dependency-injection": "<3.2",
  8106. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  8107. "symfony/property-info": "<3.1",
  8108. "symfony/yaml": "<3.4"
  8109. },
  8110. "require-dev": {
  8111. "doctrine/annotations": "~1.0",
  8112. "doctrine/cache": "~1.0",
  8113. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  8114. "symfony/cache": "~3.1|~4.0",
  8115. "symfony/config": "~2.8|~3.0|~4.0",
  8116. "symfony/dependency-injection": "~3.2|~4.0",
  8117. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8118. "symfony/property-access": "~2.8|~3.0|~4.0",
  8119. "symfony/property-info": "~3.1|~4.0",
  8120. "symfony/yaml": "~3.4|~4.0"
  8121. },
  8122. "suggest": {
  8123. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8124. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8125. "psr/cache-implementation": "For using the metadata cache.",
  8126. "symfony/config": "For using the XML mapping loader.",
  8127. "symfony/http-foundation": "To use the DataUriNormalizer.",
  8128. "symfony/property-access": "For using the ObjectNormalizer.",
  8129. "symfony/property-info": "To deserialize relations.",
  8130. "symfony/yaml": "For using the default YAML mapping loader."
  8131. },
  8132. "type": "library",
  8133. "extra": {
  8134. "branch-alias": {
  8135. "dev-master": "3.4-dev"
  8136. }
  8137. },
  8138. "autoload": {
  8139. "psr-4": {
  8140. "Symfony\\Component\\Serializer\\": ""
  8141. },
  8142. "exclude-from-classmap": [
  8143. "/Tests/"
  8144. ]
  8145. },
  8146. "notification-url": "https://packagist.org/downloads/",
  8147. "license": [
  8148. "MIT"
  8149. ],
  8150. "authors": [
  8151. {
  8152. "name": "Fabien Potencier",
  8153. "email": "fabien@symfony.com"
  8154. },
  8155. {
  8156. "name": "Symfony Community",
  8157. "homepage": "https://symfony.com/contributors"
  8158. }
  8159. ],
  8160. "description": "Symfony Serializer Component",
  8161. "homepage": "https://symfony.com",
  8162. "time": "2019-04-11T05:44:34+00:00"
  8163. },
  8164. {
  8165. "name": "symfony/translation",
  8166. "version": "v3.4.26",
  8167. "source": {
  8168. "type": "git",
  8169. "url": "https://github.com/symfony/translation.git",
  8170. "reference": "aae26f143da71adc8707eb489f1dc86aef7d376b"
  8171. },
  8172. "dist": {
  8173. "type": "zip",
  8174. "url": "https://api.github.com/repos/symfony/translation/zipball/aae26f143da71adc8707eb489f1dc86aef7d376b",
  8175. "reference": "aae26f143da71adc8707eb489f1dc86aef7d376b",
  8176. "shasum": ""
  8177. },
  8178. "require": {
  8179. "php": "^5.5.9|>=7.0.8",
  8180. "symfony/polyfill-mbstring": "~1.0"
  8181. },
  8182. "conflict": {
  8183. "symfony/config": "<2.8",
  8184. "symfony/dependency-injection": "<3.4",
  8185. "symfony/yaml": "<3.4"
  8186. },
  8187. "require-dev": {
  8188. "psr/log": "~1.0",
  8189. "symfony/config": "~2.8|~3.0|~4.0",
  8190. "symfony/dependency-injection": "~3.4|~4.0",
  8191. "symfony/finder": "~2.8|~3.0|~4.0",
  8192. "symfony/http-kernel": "~3.4|~4.0",
  8193. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8194. "symfony/var-dumper": "~3.4|~4.0",
  8195. "symfony/yaml": "~3.4|~4.0"
  8196. },
  8197. "suggest": {
  8198. "psr/log-implementation": "To use logging capability in translator",
  8199. "symfony/config": "",
  8200. "symfony/yaml": ""
  8201. },
  8202. "type": "library",
  8203. "extra": {
  8204. "branch-alias": {
  8205. "dev-master": "3.4-dev"
  8206. }
  8207. },
  8208. "autoload": {
  8209. "psr-4": {
  8210. "Symfony\\Component\\Translation\\": ""
  8211. },
  8212. "exclude-from-classmap": [
  8213. "/Tests/"
  8214. ]
  8215. },
  8216. "notification-url": "https://packagist.org/downloads/",
  8217. "license": [
  8218. "MIT"
  8219. ],
  8220. "authors": [
  8221. {
  8222. "name": "Fabien Potencier",
  8223. "email": "fabien@symfony.com"
  8224. },
  8225. {
  8226. "name": "Symfony Community",
  8227. "homepage": "https://symfony.com/contributors"
  8228. }
  8229. ],
  8230. "description": "Symfony Translation Component",
  8231. "homepage": "https://symfony.com",
  8232. "time": "2019-04-10T16:00:48+00:00"
  8233. },
  8234. {
  8235. "name": "symfony/validator",
  8236. "version": "v3.4.26",
  8237. "source": {
  8238. "type": "git",
  8239. "url": "https://github.com/symfony/validator.git",
  8240. "reference": "83da5259779aaf9dde220130e62b785f74e2ac49"
  8241. },
  8242. "dist": {
  8243. "type": "zip",
  8244. "url": "https://api.github.com/repos/symfony/validator/zipball/83da5259779aaf9dde220130e62b785f74e2ac49",
  8245. "reference": "83da5259779aaf9dde220130e62b785f74e2ac49",
  8246. "shasum": ""
  8247. },
  8248. "require": {
  8249. "php": "^5.5.9|>=7.0.8",
  8250. "symfony/polyfill-ctype": "~1.8",
  8251. "symfony/polyfill-mbstring": "~1.0",
  8252. "symfony/translation": "~2.8|~3.0|~4.0"
  8253. },
  8254. "conflict": {
  8255. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8256. "symfony/dependency-injection": "<3.3",
  8257. "symfony/http-kernel": "<3.3.5",
  8258. "symfony/yaml": "<3.4"
  8259. },
  8260. "require-dev": {
  8261. "doctrine/annotations": "~1.0",
  8262. "doctrine/cache": "~1.0",
  8263. "egulias/email-validator": "^1.2.8|~2.0",
  8264. "symfony/cache": "~3.1|~4.0",
  8265. "symfony/config": "~2.8|~3.0|~4.0",
  8266. "symfony/dependency-injection": "~3.3|~4.0",
  8267. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8268. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  8269. "symfony/http-kernel": "^3.3.5|~4.0",
  8270. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  8271. "symfony/property-access": "~2.8|~3.0|~4.0",
  8272. "symfony/var-dumper": "~3.3|~4.0",
  8273. "symfony/yaml": "~3.4|~4.0"
  8274. },
  8275. "suggest": {
  8276. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  8277. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  8278. "egulias/email-validator": "Strict (RFC compliant) email validation",
  8279. "psr/cache-implementation": "For using the metadata cache.",
  8280. "symfony/config": "",
  8281. "symfony/expression-language": "For using the Expression validator",
  8282. "symfony/http-foundation": "",
  8283. "symfony/intl": "",
  8284. "symfony/property-access": "For accessing properties within comparison constraints",
  8285. "symfony/yaml": ""
  8286. },
  8287. "type": "library",
  8288. "extra": {
  8289. "branch-alias": {
  8290. "dev-master": "3.4-dev"
  8291. }
  8292. },
  8293. "autoload": {
  8294. "psr-4": {
  8295. "Symfony\\Component\\Validator\\": ""
  8296. },
  8297. "exclude-from-classmap": [
  8298. "/Tests/"
  8299. ]
  8300. },
  8301. "notification-url": "https://packagist.org/downloads/",
  8302. "license": [
  8303. "MIT"
  8304. ],
  8305. "authors": [
  8306. {
  8307. "name": "Fabien Potencier",
  8308. "email": "fabien@symfony.com"
  8309. },
  8310. {
  8311. "name": "Symfony Community",
  8312. "homepage": "https://symfony.com/contributors"
  8313. }
  8314. ],
  8315. "description": "Symfony Validator Component",
  8316. "homepage": "https://symfony.com",
  8317. "time": "2019-04-16T11:21:44+00:00"
  8318. },
  8319. {
  8320. "name": "symfony/var-dumper",
  8321. "version": "v3.4.26",
  8322. "source": {
  8323. "type": "git",
  8324. "url": "https://github.com/symfony/var-dumper.git",
  8325. "reference": "f0883812642a6d6583a9e2ae6aec4ba134436f40"
  8326. },
  8327. "dist": {
  8328. "type": "zip",
  8329. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f0883812642a6d6583a9e2ae6aec4ba134436f40",
  8330. "reference": "f0883812642a6d6583a9e2ae6aec4ba134436f40",
  8331. "shasum": ""
  8332. },
  8333. "require": {
  8334. "php": "^5.5.9|>=7.0.8",
  8335. "symfony/polyfill-mbstring": "~1.0"
  8336. },
  8337. "conflict": {
  8338. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  8339. },
  8340. "require-dev": {
  8341. "ext-iconv": "*",
  8342. "twig/twig": "~1.34|~2.4"
  8343. },
  8344. "suggest": {
  8345. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8346. "ext-intl": "To show region name in time zone dump",
  8347. "ext-symfony_debug": ""
  8348. },
  8349. "type": "library",
  8350. "extra": {
  8351. "branch-alias": {
  8352. "dev-master": "3.4-dev"
  8353. }
  8354. },
  8355. "autoload": {
  8356. "files": [
  8357. "Resources/functions/dump.php"
  8358. ],
  8359. "psr-4": {
  8360. "Symfony\\Component\\VarDumper\\": ""
  8361. },
  8362. "exclude-from-classmap": [
  8363. "/Tests/"
  8364. ]
  8365. },
  8366. "notification-url": "https://packagist.org/downloads/",
  8367. "license": [
  8368. "MIT"
  8369. ],
  8370. "authors": [
  8371. {
  8372. "name": "Nicolas Grekas",
  8373. "email": "p@tchwork.com"
  8374. },
  8375. {
  8376. "name": "Symfony Community",
  8377. "homepage": "https://symfony.com/contributors"
  8378. }
  8379. ],
  8380. "description": "Symfony mechanism for exploring and dumping PHP variables",
  8381. "homepage": "https://symfony.com",
  8382. "keywords": [
  8383. "debug",
  8384. "dump"
  8385. ],
  8386. "time": "2019-04-16T13:58:17+00:00"
  8387. },
  8388. {
  8389. "name": "symfony/yaml",
  8390. "version": "v3.4.26",
  8391. "source": {
  8392. "type": "git",
  8393. "url": "https://github.com/symfony/yaml.git",
  8394. "reference": "212a27b731e5bfb735679d1ffaac82bd6a1dc996"
  8395. },
  8396. "dist": {
  8397. "type": "zip",
  8398. "url": "https://api.github.com/repos/symfony/yaml/zipball/212a27b731e5bfb735679d1ffaac82bd6a1dc996",
  8399. "reference": "212a27b731e5bfb735679d1ffaac82bd6a1dc996",
  8400. "shasum": ""
  8401. },
  8402. "require": {
  8403. "php": "^5.5.9|>=7.0.8",
  8404. "symfony/polyfill-ctype": "~1.8"
  8405. },
  8406. "conflict": {
  8407. "symfony/console": "<3.4"
  8408. },
  8409. "require-dev": {
  8410. "symfony/console": "~3.4|~4.0"
  8411. },
  8412. "suggest": {
  8413. "symfony/console": "For validating YAML files using the lint command"
  8414. },
  8415. "type": "library",
  8416. "extra": {
  8417. "branch-alias": {
  8418. "dev-master": "3.4-dev"
  8419. }
  8420. },
  8421. "autoload": {
  8422. "psr-4": {
  8423. "Symfony\\Component\\Yaml\\": ""
  8424. },
  8425. "exclude-from-classmap": [
  8426. "/Tests/"
  8427. ]
  8428. },
  8429. "notification-url": "https://packagist.org/downloads/",
  8430. "license": [
  8431. "MIT"
  8432. ],
  8433. "authors": [
  8434. {
  8435. "name": "Fabien Potencier",
  8436. "email": "fabien@symfony.com"
  8437. },
  8438. {
  8439. "name": "Symfony Community",
  8440. "homepage": "https://symfony.com/contributors"
  8441. }
  8442. ],
  8443. "description": "Symfony Yaml Component",
  8444. "homepage": "https://symfony.com",
  8445. "time": "2019-03-25T07:48:46+00:00"
  8446. },
  8447. {
  8448. "name": "twig/twig",
  8449. "version": "v1.40.1",
  8450. "source": {
  8451. "type": "git",
  8452. "url": "https://github.com/twigphp/Twig.git",
  8453. "reference": "35889516bbd6bbe46a600c2c33b03515df4a076e"
  8454. },
  8455. "dist": {
  8456. "type": "zip",
  8457. "url": "https://api.github.com/repos/twigphp/Twig/zipball/35889516bbd6bbe46a600c2c33b03515df4a076e",
  8458. "reference": "35889516bbd6bbe46a600c2c33b03515df4a076e",
  8459. "shasum": ""
  8460. },
  8461. "require": {
  8462. "php": ">=5.4.0",
  8463. "symfony/polyfill-ctype": "^1.8"
  8464. },
  8465. "require-dev": {
  8466. "psr/container": "^1.0",
  8467. "symfony/debug": "^2.7",
  8468. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  8469. },
  8470. "type": "library",
  8471. "extra": {
  8472. "branch-alias": {
  8473. "dev-master": "1.40-dev"
  8474. }
  8475. },
  8476. "autoload": {
  8477. "psr-0": {
  8478. "Twig_": "lib/"
  8479. },
  8480. "psr-4": {
  8481. "Twig\\": "src/"
  8482. }
  8483. },
  8484. "notification-url": "https://packagist.org/downloads/",
  8485. "license": [
  8486. "BSD-3-Clause"
  8487. ],
  8488. "authors": [
  8489. {
  8490. "name": "Fabien Potencier",
  8491. "email": "fabien@symfony.com",
  8492. "homepage": "http://fabien.potencier.org",
  8493. "role": "Lead Developer"
  8494. },
  8495. {
  8496. "name": "Armin Ronacher",
  8497. "email": "armin.ronacher@active-4.com",
  8498. "role": "Project Founder"
  8499. },
  8500. {
  8501. "name": "Twig Team",
  8502. "homepage": "https://twig.symfony.com/contributors",
  8503. "role": "Contributors"
  8504. }
  8505. ],
  8506. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8507. "homepage": "https://twig.symfony.com",
  8508. "keywords": [
  8509. "templating"
  8510. ],
  8511. "time": "2019-04-29T14:12:28+00:00"
  8512. },
  8513. {
  8514. "name": "typo3/phar-stream-wrapper",
  8515. "version": "v2.1.0",
  8516. "source": {
  8517. "type": "git",
  8518. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  8519. "reference": "b7a21f0859059ed5d9754af8c11f852d43762334"
  8520. },
  8521. "dist": {
  8522. "type": "zip",
  8523. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/b7a21f0859059ed5d9754af8c11f852d43762334",
  8524. "reference": "b7a21f0859059ed5d9754af8c11f852d43762334",
  8525. "shasum": ""
  8526. },
  8527. "require": {
  8528. "brumann/polyfill-unserialize": "^1.0",
  8529. "ext-fileinfo": "*",
  8530. "ext-json": "*",
  8531. "php": "^5.3.3|^7.0"
  8532. },
  8533. "require-dev": {
  8534. "phpunit/phpunit": "^4.8.36"
  8535. },
  8536. "type": "library",
  8537. "autoload": {
  8538. "psr-4": {
  8539. "TYPO3\\PharStreamWrapper\\": "src/"
  8540. }
  8541. },
  8542. "notification-url": "https://packagist.org/downloads/",
  8543. "license": [
  8544. "MIT"
  8545. ],
  8546. "description": "Interceptors for PHP's native phar:// stream handling",
  8547. "homepage": "https://typo3.org/",
  8548. "keywords": [
  8549. "phar",
  8550. "php",
  8551. "security",
  8552. "stream-wrapper"
  8553. ],
  8554. "time": "2019-03-01T17:43:52+00:00"
  8555. },
  8556. {
  8557. "name": "vlucas/phpdotenv",
  8558. "version": "v2.6.1",
  8559. "source": {
  8560. "type": "git",
  8561. "url": "https://github.com/vlucas/phpdotenv.git",
  8562. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  8563. },
  8564. "dist": {
  8565. "type": "zip",
  8566. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  8567. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  8568. "shasum": ""
  8569. },
  8570. "require": {
  8571. "php": ">=5.3.9",
  8572. "symfony/polyfill-ctype": "^1.9"
  8573. },
  8574. "require-dev": {
  8575. "phpunit/phpunit": "^4.8.35 || ^5.0"
  8576. },
  8577. "type": "library",
  8578. "extra": {
  8579. "branch-alias": {
  8580. "dev-master": "2.6-dev"
  8581. }
  8582. },
  8583. "autoload": {
  8584. "psr-4": {
  8585. "Dotenv\\": "src/"
  8586. }
  8587. },
  8588. "notification-url": "https://packagist.org/downloads/",
  8589. "license": [
  8590. "BSD-3-Clause"
  8591. ],
  8592. "authors": [
  8593. {
  8594. "name": "Vance Lucas",
  8595. "email": "vance@vancelucas.com",
  8596. "homepage": "http://www.vancelucas.com"
  8597. }
  8598. ],
  8599. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8600. "keywords": [
  8601. "dotenv",
  8602. "env",
  8603. "environment"
  8604. ],
  8605. "time": "2019-01-29T11:11:52+00:00"
  8606. },
  8607. {
  8608. "name": "webflo/drupal-core-strict",
  8609. "version": "8.0.0-beta15",
  8610. "source": {
  8611. "type": "git",
  8612. "url": "https://github.com/webflo/drupal-core-strict.git",
  8613. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057"
  8614. },
  8615. "dist": {
  8616. "type": "zip",
  8617. "url": "https://api.github.com/repos/webflo/drupal-core-strict/zipball/1eb044b722ebe44bc6af86a03888415d7f31c057",
  8618. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057",
  8619. "shasum": ""
  8620. },
  8621. "type": "metapackage",
  8622. "notification-url": "https://packagist.org/downloads/",
  8623. "license": [
  8624. "GPL-2.0-or-later"
  8625. ],
  8626. "description": "Locked core dependencies",
  8627. "time": "2018-01-30T18:48:19+00:00"
  8628. },
  8629. {
  8630. "name": "webflo/drupal-finder",
  8631. "version": "1.1.0",
  8632. "source": {
  8633. "type": "git",
  8634. "url": "https://github.com/webflo/drupal-finder.git",
  8635. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  8636. },
  8637. "dist": {
  8638. "type": "zip",
  8639. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  8640. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  8641. "shasum": ""
  8642. },
  8643. "require-dev": {
  8644. "mikey179/vfsstream": "^1.6",
  8645. "phpunit/phpunit": "^4.8"
  8646. },
  8647. "type": "library",
  8648. "autoload": {
  8649. "classmap": [
  8650. "src/DrupalFinder.php"
  8651. ]
  8652. },
  8653. "notification-url": "https://packagist.org/downloads/",
  8654. "license": [
  8655. "GPL-2.0+"
  8656. ],
  8657. "authors": [
  8658. {
  8659. "name": "Florian Weber",
  8660. "email": "florian@webflo.org"
  8661. }
  8662. ],
  8663. "description": "Helper class to locate a Drupal installation from a given path.",
  8664. "time": "2017-10-24T08:12:11+00:00"
  8665. },
  8666. {
  8667. "name": "webmozart/assert",
  8668. "version": "1.4.0",
  8669. "source": {
  8670. "type": "git",
  8671. "url": "https://github.com/webmozart/assert.git",
  8672. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  8673. },
  8674. "dist": {
  8675. "type": "zip",
  8676. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  8677. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  8678. "shasum": ""
  8679. },
  8680. "require": {
  8681. "php": "^5.3.3 || ^7.0",
  8682. "symfony/polyfill-ctype": "^1.8"
  8683. },
  8684. "require-dev": {
  8685. "phpunit/phpunit": "^4.6",
  8686. "sebastian/version": "^1.0.1"
  8687. },
  8688. "type": "library",
  8689. "extra": {
  8690. "branch-alias": {
  8691. "dev-master": "1.3-dev"
  8692. }
  8693. },
  8694. "autoload": {
  8695. "psr-4": {
  8696. "Webmozart\\Assert\\": "src/"
  8697. }
  8698. },
  8699. "notification-url": "https://packagist.org/downloads/",
  8700. "license": [
  8701. "MIT"
  8702. ],
  8703. "authors": [
  8704. {
  8705. "name": "Bernhard Schussek",
  8706. "email": "bschussek@gmail.com"
  8707. }
  8708. ],
  8709. "description": "Assertions to validate method input/output with nice error messages.",
  8710. "keywords": [
  8711. "assert",
  8712. "check",
  8713. "validate"
  8714. ],
  8715. "time": "2018-12-25T11:19:39+00:00"
  8716. },
  8717. {
  8718. "name": "webmozart/path-util",
  8719. "version": "2.3.0",
  8720. "source": {
  8721. "type": "git",
  8722. "url": "https://github.com/webmozart/path-util.git",
  8723. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  8724. },
  8725. "dist": {
  8726. "type": "zip",
  8727. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  8728. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  8729. "shasum": ""
  8730. },
  8731. "require": {
  8732. "php": ">=5.3.3",
  8733. "webmozart/assert": "~1.0"
  8734. },
  8735. "require-dev": {
  8736. "phpunit/phpunit": "^4.6",
  8737. "sebastian/version": "^1.0.1"
  8738. },
  8739. "type": "library",
  8740. "extra": {
  8741. "branch-alias": {
  8742. "dev-master": "2.3-dev"
  8743. }
  8744. },
  8745. "autoload": {
  8746. "psr-4": {
  8747. "Webmozart\\PathUtil\\": "src/"
  8748. }
  8749. },
  8750. "notification-url": "https://packagist.org/downloads/",
  8751. "license": [
  8752. "MIT"
  8753. ],
  8754. "authors": [
  8755. {
  8756. "name": "Bernhard Schussek",
  8757. "email": "bschussek@gmail.com"
  8758. }
  8759. ],
  8760. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  8761. "time": "2015-12-17T08:42:14+00:00"
  8762. },
  8763. {
  8764. "name": "zaporylie/composer-drupal-optimizations",
  8765. "version": "1.1.0",
  8766. "source": {
  8767. "type": "git",
  8768. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  8769. "reference": "173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8"
  8770. },
  8771. "dist": {
  8772. "type": "zip",
  8773. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8",
  8774. "reference": "173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8",
  8775. "shasum": ""
  8776. },
  8777. "require": {
  8778. "composer-plugin-api": "^1.1"
  8779. },
  8780. "require-dev": {
  8781. "composer/composer": "^1.6",
  8782. "phpunit/phpunit": "^6"
  8783. },
  8784. "type": "composer-plugin",
  8785. "extra": {
  8786. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  8787. },
  8788. "autoload": {
  8789. "psr-4": {
  8790. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  8791. }
  8792. },
  8793. "notification-url": "https://packagist.org/downloads/",
  8794. "license": [
  8795. "GPL-2.0-or-later"
  8796. ],
  8797. "authors": [
  8798. {
  8799. "name": "Jakub Piasecki",
  8800. "email": "jakub@piaseccy.pl"
  8801. }
  8802. ],
  8803. "description": "Composer plugin to improve composer performance for Drupal projects",
  8804. "time": "2019-02-20T10:00:17+00:00"
  8805. },
  8806. {
  8807. "name": "zendframework/zend-diactoros",
  8808. "version": "1.8.6",
  8809. "source": {
  8810. "type": "git",
  8811. "url": "https://github.com/zendframework/zend-diactoros.git",
  8812. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  8813. },
  8814. "dist": {
  8815. "type": "zip",
  8816. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  8817. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  8818. "shasum": ""
  8819. },
  8820. "require": {
  8821. "php": "^5.6 || ^7.0",
  8822. "psr/http-message": "^1.0"
  8823. },
  8824. "provide": {
  8825. "psr/http-message-implementation": "1.0"
  8826. },
  8827. "require-dev": {
  8828. "ext-dom": "*",
  8829. "ext-libxml": "*",
  8830. "php-http/psr7-integration-tests": "dev-master",
  8831. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  8832. "zendframework/zend-coding-standard": "~1.0"
  8833. },
  8834. "type": "library",
  8835. "extra": {
  8836. "branch-alias": {
  8837. "dev-master": "1.8.x-dev",
  8838. "dev-develop": "1.9.x-dev",
  8839. "dev-release-2.0": "2.0.x-dev"
  8840. }
  8841. },
  8842. "autoload": {
  8843. "files": [
  8844. "src/functions/create_uploaded_file.php",
  8845. "src/functions/marshal_headers_from_sapi.php",
  8846. "src/functions/marshal_method_from_sapi.php",
  8847. "src/functions/marshal_protocol_version_from_sapi.php",
  8848. "src/functions/marshal_uri_from_sapi.php",
  8849. "src/functions/normalize_server.php",
  8850. "src/functions/normalize_uploaded_files.php",
  8851. "src/functions/parse_cookie_header.php"
  8852. ],
  8853. "psr-4": {
  8854. "Zend\\Diactoros\\": "src/"
  8855. }
  8856. },
  8857. "notification-url": "https://packagist.org/downloads/",
  8858. "license": [
  8859. "BSD-2-Clause"
  8860. ],
  8861. "description": "PSR HTTP Message implementations",
  8862. "homepage": "https://github.com/zendframework/zend-diactoros",
  8863. "keywords": [
  8864. "http",
  8865. "psr",
  8866. "psr-7"
  8867. ],
  8868. "time": "2018-09-05T19:29:37+00:00"
  8869. },
  8870. {
  8871. "name": "zendframework/zend-escaper",
  8872. "version": "2.6.0",
  8873. "source": {
  8874. "type": "git",
  8875. "url": "https://github.com/zendframework/zend-escaper.git",
  8876. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  8877. },
  8878. "dist": {
  8879. "type": "zip",
  8880. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  8881. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  8882. "shasum": ""
  8883. },
  8884. "require": {
  8885. "php": "^5.6 || ^7.0"
  8886. },
  8887. "require-dev": {
  8888. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  8889. "zendframework/zend-coding-standard": "~1.0.0"
  8890. },
  8891. "type": "library",
  8892. "extra": {
  8893. "branch-alias": {
  8894. "dev-master": "2.6.x-dev",
  8895. "dev-develop": "2.7.x-dev"
  8896. }
  8897. },
  8898. "autoload": {
  8899. "psr-4": {
  8900. "Zend\\Escaper\\": "src/"
  8901. }
  8902. },
  8903. "notification-url": "https://packagist.org/downloads/",
  8904. "license": [
  8905. "BSD-3-Clause"
  8906. ],
  8907. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  8908. "keywords": [
  8909. "ZendFramework",
  8910. "escaper",
  8911. "zf"
  8912. ],
  8913. "time": "2018-04-25T15:48:53+00:00"
  8914. },
  8915. {
  8916. "name": "zendframework/zend-feed",
  8917. "version": "2.12.0",
  8918. "source": {
  8919. "type": "git",
  8920. "url": "https://github.com/zendframework/zend-feed.git",
  8921. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  8922. },
  8923. "dist": {
  8924. "type": "zip",
  8925. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  8926. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  8927. "shasum": ""
  8928. },
  8929. "require": {
  8930. "ext-dom": "*",
  8931. "ext-libxml": "*",
  8932. "php": "^5.6 || ^7.0",
  8933. "zendframework/zend-escaper": "^2.5.2",
  8934. "zendframework/zend-stdlib": "^3.2.1"
  8935. },
  8936. "require-dev": {
  8937. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  8938. "psr/http-message": "^1.0.1",
  8939. "zendframework/zend-cache": "^2.7.2",
  8940. "zendframework/zend-coding-standard": "~1.0.0",
  8941. "zendframework/zend-db": "^2.8.2",
  8942. "zendframework/zend-http": "^2.7",
  8943. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  8944. "zendframework/zend-validator": "^2.10.1"
  8945. },
  8946. "suggest": {
  8947. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  8948. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  8949. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  8950. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  8951. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  8952. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  8953. },
  8954. "type": "library",
  8955. "extra": {
  8956. "branch-alias": {
  8957. "dev-master": "2.12.x-dev",
  8958. "dev-develop": "2.13.x-dev"
  8959. }
  8960. },
  8961. "autoload": {
  8962. "psr-4": {
  8963. "Zend\\Feed\\": "src/"
  8964. }
  8965. },
  8966. "notification-url": "https://packagist.org/downloads/",
  8967. "license": [
  8968. "BSD-3-Clause"
  8969. ],
  8970. "description": "provides functionality for consuming RSS and Atom feeds",
  8971. "keywords": [
  8972. "ZendFramework",
  8973. "feed",
  8974. "zf"
  8975. ],
  8976. "time": "2019-03-05T20:08:49+00:00"
  8977. },
  8978. {
  8979. "name": "zendframework/zend-stdlib",
  8980. "version": "3.2.1",
  8981. "source": {
  8982. "type": "git",
  8983. "url": "https://github.com/zendframework/zend-stdlib.git",
  8984. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  8985. },
  8986. "dist": {
  8987. "type": "zip",
  8988. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  8989. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  8990. "shasum": ""
  8991. },
  8992. "require": {
  8993. "php": "^5.6 || ^7.0"
  8994. },
  8995. "require-dev": {
  8996. "phpbench/phpbench": "^0.13",
  8997. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  8998. "zendframework/zend-coding-standard": "~1.0.0"
  8999. },
  9000. "type": "library",
  9001. "extra": {
  9002. "branch-alias": {
  9003. "dev-master": "3.2.x-dev",
  9004. "dev-develop": "3.3.x-dev"
  9005. }
  9006. },
  9007. "autoload": {
  9008. "psr-4": {
  9009. "Zend\\Stdlib\\": "src/"
  9010. }
  9011. },
  9012. "notification-url": "https://packagist.org/downloads/",
  9013. "license": [
  9014. "BSD-3-Clause"
  9015. ],
  9016. "description": "SPL extensions, array utilities, error handlers, and more",
  9017. "keywords": [
  9018. "ZendFramework",
  9019. "stdlib",
  9020. "zf"
  9021. ],
  9022. "time": "2018-08-28T21:34:05+00:00"
  9023. }
  9024. ],
  9025. "packages-dev": [
  9026. {
  9027. "name": "behat/mink",
  9028. "version": "dev-master",
  9029. "source": {
  9030. "type": "git",
  9031. "url": "https://github.com/minkphp/Mink.git",
  9032. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  9033. },
  9034. "dist": {
  9035. "type": "zip",
  9036. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  9037. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  9038. "shasum": ""
  9039. },
  9040. "require": {
  9041. "php": ">=5.3.1",
  9042. "symfony/css-selector": "^2.7|^3.0|^4.0"
  9043. },
  9044. "require-dev": {
  9045. "symfony/phpunit-bridge": "^3.3|^4.0"
  9046. },
  9047. "suggest": {
  9048. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  9049. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  9050. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  9051. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  9052. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  9053. },
  9054. "type": "library",
  9055. "extra": {
  9056. "branch-alias": {
  9057. "dev-master": "1.7.x-dev"
  9058. }
  9059. },
  9060. "autoload": {
  9061. "psr-4": {
  9062. "Behat\\Mink\\": "src/"
  9063. }
  9064. },
  9065. "notification-url": "https://packagist.org/downloads/",
  9066. "license": [
  9067. "MIT"
  9068. ],
  9069. "authors": [
  9070. {
  9071. "name": "Konstantin Kudryashov",
  9072. "email": "ever.zet@gmail.com",
  9073. "homepage": "http://everzet.com"
  9074. }
  9075. ],
  9076. "description": "Browser controller/emulator abstraction for PHP",
  9077. "homepage": "http://mink.behat.org/",
  9078. "keywords": [
  9079. "browser",
  9080. "testing",
  9081. "web"
  9082. ],
  9083. "time": "2018-06-24T20:08:51+00:00"
  9084. },
  9085. {
  9086. "name": "behat/mink-browserkit-driver",
  9087. "version": "1.3.3",
  9088. "source": {
  9089. "type": "git",
  9090. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  9091. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  9092. },
  9093. "dist": {
  9094. "type": "zip",
  9095. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  9096. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  9097. "shasum": ""
  9098. },
  9099. "require": {
  9100. "behat/mink": "^1.7.1@dev",
  9101. "php": ">=5.3.6",
  9102. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  9103. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  9104. },
  9105. "require-dev": {
  9106. "mink/driver-testsuite": "dev-master",
  9107. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  9108. },
  9109. "type": "mink-driver",
  9110. "extra": {
  9111. "branch-alias": {
  9112. "dev-master": "1.3.x-dev"
  9113. }
  9114. },
  9115. "autoload": {
  9116. "psr-4": {
  9117. "Behat\\Mink\\Driver\\": "src/"
  9118. }
  9119. },
  9120. "notification-url": "https://packagist.org/downloads/",
  9121. "license": [
  9122. "MIT"
  9123. ],
  9124. "authors": [
  9125. {
  9126. "name": "Konstantin Kudryashov",
  9127. "email": "ever.zet@gmail.com",
  9128. "homepage": "http://everzet.com"
  9129. }
  9130. ],
  9131. "description": "Symfony2 BrowserKit driver for Mink framework",
  9132. "homepage": "http://mink.behat.org/",
  9133. "keywords": [
  9134. "Mink",
  9135. "Symfony2",
  9136. "browser",
  9137. "testing"
  9138. ],
  9139. "time": "2018-05-02T09:25:31+00:00"
  9140. },
  9141. {
  9142. "name": "behat/mink-goutte-driver",
  9143. "version": "v1.2.1",
  9144. "source": {
  9145. "type": "git",
  9146. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  9147. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  9148. },
  9149. "dist": {
  9150. "type": "zip",
  9151. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  9152. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  9153. "shasum": ""
  9154. },
  9155. "require": {
  9156. "behat/mink": "~1.6@dev",
  9157. "behat/mink-browserkit-driver": "~1.2@dev",
  9158. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  9159. "php": ">=5.3.1"
  9160. },
  9161. "require-dev": {
  9162. "symfony/phpunit-bridge": "~2.7|~3.0"
  9163. },
  9164. "type": "mink-driver",
  9165. "extra": {
  9166. "branch-alias": {
  9167. "dev-master": "1.2.x-dev"
  9168. }
  9169. },
  9170. "autoload": {
  9171. "psr-4": {
  9172. "Behat\\Mink\\Driver\\": "src/"
  9173. }
  9174. },
  9175. "notification-url": "https://packagist.org/downloads/",
  9176. "license": [
  9177. "MIT"
  9178. ],
  9179. "authors": [
  9180. {
  9181. "name": "Konstantin Kudryashov",
  9182. "email": "ever.zet@gmail.com",
  9183. "homepage": "http://everzet.com"
  9184. }
  9185. ],
  9186. "description": "Goutte driver for Mink framework",
  9187. "homepage": "http://mink.behat.org/",
  9188. "keywords": [
  9189. "browser",
  9190. "goutte",
  9191. "headless",
  9192. "testing"
  9193. ],
  9194. "time": "2016-03-05T09:04:22+00:00"
  9195. },
  9196. {
  9197. "name": "behat/mink-selenium2-driver",
  9198. "version": "dev-master",
  9199. "source": {
  9200. "type": "git",
  9201. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  9202. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  9203. },
  9204. "dist": {
  9205. "type": "zip",
  9206. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  9207. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  9208. "shasum": ""
  9209. },
  9210. "require": {
  9211. "behat/mink": "~1.7@dev",
  9212. "instaclick/php-webdriver": "~1.1",
  9213. "php": ">=5.3.1"
  9214. },
  9215. "require-dev": {
  9216. "mink/driver-testsuite": "dev-master"
  9217. },
  9218. "type": "mink-driver",
  9219. "extra": {
  9220. "branch-alias": {
  9221. "dev-master": "1.3.x-dev"
  9222. }
  9223. },
  9224. "autoload": {
  9225. "psr-4": {
  9226. "Behat\\Mink\\Driver\\": "src/"
  9227. }
  9228. },
  9229. "notification-url": "https://packagist.org/downloads/",
  9230. "license": [
  9231. "MIT"
  9232. ],
  9233. "authors": [
  9234. {
  9235. "name": "Konstantin Kudryashov",
  9236. "email": "ever.zet@gmail.com",
  9237. "homepage": "http://everzet.com"
  9238. },
  9239. {
  9240. "name": "Pete Otaqui",
  9241. "email": "pete@otaqui.com",
  9242. "homepage": "https://github.com/pete-otaqui"
  9243. }
  9244. ],
  9245. "description": "Selenium2 (WebDriver) driver for Mink framework",
  9246. "homepage": "http://mink.behat.org/",
  9247. "keywords": [
  9248. "ajax",
  9249. "browser",
  9250. "javascript",
  9251. "selenium",
  9252. "testing",
  9253. "webdriver"
  9254. ],
  9255. "time": "2018-10-10T12:39:06+00:00"
  9256. },
  9257. {
  9258. "name": "doctrine/instantiator",
  9259. "version": "1.0.5",
  9260. "source": {
  9261. "type": "git",
  9262. "url": "https://github.com/doctrine/instantiator.git",
  9263. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  9264. },
  9265. "dist": {
  9266. "type": "zip",
  9267. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  9268. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  9269. "shasum": ""
  9270. },
  9271. "require": {
  9272. "php": ">=5.3,<8.0-DEV"
  9273. },
  9274. "require-dev": {
  9275. "athletic/athletic": "~0.1.8",
  9276. "ext-pdo": "*",
  9277. "ext-phar": "*",
  9278. "phpunit/phpunit": "~4.0",
  9279. "squizlabs/php_codesniffer": "~2.0"
  9280. },
  9281. "type": "library",
  9282. "extra": {
  9283. "branch-alias": {
  9284. "dev-master": "1.0.x-dev"
  9285. }
  9286. },
  9287. "autoload": {
  9288. "psr-4": {
  9289. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9290. }
  9291. },
  9292. "notification-url": "https://packagist.org/downloads/",
  9293. "license": [
  9294. "MIT"
  9295. ],
  9296. "authors": [
  9297. {
  9298. "name": "Marco Pivetta",
  9299. "email": "ocramius@gmail.com",
  9300. "homepage": "http://ocramius.github.com/"
  9301. }
  9302. ],
  9303. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9304. "homepage": "https://github.com/doctrine/instantiator",
  9305. "keywords": [
  9306. "constructor",
  9307. "instantiate"
  9308. ],
  9309. "time": "2015-06-14T21:17:01+00:00"
  9310. },
  9311. {
  9312. "name": "drupal/coder",
  9313. "version": "8.3.3",
  9314. "source": {
  9315. "type": "git",
  9316. "url": "https://git.drupal.org/project/coder.git",
  9317. "reference": "a33d3388fb2e1d94bd2aee36a8ff79186e9d8f43"
  9318. },
  9319. "require": {
  9320. "ext-mbstring": "*",
  9321. "php": ">=5.5.9",
  9322. "squizlabs/php_codesniffer": "^3.4.1",
  9323. "symfony/yaml": ">=2.0.0"
  9324. },
  9325. "require-dev": {
  9326. "phpunit/phpunit": ">=3.7 <6"
  9327. },
  9328. "type": "phpcodesniffer-standard",
  9329. "autoload": {
  9330. "psr-0": {
  9331. "Drupal\\": "coder_sniffer/Drupal/",
  9332. "DrupalPractice\\": "coder_sniffer/DrupalPractice/"
  9333. }
  9334. },
  9335. "notification-url": "https://packagist.org/downloads/",
  9336. "license": [
  9337. "GPL-2.0+"
  9338. ],
  9339. "description": "Coder is a library to review Drupal code.",
  9340. "homepage": "https://www.drupal.org/project/coder",
  9341. "keywords": [
  9342. "code review",
  9343. "phpcs",
  9344. "standards"
  9345. ],
  9346. "time": "2019-04-16T18:56:06+00:00"
  9347. },
  9348. {
  9349. "name": "fabpot/goutte",
  9350. "version": "v3.2.3",
  9351. "source": {
  9352. "type": "git",
  9353. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  9354. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  9355. },
  9356. "dist": {
  9357. "type": "zip",
  9358. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  9359. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  9360. "shasum": ""
  9361. },
  9362. "require": {
  9363. "guzzlehttp/guzzle": "^6.0",
  9364. "php": ">=5.5.0",
  9365. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  9366. "symfony/css-selector": "~2.1|~3.0|~4.0",
  9367. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  9368. },
  9369. "require-dev": {
  9370. "symfony/phpunit-bridge": "^3.3 || ^4"
  9371. },
  9372. "type": "application",
  9373. "extra": {
  9374. "branch-alias": {
  9375. "dev-master": "3.2-dev"
  9376. }
  9377. },
  9378. "autoload": {
  9379. "psr-4": {
  9380. "Goutte\\": "Goutte"
  9381. },
  9382. "exclude-from-classmap": [
  9383. "Goutte/Tests"
  9384. ]
  9385. },
  9386. "notification-url": "https://packagist.org/downloads/",
  9387. "license": [
  9388. "MIT"
  9389. ],
  9390. "authors": [
  9391. {
  9392. "name": "Fabien Potencier",
  9393. "email": "fabien@symfony.com"
  9394. }
  9395. ],
  9396. "description": "A simple PHP Web Scraper",
  9397. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  9398. "keywords": [
  9399. "scraper"
  9400. ],
  9401. "time": "2018-06-29T15:13:57+00:00"
  9402. },
  9403. {
  9404. "name": "instaclick/php-webdriver",
  9405. "version": "1.4.5",
  9406. "source": {
  9407. "type": "git",
  9408. "url": "https://github.com/instaclick/php-webdriver.git",
  9409. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  9410. },
  9411. "dist": {
  9412. "type": "zip",
  9413. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  9414. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  9415. "shasum": ""
  9416. },
  9417. "require": {
  9418. "ext-curl": "*",
  9419. "php": ">=5.3.2"
  9420. },
  9421. "require-dev": {
  9422. "phpunit/phpunit": "^4.8",
  9423. "satooshi/php-coveralls": "^1.0||^2.0"
  9424. },
  9425. "type": "library",
  9426. "extra": {
  9427. "branch-alias": {
  9428. "dev-master": "1.4.x-dev"
  9429. }
  9430. },
  9431. "autoload": {
  9432. "psr-0": {
  9433. "WebDriver": "lib/"
  9434. }
  9435. },
  9436. "notification-url": "https://packagist.org/downloads/",
  9437. "license": [
  9438. "Apache-2.0"
  9439. ],
  9440. "authors": [
  9441. {
  9442. "name": "Justin Bishop",
  9443. "email": "jubishop@gmail.com",
  9444. "role": "Developer"
  9445. },
  9446. {
  9447. "name": "Anthon Pang",
  9448. "email": "apang@softwaredevelopment.ca",
  9449. "role": "Fork Maintainer"
  9450. }
  9451. ],
  9452. "description": "PHP WebDriver for Selenium 2",
  9453. "homepage": "http://instaclick.com/",
  9454. "keywords": [
  9455. "browser",
  9456. "selenium",
  9457. "webdriver",
  9458. "webtest"
  9459. ],
  9460. "time": "2017-06-30T04:02:48+00:00"
  9461. },
  9462. {
  9463. "name": "jcalderonzumba/gastonjs",
  9464. "version": "v1.2.0",
  9465. "source": {
  9466. "type": "git",
  9467. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  9468. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  9469. },
  9470. "dist": {
  9471. "type": "zip",
  9472. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  9473. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  9474. "shasum": ""
  9475. },
  9476. "require": {
  9477. "guzzlehttp/guzzle": "~5.0|~6.0",
  9478. "php": ">=5.4"
  9479. },
  9480. "require-dev": {
  9481. "phpunit/phpunit": "~4.6",
  9482. "silex/silex": "~1.2",
  9483. "symfony/phpunit-bridge": "~2.7",
  9484. "symfony/process": "~2.1"
  9485. },
  9486. "type": "phantomjs-api",
  9487. "extra": {
  9488. "branch-alias": {
  9489. "dev-master": "1.1.x-dev"
  9490. }
  9491. },
  9492. "autoload": {
  9493. "psr-4": {
  9494. "Zumba\\GastonJS\\": "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 API based server for webpage automation",
  9509. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  9510. "keywords": [
  9511. "api",
  9512. "automation",
  9513. "browser",
  9514. "headless",
  9515. "phantomjs"
  9516. ],
  9517. "time": "2017-03-31T07:31:47+00:00"
  9518. },
  9519. {
  9520. "name": "jcalderonzumba/mink-phantomjs-driver",
  9521. "version": "v0.3.3",
  9522. "source": {
  9523. "type": "git",
  9524. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  9525. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  9526. },
  9527. "dist": {
  9528. "type": "zip",
  9529. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  9530. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  9531. "shasum": ""
  9532. },
  9533. "require": {
  9534. "behat/mink": "~1.7",
  9535. "jcalderonzumba/gastonjs": "~1.0",
  9536. "php": ">=5.4",
  9537. "twig/twig": "~1.20|~2.0"
  9538. },
  9539. "require-dev": {
  9540. "mink/driver-testsuite": "dev-master",
  9541. "phpunit/phpunit": "~4.6"
  9542. },
  9543. "type": "mink-driver",
  9544. "extra": {
  9545. "branch-alias": {
  9546. "dev-master": "0.4.x-dev"
  9547. }
  9548. },
  9549. "autoload": {
  9550. "psr-4": {
  9551. "Zumba\\Mink\\Driver\\": "src"
  9552. }
  9553. },
  9554. "notification-url": "https://packagist.org/downloads/",
  9555. "license": [
  9556. "MIT"
  9557. ],
  9558. "authors": [
  9559. {
  9560. "name": "Juan Francisco Calderón Zumba",
  9561. "email": "juanfcz@gmail.com",
  9562. "homepage": "http://github.com/jcalderonzumba"
  9563. }
  9564. ],
  9565. "description": "PhantomJS driver for Mink framework",
  9566. "homepage": "http://mink.behat.org/",
  9567. "keywords": [
  9568. "ajax",
  9569. "browser",
  9570. "headless",
  9571. "javascript",
  9572. "phantomjs",
  9573. "testing"
  9574. ],
  9575. "time": "2016-12-01T10:57:30+00:00"
  9576. },
  9577. {
  9578. "name": "mikey179/vfsStream",
  9579. "version": "v1.6.6",
  9580. "source": {
  9581. "type": "git",
  9582. "url": "https://github.com/bovigo/vfsStream.git",
  9583. "reference": "095238a0711c974ae5b4ebf4c4534a23f3f6c99d"
  9584. },
  9585. "dist": {
  9586. "type": "zip",
  9587. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/095238a0711c974ae5b4ebf4c4534a23f3f6c99d",
  9588. "reference": "095238a0711c974ae5b4ebf4c4534a23f3f6c99d",
  9589. "shasum": ""
  9590. },
  9591. "require": {
  9592. "php": ">=5.3.0"
  9593. },
  9594. "require-dev": {
  9595. "phpunit/phpunit": "~4.5"
  9596. },
  9597. "type": "library",
  9598. "extra": {
  9599. "branch-alias": {
  9600. "dev-master": "1.6.x-dev"
  9601. }
  9602. },
  9603. "autoload": {
  9604. "psr-0": {
  9605. "org\\bovigo\\vfs\\": "src/main/php"
  9606. }
  9607. },
  9608. "notification-url": "https://packagist.org/downloads/",
  9609. "license": [
  9610. "BSD-3-Clause"
  9611. ],
  9612. "authors": [
  9613. {
  9614. "name": "Frank Kleine",
  9615. "homepage": "http://frankkleine.de/",
  9616. "role": "Developer"
  9617. }
  9618. ],
  9619. "description": "Virtual file system to mock the real file system in unit tests.",
  9620. "homepage": "http://vfs.bovigo.org/",
  9621. "time": "2019-04-08T13:54:32+00:00"
  9622. },
  9623. {
  9624. "name": "myclabs/deep-copy",
  9625. "version": "1.7.0",
  9626. "source": {
  9627. "type": "git",
  9628. "url": "https://github.com/myclabs/DeepCopy.git",
  9629. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  9630. },
  9631. "dist": {
  9632. "type": "zip",
  9633. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  9634. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  9635. "shasum": ""
  9636. },
  9637. "require": {
  9638. "php": "^5.6 || ^7.0"
  9639. },
  9640. "require-dev": {
  9641. "doctrine/collections": "^1.0",
  9642. "doctrine/common": "^2.6",
  9643. "phpunit/phpunit": "^4.1"
  9644. },
  9645. "type": "library",
  9646. "autoload": {
  9647. "psr-4": {
  9648. "DeepCopy\\": "src/DeepCopy/"
  9649. },
  9650. "files": [
  9651. "src/DeepCopy/deep_copy.php"
  9652. ]
  9653. },
  9654. "notification-url": "https://packagist.org/downloads/",
  9655. "license": [
  9656. "MIT"
  9657. ],
  9658. "description": "Create deep copies (clones) of your objects",
  9659. "keywords": [
  9660. "clone",
  9661. "copy",
  9662. "duplicate",
  9663. "object",
  9664. "object graph"
  9665. ],
  9666. "time": "2017-10-19T19:58:43+00:00"
  9667. },
  9668. {
  9669. "name": "phar-io/manifest",
  9670. "version": "1.0.1",
  9671. "source": {
  9672. "type": "git",
  9673. "url": "https://github.com/phar-io/manifest.git",
  9674. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  9675. },
  9676. "dist": {
  9677. "type": "zip",
  9678. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  9679. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  9680. "shasum": ""
  9681. },
  9682. "require": {
  9683. "ext-dom": "*",
  9684. "ext-phar": "*",
  9685. "phar-io/version": "^1.0.1",
  9686. "php": "^5.6 || ^7.0"
  9687. },
  9688. "type": "library",
  9689. "extra": {
  9690. "branch-alias": {
  9691. "dev-master": "1.0.x-dev"
  9692. }
  9693. },
  9694. "autoload": {
  9695. "classmap": [
  9696. "src/"
  9697. ]
  9698. },
  9699. "notification-url": "https://packagist.org/downloads/",
  9700. "license": [
  9701. "BSD-3-Clause"
  9702. ],
  9703. "authors": [
  9704. {
  9705. "name": "Arne Blankerts",
  9706. "email": "arne@blankerts.de",
  9707. "role": "Developer"
  9708. },
  9709. {
  9710. "name": "Sebastian Heuer",
  9711. "email": "sebastian@phpeople.de",
  9712. "role": "Developer"
  9713. },
  9714. {
  9715. "name": "Sebastian Bergmann",
  9716. "email": "sebastian@phpunit.de",
  9717. "role": "Developer"
  9718. }
  9719. ],
  9720. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9721. "time": "2017-03-05T18:14:27+00:00"
  9722. },
  9723. {
  9724. "name": "phar-io/version",
  9725. "version": "1.0.1",
  9726. "source": {
  9727. "type": "git",
  9728. "url": "https://github.com/phar-io/version.git",
  9729. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  9730. },
  9731. "dist": {
  9732. "type": "zip",
  9733. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  9734. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  9735. "shasum": ""
  9736. },
  9737. "require": {
  9738. "php": "^5.6 || ^7.0"
  9739. },
  9740. "type": "library",
  9741. "autoload": {
  9742. "classmap": [
  9743. "src/"
  9744. ]
  9745. },
  9746. "notification-url": "https://packagist.org/downloads/",
  9747. "license": [
  9748. "BSD-3-Clause"
  9749. ],
  9750. "authors": [
  9751. {
  9752. "name": "Arne Blankerts",
  9753. "email": "arne@blankerts.de",
  9754. "role": "Developer"
  9755. },
  9756. {
  9757. "name": "Sebastian Heuer",
  9758. "email": "sebastian@phpeople.de",
  9759. "role": "Developer"
  9760. },
  9761. {
  9762. "name": "Sebastian Bergmann",
  9763. "email": "sebastian@phpunit.de",
  9764. "role": "Developer"
  9765. }
  9766. ],
  9767. "description": "Library for handling version information and constraints",
  9768. "time": "2017-03-05T17:38:23+00:00"
  9769. },
  9770. {
  9771. "name": "phpdocumentor/reflection-common",
  9772. "version": "1.0.1",
  9773. "source": {
  9774. "type": "git",
  9775. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9776. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  9777. },
  9778. "dist": {
  9779. "type": "zip",
  9780. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  9781. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  9782. "shasum": ""
  9783. },
  9784. "require": {
  9785. "php": ">=5.5"
  9786. },
  9787. "require-dev": {
  9788. "phpunit/phpunit": "^4.6"
  9789. },
  9790. "type": "library",
  9791. "extra": {
  9792. "branch-alias": {
  9793. "dev-master": "1.0.x-dev"
  9794. }
  9795. },
  9796. "autoload": {
  9797. "psr-4": {
  9798. "phpDocumentor\\Reflection\\": [
  9799. "src"
  9800. ]
  9801. }
  9802. },
  9803. "notification-url": "https://packagist.org/downloads/",
  9804. "license": [
  9805. "MIT"
  9806. ],
  9807. "authors": [
  9808. {
  9809. "name": "Jaap van Otterdijk",
  9810. "email": "opensource@ijaap.nl"
  9811. }
  9812. ],
  9813. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9814. "homepage": "http://www.phpdoc.org",
  9815. "keywords": [
  9816. "FQSEN",
  9817. "phpDocumentor",
  9818. "phpdoc",
  9819. "reflection",
  9820. "static analysis"
  9821. ],
  9822. "time": "2017-09-11T18:02:19+00:00"
  9823. },
  9824. {
  9825. "name": "phpdocumentor/reflection-docblock",
  9826. "version": "4.3.0",
  9827. "source": {
  9828. "type": "git",
  9829. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9830. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  9831. },
  9832. "dist": {
  9833. "type": "zip",
  9834. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  9835. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  9836. "shasum": ""
  9837. },
  9838. "require": {
  9839. "php": "^7.0",
  9840. "phpdocumentor/reflection-common": "^1.0.0",
  9841. "phpdocumentor/type-resolver": "^0.4.0",
  9842. "webmozart/assert": "^1.0"
  9843. },
  9844. "require-dev": {
  9845. "doctrine/instantiator": "~1.0.5",
  9846. "mockery/mockery": "^1.0",
  9847. "phpunit/phpunit": "^6.4"
  9848. },
  9849. "type": "library",
  9850. "extra": {
  9851. "branch-alias": {
  9852. "dev-master": "4.x-dev"
  9853. }
  9854. },
  9855. "autoload": {
  9856. "psr-4": {
  9857. "phpDocumentor\\Reflection\\": [
  9858. "src/"
  9859. ]
  9860. }
  9861. },
  9862. "notification-url": "https://packagist.org/downloads/",
  9863. "license": [
  9864. "MIT"
  9865. ],
  9866. "authors": [
  9867. {
  9868. "name": "Mike van Riel",
  9869. "email": "me@mikevanriel.com"
  9870. }
  9871. ],
  9872. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9873. "time": "2017-11-30T07:14:17+00:00"
  9874. },
  9875. {
  9876. "name": "phpdocumentor/type-resolver",
  9877. "version": "0.4.0",
  9878. "source": {
  9879. "type": "git",
  9880. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9881. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  9882. },
  9883. "dist": {
  9884. "type": "zip",
  9885. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  9886. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  9887. "shasum": ""
  9888. },
  9889. "require": {
  9890. "php": "^5.5 || ^7.0",
  9891. "phpdocumentor/reflection-common": "^1.0"
  9892. },
  9893. "require-dev": {
  9894. "mockery/mockery": "^0.9.4",
  9895. "phpunit/phpunit": "^5.2||^4.8.24"
  9896. },
  9897. "type": "library",
  9898. "extra": {
  9899. "branch-alias": {
  9900. "dev-master": "1.0.x-dev"
  9901. }
  9902. },
  9903. "autoload": {
  9904. "psr-4": {
  9905. "phpDocumentor\\Reflection\\": [
  9906. "src/"
  9907. ]
  9908. }
  9909. },
  9910. "notification-url": "https://packagist.org/downloads/",
  9911. "license": [
  9912. "MIT"
  9913. ],
  9914. "authors": [
  9915. {
  9916. "name": "Mike van Riel",
  9917. "email": "me@mikevanriel.com"
  9918. }
  9919. ],
  9920. "time": "2017-07-14T14:27:02+00:00"
  9921. },
  9922. {
  9923. "name": "phpspec/prophecy",
  9924. "version": "1.8.0",
  9925. "source": {
  9926. "type": "git",
  9927. "url": "https://github.com/phpspec/prophecy.git",
  9928. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  9929. },
  9930. "dist": {
  9931. "type": "zip",
  9932. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  9933. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  9934. "shasum": ""
  9935. },
  9936. "require": {
  9937. "doctrine/instantiator": "^1.0.2",
  9938. "php": "^5.3|^7.0",
  9939. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  9940. "sebastian/comparator": "^1.1|^2.0|^3.0",
  9941. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  9942. },
  9943. "require-dev": {
  9944. "phpspec/phpspec": "^2.5|^3.2",
  9945. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  9946. },
  9947. "type": "library",
  9948. "extra": {
  9949. "branch-alias": {
  9950. "dev-master": "1.8.x-dev"
  9951. }
  9952. },
  9953. "autoload": {
  9954. "psr-0": {
  9955. "Prophecy\\": "src/"
  9956. }
  9957. },
  9958. "notification-url": "https://packagist.org/downloads/",
  9959. "license": [
  9960. "MIT"
  9961. ],
  9962. "authors": [
  9963. {
  9964. "name": "Konstantin Kudryashov",
  9965. "email": "ever.zet@gmail.com",
  9966. "homepage": "http://everzet.com"
  9967. },
  9968. {
  9969. "name": "Marcello Duarte",
  9970. "email": "marcello.duarte@gmail.com"
  9971. }
  9972. ],
  9973. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9974. "homepage": "https://github.com/phpspec/prophecy",
  9975. "keywords": [
  9976. "Double",
  9977. "Dummy",
  9978. "fake",
  9979. "mock",
  9980. "spy",
  9981. "stub"
  9982. ],
  9983. "time": "2018-08-05T17:53:17+00:00"
  9984. },
  9985. {
  9986. "name": "phpunit/php-code-coverage",
  9987. "version": "5.3.2",
  9988. "source": {
  9989. "type": "git",
  9990. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9991. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  9992. },
  9993. "dist": {
  9994. "type": "zip",
  9995. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  9996. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  9997. "shasum": ""
  9998. },
  9999. "require": {
  10000. "ext-dom": "*",
  10001. "ext-xmlwriter": "*",
  10002. "php": "^7.0",
  10003. "phpunit/php-file-iterator": "^1.4.2",
  10004. "phpunit/php-text-template": "^1.2.1",
  10005. "phpunit/php-token-stream": "^2.0.1",
  10006. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  10007. "sebastian/environment": "^3.0",
  10008. "sebastian/version": "^2.0.1",
  10009. "theseer/tokenizer": "^1.1"
  10010. },
  10011. "require-dev": {
  10012. "phpunit/phpunit": "^6.0"
  10013. },
  10014. "suggest": {
  10015. "ext-xdebug": "^2.5.5"
  10016. },
  10017. "type": "library",
  10018. "extra": {
  10019. "branch-alias": {
  10020. "dev-master": "5.3.x-dev"
  10021. }
  10022. },
  10023. "autoload": {
  10024. "classmap": [
  10025. "src/"
  10026. ]
  10027. },
  10028. "notification-url": "https://packagist.org/downloads/",
  10029. "license": [
  10030. "BSD-3-Clause"
  10031. ],
  10032. "authors": [
  10033. {
  10034. "name": "Sebastian Bergmann",
  10035. "email": "sebastian@phpunit.de",
  10036. "role": "lead"
  10037. }
  10038. ],
  10039. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10040. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10041. "keywords": [
  10042. "coverage",
  10043. "testing",
  10044. "xunit"
  10045. ],
  10046. "time": "2018-04-06T15:36:58+00:00"
  10047. },
  10048. {
  10049. "name": "phpunit/php-file-iterator",
  10050. "version": "1.4.5",
  10051. "source": {
  10052. "type": "git",
  10053. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10054. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  10055. },
  10056. "dist": {
  10057. "type": "zip",
  10058. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  10059. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  10060. "shasum": ""
  10061. },
  10062. "require": {
  10063. "php": ">=5.3.3"
  10064. },
  10065. "type": "library",
  10066. "extra": {
  10067. "branch-alias": {
  10068. "dev-master": "1.4.x-dev"
  10069. }
  10070. },
  10071. "autoload": {
  10072. "classmap": [
  10073. "src/"
  10074. ]
  10075. },
  10076. "notification-url": "https://packagist.org/downloads/",
  10077. "license": [
  10078. "BSD-3-Clause"
  10079. ],
  10080. "authors": [
  10081. {
  10082. "name": "Sebastian Bergmann",
  10083. "email": "sb@sebastian-bergmann.de",
  10084. "role": "lead"
  10085. }
  10086. ],
  10087. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10088. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10089. "keywords": [
  10090. "filesystem",
  10091. "iterator"
  10092. ],
  10093. "time": "2017-11-27T13:52:08+00:00"
  10094. },
  10095. {
  10096. "name": "phpunit/php-text-template",
  10097. "version": "1.2.1",
  10098. "source": {
  10099. "type": "git",
  10100. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10101. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  10102. },
  10103. "dist": {
  10104. "type": "zip",
  10105. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10106. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  10107. "shasum": ""
  10108. },
  10109. "require": {
  10110. "php": ">=5.3.3"
  10111. },
  10112. "type": "library",
  10113. "autoload": {
  10114. "classmap": [
  10115. "src/"
  10116. ]
  10117. },
  10118. "notification-url": "https://packagist.org/downloads/",
  10119. "license": [
  10120. "BSD-3-Clause"
  10121. ],
  10122. "authors": [
  10123. {
  10124. "name": "Sebastian Bergmann",
  10125. "email": "sebastian@phpunit.de",
  10126. "role": "lead"
  10127. }
  10128. ],
  10129. "description": "Simple template engine.",
  10130. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10131. "keywords": [
  10132. "template"
  10133. ],
  10134. "time": "2015-06-21T13:50:34+00:00"
  10135. },
  10136. {
  10137. "name": "phpunit/php-timer",
  10138. "version": "1.0.9",
  10139. "source": {
  10140. "type": "git",
  10141. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10142. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  10143. },
  10144. "dist": {
  10145. "type": "zip",
  10146. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  10147. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  10148. "shasum": ""
  10149. },
  10150. "require": {
  10151. "php": "^5.3.3 || ^7.0"
  10152. },
  10153. "require-dev": {
  10154. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10155. },
  10156. "type": "library",
  10157. "extra": {
  10158. "branch-alias": {
  10159. "dev-master": "1.0-dev"
  10160. }
  10161. },
  10162. "autoload": {
  10163. "classmap": [
  10164. "src/"
  10165. ]
  10166. },
  10167. "notification-url": "https://packagist.org/downloads/",
  10168. "license": [
  10169. "BSD-3-Clause"
  10170. ],
  10171. "authors": [
  10172. {
  10173. "name": "Sebastian Bergmann",
  10174. "email": "sb@sebastian-bergmann.de",
  10175. "role": "lead"
  10176. }
  10177. ],
  10178. "description": "Utility class for timing",
  10179. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10180. "keywords": [
  10181. "timer"
  10182. ],
  10183. "time": "2017-02-26T11:10:40+00:00"
  10184. },
  10185. {
  10186. "name": "phpunit/php-token-stream",
  10187. "version": "2.0.2",
  10188. "source": {
  10189. "type": "git",
  10190. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  10191. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  10192. },
  10193. "dist": {
  10194. "type": "zip",
  10195. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  10196. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  10197. "shasum": ""
  10198. },
  10199. "require": {
  10200. "ext-tokenizer": "*",
  10201. "php": "^7.0"
  10202. },
  10203. "require-dev": {
  10204. "phpunit/phpunit": "^6.2.4"
  10205. },
  10206. "type": "library",
  10207. "extra": {
  10208. "branch-alias": {
  10209. "dev-master": "2.0-dev"
  10210. }
  10211. },
  10212. "autoload": {
  10213. "classmap": [
  10214. "src/"
  10215. ]
  10216. },
  10217. "notification-url": "https://packagist.org/downloads/",
  10218. "license": [
  10219. "BSD-3-Clause"
  10220. ],
  10221. "authors": [
  10222. {
  10223. "name": "Sebastian Bergmann",
  10224. "email": "sebastian@phpunit.de"
  10225. }
  10226. ],
  10227. "description": "Wrapper around PHP's tokenizer extension.",
  10228. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  10229. "keywords": [
  10230. "tokenizer"
  10231. ],
  10232. "time": "2017-11-27T05:48:46+00:00"
  10233. },
  10234. {
  10235. "name": "phpunit/phpunit",
  10236. "version": "6.5.14",
  10237. "source": {
  10238. "type": "git",
  10239. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10240. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  10241. },
  10242. "dist": {
  10243. "type": "zip",
  10244. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  10245. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  10246. "shasum": ""
  10247. },
  10248. "require": {
  10249. "ext-dom": "*",
  10250. "ext-json": "*",
  10251. "ext-libxml": "*",
  10252. "ext-mbstring": "*",
  10253. "ext-xml": "*",
  10254. "myclabs/deep-copy": "^1.6.1",
  10255. "phar-io/manifest": "^1.0.1",
  10256. "phar-io/version": "^1.0",
  10257. "php": "^7.0",
  10258. "phpspec/prophecy": "^1.7",
  10259. "phpunit/php-code-coverage": "^5.3",
  10260. "phpunit/php-file-iterator": "^1.4.3",
  10261. "phpunit/php-text-template": "^1.2.1",
  10262. "phpunit/php-timer": "^1.0.9",
  10263. "phpunit/phpunit-mock-objects": "^5.0.9",
  10264. "sebastian/comparator": "^2.1",
  10265. "sebastian/diff": "^2.0",
  10266. "sebastian/environment": "^3.1",
  10267. "sebastian/exporter": "^3.1",
  10268. "sebastian/global-state": "^2.0",
  10269. "sebastian/object-enumerator": "^3.0.3",
  10270. "sebastian/resource-operations": "^1.0",
  10271. "sebastian/version": "^2.0.1"
  10272. },
  10273. "conflict": {
  10274. "phpdocumentor/reflection-docblock": "3.0.2",
  10275. "phpunit/dbunit": "<3.0"
  10276. },
  10277. "require-dev": {
  10278. "ext-pdo": "*"
  10279. },
  10280. "suggest": {
  10281. "ext-xdebug": "*",
  10282. "phpunit/php-invoker": "^1.1"
  10283. },
  10284. "bin": [
  10285. "phpunit"
  10286. ],
  10287. "type": "library",
  10288. "extra": {
  10289. "branch-alias": {
  10290. "dev-master": "6.5.x-dev"
  10291. }
  10292. },
  10293. "autoload": {
  10294. "classmap": [
  10295. "src/"
  10296. ]
  10297. },
  10298. "notification-url": "https://packagist.org/downloads/",
  10299. "license": [
  10300. "BSD-3-Clause"
  10301. ],
  10302. "authors": [
  10303. {
  10304. "name": "Sebastian Bergmann",
  10305. "email": "sebastian@phpunit.de",
  10306. "role": "lead"
  10307. }
  10308. ],
  10309. "description": "The PHP Unit Testing framework.",
  10310. "homepage": "https://phpunit.de/",
  10311. "keywords": [
  10312. "phpunit",
  10313. "testing",
  10314. "xunit"
  10315. ],
  10316. "time": "2019-02-01T05:22:47+00:00"
  10317. },
  10318. {
  10319. "name": "phpunit/phpunit-mock-objects",
  10320. "version": "5.0.10",
  10321. "source": {
  10322. "type": "git",
  10323. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  10324. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  10325. },
  10326. "dist": {
  10327. "type": "zip",
  10328. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  10329. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  10330. "shasum": ""
  10331. },
  10332. "require": {
  10333. "doctrine/instantiator": "^1.0.5",
  10334. "php": "^7.0",
  10335. "phpunit/php-text-template": "^1.2.1",
  10336. "sebastian/exporter": "^3.1"
  10337. },
  10338. "conflict": {
  10339. "phpunit/phpunit": "<6.0"
  10340. },
  10341. "require-dev": {
  10342. "phpunit/phpunit": "^6.5.11"
  10343. },
  10344. "suggest": {
  10345. "ext-soap": "*"
  10346. },
  10347. "type": "library",
  10348. "extra": {
  10349. "branch-alias": {
  10350. "dev-master": "5.0.x-dev"
  10351. }
  10352. },
  10353. "autoload": {
  10354. "classmap": [
  10355. "src/"
  10356. ]
  10357. },
  10358. "notification-url": "https://packagist.org/downloads/",
  10359. "license": [
  10360. "BSD-3-Clause"
  10361. ],
  10362. "authors": [
  10363. {
  10364. "name": "Sebastian Bergmann",
  10365. "email": "sebastian@phpunit.de",
  10366. "role": "lead"
  10367. }
  10368. ],
  10369. "description": "Mock Object library for PHPUnit",
  10370. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  10371. "keywords": [
  10372. "mock",
  10373. "xunit"
  10374. ],
  10375. "abandoned": true,
  10376. "time": "2018-08-09T05:50:03+00:00"
  10377. },
  10378. {
  10379. "name": "sebastian/code-unit-reverse-lookup",
  10380. "version": "1.0.1",
  10381. "source": {
  10382. "type": "git",
  10383. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10384. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  10385. },
  10386. "dist": {
  10387. "type": "zip",
  10388. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  10389. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  10390. "shasum": ""
  10391. },
  10392. "require": {
  10393. "php": "^5.6 || ^7.0"
  10394. },
  10395. "require-dev": {
  10396. "phpunit/phpunit": "^5.7 || ^6.0"
  10397. },
  10398. "type": "library",
  10399. "extra": {
  10400. "branch-alias": {
  10401. "dev-master": "1.0.x-dev"
  10402. }
  10403. },
  10404. "autoload": {
  10405. "classmap": [
  10406. "src/"
  10407. ]
  10408. },
  10409. "notification-url": "https://packagist.org/downloads/",
  10410. "license": [
  10411. "BSD-3-Clause"
  10412. ],
  10413. "authors": [
  10414. {
  10415. "name": "Sebastian Bergmann",
  10416. "email": "sebastian@phpunit.de"
  10417. }
  10418. ],
  10419. "description": "Looks up which function or method a line of code belongs to",
  10420. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10421. "time": "2017-03-04T06:30:41+00:00"
  10422. },
  10423. {
  10424. "name": "sebastian/comparator",
  10425. "version": "2.1.3",
  10426. "source": {
  10427. "type": "git",
  10428. "url": "https://github.com/sebastianbergmann/comparator.git",
  10429. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  10430. },
  10431. "dist": {
  10432. "type": "zip",
  10433. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  10434. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  10435. "shasum": ""
  10436. },
  10437. "require": {
  10438. "php": "^7.0",
  10439. "sebastian/diff": "^2.0 || ^3.0",
  10440. "sebastian/exporter": "^3.1"
  10441. },
  10442. "require-dev": {
  10443. "phpunit/phpunit": "^6.4"
  10444. },
  10445. "type": "library",
  10446. "extra": {
  10447. "branch-alias": {
  10448. "dev-master": "2.1.x-dev"
  10449. }
  10450. },
  10451. "autoload": {
  10452. "classmap": [
  10453. "src/"
  10454. ]
  10455. },
  10456. "notification-url": "https://packagist.org/downloads/",
  10457. "license": [
  10458. "BSD-3-Clause"
  10459. ],
  10460. "authors": [
  10461. {
  10462. "name": "Jeff Welch",
  10463. "email": "whatthejeff@gmail.com"
  10464. },
  10465. {
  10466. "name": "Volker Dusch",
  10467. "email": "github@wallbash.com"
  10468. },
  10469. {
  10470. "name": "Bernhard Schussek",
  10471. "email": "bschussek@2bepublished.at"
  10472. },
  10473. {
  10474. "name": "Sebastian Bergmann",
  10475. "email": "sebastian@phpunit.de"
  10476. }
  10477. ],
  10478. "description": "Provides the functionality to compare PHP values for equality",
  10479. "homepage": "https://github.com/sebastianbergmann/comparator",
  10480. "keywords": [
  10481. "comparator",
  10482. "compare",
  10483. "equality"
  10484. ],
  10485. "time": "2018-02-01T13:46:46+00:00"
  10486. },
  10487. {
  10488. "name": "sebastian/diff",
  10489. "version": "2.0.1",
  10490. "source": {
  10491. "type": "git",
  10492. "url": "https://github.com/sebastianbergmann/diff.git",
  10493. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  10494. },
  10495. "dist": {
  10496. "type": "zip",
  10497. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  10498. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  10499. "shasum": ""
  10500. },
  10501. "require": {
  10502. "php": "^7.0"
  10503. },
  10504. "require-dev": {
  10505. "phpunit/phpunit": "^6.2"
  10506. },
  10507. "type": "library",
  10508. "extra": {
  10509. "branch-alias": {
  10510. "dev-master": "2.0-dev"
  10511. }
  10512. },
  10513. "autoload": {
  10514. "classmap": [
  10515. "src/"
  10516. ]
  10517. },
  10518. "notification-url": "https://packagist.org/downloads/",
  10519. "license": [
  10520. "BSD-3-Clause"
  10521. ],
  10522. "authors": [
  10523. {
  10524. "name": "Kore Nordmann",
  10525. "email": "mail@kore-nordmann.de"
  10526. },
  10527. {
  10528. "name": "Sebastian Bergmann",
  10529. "email": "sebastian@phpunit.de"
  10530. }
  10531. ],
  10532. "description": "Diff implementation",
  10533. "homepage": "https://github.com/sebastianbergmann/diff",
  10534. "keywords": [
  10535. "diff"
  10536. ],
  10537. "time": "2017-08-03T08:09:46+00:00"
  10538. },
  10539. {
  10540. "name": "sebastian/environment",
  10541. "version": "3.1.0",
  10542. "source": {
  10543. "type": "git",
  10544. "url": "https://github.com/sebastianbergmann/environment.git",
  10545. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  10546. },
  10547. "dist": {
  10548. "type": "zip",
  10549. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  10550. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  10551. "shasum": ""
  10552. },
  10553. "require": {
  10554. "php": "^7.0"
  10555. },
  10556. "require-dev": {
  10557. "phpunit/phpunit": "^6.1"
  10558. },
  10559. "type": "library",
  10560. "extra": {
  10561. "branch-alias": {
  10562. "dev-master": "3.1.x-dev"
  10563. }
  10564. },
  10565. "autoload": {
  10566. "classmap": [
  10567. "src/"
  10568. ]
  10569. },
  10570. "notification-url": "https://packagist.org/downloads/",
  10571. "license": [
  10572. "BSD-3-Clause"
  10573. ],
  10574. "authors": [
  10575. {
  10576. "name": "Sebastian Bergmann",
  10577. "email": "sebastian@phpunit.de"
  10578. }
  10579. ],
  10580. "description": "Provides functionality to handle HHVM/PHP environments",
  10581. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10582. "keywords": [
  10583. "Xdebug",
  10584. "environment",
  10585. "hhvm"
  10586. ],
  10587. "time": "2017-07-01T08:51:00+00:00"
  10588. },
  10589. {
  10590. "name": "sebastian/exporter",
  10591. "version": "3.1.0",
  10592. "source": {
  10593. "type": "git",
  10594. "url": "https://github.com/sebastianbergmann/exporter.git",
  10595. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  10596. },
  10597. "dist": {
  10598. "type": "zip",
  10599. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  10600. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  10601. "shasum": ""
  10602. },
  10603. "require": {
  10604. "php": "^7.0",
  10605. "sebastian/recursion-context": "^3.0"
  10606. },
  10607. "require-dev": {
  10608. "ext-mbstring": "*",
  10609. "phpunit/phpunit": "^6.0"
  10610. },
  10611. "type": "library",
  10612. "extra": {
  10613. "branch-alias": {
  10614. "dev-master": "3.1.x-dev"
  10615. }
  10616. },
  10617. "autoload": {
  10618. "classmap": [
  10619. "src/"
  10620. ]
  10621. },
  10622. "notification-url": "https://packagist.org/downloads/",
  10623. "license": [
  10624. "BSD-3-Clause"
  10625. ],
  10626. "authors": [
  10627. {
  10628. "name": "Jeff Welch",
  10629. "email": "whatthejeff@gmail.com"
  10630. },
  10631. {
  10632. "name": "Volker Dusch",
  10633. "email": "github@wallbash.com"
  10634. },
  10635. {
  10636. "name": "Bernhard Schussek",
  10637. "email": "bschussek@2bepublished.at"
  10638. },
  10639. {
  10640. "name": "Sebastian Bergmann",
  10641. "email": "sebastian@phpunit.de"
  10642. },
  10643. {
  10644. "name": "Adam Harvey",
  10645. "email": "aharvey@php.net"
  10646. }
  10647. ],
  10648. "description": "Provides the functionality to export PHP variables for visualization",
  10649. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10650. "keywords": [
  10651. "export",
  10652. "exporter"
  10653. ],
  10654. "time": "2017-04-03T13:19:02+00:00"
  10655. },
  10656. {
  10657. "name": "sebastian/global-state",
  10658. "version": "2.0.0",
  10659. "source": {
  10660. "type": "git",
  10661. "url": "https://github.com/sebastianbergmann/global-state.git",
  10662. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  10663. },
  10664. "dist": {
  10665. "type": "zip",
  10666. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  10667. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  10668. "shasum": ""
  10669. },
  10670. "require": {
  10671. "php": "^7.0"
  10672. },
  10673. "require-dev": {
  10674. "phpunit/phpunit": "^6.0"
  10675. },
  10676. "suggest": {
  10677. "ext-uopz": "*"
  10678. },
  10679. "type": "library",
  10680. "extra": {
  10681. "branch-alias": {
  10682. "dev-master": "2.0-dev"
  10683. }
  10684. },
  10685. "autoload": {
  10686. "classmap": [
  10687. "src/"
  10688. ]
  10689. },
  10690. "notification-url": "https://packagist.org/downloads/",
  10691. "license": [
  10692. "BSD-3-Clause"
  10693. ],
  10694. "authors": [
  10695. {
  10696. "name": "Sebastian Bergmann",
  10697. "email": "sebastian@phpunit.de"
  10698. }
  10699. ],
  10700. "description": "Snapshotting of global state",
  10701. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10702. "keywords": [
  10703. "global state"
  10704. ],
  10705. "time": "2017-04-27T15:39:26+00:00"
  10706. },
  10707. {
  10708. "name": "sebastian/object-enumerator",
  10709. "version": "3.0.3",
  10710. "source": {
  10711. "type": "git",
  10712. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10713. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  10714. },
  10715. "dist": {
  10716. "type": "zip",
  10717. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  10718. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  10719. "shasum": ""
  10720. },
  10721. "require": {
  10722. "php": "^7.0",
  10723. "sebastian/object-reflector": "^1.1.1",
  10724. "sebastian/recursion-context": "^3.0"
  10725. },
  10726. "require-dev": {
  10727. "phpunit/phpunit": "^6.0"
  10728. },
  10729. "type": "library",
  10730. "extra": {
  10731. "branch-alias": {
  10732. "dev-master": "3.0.x-dev"
  10733. }
  10734. },
  10735. "autoload": {
  10736. "classmap": [
  10737. "src/"
  10738. ]
  10739. },
  10740. "notification-url": "https://packagist.org/downloads/",
  10741. "license": [
  10742. "BSD-3-Clause"
  10743. ],
  10744. "authors": [
  10745. {
  10746. "name": "Sebastian Bergmann",
  10747. "email": "sebastian@phpunit.de"
  10748. }
  10749. ],
  10750. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10751. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10752. "time": "2017-08-03T12:35:26+00:00"
  10753. },
  10754. {
  10755. "name": "sebastian/object-reflector",
  10756. "version": "1.1.1",
  10757. "source": {
  10758. "type": "git",
  10759. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10760. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  10761. },
  10762. "dist": {
  10763. "type": "zip",
  10764. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  10765. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  10766. "shasum": ""
  10767. },
  10768. "require": {
  10769. "php": "^7.0"
  10770. },
  10771. "require-dev": {
  10772. "phpunit/phpunit": "^6.0"
  10773. },
  10774. "type": "library",
  10775. "extra": {
  10776. "branch-alias": {
  10777. "dev-master": "1.1-dev"
  10778. }
  10779. },
  10780. "autoload": {
  10781. "classmap": [
  10782. "src/"
  10783. ]
  10784. },
  10785. "notification-url": "https://packagist.org/downloads/",
  10786. "license": [
  10787. "BSD-3-Clause"
  10788. ],
  10789. "authors": [
  10790. {
  10791. "name": "Sebastian Bergmann",
  10792. "email": "sebastian@phpunit.de"
  10793. }
  10794. ],
  10795. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10796. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10797. "time": "2017-03-29T09:07:27+00:00"
  10798. },
  10799. {
  10800. "name": "sebastian/recursion-context",
  10801. "version": "3.0.0",
  10802. "source": {
  10803. "type": "git",
  10804. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10805. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  10806. },
  10807. "dist": {
  10808. "type": "zip",
  10809. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  10810. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  10811. "shasum": ""
  10812. },
  10813. "require": {
  10814. "php": "^7.0"
  10815. },
  10816. "require-dev": {
  10817. "phpunit/phpunit": "^6.0"
  10818. },
  10819. "type": "library",
  10820. "extra": {
  10821. "branch-alias": {
  10822. "dev-master": "3.0.x-dev"
  10823. }
  10824. },
  10825. "autoload": {
  10826. "classmap": [
  10827. "src/"
  10828. ]
  10829. },
  10830. "notification-url": "https://packagist.org/downloads/",
  10831. "license": [
  10832. "BSD-3-Clause"
  10833. ],
  10834. "authors": [
  10835. {
  10836. "name": "Jeff Welch",
  10837. "email": "whatthejeff@gmail.com"
  10838. },
  10839. {
  10840. "name": "Sebastian Bergmann",
  10841. "email": "sebastian@phpunit.de"
  10842. },
  10843. {
  10844. "name": "Adam Harvey",
  10845. "email": "aharvey@php.net"
  10846. }
  10847. ],
  10848. "description": "Provides functionality to recursively process PHP variables",
  10849. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10850. "time": "2017-03-03T06:23:57+00:00"
  10851. },
  10852. {
  10853. "name": "sebastian/resource-operations",
  10854. "version": "1.0.0",
  10855. "source": {
  10856. "type": "git",
  10857. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10858. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  10859. },
  10860. "dist": {
  10861. "type": "zip",
  10862. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  10863. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  10864. "shasum": ""
  10865. },
  10866. "require": {
  10867. "php": ">=5.6.0"
  10868. },
  10869. "type": "library",
  10870. "extra": {
  10871. "branch-alias": {
  10872. "dev-master": "1.0.x-dev"
  10873. }
  10874. },
  10875. "autoload": {
  10876. "classmap": [
  10877. "src/"
  10878. ]
  10879. },
  10880. "notification-url": "https://packagist.org/downloads/",
  10881. "license": [
  10882. "BSD-3-Clause"
  10883. ],
  10884. "authors": [
  10885. {
  10886. "name": "Sebastian Bergmann",
  10887. "email": "sebastian@phpunit.de"
  10888. }
  10889. ],
  10890. "description": "Provides a list of PHP built-in functions that operate on resources",
  10891. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10892. "time": "2015-07-28T20:34:47+00:00"
  10893. },
  10894. {
  10895. "name": "sebastian/version",
  10896. "version": "2.0.1",
  10897. "source": {
  10898. "type": "git",
  10899. "url": "https://github.com/sebastianbergmann/version.git",
  10900. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10901. },
  10902. "dist": {
  10903. "type": "zip",
  10904. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10905. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10906. "shasum": ""
  10907. },
  10908. "require": {
  10909. "php": ">=5.6"
  10910. },
  10911. "type": "library",
  10912. "extra": {
  10913. "branch-alias": {
  10914. "dev-master": "2.0.x-dev"
  10915. }
  10916. },
  10917. "autoload": {
  10918. "classmap": [
  10919. "src/"
  10920. ]
  10921. },
  10922. "notification-url": "https://packagist.org/downloads/",
  10923. "license": [
  10924. "BSD-3-Clause"
  10925. ],
  10926. "authors": [
  10927. {
  10928. "name": "Sebastian Bergmann",
  10929. "email": "sebastian@phpunit.de",
  10930. "role": "lead"
  10931. }
  10932. ],
  10933. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10934. "homepage": "https://github.com/sebastianbergmann/version",
  10935. "time": "2016-10-03T07:35:21+00:00"
  10936. },
  10937. {
  10938. "name": "squizlabs/php_codesniffer",
  10939. "version": "3.4.2",
  10940. "source": {
  10941. "type": "git",
  10942. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  10943. "reference": "b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8"
  10944. },
  10945. "dist": {
  10946. "type": "zip",
  10947. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8",
  10948. "reference": "b8a7362af1cc1aadb5bd36c3defc4dda2cf5f0a8",
  10949. "shasum": ""
  10950. },
  10951. "require": {
  10952. "ext-simplexml": "*",
  10953. "ext-tokenizer": "*",
  10954. "ext-xmlwriter": "*",
  10955. "php": ">=5.4.0"
  10956. },
  10957. "require-dev": {
  10958. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  10959. },
  10960. "bin": [
  10961. "bin/phpcs",
  10962. "bin/phpcbf"
  10963. ],
  10964. "type": "library",
  10965. "extra": {
  10966. "branch-alias": {
  10967. "dev-master": "3.x-dev"
  10968. }
  10969. },
  10970. "notification-url": "https://packagist.org/downloads/",
  10971. "license": [
  10972. "BSD-3-Clause"
  10973. ],
  10974. "authors": [
  10975. {
  10976. "name": "Greg Sherwood",
  10977. "role": "lead"
  10978. }
  10979. ],
  10980. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  10981. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  10982. "keywords": [
  10983. "phpcs",
  10984. "standards"
  10985. ],
  10986. "time": "2019-04-10T23:49:02+00:00"
  10987. },
  10988. {
  10989. "name": "symfony/browser-kit",
  10990. "version": "v3.4.26",
  10991. "source": {
  10992. "type": "git",
  10993. "url": "https://github.com/symfony/browser-kit.git",
  10994. "reference": "7f2b0843d5045468225f9a9b27a0cb171ae81828"
  10995. },
  10996. "dist": {
  10997. "type": "zip",
  10998. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/7f2b0843d5045468225f9a9b27a0cb171ae81828",
  10999. "reference": "7f2b0843d5045468225f9a9b27a0cb171ae81828",
  11000. "shasum": ""
  11001. },
  11002. "require": {
  11003. "php": "^5.5.9|>=7.0.8",
  11004. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  11005. },
  11006. "require-dev": {
  11007. "symfony/css-selector": "~2.8|~3.0|~4.0",
  11008. "symfony/process": "~2.8|~3.0|~4.0"
  11009. },
  11010. "suggest": {
  11011. "symfony/process": ""
  11012. },
  11013. "type": "library",
  11014. "extra": {
  11015. "branch-alias": {
  11016. "dev-master": "3.4-dev"
  11017. }
  11018. },
  11019. "autoload": {
  11020. "psr-4": {
  11021. "Symfony\\Component\\BrowserKit\\": ""
  11022. },
  11023. "exclude-from-classmap": [
  11024. "/Tests/"
  11025. ]
  11026. },
  11027. "notification-url": "https://packagist.org/downloads/",
  11028. "license": [
  11029. "MIT"
  11030. ],
  11031. "authors": [
  11032. {
  11033. "name": "Fabien Potencier",
  11034. "email": "fabien@symfony.com"
  11035. },
  11036. {
  11037. "name": "Symfony Community",
  11038. "homepage": "https://symfony.com/contributors"
  11039. }
  11040. ],
  11041. "description": "Symfony BrowserKit Component",
  11042. "homepage": "https://symfony.com",
  11043. "time": "2019-04-06T19:33:58+00:00"
  11044. },
  11045. {
  11046. "name": "symfony/phpunit-bridge",
  11047. "version": "v3.4.26",
  11048. "source": {
  11049. "type": "git",
  11050. "url": "https://github.com/symfony/phpunit-bridge.git",
  11051. "reference": "a43a2f6c465a2d99635fea0addbebddc3864ad97"
  11052. },
  11053. "dist": {
  11054. "type": "zip",
  11055. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/a43a2f6c465a2d99635fea0addbebddc3864ad97",
  11056. "reference": "a43a2f6c465a2d99635fea0addbebddc3864ad97",
  11057. "shasum": ""
  11058. },
  11059. "require": {
  11060. "php": ">=5.3.3"
  11061. },
  11062. "conflict": {
  11063. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  11064. },
  11065. "suggest": {
  11066. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  11067. },
  11068. "bin": [
  11069. "bin/simple-phpunit"
  11070. ],
  11071. "type": "symfony-bridge",
  11072. "extra": {
  11073. "branch-alias": {
  11074. "dev-master": "3.4-dev"
  11075. },
  11076. "thanks": {
  11077. "name": "phpunit/phpunit",
  11078. "url": "https://github.com/sebastianbergmann/phpunit"
  11079. }
  11080. },
  11081. "autoload": {
  11082. "files": [
  11083. "bootstrap.php"
  11084. ],
  11085. "psr-4": {
  11086. "Symfony\\Bridge\\PhpUnit\\": ""
  11087. },
  11088. "exclude-from-classmap": [
  11089. "/Tests/"
  11090. ]
  11091. },
  11092. "notification-url": "https://packagist.org/downloads/",
  11093. "license": [
  11094. "MIT"
  11095. ],
  11096. "authors": [
  11097. {
  11098. "name": "Nicolas Grekas",
  11099. "email": "p@tchwork.com"
  11100. },
  11101. {
  11102. "name": "Symfony Community",
  11103. "homepage": "https://symfony.com/contributors"
  11104. }
  11105. ],
  11106. "description": "Symfony PHPUnit Bridge",
  11107. "homepage": "https://symfony.com",
  11108. "time": "2019-04-16T09:03:16+00:00"
  11109. },
  11110. {
  11111. "name": "theseer/tokenizer",
  11112. "version": "1.1.2",
  11113. "source": {
  11114. "type": "git",
  11115. "url": "https://github.com/theseer/tokenizer.git",
  11116. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8"
  11117. },
  11118. "dist": {
  11119. "type": "zip",
  11120. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/1c42705be2b6c1de5904f8afacef5895cab44bf8",
  11121. "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8",
  11122. "shasum": ""
  11123. },
  11124. "require": {
  11125. "ext-dom": "*",
  11126. "ext-tokenizer": "*",
  11127. "ext-xmlwriter": "*",
  11128. "php": "^7.0"
  11129. },
  11130. "type": "library",
  11131. "autoload": {
  11132. "classmap": [
  11133. "src/"
  11134. ]
  11135. },
  11136. "notification-url": "https://packagist.org/downloads/",
  11137. "license": [
  11138. "BSD-3-Clause"
  11139. ],
  11140. "authors": [
  11141. {
  11142. "name": "Arne Blankerts",
  11143. "email": "arne@blankerts.de",
  11144. "role": "Developer"
  11145. }
  11146. ],
  11147. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11148. "time": "2019-04-04T09:56:43+00:00"
  11149. },
  11150. {
  11151. "name": "webflo/drupal-core-require-dev",
  11152. "version": "8.6.15",
  11153. "source": {
  11154. "type": "git",
  11155. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  11156. "reference": "6b3d632fa16e56858706fe0394eafe88a13a9cd0"
  11157. },
  11158. "dist": {
  11159. "type": "zip",
  11160. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/6b3d632fa16e56858706fe0394eafe88a13a9cd0",
  11161. "reference": "6b3d632fa16e56858706fe0394eafe88a13a9cd0",
  11162. "shasum": ""
  11163. },
  11164. "require": {
  11165. "behat/mink": "1.7.x-dev",
  11166. "behat/mink-goutte-driver": "^1.2",
  11167. "behat/mink-selenium2-driver": "1.3.x-dev",
  11168. "drupal/coder": "^8.2.12",
  11169. "drupal/core": "8.6.15",
  11170. "jcalderonzumba/gastonjs": "^1.0.2",
  11171. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  11172. "mikey179/vfsstream": "^1.2",
  11173. "phpspec/prophecy": "^1.7",
  11174. "phpunit/phpunit": "^4.8.35 || ^6.5",
  11175. "symfony/css-selector": "^3.4.0",
  11176. "symfony/debug": "^3.4.0",
  11177. "symfony/phpunit-bridge": "^3.4.3"
  11178. },
  11179. "type": "metapackage",
  11180. "notification-url": "https://packagist.org/downloads/",
  11181. "license": [
  11182. "GPL-2.0-or-later"
  11183. ],
  11184. "description": "require-dev dependencies from drupal/core",
  11185. "time": "2019-04-17T20:31:37+00:00"
  11186. }
  11187. ],
  11188. "aliases": [],
  11189. "minimum-stability": "dev",
  11190. "stability-flags": {
  11191. "drupal/bulkdelete": 20,
  11192. "drupal/domain_menu_access": 20,
  11193. "drupal/filefield_sources": 20,
  11194. "drupal/filter_perms": 20,
  11195. "drupal/maillog": 20,
  11196. "drupal/path_alias_xt": 20,
  11197. "drupal/synonyms": 20,
  11198. "drupal/toolbar_themes": 20,
  11199. "drupal/workflow": 20
  11200. },
  11201. "prefer-stable": true,
  11202. "prefer-lowest": false,
  11203. "platform": {
  11204. "php": ">=5.6"
  11205. },
  11206. "platform-dev": []
  11207. }