composer.lock 476 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250
  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": "1b3daf3240884b4153434016242f1772",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/5ffdc93de0af2770d396bf433d8b2667c77277ea",
  20. "reference": "5ffdc93de0af2770d396bf433d8b2667c77277ea",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "ext-mbstring": "*",
  26. "php": ">=5.5",
  27. "symfony/filesystem": "^2.0.5|^3.0",
  28. "symfony/process": "^2.1|^3.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0|^5.0",
  35. "symfony/finder": "^2.0.5|^3.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2016-11-03T16:10:31+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.2.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  84. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2017-12-20T14:37:45+00:00"
  124. },
  125. {
  126. "name": "chi-teck/drupal-code-generator",
  127. "version": "1.28.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  131. "reference": "a43131309b56a4c1874f39a9eaa4f6cb1a9832cd"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/a43131309b56a4c1874f39a9eaa4f6cb1a9832cd",
  136. "reference": "a43131309b56a4c1874f39a9eaa4f6cb1a9832cd",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "ext-json": "*",
  141. "php": ">=5.5.9",
  142. "symfony/console": "^3.4 || ^4.0",
  143. "symfony/filesystem": "^3.4 || ^4.0",
  144. "twig/twig": "^1.35"
  145. },
  146. "bin": [
  147. "bin/dcg"
  148. ],
  149. "type": "library",
  150. "extra": {
  151. "branch-alias": {
  152. "dev-master": "1.x-dev"
  153. }
  154. },
  155. "autoload": {
  156. "files": [
  157. "src/bootstrap.php"
  158. ],
  159. "psr-4": {
  160. "DrupalCodeGenerator\\": "src"
  161. }
  162. },
  163. "notification-url": "https://packagist.org/downloads/",
  164. "license": [
  165. "GPL-2.0-or-later"
  166. ],
  167. "description": "Drupal code generator",
  168. "time": "2019-01-30T10:34:16+00:00"
  169. },
  170. {
  171. "name": "commerceguys/addressing",
  172. "version": "v1.0.2",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/commerceguys/addressing.git",
  176. "reference": "f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b",
  181. "reference": "f23ce2596ccfb47bcdaa9d14fbf9b4f699dc3d4b",
  182. "shasum": ""
  183. },
  184. "require": {
  185. "doctrine/collections": "~1.0",
  186. "php": ">=5.5.0"
  187. },
  188. "require-dev": {
  189. "mikey179/vfsstream": "1.*",
  190. "phpunit/phpunit": "~4.0",
  191. "squizlabs/php_codesniffer": "2.*",
  192. "symfony/validator": ">=3.2"
  193. },
  194. "suggest": {
  195. "symfony/validator": "to validate addresses"
  196. },
  197. "type": "library",
  198. "extra": {
  199. "branch-alias": {
  200. "dev-master": "1.x-dev"
  201. }
  202. },
  203. "autoload": {
  204. "psr-4": {
  205. "CommerceGuys\\Addressing\\": "src"
  206. }
  207. },
  208. "notification-url": "https://packagist.org/downloads/",
  209. "license": [
  210. "MIT"
  211. ],
  212. "authors": [
  213. {
  214. "name": "Bojan Zivanovic"
  215. },
  216. {
  217. "name": "Damien Tournoud"
  218. }
  219. ],
  220. "description": "Addressing library powered by CLDR and Google's address data.",
  221. "keywords": [
  222. "address",
  223. "internationalization",
  224. "localization",
  225. "postal"
  226. ],
  227. "time": "2018-10-21T23:38:05+00:00"
  228. },
  229. {
  230. "name": "components/highlightjs",
  231. "version": "9.7.0",
  232. "dist": {
  233. "type": "zip",
  234. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip",
  235. "reference": null,
  236. "shasum": null
  237. },
  238. "type": "drupal-library"
  239. },
  240. {
  241. "name": "composer/installers",
  242. "version": "v1.6.0",
  243. "source": {
  244. "type": "git",
  245. "url": "https://github.com/composer/installers.git",
  246. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  247. },
  248. "dist": {
  249. "type": "zip",
  250. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  251. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  252. "shasum": ""
  253. },
  254. "require": {
  255. "composer-plugin-api": "^1.0"
  256. },
  257. "replace": {
  258. "roundcube/plugin-installer": "*",
  259. "shama/baton": "*"
  260. },
  261. "require-dev": {
  262. "composer/composer": "1.0.*@dev",
  263. "phpunit/phpunit": "^4.8.36"
  264. },
  265. "type": "composer-plugin",
  266. "extra": {
  267. "class": "Composer\\Installers\\Plugin",
  268. "branch-alias": {
  269. "dev-master": "1.0-dev"
  270. }
  271. },
  272. "autoload": {
  273. "psr-4": {
  274. "Composer\\Installers\\": "src/Composer/Installers"
  275. }
  276. },
  277. "notification-url": "https://packagist.org/downloads/",
  278. "license": [
  279. "MIT"
  280. ],
  281. "authors": [
  282. {
  283. "name": "Kyle Robinson Young",
  284. "email": "kyle@dontkry.com",
  285. "homepage": "https://github.com/shama"
  286. }
  287. ],
  288. "description": "A multi-framework Composer library installer",
  289. "homepage": "https://composer.github.io/installers/",
  290. "keywords": [
  291. "Craft",
  292. "Dolibarr",
  293. "Eliasis",
  294. "Hurad",
  295. "ImageCMS",
  296. "Kanboard",
  297. "Lan Management System",
  298. "MODX Evo",
  299. "Mautic",
  300. "Maya",
  301. "OXID",
  302. "Plentymarkets",
  303. "Porto",
  304. "RadPHP",
  305. "SMF",
  306. "Thelia",
  307. "WolfCMS",
  308. "agl",
  309. "aimeos",
  310. "annotatecms",
  311. "attogram",
  312. "bitrix",
  313. "cakephp",
  314. "chef",
  315. "cockpit",
  316. "codeigniter",
  317. "concrete5",
  318. "croogo",
  319. "dokuwiki",
  320. "drupal",
  321. "eZ Platform",
  322. "elgg",
  323. "expressionengine",
  324. "fuelphp",
  325. "grav",
  326. "installer",
  327. "itop",
  328. "joomla",
  329. "kohana",
  330. "laravel",
  331. "lavalite",
  332. "lithium",
  333. "magento",
  334. "majima",
  335. "mako",
  336. "mediawiki",
  337. "modulework",
  338. "modx",
  339. "moodle",
  340. "osclass",
  341. "phpbb",
  342. "piwik",
  343. "ppi",
  344. "puppet",
  345. "pxcms",
  346. "reindex",
  347. "roundcube",
  348. "shopware",
  349. "silverstripe",
  350. "sydes",
  351. "symfony",
  352. "typo3",
  353. "wordpress",
  354. "yawik",
  355. "zend",
  356. "zikula"
  357. ],
  358. "time": "2018-08-27T06:10:37+00:00"
  359. },
  360. {
  361. "name": "composer/semver",
  362. "version": "1.4.2",
  363. "source": {
  364. "type": "git",
  365. "url": "https://github.com/composer/semver.git",
  366. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  367. },
  368. "dist": {
  369. "type": "zip",
  370. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  371. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  372. "shasum": ""
  373. },
  374. "require": {
  375. "php": "^5.3.2 || ^7.0"
  376. },
  377. "require-dev": {
  378. "phpunit/phpunit": "^4.5 || ^5.0.5",
  379. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  380. },
  381. "type": "library",
  382. "extra": {
  383. "branch-alias": {
  384. "dev-master": "1.x-dev"
  385. }
  386. },
  387. "autoload": {
  388. "psr-4": {
  389. "Composer\\Semver\\": "src"
  390. }
  391. },
  392. "notification-url": "https://packagist.org/downloads/",
  393. "license": [
  394. "MIT"
  395. ],
  396. "authors": [
  397. {
  398. "name": "Nils Adermann",
  399. "email": "naderman@naderman.de",
  400. "homepage": "http://www.naderman.de"
  401. },
  402. {
  403. "name": "Jordi Boggiano",
  404. "email": "j.boggiano@seld.be",
  405. "homepage": "http://seld.be"
  406. },
  407. {
  408. "name": "Rob Bast",
  409. "email": "rob.bast@gmail.com",
  410. "homepage": "http://robbast.nl"
  411. }
  412. ],
  413. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  414. "keywords": [
  415. "semantic",
  416. "semver",
  417. "validation",
  418. "versioning"
  419. ],
  420. "time": "2016-08-30T16:08:34+00:00"
  421. },
  422. {
  423. "name": "consolidation/annotated-command",
  424. "version": "2.11.2",
  425. "source": {
  426. "type": "git",
  427. "url": "https://github.com/consolidation/annotated-command.git",
  428. "reference": "004af26391cd7d1cd04b0ac736dc1324d1b4f572"
  429. },
  430. "dist": {
  431. "type": "zip",
  432. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/004af26391cd7d1cd04b0ac736dc1324d1b4f572",
  433. "reference": "004af26391cd7d1cd04b0ac736dc1324d1b4f572",
  434. "shasum": ""
  435. },
  436. "require": {
  437. "consolidation/output-formatters": "^3.4",
  438. "php": ">=5.4.5",
  439. "psr/log": "^1",
  440. "symfony/console": "^2.8|^3|^4",
  441. "symfony/event-dispatcher": "^2.5|^3|^4",
  442. "symfony/finder": "^2.5|^3|^4"
  443. },
  444. "require-dev": {
  445. "g1a/composer-test-scenarios": "^3",
  446. "php-coveralls/php-coveralls": "^1",
  447. "phpunit/phpunit": "^6",
  448. "squizlabs/php_codesniffer": "^2.7"
  449. },
  450. "type": "library",
  451. "extra": {
  452. "scenarios": {
  453. "symfony4": {
  454. "require": {
  455. "symfony/console": "^4.0"
  456. },
  457. "config": {
  458. "platform": {
  459. "php": "7.1.3"
  460. }
  461. }
  462. },
  463. "symfony2": {
  464. "require": {
  465. "symfony/console": "^2.8"
  466. },
  467. "require-dev": {
  468. "phpunit/phpunit": "^4.8.36"
  469. },
  470. "remove": [
  471. "php-coveralls/php-coveralls"
  472. ],
  473. "config": {
  474. "platform": {
  475. "php": "5.4.8"
  476. }
  477. },
  478. "scenario-options": {
  479. "create-lockfile": "false"
  480. }
  481. },
  482. "phpunit4": {
  483. "require-dev": {
  484. "phpunit/phpunit": "^4.8.36"
  485. },
  486. "remove": [
  487. "php-coveralls/php-coveralls"
  488. ],
  489. "config": {
  490. "platform": {
  491. "php": "5.4.8"
  492. }
  493. }
  494. }
  495. },
  496. "branch-alias": {
  497. "dev-master": "2.x-dev"
  498. }
  499. },
  500. "autoload": {
  501. "psr-4": {
  502. "Consolidation\\AnnotatedCommand\\": "src"
  503. }
  504. },
  505. "notification-url": "https://packagist.org/downloads/",
  506. "license": [
  507. "MIT"
  508. ],
  509. "authors": [
  510. {
  511. "name": "Greg Anderson",
  512. "email": "greg.1.anderson@greenknowe.org"
  513. }
  514. ],
  515. "description": "Initialize Symfony Console commands from annotated command class methods.",
  516. "time": "2019-02-02T02:29:53+00:00"
  517. },
  518. {
  519. "name": "consolidation/config",
  520. "version": "1.1.1",
  521. "source": {
  522. "type": "git",
  523. "url": "https://github.com/consolidation/config.git",
  524. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c"
  525. },
  526. "dist": {
  527. "type": "zip",
  528. "url": "https://api.github.com/repos/consolidation/config/zipball/925231dfff32f05b787e1fddb265e789b939cf4c",
  529. "reference": "925231dfff32f05b787e1fddb265e789b939cf4c",
  530. "shasum": ""
  531. },
  532. "require": {
  533. "dflydev/dot-access-data": "^1.1.0",
  534. "grasmash/expander": "^1",
  535. "php": ">=5.4.0"
  536. },
  537. "require-dev": {
  538. "g1a/composer-test-scenarios": "^1",
  539. "phpunit/phpunit": "^5",
  540. "satooshi/php-coveralls": "^1.0",
  541. "squizlabs/php_codesniffer": "2.*",
  542. "symfony/console": "^2.5|^3|^4",
  543. "symfony/yaml": "^2.8.11|^3|^4"
  544. },
  545. "suggest": {
  546. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "branch-alias": {
  551. "dev-master": "1.x-dev"
  552. }
  553. },
  554. "autoload": {
  555. "psr-4": {
  556. "Consolidation\\Config\\": "src"
  557. }
  558. },
  559. "notification-url": "https://packagist.org/downloads/",
  560. "license": [
  561. "MIT"
  562. ],
  563. "authors": [
  564. {
  565. "name": "Greg Anderson",
  566. "email": "greg.1.anderson@greenknowe.org"
  567. }
  568. ],
  569. "description": "Provide configuration services for a commandline tool.",
  570. "time": "2018-10-24T17:55:35+00:00"
  571. },
  572. {
  573. "name": "consolidation/log",
  574. "version": "1.1.1",
  575. "source": {
  576. "type": "git",
  577. "url": "https://github.com/consolidation/log.git",
  578. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  579. },
  580. "dist": {
  581. "type": "zip",
  582. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  583. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  584. "shasum": ""
  585. },
  586. "require": {
  587. "php": ">=5.4.5",
  588. "psr/log": "^1.0",
  589. "symfony/console": "^2.8|^3|^4"
  590. },
  591. "require-dev": {
  592. "g1a/composer-test-scenarios": "^3",
  593. "php-coveralls/php-coveralls": "^1",
  594. "phpunit/phpunit": "^6",
  595. "squizlabs/php_codesniffer": "^2"
  596. },
  597. "type": "library",
  598. "extra": {
  599. "scenarios": {
  600. "symfony4": {
  601. "require": {
  602. "symfony/console": "^4.0"
  603. },
  604. "config": {
  605. "platform": {
  606. "php": "7.1.3"
  607. }
  608. }
  609. },
  610. "symfony2": {
  611. "require": {
  612. "symfony/console": "^2.8"
  613. },
  614. "require-dev": {
  615. "phpunit/phpunit": "^4.8.36"
  616. },
  617. "remove": [
  618. "php-coveralls/php-coveralls"
  619. ],
  620. "config": {
  621. "platform": {
  622. "php": "5.4.8"
  623. }
  624. }
  625. },
  626. "phpunit4": {
  627. "require-dev": {
  628. "phpunit/phpunit": "^4.8.36"
  629. },
  630. "remove": [
  631. "php-coveralls/php-coveralls"
  632. ],
  633. "config": {
  634. "platform": {
  635. "php": "5.4.8"
  636. }
  637. }
  638. }
  639. },
  640. "branch-alias": {
  641. "dev-master": "1.x-dev"
  642. }
  643. },
  644. "autoload": {
  645. "psr-4": {
  646. "Consolidation\\Log\\": "src"
  647. }
  648. },
  649. "notification-url": "https://packagist.org/downloads/",
  650. "license": [
  651. "MIT"
  652. ],
  653. "authors": [
  654. {
  655. "name": "Greg Anderson",
  656. "email": "greg.1.anderson@greenknowe.org"
  657. }
  658. ],
  659. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  660. "time": "2019-01-01T17:30:51+00:00"
  661. },
  662. {
  663. "name": "consolidation/output-formatters",
  664. "version": "3.4.0",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/consolidation/output-formatters.git",
  668. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a942680232094c4a5b21c0b7e54c20cce623ae19",
  673. "reference": "a942680232094c4a5b21c0b7e54c20cce623ae19",
  674. "shasum": ""
  675. },
  676. "require": {
  677. "dflydev/dot-access-data": "^1.1.0",
  678. "php": ">=5.4.0",
  679. "symfony/console": "^2.8|^3|^4",
  680. "symfony/finder": "^2.5|^3|^4"
  681. },
  682. "require-dev": {
  683. "g1a/composer-test-scenarios": "^2",
  684. "phpunit/phpunit": "^5.7.27",
  685. "satooshi/php-coveralls": "^2",
  686. "squizlabs/php_codesniffer": "^2.7",
  687. "symfony/console": "3.2.3",
  688. "symfony/var-dumper": "^2.8|^3|^4",
  689. "victorjonsson/markdowndocs": "^1.3"
  690. },
  691. "suggest": {
  692. "symfony/var-dumper": "For using the var_dump formatter"
  693. },
  694. "type": "library",
  695. "extra": {
  696. "branch-alias": {
  697. "dev-master": "3.x-dev"
  698. }
  699. },
  700. "autoload": {
  701. "psr-4": {
  702. "Consolidation\\OutputFormatters\\": "src"
  703. }
  704. },
  705. "notification-url": "https://packagist.org/downloads/",
  706. "license": [
  707. "MIT"
  708. ],
  709. "authors": [
  710. {
  711. "name": "Greg Anderson",
  712. "email": "greg.1.anderson@greenknowe.org"
  713. }
  714. ],
  715. "description": "Format text by applying transformations provided by plug-in formatters.",
  716. "time": "2018-10-19T22:35:38+00:00"
  717. },
  718. {
  719. "name": "consolidation/robo",
  720. "version": "1.4.4",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/consolidation/Robo.git",
  724. "reference": "8bec6a6ea54a7d03d56552a4250c49dec3b3083d"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/consolidation/Robo/zipball/8bec6a6ea54a7d03d56552a4250c49dec3b3083d",
  729. "reference": "8bec6a6ea54a7d03d56552a4250c49dec3b3083d",
  730. "shasum": ""
  731. },
  732. "require": {
  733. "consolidation/annotated-command": "^2.10.2",
  734. "consolidation/config": "^1.0.10",
  735. "consolidation/log": "~1",
  736. "consolidation/output-formatters": "^3.1.13",
  737. "consolidation/self-update": "^1",
  738. "grasmash/yaml-expander": "^1.3",
  739. "league/container": "^2.2",
  740. "php": ">=5.5.0",
  741. "symfony/console": "^2.8|^3|^4",
  742. "symfony/event-dispatcher": "^2.5|^3|^4",
  743. "symfony/filesystem": "^2.5|^3|^4",
  744. "symfony/finder": "^2.5|^3|^4",
  745. "symfony/process": "^2.5|^3|^4"
  746. },
  747. "replace": {
  748. "codegyre/robo": "< 1.0"
  749. },
  750. "require-dev": {
  751. "codeception/aspect-mock": "^1|^2.1.1",
  752. "codeception/base": "^2.3.7",
  753. "codeception/verify": "^0.3.2",
  754. "g1a/composer-test-scenarios": "^3",
  755. "goaop/framework": "~2.1.2",
  756. "goaop/parser-reflection": "^1.1.0",
  757. "natxet/cssmin": "3.0.4",
  758. "nikic/php-parser": "^3.1.5",
  759. "patchwork/jsqueeze": "~2",
  760. "pear/archive_tar": "^1.4.4",
  761. "php-coveralls/php-coveralls": "^1",
  762. "phpunit/php-code-coverage": "~2|~4",
  763. "squizlabs/php_codesniffer": "^2.8"
  764. },
  765. "suggest": {
  766. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  767. "natxet/CssMin": "For minifying CSS files in taskMinify",
  768. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  769. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  770. },
  771. "bin": [
  772. "robo"
  773. ],
  774. "type": "library",
  775. "extra": {
  776. "scenarios": {
  777. "symfony4": {
  778. "require": {
  779. "symfony/console": "^4"
  780. },
  781. "config": {
  782. "platform": {
  783. "php": "7.1.3"
  784. }
  785. }
  786. },
  787. "symfony2": {
  788. "require": {
  789. "symfony/console": "^2.8"
  790. },
  791. "remove": [
  792. "goaop/framework"
  793. ],
  794. "config": {
  795. "platform": {
  796. "php": "5.5.9"
  797. }
  798. },
  799. "scenario-options": {
  800. "create-lockfile": "false"
  801. }
  802. }
  803. },
  804. "branch-alias": {
  805. "dev-master": "2.x-dev"
  806. }
  807. },
  808. "autoload": {
  809. "psr-4": {
  810. "Robo\\": "src"
  811. }
  812. },
  813. "notification-url": "https://packagist.org/downloads/",
  814. "license": [
  815. "MIT"
  816. ],
  817. "authors": [
  818. {
  819. "name": "Davert",
  820. "email": "davert.php@resend.cc"
  821. }
  822. ],
  823. "description": "Modern task runner",
  824. "time": "2019-02-08T20:59:23+00:00"
  825. },
  826. {
  827. "name": "consolidation/self-update",
  828. "version": "1.1.5",
  829. "source": {
  830. "type": "git",
  831. "url": "https://github.com/consolidation/self-update.git",
  832. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  833. },
  834. "dist": {
  835. "type": "zip",
  836. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  837. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  838. "shasum": ""
  839. },
  840. "require": {
  841. "php": ">=5.5.0",
  842. "symfony/console": "^2.8|^3|^4",
  843. "symfony/filesystem": "^2.5|^3|^4"
  844. },
  845. "bin": [
  846. "scripts/release"
  847. ],
  848. "type": "library",
  849. "extra": {
  850. "branch-alias": {
  851. "dev-master": "1.x-dev"
  852. }
  853. },
  854. "autoload": {
  855. "psr-4": {
  856. "SelfUpdate\\": "src"
  857. }
  858. },
  859. "notification-url": "https://packagist.org/downloads/",
  860. "license": [
  861. "MIT"
  862. ],
  863. "authors": [
  864. {
  865. "name": "Greg Anderson",
  866. "email": "greg.1.anderson@greenknowe.org"
  867. },
  868. {
  869. "name": "Alexander Menk",
  870. "email": "menk@mestrona.net"
  871. }
  872. ],
  873. "description": "Provides a self:update command for Symfony Console applications.",
  874. "time": "2018-10-28T01:52:03+00:00"
  875. },
  876. {
  877. "name": "consolidation/site-alias",
  878. "version": "1.1.11",
  879. "source": {
  880. "type": "git",
  881. "url": "https://github.com/consolidation/site-alias.git",
  882. "reference": "54ea74ee7dbd54ef356798028ca9a3548cb8df14"
  883. },
  884. "dist": {
  885. "type": "zip",
  886. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/54ea74ee7dbd54ef356798028ca9a3548cb8df14",
  887. "reference": "54ea74ee7dbd54ef356798028ca9a3548cb8df14",
  888. "shasum": ""
  889. },
  890. "require": {
  891. "php": ">=5.5.0"
  892. },
  893. "require-dev": {
  894. "consolidation/robo": "^1.2.3",
  895. "g1a/composer-test-scenarios": "^2",
  896. "knplabs/github-api": "^2.7",
  897. "php-http/guzzle6-adapter": "^1.1",
  898. "phpunit/phpunit": "^5",
  899. "satooshi/php-coveralls": "^2",
  900. "squizlabs/php_codesniffer": "^2.8",
  901. "symfony/console": "^2.8|^3|^4",
  902. "symfony/yaml": "~2.3|^3"
  903. },
  904. "type": "library",
  905. "extra": {
  906. "branch-alias": {
  907. "dev-master": "1.x-dev"
  908. }
  909. },
  910. "autoload": {
  911. "psr-4": {
  912. "Consolidation\\SiteAlias\\": "src"
  913. }
  914. },
  915. "notification-url": "https://packagist.org/downloads/",
  916. "license": [
  917. "MIT"
  918. ],
  919. "authors": [
  920. {
  921. "name": "Moshe Weitzman",
  922. "email": "weitzman@tejasa.com"
  923. },
  924. {
  925. "name": "Greg Anderson",
  926. "email": "greg.1.anderson@greenknowe.org"
  927. }
  928. ],
  929. "description": "Manage alias records for local and remote sites.",
  930. "time": "2018-11-03T05:07:56+00:00"
  931. },
  932. {
  933. "name": "container-interop/container-interop",
  934. "version": "1.2.0",
  935. "source": {
  936. "type": "git",
  937. "url": "https://github.com/container-interop/container-interop.git",
  938. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  939. },
  940. "dist": {
  941. "type": "zip",
  942. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  943. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  944. "shasum": ""
  945. },
  946. "require": {
  947. "psr/container": "^1.0"
  948. },
  949. "type": "library",
  950. "autoload": {
  951. "psr-4": {
  952. "Interop\\Container\\": "src/Interop/Container/"
  953. }
  954. },
  955. "notification-url": "https://packagist.org/downloads/",
  956. "license": [
  957. "MIT"
  958. ],
  959. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  960. "homepage": "https://github.com/container-interop/container-interop",
  961. "time": "2017-02-14T19:40:03+00:00"
  962. },
  963. {
  964. "name": "cweagans/composer-patches",
  965. "version": "1.6.5",
  966. "source": {
  967. "type": "git",
  968. "url": "https://github.com/cweagans/composer-patches.git",
  969. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  970. },
  971. "dist": {
  972. "type": "zip",
  973. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  974. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  975. "shasum": ""
  976. },
  977. "require": {
  978. "composer-plugin-api": "^1.0",
  979. "php": ">=5.3.0"
  980. },
  981. "require-dev": {
  982. "composer/composer": "~1.0",
  983. "phpunit/phpunit": "~4.6"
  984. },
  985. "type": "composer-plugin",
  986. "extra": {
  987. "class": "cweagans\\Composer\\Patches"
  988. },
  989. "autoload": {
  990. "psr-4": {
  991. "cweagans\\Composer\\": "src"
  992. }
  993. },
  994. "notification-url": "https://packagist.org/downloads/",
  995. "license": [
  996. "BSD-3-Clause"
  997. ],
  998. "authors": [
  999. {
  1000. "name": "Cameron Eagans",
  1001. "email": "me@cweagans.net"
  1002. }
  1003. ],
  1004. "description": "Provides a way to patch Composer packages.",
  1005. "time": "2018-05-11T18:00:16+00:00"
  1006. },
  1007. {
  1008. "name": "d3/d3",
  1009. "version": "v3.5.17",
  1010. "dist": {
  1011. "type": "zip",
  1012. "url": "https://github.com/d3/d3/archive/v3.5.17.zip",
  1013. "reference": null,
  1014. "shasum": null
  1015. },
  1016. "type": "drupal-library"
  1017. },
  1018. {
  1019. "name": "dflydev/dot-access-configuration",
  1020. "version": "v1.0.3",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1024. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1029. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1030. "shasum": ""
  1031. },
  1032. "require": {
  1033. "dflydev/dot-access-data": "1.*",
  1034. "dflydev/placeholder-resolver": "1.*",
  1035. "php": ">=5.3.2"
  1036. },
  1037. "require-dev": {
  1038. "symfony/yaml": "~2.1"
  1039. },
  1040. "suggest": {
  1041. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1042. },
  1043. "type": "library",
  1044. "extra": {
  1045. "branch-alias": {
  1046. "dev-master": "1.0-dev"
  1047. }
  1048. },
  1049. "autoload": {
  1050. "psr-0": {
  1051. "Dflydev\\DotAccessConfiguration": "src"
  1052. }
  1053. },
  1054. "notification-url": "https://packagist.org/downloads/",
  1055. "license": [
  1056. "MIT"
  1057. ],
  1058. "authors": [
  1059. {
  1060. "name": "Dragonfly Development Inc.",
  1061. "email": "info@dflydev.com",
  1062. "homepage": "http://dflydev.com"
  1063. },
  1064. {
  1065. "name": "Beau Simensen",
  1066. "email": "beau@dflydev.com",
  1067. "homepage": "http://beausimensen.com"
  1068. }
  1069. ],
  1070. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1071. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1072. "keywords": [
  1073. "config",
  1074. "configuration"
  1075. ],
  1076. "time": "2018-09-08T23:00:17+00:00"
  1077. },
  1078. {
  1079. "name": "dflydev/dot-access-data",
  1080. "version": "v1.1.0",
  1081. "source": {
  1082. "type": "git",
  1083. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1084. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1085. },
  1086. "dist": {
  1087. "type": "zip",
  1088. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1089. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1090. "shasum": ""
  1091. },
  1092. "require": {
  1093. "php": ">=5.3.2"
  1094. },
  1095. "type": "library",
  1096. "extra": {
  1097. "branch-alias": {
  1098. "dev-master": "1.0-dev"
  1099. }
  1100. },
  1101. "autoload": {
  1102. "psr-0": {
  1103. "Dflydev\\DotAccessData": "src"
  1104. }
  1105. },
  1106. "notification-url": "https://packagist.org/downloads/",
  1107. "license": [
  1108. "MIT"
  1109. ],
  1110. "authors": [
  1111. {
  1112. "name": "Dragonfly Development Inc.",
  1113. "email": "info@dflydev.com",
  1114. "homepage": "http://dflydev.com"
  1115. },
  1116. {
  1117. "name": "Beau Simensen",
  1118. "email": "beau@dflydev.com",
  1119. "homepage": "http://beausimensen.com"
  1120. },
  1121. {
  1122. "name": "Carlos Frutos",
  1123. "email": "carlos@kiwing.it",
  1124. "homepage": "https://github.com/cfrutos"
  1125. }
  1126. ],
  1127. "description": "Given a deep data structure, access data by dot notation.",
  1128. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1129. "keywords": [
  1130. "access",
  1131. "data",
  1132. "dot",
  1133. "notation"
  1134. ],
  1135. "time": "2017-01-20T21:14:22+00:00"
  1136. },
  1137. {
  1138. "name": "dflydev/placeholder-resolver",
  1139. "version": "v1.0.2",
  1140. "source": {
  1141. "type": "git",
  1142. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1143. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1144. },
  1145. "dist": {
  1146. "type": "zip",
  1147. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1148. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1149. "shasum": ""
  1150. },
  1151. "require": {
  1152. "php": ">=5.3.2"
  1153. },
  1154. "type": "library",
  1155. "extra": {
  1156. "branch-alias": {
  1157. "dev-master": "1.0-dev"
  1158. }
  1159. },
  1160. "autoload": {
  1161. "psr-0": {
  1162. "Dflydev\\PlaceholderResolver": "src"
  1163. }
  1164. },
  1165. "notification-url": "https://packagist.org/downloads/",
  1166. "license": [
  1167. "MIT"
  1168. ],
  1169. "authors": [
  1170. {
  1171. "name": "Dragonfly Development Inc.",
  1172. "email": "info@dflydev.com",
  1173. "homepage": "http://dflydev.com"
  1174. },
  1175. {
  1176. "name": "Beau Simensen",
  1177. "email": "beau@dflydev.com",
  1178. "homepage": "http://beausimensen.com"
  1179. }
  1180. ],
  1181. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1182. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1183. "keywords": [
  1184. "placeholder",
  1185. "resolver"
  1186. ],
  1187. "time": "2012-10-28T21:08:28+00:00"
  1188. },
  1189. {
  1190. "name": "dnoegel/php-xdg-base-dir",
  1191. "version": "0.1",
  1192. "source": {
  1193. "type": "git",
  1194. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1195. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1196. },
  1197. "dist": {
  1198. "type": "zip",
  1199. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1200. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1201. "shasum": ""
  1202. },
  1203. "require": {
  1204. "php": ">=5.3.2"
  1205. },
  1206. "require-dev": {
  1207. "phpunit/phpunit": "@stable"
  1208. },
  1209. "type": "project",
  1210. "autoload": {
  1211. "psr-4": {
  1212. "XdgBaseDir\\": "src/"
  1213. }
  1214. },
  1215. "notification-url": "https://packagist.org/downloads/",
  1216. "license": [
  1217. "MIT"
  1218. ],
  1219. "description": "implementation of xdg base directory specification for php",
  1220. "time": "2014-10-24T07:27:01+00:00"
  1221. },
  1222. {
  1223. "name": "doctrine/annotations",
  1224. "version": "v1.4.0",
  1225. "source": {
  1226. "type": "git",
  1227. "url": "https://github.com/doctrine/annotations.git",
  1228. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1229. },
  1230. "dist": {
  1231. "type": "zip",
  1232. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1233. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1234. "shasum": ""
  1235. },
  1236. "require": {
  1237. "doctrine/lexer": "1.*",
  1238. "php": "^5.6 || ^7.0"
  1239. },
  1240. "require-dev": {
  1241. "doctrine/cache": "1.*",
  1242. "phpunit/phpunit": "^5.7"
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "branch-alias": {
  1247. "dev-master": "1.4.x-dev"
  1248. }
  1249. },
  1250. "autoload": {
  1251. "psr-4": {
  1252. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1253. }
  1254. },
  1255. "notification-url": "https://packagist.org/downloads/",
  1256. "license": [
  1257. "MIT"
  1258. ],
  1259. "authors": [
  1260. {
  1261. "name": "Roman Borschel",
  1262. "email": "roman@code-factory.org"
  1263. },
  1264. {
  1265. "name": "Benjamin Eberlei",
  1266. "email": "kontakt@beberlei.de"
  1267. },
  1268. {
  1269. "name": "Guilherme Blanco",
  1270. "email": "guilhermeblanco@gmail.com"
  1271. },
  1272. {
  1273. "name": "Jonathan Wage",
  1274. "email": "jonwage@gmail.com"
  1275. },
  1276. {
  1277. "name": "Johannes Schmitt",
  1278. "email": "schmittjoh@gmail.com"
  1279. }
  1280. ],
  1281. "description": "Docblock Annotations Parser",
  1282. "homepage": "http://www.doctrine-project.org",
  1283. "keywords": [
  1284. "annotations",
  1285. "docblock",
  1286. "parser"
  1287. ],
  1288. "time": "2017-02-24T16:22:25+00:00"
  1289. },
  1290. {
  1291. "name": "doctrine/cache",
  1292. "version": "v1.6.2",
  1293. "source": {
  1294. "type": "git",
  1295. "url": "https://github.com/doctrine/cache.git",
  1296. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1297. },
  1298. "dist": {
  1299. "type": "zip",
  1300. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1301. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1302. "shasum": ""
  1303. },
  1304. "require": {
  1305. "php": "~5.5|~7.0"
  1306. },
  1307. "conflict": {
  1308. "doctrine/common": ">2.2,<2.4"
  1309. },
  1310. "require-dev": {
  1311. "phpunit/phpunit": "~4.8|~5.0",
  1312. "predis/predis": "~1.0",
  1313. "satooshi/php-coveralls": "~0.6"
  1314. },
  1315. "type": "library",
  1316. "extra": {
  1317. "branch-alias": {
  1318. "dev-master": "1.6.x-dev"
  1319. }
  1320. },
  1321. "autoload": {
  1322. "psr-4": {
  1323. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1324. }
  1325. },
  1326. "notification-url": "https://packagist.org/downloads/",
  1327. "license": [
  1328. "MIT"
  1329. ],
  1330. "authors": [
  1331. {
  1332. "name": "Roman Borschel",
  1333. "email": "roman@code-factory.org"
  1334. },
  1335. {
  1336. "name": "Benjamin Eberlei",
  1337. "email": "kontakt@beberlei.de"
  1338. },
  1339. {
  1340. "name": "Guilherme Blanco",
  1341. "email": "guilhermeblanco@gmail.com"
  1342. },
  1343. {
  1344. "name": "Jonathan Wage",
  1345. "email": "jonwage@gmail.com"
  1346. },
  1347. {
  1348. "name": "Johannes Schmitt",
  1349. "email": "schmittjoh@gmail.com"
  1350. }
  1351. ],
  1352. "description": "Caching library offering an object-oriented API for many cache backends",
  1353. "homepage": "http://www.doctrine-project.org",
  1354. "keywords": [
  1355. "cache",
  1356. "caching"
  1357. ],
  1358. "time": "2017-07-22T12:49:21+00:00"
  1359. },
  1360. {
  1361. "name": "doctrine/collections",
  1362. "version": "v1.4.0",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/doctrine/collections.git",
  1366. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1371. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "php": "^5.6 || ^7.0"
  1376. },
  1377. "require-dev": {
  1378. "doctrine/coding-standard": "~0.1@dev",
  1379. "phpunit/phpunit": "^5.7"
  1380. },
  1381. "type": "library",
  1382. "extra": {
  1383. "branch-alias": {
  1384. "dev-master": "1.3.x-dev"
  1385. }
  1386. },
  1387. "autoload": {
  1388. "psr-0": {
  1389. "Doctrine\\Common\\Collections\\": "lib/"
  1390. }
  1391. },
  1392. "notification-url": "https://packagist.org/downloads/",
  1393. "license": [
  1394. "MIT"
  1395. ],
  1396. "authors": [
  1397. {
  1398. "name": "Roman Borschel",
  1399. "email": "roman@code-factory.org"
  1400. },
  1401. {
  1402. "name": "Benjamin Eberlei",
  1403. "email": "kontakt@beberlei.de"
  1404. },
  1405. {
  1406. "name": "Guilherme Blanco",
  1407. "email": "guilhermeblanco@gmail.com"
  1408. },
  1409. {
  1410. "name": "Jonathan Wage",
  1411. "email": "jonwage@gmail.com"
  1412. },
  1413. {
  1414. "name": "Johannes Schmitt",
  1415. "email": "schmittjoh@gmail.com"
  1416. }
  1417. ],
  1418. "description": "Collections Abstraction library",
  1419. "homepage": "http://www.doctrine-project.org",
  1420. "keywords": [
  1421. "array",
  1422. "collections",
  1423. "iterator"
  1424. ],
  1425. "time": "2017-01-03T10:49:41+00:00"
  1426. },
  1427. {
  1428. "name": "doctrine/common",
  1429. "version": "v2.7.3",
  1430. "source": {
  1431. "type": "git",
  1432. "url": "https://github.com/doctrine/common.git",
  1433. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1434. },
  1435. "dist": {
  1436. "type": "zip",
  1437. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1438. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1439. "shasum": ""
  1440. },
  1441. "require": {
  1442. "doctrine/annotations": "1.*",
  1443. "doctrine/cache": "1.*",
  1444. "doctrine/collections": "1.*",
  1445. "doctrine/inflector": "1.*",
  1446. "doctrine/lexer": "1.*",
  1447. "php": "~5.6|~7.0"
  1448. },
  1449. "require-dev": {
  1450. "phpunit/phpunit": "^5.4.6"
  1451. },
  1452. "type": "library",
  1453. "extra": {
  1454. "branch-alias": {
  1455. "dev-master": "2.7.x-dev"
  1456. }
  1457. },
  1458. "autoload": {
  1459. "psr-4": {
  1460. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1461. }
  1462. },
  1463. "notification-url": "https://packagist.org/downloads/",
  1464. "license": [
  1465. "MIT"
  1466. ],
  1467. "authors": [
  1468. {
  1469. "name": "Roman Borschel",
  1470. "email": "roman@code-factory.org"
  1471. },
  1472. {
  1473. "name": "Benjamin Eberlei",
  1474. "email": "kontakt@beberlei.de"
  1475. },
  1476. {
  1477. "name": "Guilherme Blanco",
  1478. "email": "guilhermeblanco@gmail.com"
  1479. },
  1480. {
  1481. "name": "Jonathan Wage",
  1482. "email": "jonwage@gmail.com"
  1483. },
  1484. {
  1485. "name": "Johannes Schmitt",
  1486. "email": "schmittjoh@gmail.com"
  1487. }
  1488. ],
  1489. "description": "Common Library for Doctrine projects",
  1490. "homepage": "http://www.doctrine-project.org",
  1491. "keywords": [
  1492. "annotations",
  1493. "collections",
  1494. "eventmanager",
  1495. "persistence",
  1496. "spl"
  1497. ],
  1498. "time": "2017-07-22T08:35:12+00:00"
  1499. },
  1500. {
  1501. "name": "doctrine/inflector",
  1502. "version": "v1.2.0",
  1503. "source": {
  1504. "type": "git",
  1505. "url": "https://github.com/doctrine/inflector.git",
  1506. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1507. },
  1508. "dist": {
  1509. "type": "zip",
  1510. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1511. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1512. "shasum": ""
  1513. },
  1514. "require": {
  1515. "php": "^7.0"
  1516. },
  1517. "require-dev": {
  1518. "phpunit/phpunit": "^6.2"
  1519. },
  1520. "type": "library",
  1521. "extra": {
  1522. "branch-alias": {
  1523. "dev-master": "1.2.x-dev"
  1524. }
  1525. },
  1526. "autoload": {
  1527. "psr-4": {
  1528. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1529. }
  1530. },
  1531. "notification-url": "https://packagist.org/downloads/",
  1532. "license": [
  1533. "MIT"
  1534. ],
  1535. "authors": [
  1536. {
  1537. "name": "Roman Borschel",
  1538. "email": "roman@code-factory.org"
  1539. },
  1540. {
  1541. "name": "Benjamin Eberlei",
  1542. "email": "kontakt@beberlei.de"
  1543. },
  1544. {
  1545. "name": "Guilherme Blanco",
  1546. "email": "guilhermeblanco@gmail.com"
  1547. },
  1548. {
  1549. "name": "Jonathan Wage",
  1550. "email": "jonwage@gmail.com"
  1551. },
  1552. {
  1553. "name": "Johannes Schmitt",
  1554. "email": "schmittjoh@gmail.com"
  1555. }
  1556. ],
  1557. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1558. "homepage": "http://www.doctrine-project.org",
  1559. "keywords": [
  1560. "inflection",
  1561. "pluralize",
  1562. "singularize",
  1563. "string"
  1564. ],
  1565. "time": "2017-07-22T12:18:28+00:00"
  1566. },
  1567. {
  1568. "name": "doctrine/lexer",
  1569. "version": "v1.0.1",
  1570. "source": {
  1571. "type": "git",
  1572. "url": "https://github.com/doctrine/lexer.git",
  1573. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  1574. },
  1575. "dist": {
  1576. "type": "zip",
  1577. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  1578. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  1579. "shasum": ""
  1580. },
  1581. "require": {
  1582. "php": ">=5.3.2"
  1583. },
  1584. "type": "library",
  1585. "extra": {
  1586. "branch-alias": {
  1587. "dev-master": "1.0.x-dev"
  1588. }
  1589. },
  1590. "autoload": {
  1591. "psr-0": {
  1592. "Doctrine\\Common\\Lexer\\": "lib/"
  1593. }
  1594. },
  1595. "notification-url": "https://packagist.org/downloads/",
  1596. "license": [
  1597. "MIT"
  1598. ],
  1599. "authors": [
  1600. {
  1601. "name": "Roman Borschel",
  1602. "email": "roman@code-factory.org"
  1603. },
  1604. {
  1605. "name": "Guilherme Blanco",
  1606. "email": "guilhermeblanco@gmail.com"
  1607. },
  1608. {
  1609. "name": "Johannes Schmitt",
  1610. "email": "schmittjoh@gmail.com"
  1611. }
  1612. ],
  1613. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  1614. "homepage": "http://www.doctrine-project.org",
  1615. "keywords": [
  1616. "lexer",
  1617. "parser"
  1618. ],
  1619. "time": "2014-09-09T13:34:57+00:00"
  1620. },
  1621. {
  1622. "name": "drupal-composer/drupal-scaffold",
  1623. "version": "2.5.4",
  1624. "source": {
  1625. "type": "git",
  1626. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  1627. "reference": "fc6bf4ceecb5d47327f54d48d4d4f67b17da956d"
  1628. },
  1629. "dist": {
  1630. "type": "zip",
  1631. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/fc6bf4ceecb5d47327f54d48d4d4f67b17da956d",
  1632. "reference": "fc6bf4ceecb5d47327f54d48d4d4f67b17da956d",
  1633. "shasum": ""
  1634. },
  1635. "require": {
  1636. "composer-plugin-api": "^1.0.0",
  1637. "composer/semver": "^1.4",
  1638. "php": ">=5.4.5"
  1639. },
  1640. "require-dev": {
  1641. "composer/composer": "dev-master",
  1642. "g1a/composer-test-scenarios": "^2.1.0",
  1643. "phpunit/phpunit": "^6",
  1644. "squizlabs/php_codesniffer": "^2.8"
  1645. },
  1646. "type": "composer-plugin",
  1647. "extra": {
  1648. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  1649. "branch-alias": {
  1650. "dev-master": "2.0.x-dev"
  1651. }
  1652. },
  1653. "autoload": {
  1654. "psr-4": {
  1655. "DrupalComposer\\DrupalScaffold\\": "src/"
  1656. }
  1657. },
  1658. "notification-url": "https://packagist.org/downloads/",
  1659. "license": [
  1660. "GPL-2.0-or-later"
  1661. ],
  1662. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  1663. "time": "2018-07-27T10:07:07+00:00"
  1664. },
  1665. {
  1666. "name": "drupal/actions_permissions",
  1667. "version": "2.4.0",
  1668. "require": {
  1669. "drupal/core": "*",
  1670. "drupal/views_bulk_operations": "self.version"
  1671. },
  1672. "type": "metapackage",
  1673. "extra": {
  1674. "branch-alias": {
  1675. "dev-2.x": "2.x-dev"
  1676. },
  1677. "drupal": {
  1678. "version": "8.x-2.4",
  1679. "datestamp": "1530516821",
  1680. "security-coverage": {
  1681. "status": "covered",
  1682. "message": "Covered by Drupal's security advisory policy"
  1683. }
  1684. }
  1685. },
  1686. "notification-url": "https://packages.drupal.org/8/downloads",
  1687. "license": [
  1688. "GPL-2.0-or-later"
  1689. ],
  1690. "authors": [
  1691. {
  1692. "name": "Graber",
  1693. "homepage": "https://www.drupal.org/user/1599440"
  1694. },
  1695. {
  1696. "name": "Jon Pugh",
  1697. "homepage": "https://www.drupal.org/user/17028"
  1698. },
  1699. {
  1700. "name": "bojanz",
  1701. "homepage": "https://www.drupal.org/user/86106"
  1702. },
  1703. {
  1704. "name": "infojunkie",
  1705. "homepage": "https://www.drupal.org/user/48424"
  1706. },
  1707. {
  1708. "name": "joelpittet",
  1709. "homepage": "https://www.drupal.org/user/160302"
  1710. }
  1711. ],
  1712. "description": "Adds access permissions on all actions allowing admins to restrict access on a per-role basis.",
  1713. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  1714. "support": {
  1715. "source": "http://cgit.drupalcode.org/views_bulk_operations"
  1716. }
  1717. },
  1718. {
  1719. "name": "drupal/address",
  1720. "version": "1.4.0",
  1721. "source": {
  1722. "type": "git",
  1723. "url": "https://git.drupal.org/project/address",
  1724. "reference": "8.x-1.4"
  1725. },
  1726. "dist": {
  1727. "type": "zip",
  1728. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.4.zip",
  1729. "reference": "8.x-1.4",
  1730. "shasum": "143e426be73418c719c6bddd5fb81c610604e860"
  1731. },
  1732. "require": {
  1733. "commerceguys/addressing": "^1.0.0",
  1734. "drupal/core": "*"
  1735. },
  1736. "require-dev": {
  1737. "drupal/token": "*"
  1738. },
  1739. "type": "drupal-module",
  1740. "extra": {
  1741. "branch-alias": {
  1742. "dev-1.x": "1.x-dev"
  1743. },
  1744. "drupal": {
  1745. "version": "8.x-1.4",
  1746. "datestamp": "1527081784",
  1747. "security-coverage": {
  1748. "status": "covered",
  1749. "message": "Covered by Drupal's security advisory policy"
  1750. }
  1751. }
  1752. },
  1753. "notification-url": "https://packages.drupal.org/8/downloads",
  1754. "license": [
  1755. "GPL-2.0+"
  1756. ],
  1757. "authors": [
  1758. {
  1759. "name": "bojanz",
  1760. "homepage": "https://www.drupal.org/user/86106"
  1761. },
  1762. {
  1763. "name": "googletorp",
  1764. "homepage": "https://www.drupal.org/user/386230"
  1765. },
  1766. {
  1767. "name": "rszrama",
  1768. "homepage": "https://www.drupal.org/user/49344"
  1769. }
  1770. ],
  1771. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1772. "homepage": "http://drupal.org/project/address",
  1773. "support": {
  1774. "source": "http://cgit.drupalcode.org/address"
  1775. }
  1776. },
  1777. {
  1778. "name": "drupal/admin_toolbar",
  1779. "version": "1.26.0",
  1780. "source": {
  1781. "type": "git",
  1782. "url": "https://git.drupal.org/project/admin_toolbar",
  1783. "reference": "8.x-1.26"
  1784. },
  1785. "dist": {
  1786. "type": "zip",
  1787. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.26.zip",
  1788. "reference": "8.x-1.26",
  1789. "shasum": "7be9f91008bf17cf49b43d1c8e2211e7a8e40ce4"
  1790. },
  1791. "require": {
  1792. "drupal/core": "*"
  1793. },
  1794. "type": "drupal-module",
  1795. "extra": {
  1796. "branch-alias": {
  1797. "dev-1.x": "1.x-dev"
  1798. },
  1799. "drupal": {
  1800. "version": "8.x-1.26",
  1801. "datestamp": "1549218480",
  1802. "security-coverage": {
  1803. "status": "covered",
  1804. "message": "Covered by Drupal's security advisory policy"
  1805. }
  1806. }
  1807. },
  1808. "notification-url": "https://packages.drupal.org/8/downloads",
  1809. "license": [
  1810. "GPL-2.0+"
  1811. ],
  1812. "authors": [
  1813. {
  1814. "name": "Wilfrid Roze (eme)",
  1815. "homepage": "https://www.drupal.org/u/eme",
  1816. "role": "Maintainer"
  1817. },
  1818. {
  1819. "name": "Romain Jarraud (romainj)",
  1820. "homepage": "https://www.drupal.org/u/romainj",
  1821. "role": "Maintainer"
  1822. },
  1823. {
  1824. "name": "Adrian Cid Almaguer (adriancid)",
  1825. "homepage": "https://www.drupal.org/u/adriancid",
  1826. "email": "adriancid@gmail.com",
  1827. "role": "Maintainer"
  1828. },
  1829. {
  1830. "name": "Mohamed Anis Taktak (matio89)",
  1831. "homepage": "https://www.drupal.org/u/matio89",
  1832. "role": "Maintainer"
  1833. },
  1834. {
  1835. "name": "fethi.krout",
  1836. "homepage": "https://www.drupal.org/user/3206765"
  1837. },
  1838. {
  1839. "name": "matio89",
  1840. "homepage": "https://www.drupal.org/user/2320090"
  1841. },
  1842. {
  1843. "name": "romainj",
  1844. "homepage": "https://www.drupal.org/user/370706"
  1845. }
  1846. ],
  1847. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1848. "homepage": "http://drupal.org/project/admin_toolbar",
  1849. "keywords": [
  1850. "Drupal",
  1851. "Toolbar"
  1852. ],
  1853. "support": {
  1854. "source": "http://cgit.drupalcode.org/admin_toolbar",
  1855. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1856. }
  1857. },
  1858. {
  1859. "name": "drupal/adminimal_theme",
  1860. "version": "1.4.0",
  1861. "source": {
  1862. "type": "git",
  1863. "url": "https://git.drupal.org/project/adminimal_theme",
  1864. "reference": "8.x-1.4"
  1865. },
  1866. "dist": {
  1867. "type": "zip",
  1868. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.4.zip",
  1869. "reference": "8.x-1.4",
  1870. "shasum": "af9cbce473d0bd9590889992200ed175cb7e1159"
  1871. },
  1872. "require": {
  1873. "drupal/core": "~8.0"
  1874. },
  1875. "type": "drupal-theme",
  1876. "extra": {
  1877. "branch-alias": {
  1878. "dev-1.x": "1.x-dev"
  1879. },
  1880. "drupal": {
  1881. "version": "8.x-1.4",
  1882. "datestamp": "1547996580",
  1883. "security-coverage": {
  1884. "status": "covered",
  1885. "message": "Covered by Drupal's security advisory policy"
  1886. }
  1887. }
  1888. },
  1889. "notification-url": "https://packages.drupal.org/8/downloads",
  1890. "license": [
  1891. "GPL-2.0+"
  1892. ],
  1893. "authors": [
  1894. {
  1895. "name": "ANDiTKO",
  1896. "homepage": "https://www.drupal.org/user/1428124"
  1897. },
  1898. {
  1899. "name": "andrey.troeglazov",
  1900. "homepage": "https://www.drupal.org/user/3145389"
  1901. },
  1902. {
  1903. "name": "realityloop",
  1904. "homepage": "https://www.drupal.org/user/139189"
  1905. }
  1906. ],
  1907. "description": "Drupal administration theme with modern minimalist design.",
  1908. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1909. "support": {
  1910. "source": "http://cgit.drupalcode.org/adminimal_theme",
  1911. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1912. }
  1913. },
  1914. {
  1915. "name": "drupal/advanced_text_formatter",
  1916. "version": "1.0.0-beta3",
  1917. "source": {
  1918. "type": "git",
  1919. "url": "https://git.drupal.org/project/advanced_text_formatter",
  1920. "reference": "8.x-1.0-beta3"
  1921. },
  1922. "dist": {
  1923. "type": "zip",
  1924. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-8.x-1.0-beta3.zip",
  1925. "reference": "8.x-1.0-beta3",
  1926. "shasum": "35e0154440ba7836dda70b8627f156872da75302"
  1927. },
  1928. "require": {
  1929. "drupal/core": "*"
  1930. },
  1931. "type": "drupal-module",
  1932. "extra": {
  1933. "branch-alias": {
  1934. "dev-1.x": "1.x-dev"
  1935. },
  1936. "drupal": {
  1937. "version": "8.x-1.0-beta3",
  1938. "datestamp": "1445163539",
  1939. "security-coverage": {
  1940. "status": "not-covered",
  1941. "message": "Beta releases are not covered by Drupal security advisories."
  1942. }
  1943. }
  1944. },
  1945. "notification-url": "https://packages.drupal.org/8/downloads",
  1946. "license": [
  1947. "GPL-2.0-or-later"
  1948. ],
  1949. "authors": [
  1950. {
  1951. "name": "thmnhat",
  1952. "homepage": "https://www.drupal.org/user/998946"
  1953. }
  1954. ],
  1955. "description": "Provides an additional formatter for text field, text area and text format.",
  1956. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1957. "support": {
  1958. "source": "http://cgit.drupalcode.org/advanced_text_formatter"
  1959. }
  1960. },
  1961. {
  1962. "name": "drupal/agnian_material_admin",
  1963. "version": "dev-1.x",
  1964. "source": {
  1965. "type": "git",
  1966. "url": "https://git.drupal.org/project/agnian_material_admin",
  1967. "reference": "0a3ea953011772fef296d33bfe1b5ae3c42b1238"
  1968. },
  1969. "require": {
  1970. "drupal/core": "~8.0"
  1971. },
  1972. "type": "drupal-theme",
  1973. "extra": {
  1974. "branch-alias": {
  1975. "dev-1.x": "1.x-dev"
  1976. },
  1977. "drupal": {
  1978. "version": "8.x-1.29+1-dev",
  1979. "datestamp": "1548169680",
  1980. "security-coverage": {
  1981. "status": "not-covered",
  1982. "message": "Project has not opted into security advisory coverage!"
  1983. }
  1984. }
  1985. },
  1986. "notification-url": "https://packages.drupal.org/8/downloads",
  1987. "license": [
  1988. "GPL-2.0-or-later"
  1989. ],
  1990. "authors": [
  1991. {
  1992. "name": "raffi",
  1993. "homepage": "https://www.drupal.org/user/74748"
  1994. },
  1995. {
  1996. "name": "saidatom",
  1997. "homepage": "https://www.drupal.org/user/1846674"
  1998. },
  1999. {
  2000. "name": "ysarkisyan",
  2001. "homepage": "https://www.drupal.org/user/420671"
  2002. }
  2003. ],
  2004. "description": "Agnian material admin theme for Drupal.",
  2005. "homepage": "https://www.drupal.org/project/agnian_material_admin",
  2006. "support": {
  2007. "source": "http://cgit.drupalcode.org/agnian_material_admin"
  2008. },
  2009. "time": "2019-01-22T17:17:50+00:00"
  2010. },
  2011. {
  2012. "name": "drupal/audiofield",
  2013. "version": "1.8.0",
  2014. "source": {
  2015. "type": "git",
  2016. "url": "https://git.drupal.org/project/audiofield",
  2017. "reference": "8.x-1.8"
  2018. },
  2019. "dist": {
  2020. "type": "zip",
  2021. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.8.zip",
  2022. "reference": "8.x-1.8",
  2023. "shasum": "a2e4c5b7f81ec6d3d015b22a63560fd1a8f56682"
  2024. },
  2025. "require": {
  2026. "drupal/core": "~8.0"
  2027. },
  2028. "type": "drupal-module",
  2029. "extra": {
  2030. "branch-alias": {
  2031. "dev-1.x": "1.x-dev"
  2032. },
  2033. "drupal": {
  2034. "version": "8.x-1.8",
  2035. "datestamp": "1543249980",
  2036. "security-coverage": {
  2037. "status": "covered",
  2038. "message": "Covered by Drupal's security advisory policy"
  2039. }
  2040. },
  2041. "drush": {
  2042. "services": {
  2043. "drush.services.yml": "^9"
  2044. }
  2045. }
  2046. },
  2047. "notification-url": "https://packages.drupal.org/8/downloads",
  2048. "license": [
  2049. "GPL-2.0+"
  2050. ],
  2051. "authors": [
  2052. {
  2053. "name": "Daniel Moberly",
  2054. "homepage": "https://www.drupal.org/u/danielmoberly",
  2055. "role": "Maintainer"
  2056. },
  2057. {
  2058. "name": "josipsaric",
  2059. "homepage": "https://www.drupal.org/user/3063287"
  2060. },
  2061. {
  2062. "name": "tamerzg",
  2063. "homepage": "https://www.drupal.org/user/464564"
  2064. }
  2065. ],
  2066. "description": "AudioField Module",
  2067. "homepage": "https://www.drupal.org/project/audiofield",
  2068. "support": {
  2069. "source": "http://cgit.drupalcode.org/audiofield",
  2070. "issues": "https://www.drupal.org/project/issues/audiofield"
  2071. }
  2072. },
  2073. {
  2074. "name": "drupal/autocomplete_deluxe",
  2075. "version": "1.0.0-beta1",
  2076. "source": {
  2077. "type": "git",
  2078. "url": "https://git.drupal.org/project/autocomplete_deluxe",
  2079. "reference": "8.x-1.0-beta1"
  2080. },
  2081. "dist": {
  2082. "type": "zip",
  2083. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-8.x-1.0-beta1.zip",
  2084. "reference": "8.x-1.0-beta1",
  2085. "shasum": "f59d928761a01a055c2240155a84b1d7286fe666"
  2086. },
  2087. "require": {
  2088. "drupal/core": "~8.0"
  2089. },
  2090. "type": "drupal-module",
  2091. "extra": {
  2092. "branch-alias": {
  2093. "dev-1.x": "1.x-dev"
  2094. },
  2095. "drupal": {
  2096. "version": "8.x-1.0-beta1",
  2097. "datestamp": "1502921644",
  2098. "security-coverage": {
  2099. "status": "not-covered",
  2100. "message": "Beta releases are not covered by Drupal security advisories."
  2101. }
  2102. }
  2103. },
  2104. "notification-url": "https://packages.drupal.org/8/downloads",
  2105. "license": [
  2106. "GPL-2.0+"
  2107. ],
  2108. "authors": [
  2109. {
  2110. "name": "Edward Chan",
  2111. "homepage": "https://www.drupal.org/user/1781334"
  2112. },
  2113. {
  2114. "name": "edwardchiapet",
  2115. "homepage": "https://www.drupal.org/user/2354784"
  2116. },
  2117. {
  2118. "name": "mpriscella",
  2119. "homepage": "https://www.drupal.org/user/2354820"
  2120. },
  2121. {
  2122. "name": "sepgil",
  2123. "homepage": "https://www.drupal.org/user/512828"
  2124. }
  2125. ],
  2126. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2127. "homepage": "https://www.drupal.org/sandbox/edwardchan/2888186",
  2128. "support": {
  2129. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2130. "issues": "https://www.drupal.org/project/issues/2888186"
  2131. }
  2132. },
  2133. {
  2134. "name": "drupal/autologout",
  2135. "version": "1.0.0",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://git.drupal.org/project/autologout",
  2139. "reference": "8.x-1.0"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2144. "reference": "8.x-1.0",
  2145. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2146. },
  2147. "require": {
  2148. "drupal/core": "~8.0"
  2149. },
  2150. "type": "drupal-module",
  2151. "extra": {
  2152. "branch-alias": {
  2153. "dev-1.x": "1.x-dev"
  2154. },
  2155. "drupal": {
  2156. "version": "8.x-1.0",
  2157. "datestamp": "1494237185",
  2158. "security-coverage": {
  2159. "status": "covered",
  2160. "message": "Covered by Drupal's security advisory policy"
  2161. }
  2162. }
  2163. },
  2164. "notification-url": "https://packages.drupal.org/8/downloads",
  2165. "license": [
  2166. "GPL-2.0+"
  2167. ],
  2168. "authors": [
  2169. {
  2170. "name": "AjK",
  2171. "homepage": "https://www.drupal.org/user/39030"
  2172. },
  2173. {
  2174. "name": "AjitS",
  2175. "homepage": "https://www.drupal.org/user/981944"
  2176. },
  2177. {
  2178. "name": "boshtian",
  2179. "homepage": "https://www.drupal.org/user/1773456"
  2180. },
  2181. {
  2182. "name": "dandrews",
  2183. "homepage": "https://www.drupal.org/user/2014490"
  2184. },
  2185. {
  2186. "name": "darksnow",
  2187. "homepage": "https://www.drupal.org/user/391915"
  2188. },
  2189. {
  2190. "name": "johnennew",
  2191. "homepage": "https://www.drupal.org/user/1150042"
  2192. },
  2193. {
  2194. "name": "jrglasgow",
  2195. "homepage": "https://www.drupal.org/user/36590"
  2196. },
  2197. {
  2198. "name": "kmasood",
  2199. "homepage": "https://www.drupal.org/user/1262860"
  2200. },
  2201. {
  2202. "name": "levelos",
  2203. "homepage": "https://www.drupal.org/user/54135"
  2204. },
  2205. {
  2206. "name": "prabeen.giri",
  2207. "homepage": "https://www.drupal.org/user/913078"
  2208. },
  2209. {
  2210. "name": "str8",
  2211. "homepage": "https://www.drupal.org/user/2865063"
  2212. }
  2213. ],
  2214. "description": "Adds automated timed logout.",
  2215. "homepage": "http://drupal.org/project/autologout",
  2216. "support": {
  2217. "source": "http://cgit.drupalcode.org/autologout"
  2218. }
  2219. },
  2220. {
  2221. "name": "drupal/better_exposed_filters",
  2222. "version": "3.0.0-alpha5",
  2223. "source": {
  2224. "type": "git",
  2225. "url": "https://git.drupal.org/project/better_exposed_filters",
  2226. "reference": "8.x-3.0-alpha5"
  2227. },
  2228. "dist": {
  2229. "type": "zip",
  2230. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-3.0-alpha5.zip",
  2231. "reference": "8.x-3.0-alpha5",
  2232. "shasum": "8dbcff4b3bcd24f753d5d1ba6a523442a3690a76"
  2233. },
  2234. "require": {
  2235. "drupal/core": "*"
  2236. },
  2237. "type": "drupal-module",
  2238. "extra": {
  2239. "branch-alias": {
  2240. "dev-3.x": "3.x-dev"
  2241. },
  2242. "drupal": {
  2243. "version": "8.x-3.0-alpha5",
  2244. "datestamp": "1540513084",
  2245. "security-coverage": {
  2246. "status": "not-covered",
  2247. "message": "Alpha releases are not covered by Drupal security advisories."
  2248. }
  2249. }
  2250. },
  2251. "notification-url": "https://packages.drupal.org/8/downloads",
  2252. "license": [
  2253. "GPL-2.0-or-later"
  2254. ],
  2255. "authors": [
  2256. {
  2257. "name": "chr.fritsch",
  2258. "homepage": "https://www.drupal.org/user/2103716"
  2259. },
  2260. {
  2261. "name": "jkopel",
  2262. "homepage": "https://www.drupal.org/user/66207"
  2263. },
  2264. {
  2265. "name": "mikeker",
  2266. "homepage": "https://www.drupal.org/user/192273"
  2267. },
  2268. {
  2269. "name": "mortona2k",
  2270. "homepage": "https://www.drupal.org/user/1029484"
  2271. },
  2272. {
  2273. "name": "rlhawk",
  2274. "homepage": "https://www.drupal.org/user/352283"
  2275. }
  2276. ],
  2277. "description": "Provides advanced options (such as links, checkboxes, or jQueryUI widgets) for exposed Views elements.",
  2278. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2279. "support": {
  2280. "source": "http://cgit.drupalcode.org/better_exposed_filters"
  2281. }
  2282. },
  2283. {
  2284. "name": "drupal/better_messages",
  2285. "version": "1.0.0-alpha2",
  2286. "source": {
  2287. "type": "git",
  2288. "url": "https://git.drupal.org/project/better_messages",
  2289. "reference": "8.x-1.0-alpha2"
  2290. },
  2291. "dist": {
  2292. "type": "zip",
  2293. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2294. "reference": "8.x-1.0-alpha2",
  2295. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2296. },
  2297. "require": {
  2298. "drupal/core": "~8.0"
  2299. },
  2300. "type": "drupal-module",
  2301. "extra": {
  2302. "branch-alias": {
  2303. "dev-1.x": "1.x-dev"
  2304. },
  2305. "drupal": {
  2306. "version": "8.x-1.0-alpha2",
  2307. "datestamp": "1517663880",
  2308. "security-coverage": {
  2309. "status": "not-covered",
  2310. "message": "Alpha releases are not covered by Drupal security advisories."
  2311. }
  2312. }
  2313. },
  2314. "notification-url": "https://packages.drupal.org/8/downloads",
  2315. "license": [
  2316. "GPL-2.0-or-later"
  2317. ],
  2318. "authors": [
  2319. {
  2320. "name": "Mohammed J. Razem",
  2321. "homepage": "https://www.drupal.org/user/255384"
  2322. },
  2323. {
  2324. "name": "bucefal91",
  2325. "homepage": "https://www.drupal.org/user/504128"
  2326. },
  2327. {
  2328. "name": "le72",
  2329. "homepage": "https://www.drupal.org/user/1866896"
  2330. }
  2331. ],
  2332. "description": "Better Messages module for Drupal 8.",
  2333. "homepage": "https://www.drupal.org/project/better_messages",
  2334. "support": {
  2335. "source": "http://cgit.drupalcode.org/better_messages"
  2336. }
  2337. },
  2338. {
  2339. "name": "drupal/betterlogin",
  2340. "version": "1.2.0",
  2341. "source": {
  2342. "type": "git",
  2343. "url": "https://git.drupal.org/project/betterlogin",
  2344. "reference": "8.x-1.2"
  2345. },
  2346. "dist": {
  2347. "type": "zip",
  2348. "url": "https://ftp.drupal.org/files/projects/betterlogin-8.x-1.2.zip",
  2349. "reference": "8.x-1.2",
  2350. "shasum": "6b9ab142bf563685346d2b4e2db46ada209ed6ad"
  2351. },
  2352. "require": {
  2353. "drupal/core": "~8.0"
  2354. },
  2355. "type": "drupal-module",
  2356. "extra": {
  2357. "branch-alias": {
  2358. "dev-1.x": "1.x-dev"
  2359. },
  2360. "drupal": {
  2361. "version": "8.x-1.2",
  2362. "datestamp": "1515587585",
  2363. "security-coverage": {
  2364. "status": "covered",
  2365. "message": "Covered by Drupal's security advisory policy"
  2366. }
  2367. }
  2368. },
  2369. "notification-url": "https://packages.drupal.org/8/downloads",
  2370. "license": [
  2371. "GPL-2.0-or-later"
  2372. ],
  2373. "authors": [
  2374. {
  2375. "name": "Yogesh Pawar",
  2376. "homepage": "https://www.drupal.org/user/2922907"
  2377. },
  2378. {
  2379. "name": "theamoeba",
  2380. "homepage": "https://www.drupal.org/user/251700"
  2381. }
  2382. ],
  2383. "description": "Make the login screens better :)",
  2384. "homepage": "https://www.drupal.org/project/betterlogin",
  2385. "support": {
  2386. "source": "http://cgit.drupalcode.org/betterlogin"
  2387. }
  2388. },
  2389. {
  2390. "name": "drupal/block_class",
  2391. "version": "1.0.0",
  2392. "source": {
  2393. "type": "git",
  2394. "url": "https://git.drupal.org/project/block_class",
  2395. "reference": "8.x-1.0"
  2396. },
  2397. "dist": {
  2398. "type": "zip",
  2399. "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.0.zip",
  2400. "reference": "8.x-1.0",
  2401. "shasum": "1a691999d051a3c010c2b6f2df73954ee02f424d"
  2402. },
  2403. "require": {
  2404. "drupal/core": "*"
  2405. },
  2406. "type": "drupal-module",
  2407. "extra": {
  2408. "branch-alias": {
  2409. "dev-1.x": "1.x-dev"
  2410. },
  2411. "drupal": {
  2412. "version": "8.x-1.0",
  2413. "datestamp": "1531440821",
  2414. "security-coverage": {
  2415. "status": "covered",
  2416. "message": "Covered by Drupal's security advisory policy"
  2417. }
  2418. }
  2419. },
  2420. "notification-url": "https://packages.drupal.org/8/downloads",
  2421. "license": [
  2422. "GPL-2.0+"
  2423. ],
  2424. "authors": [
  2425. {
  2426. "name": "Todd Nienkerk",
  2427. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2428. "role": "Maintainer"
  2429. },
  2430. {
  2431. "name": "Renato Gonçalves (RenatoG)",
  2432. "homepage": "https://www.drupal.org/u/RenatoG",
  2433. "email": "renatog@ciandt.com",
  2434. "role": "Maintainer"
  2435. },
  2436. {
  2437. "name": "Aaron Stanush",
  2438. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2439. "role": "Maintainer"
  2440. },
  2441. {
  2442. "name": "David Suissa (DYdave)",
  2443. "homepage": "https://www.drupal.org/u/DYdave",
  2444. "role": "Maintainer"
  2445. },
  2446. {
  2447. "name": "Four Kitchens",
  2448. "homepage": "https://www.drupal.org/user/358502",
  2449. "role": "Maintainer"
  2450. },
  2451. {
  2452. "name": "berenddeboer",
  2453. "homepage": "https://www.drupal.org/u/berenddeboer",
  2454. "role": "Maintainer"
  2455. },
  2456. {
  2457. "name": "elliotttf",
  2458. "homepage": "https://www.drupal.org/u/elliotttf",
  2459. "role": "Maintainer"
  2460. },
  2461. {
  2462. "name": "Michal Minecki (mirzu)",
  2463. "homepage": "https://www.drupal.org/u/mirzu",
  2464. "role": "Maintainer"
  2465. },
  2466. {
  2467. "name": "Patrick Coffey (pcoffey)",
  2468. "homepage": "https://www.drupal.org/u/pcoffey",
  2469. "role": "Maintainer"
  2470. },
  2471. {
  2472. "name": "Taylor Smith (tsmith512)",
  2473. "homepage": "https://www.drupal.org/u/tsmith512",
  2474. "role": "Maintainer"
  2475. },
  2476. {
  2477. "name": "tsmith512",
  2478. "homepage": "https://www.drupal.org/user/2031446"
  2479. }
  2480. ],
  2481. "description": "Allows assigning classes to Blocks.",
  2482. "homepage": "https://www.drupal.org/project/block_class",
  2483. "support": {
  2484. "source": "https://cgit.drupalcode.org/block_class",
  2485. "issues": "https://www.drupal.org/project/issues/block_class",
  2486. "irc": "irc://irc.freenode.org/drupal-contribute"
  2487. }
  2488. },
  2489. {
  2490. "name": "drupal/bulkdelete",
  2491. "version": "dev-1.x",
  2492. "source": {
  2493. "type": "git",
  2494. "url": "https://git.drupal.org/project/bulkdelete",
  2495. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2496. },
  2497. "require": {
  2498. "drupal/core": "~8.0"
  2499. },
  2500. "type": "drupal-module",
  2501. "extra": {
  2502. "branch-alias": {
  2503. "dev-1.x": "1.x-dev"
  2504. },
  2505. "drupal": {
  2506. "version": "8.x-1.x-dev",
  2507. "datestamp": "1495565583",
  2508. "security-coverage": {
  2509. "status": "not-covered",
  2510. "message": "Dev releases are not covered by Drupal security advisories."
  2511. }
  2512. }
  2513. },
  2514. "notification-url": "https://packages.drupal.org/8/downloads",
  2515. "license": [
  2516. "GPL-2.0-or-later"
  2517. ],
  2518. "authors": [
  2519. {
  2520. "name": "Kars-T",
  2521. "homepage": "https://www.drupal.org/user/224499"
  2522. },
  2523. {
  2524. "name": "Rahul Seth",
  2525. "homepage": "https://www.drupal.org/user/2694359"
  2526. },
  2527. {
  2528. "name": "adriancid",
  2529. "homepage": "https://www.drupal.org/user/1962106"
  2530. },
  2531. {
  2532. "name": "robertDouglass",
  2533. "homepage": "https://www.drupal.org/user/5449"
  2534. }
  2535. ],
  2536. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2537. "homepage": "https://www.drupal.org/project/bulkdelete",
  2538. "support": {
  2539. "source": "http://cgit.drupalcode.org/bulkdelete"
  2540. },
  2541. "time": "2017-05-23T18:49:48+00:00"
  2542. },
  2543. {
  2544. "name": "drupal/computed_field",
  2545. "version": "2.0.0-beta1",
  2546. "source": {
  2547. "type": "git",
  2548. "url": "https://git.drupal.org/project/computed_field",
  2549. "reference": "8.x-2.0-beta1"
  2550. },
  2551. "dist": {
  2552. "type": "zip",
  2553. "url": "https://ftp.drupal.org/files/projects/computed_field-8.x-2.0-beta1.zip",
  2554. "reference": "8.x-2.0-beta1",
  2555. "shasum": "a918cb85b7865f15cc5a5c327e37964e53545161"
  2556. },
  2557. "require": {
  2558. "drupal/core": "~8.0"
  2559. },
  2560. "type": "drupal-module",
  2561. "extra": {
  2562. "branch-alias": {
  2563. "dev-2.x": "2.x-dev"
  2564. },
  2565. "drupal": {
  2566. "version": "8.x-2.0-beta1",
  2567. "datestamp": "1546032480",
  2568. "security-coverage": {
  2569. "status": "not-covered",
  2570. "message": "Beta releases are not covered by Drupal security advisories."
  2571. }
  2572. }
  2573. },
  2574. "notification-url": "https://packages.drupal.org/8/downloads",
  2575. "license": [
  2576. "GPL-2.0-or-later"
  2577. ],
  2578. "authors": [
  2579. {
  2580. "name": "Agileware",
  2581. "homepage": "https://www.drupal.org/user/89106"
  2582. },
  2583. {
  2584. "name": "Moonshine",
  2585. "homepage": "https://www.drupal.org/user/133705"
  2586. },
  2587. {
  2588. "name": "Pedro Lozano",
  2589. "homepage": "https://www.drupal.org/user/123766"
  2590. },
  2591. {
  2592. "name": "colan",
  2593. "homepage": "https://www.drupal.org/user/58704"
  2594. },
  2595. {
  2596. "name": "dealancer",
  2597. "homepage": "https://www.drupal.org/user/243418"
  2598. },
  2599. {
  2600. "name": "markus_petrux",
  2601. "homepage": "https://www.drupal.org/user/39593"
  2602. },
  2603. {
  2604. "name": "nickcaballero",
  2605. "homepage": "https://www.drupal.org/user/588336"
  2606. },
  2607. {
  2608. "name": "ram4nd",
  2609. "homepage": "https://www.drupal.org/user/601534"
  2610. }
  2611. ],
  2612. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2613. "homepage": "https://www.drupal.org/project/computed_field",
  2614. "support": {
  2615. "source": "http://cgit.drupalcode.org/computed_field"
  2616. }
  2617. },
  2618. {
  2619. "name": "drupal/config_devel",
  2620. "version": "1.2.0",
  2621. "source": {
  2622. "type": "git",
  2623. "url": "https://git.drupal.org/project/config_devel",
  2624. "reference": "8.x-1.2"
  2625. },
  2626. "dist": {
  2627. "type": "zip",
  2628. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2629. "reference": "8.x-1.2",
  2630. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2631. },
  2632. "require": {
  2633. "drupal/core": "~8.0"
  2634. },
  2635. "type": "drupal-module",
  2636. "extra": {
  2637. "branch-alias": {
  2638. "dev-1.x": "1.x-dev"
  2639. },
  2640. "drupal": {
  2641. "version": "8.x-1.2",
  2642. "datestamp": "1510843084",
  2643. "security-coverage": {
  2644. "status": "covered",
  2645. "message": "Covered by Drupal's security advisory policy"
  2646. }
  2647. }
  2648. },
  2649. "notification-url": "https://packages.drupal.org/8/downloads",
  2650. "license": [
  2651. "GPL-2.0+"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "alexpott",
  2656. "homepage": "https://www.drupal.org/user/157725"
  2657. },
  2658. {
  2659. "name": "benjy",
  2660. "homepage": "https://www.drupal.org/user/1852732"
  2661. },
  2662. {
  2663. "name": "chx",
  2664. "homepage": "https://www.drupal.org/user/9446"
  2665. },
  2666. {
  2667. "name": "joachim",
  2668. "homepage": "https://www.drupal.org/user/107701"
  2669. },
  2670. {
  2671. "name": "nedjo",
  2672. "homepage": "https://www.drupal.org/user/4481"
  2673. },
  2674. {
  2675. "name": "tim.plunkett",
  2676. "homepage": "https://www.drupal.org/user/241634"
  2677. },
  2678. {
  2679. "name": "vijaycs85",
  2680. "homepage": "https://www.drupal.org/user/93488"
  2681. }
  2682. ],
  2683. "description": "Helps developers work with configuration.",
  2684. "homepage": "https://www.drupal.org/project/config_devel",
  2685. "support": {
  2686. "source": "http://cgit.drupalcode.org/config_devel"
  2687. }
  2688. },
  2689. {
  2690. "name": "drupal/config_filter",
  2691. "version": "1.4.0",
  2692. "source": {
  2693. "type": "git",
  2694. "url": "https://git.drupal.org/project/config_filter",
  2695. "reference": "8.x-1.4"
  2696. },
  2697. "dist": {
  2698. "type": "zip",
  2699. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.4.zip",
  2700. "reference": "8.x-1.4",
  2701. "shasum": "4b2b7f4dfc8358212f9e25f63dcc77cc2c1dcf6c"
  2702. },
  2703. "require": {
  2704. "drupal/core": "~8.0"
  2705. },
  2706. "suggest": {
  2707. "drupal/config_split": "Split site configuration for different environments."
  2708. },
  2709. "type": "drupal-module",
  2710. "extra": {
  2711. "branch-alias": {
  2712. "dev-1.x": "1.x-dev"
  2713. },
  2714. "drupal": {
  2715. "version": "8.x-1.4",
  2716. "datestamp": "1542184982",
  2717. "security-coverage": {
  2718. "status": "covered",
  2719. "message": "Covered by Drupal's security advisory policy"
  2720. }
  2721. }
  2722. },
  2723. "notification-url": "https://packages.drupal.org/8/downloads",
  2724. "license": [
  2725. "GPL-2.0+"
  2726. ],
  2727. "authors": [
  2728. {
  2729. "name": "Fabian Bircher",
  2730. "homepage": "https://www.drupal.org/u/bircher",
  2731. "email": "opensource@fabianbircher.com",
  2732. "role": "Maintainer"
  2733. },
  2734. {
  2735. "name": "Nuvole Web",
  2736. "homepage": "http://nuvole.org",
  2737. "email": "info@nuvole.org",
  2738. "role": "Maintainer"
  2739. },
  2740. {
  2741. "name": "pescetti",
  2742. "homepage": "https://www.drupal.org/user/436244"
  2743. }
  2744. ],
  2745. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2746. "homepage": "https://www.drupal.org/project/config_filter",
  2747. "keywords": [
  2748. "Drupal",
  2749. "configuration",
  2750. "configuration management"
  2751. ],
  2752. "support": {
  2753. "source": "http://cgit.drupalcode.org/config_filter",
  2754. "issues": "https://www.drupal.org/project/issues/config_filter",
  2755. "irc": "irc://irc.freenode.org/drupal-contribute"
  2756. }
  2757. },
  2758. {
  2759. "name": "drupal/config_ignore",
  2760. "version": "2.1.0",
  2761. "source": {
  2762. "type": "git",
  2763. "url": "https://git.drupal.org/project/config_ignore",
  2764. "reference": "8.x-2.1"
  2765. },
  2766. "dist": {
  2767. "type": "zip",
  2768. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2769. "reference": "8.x-2.1",
  2770. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2771. },
  2772. "require": {
  2773. "drupal/config_filter": "1.*",
  2774. "drupal/core": "~8.0"
  2775. },
  2776. "type": "drupal-module",
  2777. "extra": {
  2778. "branch-alias": {
  2779. "dev-2.x": "2.x-dev"
  2780. },
  2781. "drupal": {
  2782. "version": "8.x-2.1",
  2783. "datestamp": "1507706044",
  2784. "security-coverage": {
  2785. "status": "covered",
  2786. "message": "Covered by Drupal's security advisory policy"
  2787. }
  2788. }
  2789. },
  2790. "notification-url": "https://packages.drupal.org/8/downloads",
  2791. "license": [
  2792. "GPL-2.0+"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "Tommy Lynge Jørgensen",
  2797. "homepage": "https://www.drupal.org/u/tlyngej",
  2798. "email": "tlyngej@gmail.com",
  2799. "role": "Maintainer"
  2800. },
  2801. {
  2802. "name": "Fabian Bircher",
  2803. "homepage": "https://www.drupal.org/u/bircher",
  2804. "role": "Maintainer"
  2805. }
  2806. ],
  2807. "description": "Ignore certain configuration during import.",
  2808. "homepage": "http://drupal.org/project/config_ignore",
  2809. "support": {
  2810. "source": "http://cgit.drupalcode.org/config_ignore",
  2811. "issues": "http://drupal.org/project/config_ignore",
  2812. "irc": "irc://irc.freenode.org/drupal-contribute"
  2813. }
  2814. },
  2815. {
  2816. "name": "drupal/config_split",
  2817. "version": "1.4.0",
  2818. "source": {
  2819. "type": "git",
  2820. "url": "https://git.drupal.org/project/config_split",
  2821. "reference": "8.x-1.4"
  2822. },
  2823. "dist": {
  2824. "type": "zip",
  2825. "url": "https://ftp.drupal.org/files/projects/config_split-8.x-1.4.zip",
  2826. "reference": "8.x-1.4",
  2827. "shasum": "938ea6c88834aa88bb310740758e56c1800e535b"
  2828. },
  2829. "require": {
  2830. "drupal/config_filter": "*",
  2831. "drupal/core": "~8.0"
  2832. },
  2833. "type": "drupal-module",
  2834. "extra": {
  2835. "branch-alias": {
  2836. "dev-1.x": "1.x-dev"
  2837. },
  2838. "drupal": {
  2839. "version": "8.x-1.4",
  2840. "datestamp": "1537971780",
  2841. "security-coverage": {
  2842. "status": "covered",
  2843. "message": "Covered by Drupal's security advisory policy"
  2844. }
  2845. },
  2846. "drush": {
  2847. "services": {
  2848. "drush.services.yml": "^9"
  2849. }
  2850. }
  2851. },
  2852. "notification-url": "https://packages.drupal.org/8/downloads",
  2853. "license": [
  2854. "GPL-2.0+"
  2855. ],
  2856. "authors": [
  2857. {
  2858. "name": "Fabian Bircher",
  2859. "homepage": "https://www.drupal.org/u/bircher",
  2860. "email": "opensource@fabianbircher.com",
  2861. "role": "Maintainer"
  2862. },
  2863. {
  2864. "name": "Nuvole Web",
  2865. "homepage": "http://nuvole.org",
  2866. "email": "info@nuvole.org",
  2867. "role": "Maintainer"
  2868. },
  2869. {
  2870. "name": "pescetti",
  2871. "homepage": "https://www.drupal.org/user/436244"
  2872. }
  2873. ],
  2874. "description": "Configuration filter for importing and exporting extra config",
  2875. "homepage": "https://www.drupal.org/project/config_split",
  2876. "keywords": [
  2877. "Drupal",
  2878. "configuration",
  2879. "configuration management"
  2880. ],
  2881. "support": {
  2882. "source": "http://cgit.drupalcode.org/config_split",
  2883. "issues": "https://www.drupal.org/project/issues/config_split",
  2884. "irc": "irc://irc.freenode.org/drupal-contribute"
  2885. }
  2886. },
  2887. {
  2888. "name": "drupal/config_update",
  2889. "version": "1.6.0",
  2890. "source": {
  2891. "type": "git",
  2892. "url": "https://git.drupal.org/project/config_update",
  2893. "reference": "8.x-1.6"
  2894. },
  2895. "dist": {
  2896. "type": "zip",
  2897. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2898. "reference": "8.x-1.6",
  2899. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2900. },
  2901. "require": {
  2902. "drupal/core": "*"
  2903. },
  2904. "type": "drupal-module",
  2905. "extra": {
  2906. "branch-alias": {
  2907. "dev-1.x": "1.x-dev"
  2908. },
  2909. "drupal": {
  2910. "version": "8.x-1.6",
  2911. "datestamp": "1545090480",
  2912. "security-coverage": {
  2913. "status": "covered",
  2914. "message": "Covered by Drupal's security advisory policy"
  2915. }
  2916. }
  2917. },
  2918. "notification-url": "https://packages.drupal.org/8/downloads",
  2919. "license": [
  2920. "GPL-2.0-or-later"
  2921. ],
  2922. "authors": [
  2923. {
  2924. "name": "jhodgdon",
  2925. "homepage": "https://www.drupal.org/user/155601"
  2926. },
  2927. {
  2928. "name": "nedjo",
  2929. "homepage": "https://www.drupal.org/user/4481"
  2930. }
  2931. ],
  2932. "description": "Provides basic revert and update functionality for other modules",
  2933. "homepage": "https://www.drupal.org/project/config_update",
  2934. "support": {
  2935. "source": "http://cgit.drupalcode.org/config_update"
  2936. }
  2937. },
  2938. {
  2939. "name": "drupal/console",
  2940. "version": "1.8.0",
  2941. "source": {
  2942. "type": "git",
  2943. "url": "https://github.com/hechoendrupal/drupal-console.git",
  2944. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  2945. },
  2946. "dist": {
  2947. "type": "zip",
  2948. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2949. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  2950. "shasum": ""
  2951. },
  2952. "require": {
  2953. "alchemy/zippy": "0.4.3",
  2954. "composer/installers": "~1.0",
  2955. "doctrine/annotations": "^1.2",
  2956. "doctrine/collections": "^1.3",
  2957. "drupal/console-core": "1.8.0",
  2958. "drupal/console-extend-plugin": "~0",
  2959. "guzzlehttp/guzzle": "~6.1",
  2960. "php": "^5.5.9 || ^7.0",
  2961. "psy/psysh": "0.6.* || ~0.8",
  2962. "symfony/css-selector": "~2.8|~3.0",
  2963. "symfony/dom-crawler": "~2.8|~3.0",
  2964. "symfony/http-foundation": "~2.8|~3.0"
  2965. },
  2966. "suggest": {
  2967. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  2968. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  2969. },
  2970. "bin": [
  2971. "bin/drupal"
  2972. ],
  2973. "type": "library",
  2974. "autoload": {
  2975. "psr-4": {
  2976. "Drupal\\Console\\": "src"
  2977. }
  2978. },
  2979. "notification-url": "https://packagist.org/downloads/",
  2980. "license": [
  2981. "GPL-2.0-or-later"
  2982. ],
  2983. "authors": [
  2984. {
  2985. "name": "David Flores",
  2986. "email": "dmousex@gmail.com",
  2987. "homepage": "http://dmouse.net"
  2988. },
  2989. {
  2990. "name": "Jesus Manuel Olivas",
  2991. "email": "jesus.olivas@gmail.com",
  2992. "homepage": "http://jmolivas.com"
  2993. },
  2994. {
  2995. "name": "Eduardo Garcia",
  2996. "email": "enzo@enzolutions.com",
  2997. "homepage": "http://enzolutions.com/"
  2998. },
  2999. {
  3000. "name": "Omar Aguirre",
  3001. "email": "omersguchigu@gmail.com"
  3002. },
  3003. {
  3004. "name": "Drupal Console Contributors",
  3005. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3006. }
  3007. ],
  3008. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3009. "homepage": "http://drupalconsole.com/",
  3010. "keywords": [
  3011. "console",
  3012. "development",
  3013. "drupal",
  3014. "symfony"
  3015. ],
  3016. "time": "2018-03-21T20:50:16+00:00"
  3017. },
  3018. {
  3019. "name": "drupal/console-core",
  3020. "version": "1.8.0",
  3021. "source": {
  3022. "type": "git",
  3023. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3024. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  3025. },
  3026. "dist": {
  3027. "type": "zip",
  3028. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  3029. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  3030. "shasum": ""
  3031. },
  3032. "require": {
  3033. "dflydev/dot-access-configuration": "^1.0",
  3034. "drupal/console-en": "1.8.0",
  3035. "php": "^5.5.9 || ^7.0",
  3036. "stecman/symfony-console-completion": "~0.7",
  3037. "symfony/config": "~2.8|~3.0",
  3038. "symfony/console": "~2.8|~3.0",
  3039. "symfony/debug": "~2.8|~3.0",
  3040. "symfony/dependency-injection": "~2.8|~3.0",
  3041. "symfony/event-dispatcher": "~2.8|~3.0",
  3042. "symfony/filesystem": "~2.8|~3.0",
  3043. "symfony/finder": "~2.8|~3.0",
  3044. "symfony/process": "~2.8|~3.0",
  3045. "symfony/translation": "~2.8|~3.0",
  3046. "symfony/yaml": "~2.8|~3.0",
  3047. "twig/twig": "^1.23.1",
  3048. "webflo/drupal-finder": "^1.0",
  3049. "webmozart/path-util": "^2.3"
  3050. },
  3051. "type": "library",
  3052. "autoload": {
  3053. "files": [
  3054. "src/functions.php"
  3055. ],
  3056. "psr-4": {
  3057. "Drupal\\Console\\Core\\": "src"
  3058. }
  3059. },
  3060. "notification-url": "https://packagist.org/downloads/",
  3061. "license": [
  3062. "GPL-2.0-or-later"
  3063. ],
  3064. "authors": [
  3065. {
  3066. "name": "David Flores",
  3067. "email": "dmousex@gmail.com",
  3068. "homepage": "http://dmouse.net"
  3069. },
  3070. {
  3071. "name": "Jesus Manuel Olivas",
  3072. "email": "jesus.olivas@gmail.com",
  3073. "homepage": "http://jmolivas.com"
  3074. },
  3075. {
  3076. "name": "Drupal Console Contributors",
  3077. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3078. },
  3079. {
  3080. "name": "Eduardo Garcia",
  3081. "email": "enzo@enzolutions.com",
  3082. "homepage": "http://enzolutions.com/"
  3083. },
  3084. {
  3085. "name": "Omar Aguirre",
  3086. "email": "omersguchigu@gmail.com"
  3087. }
  3088. ],
  3089. "description": "Drupal Console Core",
  3090. "homepage": "http://drupalconsole.com/",
  3091. "keywords": [
  3092. "console",
  3093. "development",
  3094. "drupal",
  3095. "symfony"
  3096. ],
  3097. "time": "2018-03-21T19:33:23+00:00"
  3098. },
  3099. {
  3100. "name": "drupal/console-en",
  3101. "version": "1.8.0",
  3102. "source": {
  3103. "type": "git",
  3104. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3105. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  3106. },
  3107. "dist": {
  3108. "type": "zip",
  3109. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  3110. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  3111. "shasum": ""
  3112. },
  3113. "type": "drupal-console-language",
  3114. "notification-url": "https://packagist.org/downloads/",
  3115. "license": [
  3116. "GPL-2.0-or-later"
  3117. ],
  3118. "authors": [
  3119. {
  3120. "name": "David Flores",
  3121. "email": "dmousex@gmail.com",
  3122. "homepage": "http://dmouse.net"
  3123. },
  3124. {
  3125. "name": "Jesus Manuel Olivas",
  3126. "email": "jesus.olivas@gmail.com",
  3127. "homepage": "http://jmolivas.com"
  3128. },
  3129. {
  3130. "name": "Drupal Console Contributors",
  3131. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3132. },
  3133. {
  3134. "name": "Eduardo Garcia",
  3135. "email": "enzo@enzolutions.com",
  3136. "homepage": "http://enzolutions.com/"
  3137. },
  3138. {
  3139. "name": "Omar Aguirre",
  3140. "email": "omersguchigu@gmail.com"
  3141. }
  3142. ],
  3143. "description": "Drupal Console English Language",
  3144. "homepage": "http://drupalconsole.com/",
  3145. "keywords": [
  3146. "console",
  3147. "development",
  3148. "drupal",
  3149. "symfony"
  3150. ],
  3151. "time": "2018-03-21T19:16:27+00:00"
  3152. },
  3153. {
  3154. "name": "drupal/console-extend-plugin",
  3155. "version": "0.9.2",
  3156. "source": {
  3157. "type": "git",
  3158. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3159. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  3160. },
  3161. "dist": {
  3162. "type": "zip",
  3163. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  3164. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  3165. "shasum": ""
  3166. },
  3167. "require": {
  3168. "composer-plugin-api": "^1.0",
  3169. "symfony/finder": "~2.7|~3.0",
  3170. "symfony/yaml": "~2.7|~3.0"
  3171. },
  3172. "type": "composer-plugin",
  3173. "extra": {
  3174. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3175. },
  3176. "autoload": {
  3177. "psr-4": {
  3178. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3179. }
  3180. },
  3181. "notification-url": "https://packagist.org/downloads/",
  3182. "license": [
  3183. "GPL-2.0+"
  3184. ],
  3185. "authors": [
  3186. {
  3187. "name": "Jesus Manuel Olivas",
  3188. "email": "jesus.olivas@gmail.com"
  3189. }
  3190. ],
  3191. "description": "Drupal Console Extend Plugin",
  3192. "time": "2017-07-28T17:11:54+00:00"
  3193. },
  3194. {
  3195. "name": "drupal/content_lock",
  3196. "version": "1.0.0-alpha8",
  3197. "source": {
  3198. "type": "git",
  3199. "url": "https://git.drupal.org/project/content_lock",
  3200. "reference": "8.x-1.0-alpha8"
  3201. },
  3202. "dist": {
  3203. "type": "zip",
  3204. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-1.0-alpha8.zip",
  3205. "reference": "8.x-1.0-alpha8",
  3206. "shasum": "dbb5986dbfbe325eb869a4ac42b88b266dc089c6"
  3207. },
  3208. "require": {
  3209. "drupal/core": "~8"
  3210. },
  3211. "require-dev": {
  3212. "drupal/conflict": "dev-2.x",
  3213. "drupal/prefetch_cache": "dev-1.x"
  3214. },
  3215. "type": "drupal-module",
  3216. "extra": {
  3217. "branch-alias": {
  3218. "dev-1.x": "1.x-dev"
  3219. },
  3220. "drupal": {
  3221. "version": "8.x-1.0-alpha8",
  3222. "datestamp": "1520356080",
  3223. "security-coverage": {
  3224. "status": "not-covered",
  3225. "message": "Alpha releases are not covered by Drupal security advisories."
  3226. }
  3227. }
  3228. },
  3229. "notification-url": "https://packages.drupal.org/8/downloads",
  3230. "license": [
  3231. "GPL-2.0-or-later"
  3232. ],
  3233. "authors": [
  3234. {
  3235. "name": "Joseph Zhao",
  3236. "homepage": "https://www.drupal.org/user/1987218"
  3237. },
  3238. {
  3239. "name": "chr.fritsch",
  3240. "homepage": "https://www.drupal.org/user/2103716"
  3241. },
  3242. {
  3243. "name": "ergonlogic",
  3244. "homepage": "https://www.drupal.org/user/368613"
  3245. }
  3246. ],
  3247. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3248. "homepage": "https://www.drupal.org/project/content_lock",
  3249. "support": {
  3250. "source": "http://cgit.drupalcode.org/content_lock"
  3251. }
  3252. },
  3253. {
  3254. "name": "drupal/context",
  3255. "version": "4.0.0-beta2",
  3256. "source": {
  3257. "type": "git",
  3258. "url": "https://git.drupal.org/project/context",
  3259. "reference": "8.x-4.0-beta2"
  3260. },
  3261. "dist": {
  3262. "type": "zip",
  3263. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  3264. "reference": "8.x-4.0-beta2",
  3265. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  3266. },
  3267. "require": {
  3268. "drupal/core": "~8.0"
  3269. },
  3270. "type": "drupal-module",
  3271. "extra": {
  3272. "branch-alias": {
  3273. "dev-4.x": "4.x-dev"
  3274. },
  3275. "drupal": {
  3276. "version": "8.x-4.0-beta2",
  3277. "datestamp": "1505378944",
  3278. "security-coverage": {
  3279. "status": "not-covered",
  3280. "message": "Beta releases are not covered by Drupal security advisories."
  3281. }
  3282. }
  3283. },
  3284. "notification-url": "https://packages.drupal.org/8/downloads",
  3285. "license": [
  3286. "MIT"
  3287. ],
  3288. "authors": [
  3289. {
  3290. "name": "Christoffer Palm",
  3291. "homepage": "http://www.oddhill.se/",
  3292. "email": "christoffer.palm@oddhill.se",
  3293. "role": "Developer"
  3294. },
  3295. {
  3296. "name": "Steven Jones",
  3297. "homepage": "https://www.drupal.org/user/99644"
  3298. },
  3299. {
  3300. "name": "alex_b",
  3301. "homepage": "https://www.drupal.org/user/53995"
  3302. },
  3303. {
  3304. "name": "boshtian",
  3305. "homepage": "https://www.drupal.org/user/1773456"
  3306. },
  3307. {
  3308. "name": "colan",
  3309. "homepage": "https://www.drupal.org/user/58704"
  3310. },
  3311. {
  3312. "name": "emanaton",
  3313. "homepage": "https://www.drupal.org/user/120853"
  3314. },
  3315. {
  3316. "name": "febbraro",
  3317. "homepage": "https://www.drupal.org/user/43670"
  3318. },
  3319. {
  3320. "name": "fizk",
  3321. "homepage": "https://www.drupal.org/user/473174"
  3322. },
  3323. {
  3324. "name": "hass",
  3325. "homepage": "https://www.drupal.org/user/85918"
  3326. },
  3327. {
  3328. "name": "hefox",
  3329. "homepage": "https://www.drupal.org/user/426416"
  3330. },
  3331. {
  3332. "name": "hyrcan",
  3333. "homepage": "https://www.drupal.org/user/26618"
  3334. },
  3335. {
  3336. "name": "jmiccolis",
  3337. "homepage": "https://www.drupal.org/user/31731"
  3338. },
  3339. {
  3340. "name": "nedjo",
  3341. "homepage": "https://www.drupal.org/user/4481"
  3342. },
  3343. {
  3344. "name": "tekante",
  3345. "homepage": "https://www.drupal.org/user/640024"
  3346. },
  3347. {
  3348. "name": "yhahn",
  3349. "homepage": "https://www.drupal.org/user/264833"
  3350. }
  3351. ],
  3352. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3353. "homepage": "https://github.com/oddhill/context",
  3354. "keywords": [
  3355. "Drupal",
  3356. "block",
  3357. "conditions",
  3358. "context",
  3359. "visibility"
  3360. ],
  3361. "support": {
  3362. "source": "https://github.com/oddhill/context",
  3363. "issues": "https://github.com/oddhill/context/issues",
  3364. "docs": "https://github.com/oddhill/context"
  3365. }
  3366. },
  3367. {
  3368. "name": "drupal/core",
  3369. "version": "8.6.9",
  3370. "source": {
  3371. "type": "git",
  3372. "url": "https://github.com/drupal/core.git",
  3373. "reference": "cac12e0ec19d5c6fa53778522b3ff4c542f86c8d"
  3374. },
  3375. "dist": {
  3376. "type": "zip",
  3377. "url": "https://api.github.com/repos/drupal/core/zipball/cac12e0ec19d5c6fa53778522b3ff4c542f86c8d",
  3378. "reference": "cac12e0ec19d5c6fa53778522b3ff4c542f86c8d",
  3379. "shasum": ""
  3380. },
  3381. "require": {
  3382. "asm89/stack-cors": "^1.1",
  3383. "composer/semver": "^1.0",
  3384. "doctrine/annotations": "^1.2",
  3385. "doctrine/common": "^2.5",
  3386. "easyrdf/easyrdf": "^0.9",
  3387. "egulias/email-validator": "^1.2",
  3388. "ext-date": "*",
  3389. "ext-dom": "*",
  3390. "ext-filter": "*",
  3391. "ext-gd": "*",
  3392. "ext-hash": "*",
  3393. "ext-json": "*",
  3394. "ext-pcre": "*",
  3395. "ext-pdo": "*",
  3396. "ext-session": "*",
  3397. "ext-simplexml": "*",
  3398. "ext-spl": "*",
  3399. "ext-tokenizer": "*",
  3400. "ext-xml": "*",
  3401. "guzzlehttp/guzzle": "^6.2.1",
  3402. "masterminds/html5": "^2.1",
  3403. "paragonie/random_compat": "^1.0|^2.0",
  3404. "php": "^5.5.9|>=7.0.8",
  3405. "stack/builder": "^1.0",
  3406. "symfony-cmf/routing": "^1.4",
  3407. "symfony/class-loader": "~3.4.0",
  3408. "symfony/console": "~3.4.0",
  3409. "symfony/dependency-injection": "~3.4.0",
  3410. "symfony/event-dispatcher": "~3.4.0",
  3411. "symfony/http-foundation": "~3.4.14",
  3412. "symfony/http-kernel": "~3.4.14",
  3413. "symfony/polyfill-iconv": "^1.0",
  3414. "symfony/process": "~3.4.0",
  3415. "symfony/psr-http-message-bridge": "^1.0",
  3416. "symfony/routing": "~3.4.0",
  3417. "symfony/serializer": "~3.4.0",
  3418. "symfony/translation": "~3.4.0",
  3419. "symfony/validator": "~3.4.0",
  3420. "symfony/yaml": "~3.4.5",
  3421. "twig/twig": "^1.35.0",
  3422. "typo3/phar-stream-wrapper": "^2.0.1",
  3423. "zendframework/zend-diactoros": "^1.1",
  3424. "zendframework/zend-feed": "^2.4"
  3425. },
  3426. "conflict": {
  3427. "drush/drush": "<8.1.10"
  3428. },
  3429. "replace": {
  3430. "drupal/action": "self.version",
  3431. "drupal/aggregator": "self.version",
  3432. "drupal/automated_cron": "self.version",
  3433. "drupal/ban": "self.version",
  3434. "drupal/bartik": "self.version",
  3435. "drupal/basic_auth": "self.version",
  3436. "drupal/big_pipe": "self.version",
  3437. "drupal/block": "self.version",
  3438. "drupal/block_content": "self.version",
  3439. "drupal/block_place": "self.version",
  3440. "drupal/book": "self.version",
  3441. "drupal/breakpoint": "self.version",
  3442. "drupal/ckeditor": "self.version",
  3443. "drupal/classy": "self.version",
  3444. "drupal/color": "self.version",
  3445. "drupal/comment": "self.version",
  3446. "drupal/config": "self.version",
  3447. "drupal/config_translation": "self.version",
  3448. "drupal/contact": "self.version",
  3449. "drupal/content_moderation": "self.version",
  3450. "drupal/content_translation": "self.version",
  3451. "drupal/contextual": "self.version",
  3452. "drupal/core-annotation": "self.version",
  3453. "drupal/core-assertion": "self.version",
  3454. "drupal/core-bridge": "self.version",
  3455. "drupal/core-class-finder": "self.version",
  3456. "drupal/core-datetime": "self.version",
  3457. "drupal/core-dependency-injection": "self.version",
  3458. "drupal/core-diff": "self.version",
  3459. "drupal/core-discovery": "self.version",
  3460. "drupal/core-event-dispatcher": "self.version",
  3461. "drupal/core-file-cache": "self.version",
  3462. "drupal/core-filesystem": "self.version",
  3463. "drupal/core-gettext": "self.version",
  3464. "drupal/core-graph": "self.version",
  3465. "drupal/core-http-foundation": "self.version",
  3466. "drupal/core-php-storage": "self.version",
  3467. "drupal/core-plugin": "self.version",
  3468. "drupal/core-proxy-builder": "self.version",
  3469. "drupal/core-render": "self.version",
  3470. "drupal/core-serialization": "self.version",
  3471. "drupal/core-transliteration": "self.version",
  3472. "drupal/core-utility": "self.version",
  3473. "drupal/core-uuid": "self.version",
  3474. "drupal/datetime": "self.version",
  3475. "drupal/datetime_range": "self.version",
  3476. "drupal/dblog": "self.version",
  3477. "drupal/dynamic_page_cache": "self.version",
  3478. "drupal/editor": "self.version",
  3479. "drupal/entity_reference": "self.version",
  3480. "drupal/field": "self.version",
  3481. "drupal/field_layout": "self.version",
  3482. "drupal/field_ui": "self.version",
  3483. "drupal/file": "self.version",
  3484. "drupal/filter": "self.version",
  3485. "drupal/forum": "self.version",
  3486. "drupal/hal": "self.version",
  3487. "drupal/help": "self.version",
  3488. "drupal/history": "self.version",
  3489. "drupal/image": "self.version",
  3490. "drupal/inline_form_errors": "self.version",
  3491. "drupal/language": "self.version",
  3492. "drupal/layout_builder": "self.version",
  3493. "drupal/layout_discovery": "self.version",
  3494. "drupal/link": "self.version",
  3495. "drupal/locale": "self.version",
  3496. "drupal/media": "self.version",
  3497. "drupal/media_library": "self.version",
  3498. "drupal/menu_link_content": "self.version",
  3499. "drupal/menu_ui": "self.version",
  3500. "drupal/migrate": "self.version",
  3501. "drupal/migrate_drupal": "self.version",
  3502. "drupal/migrate_drupal_multilingual": "self.version",
  3503. "drupal/migrate_drupal_ui": "self.version",
  3504. "drupal/minimal": "self.version",
  3505. "drupal/node": "self.version",
  3506. "drupal/options": "self.version",
  3507. "drupal/page_cache": "self.version",
  3508. "drupal/path": "self.version",
  3509. "drupal/quickedit": "self.version",
  3510. "drupal/rdf": "self.version",
  3511. "drupal/responsive_image": "self.version",
  3512. "drupal/rest": "self.version",
  3513. "drupal/search": "self.version",
  3514. "drupal/serialization": "self.version",
  3515. "drupal/settings_tray": "self.version",
  3516. "drupal/seven": "self.version",
  3517. "drupal/shortcut": "self.version",
  3518. "drupal/simpletest": "self.version",
  3519. "drupal/standard": "self.version",
  3520. "drupal/stark": "self.version",
  3521. "drupal/statistics": "self.version",
  3522. "drupal/syslog": "self.version",
  3523. "drupal/system": "self.version",
  3524. "drupal/taxonomy": "self.version",
  3525. "drupal/telephone": "self.version",
  3526. "drupal/text": "self.version",
  3527. "drupal/toolbar": "self.version",
  3528. "drupal/tour": "self.version",
  3529. "drupal/tracker": "self.version",
  3530. "drupal/update": "self.version",
  3531. "drupal/user": "self.version",
  3532. "drupal/views": "self.version",
  3533. "drupal/views_ui": "self.version",
  3534. "drupal/workflows": "self.version",
  3535. "drupal/workspaces": "self.version"
  3536. },
  3537. "require-dev": {
  3538. "behat/mink": "1.7.x-dev",
  3539. "behat/mink-goutte-driver": "^1.2",
  3540. "behat/mink-selenium2-driver": "1.3.x-dev",
  3541. "drupal/coder": "^8.2.12",
  3542. "jcalderonzumba/gastonjs": "^1.0.2",
  3543. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3544. "mikey179/vfsstream": "^1.2",
  3545. "phpspec/prophecy": "^1.7",
  3546. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3547. "symfony/css-selector": "^3.4.0",
  3548. "symfony/debug": "^3.4.0",
  3549. "symfony/phpunit-bridge": "^3.4.3"
  3550. },
  3551. "type": "drupal-core",
  3552. "extra": {
  3553. "merge-plugin": {
  3554. "require": [
  3555. "core/lib/Drupal/Component/Annotation/composer.json",
  3556. "core/lib/Drupal/Component/Assertion/composer.json",
  3557. "core/lib/Drupal/Component/Bridge/composer.json",
  3558. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3559. "core/lib/Drupal/Component/Datetime/composer.json",
  3560. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3561. "core/lib/Drupal/Component/Diff/composer.json",
  3562. "core/lib/Drupal/Component/Discovery/composer.json",
  3563. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3564. "core/lib/Drupal/Component/FileCache/composer.json",
  3565. "core/lib/Drupal/Component/FileSystem/composer.json",
  3566. "core/lib/Drupal/Component/Gettext/composer.json",
  3567. "core/lib/Drupal/Component/Graph/composer.json",
  3568. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3569. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3570. "core/lib/Drupal/Component/Plugin/composer.json",
  3571. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3572. "core/lib/Drupal/Component/Render/composer.json",
  3573. "core/lib/Drupal/Component/Serialization/composer.json",
  3574. "core/lib/Drupal/Component/Transliteration/composer.json",
  3575. "core/lib/Drupal/Component/Utility/composer.json",
  3576. "core/lib/Drupal/Component/Uuid/composer.json"
  3577. ],
  3578. "recurse": false,
  3579. "replace": false,
  3580. "merge-extra": false
  3581. },
  3582. "patches_applied": {
  3583. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  3584. }
  3585. },
  3586. "autoload": {
  3587. "psr-4": {
  3588. "Drupal\\Core\\": "lib/Drupal/Core",
  3589. "Drupal\\Component\\": "lib/Drupal/Component",
  3590. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3591. },
  3592. "classmap": [
  3593. "lib/Drupal.php",
  3594. "lib/Drupal/Component/Utility/Timer.php",
  3595. "lib/Drupal/Component/Utility/Unicode.php",
  3596. "lib/Drupal/Core/Database/Database.php",
  3597. "lib/Drupal/Core/DrupalKernel.php",
  3598. "lib/Drupal/Core/DrupalKernelInterface.php",
  3599. "lib/Drupal/Core/Site/Settings.php"
  3600. ]
  3601. },
  3602. "notification-url": "https://packagist.org/downloads/",
  3603. "license": [
  3604. "GPL-2.0-or-later"
  3605. ],
  3606. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3607. "time": "2019-02-08T12:21:40+00:00"
  3608. },
  3609. {
  3610. "name": "drupal/cshs",
  3611. "version": "dev-1.x",
  3612. "source": {
  3613. "type": "git",
  3614. "url": "https://git.drupal.org/project/cshs",
  3615. "reference": "c4a2deff253e24c83b14f960ce9dce49fa115f60"
  3616. },
  3617. "require": {
  3618. "drupal/core": "*"
  3619. },
  3620. "type": "drupal-module",
  3621. "extra": {
  3622. "branch-alias": {
  3623. "dev-1.x": "1.x-dev"
  3624. },
  3625. "drupal": {
  3626. "version": "8.x-1.0-beta4+4-dev",
  3627. "datestamp": "1512800285",
  3628. "security-coverage": {
  3629. "status": "not-covered",
  3630. "message": "Dev releases are not covered by Drupal security advisories."
  3631. }
  3632. }
  3633. },
  3634. "notification-url": "https://packages.drupal.org/8/downloads",
  3635. "license": [
  3636. "GPL-2.0-or-later"
  3637. ],
  3638. "authors": [
  3639. {
  3640. "name": "BR0kEN",
  3641. "homepage": "https://www.drupal.org/user/2802285"
  3642. },
  3643. {
  3644. "name": "purushotam.rai",
  3645. "homepage": "https://www.drupal.org/user/3193859"
  3646. },
  3647. {
  3648. "name": "valderama",
  3649. "homepage": "https://www.drupal.org/user/103634"
  3650. }
  3651. ],
  3652. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3653. "homepage": "https://www.drupal.org/project/cshs",
  3654. "support": {
  3655. "source": "http://cgit.drupalcode.org/cshs"
  3656. },
  3657. "time": "2018-06-24T13:39:17+00:00"
  3658. },
  3659. {
  3660. "name": "drupal/ctools",
  3661. "version": "3.1.0",
  3662. "source": {
  3663. "type": "git",
  3664. "url": "https://git.drupal.org/project/ctools",
  3665. "reference": "8.x-3.1"
  3666. },
  3667. "dist": {
  3668. "type": "zip",
  3669. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.1.zip",
  3670. "reference": "8.x-3.1",
  3671. "shasum": "7056df469624ec3943c62ebe613dbfcb3171dcd1"
  3672. },
  3673. "require": {
  3674. "drupal/core": "^8.5"
  3675. },
  3676. "type": "drupal-module",
  3677. "extra": {
  3678. "branch-alias": {
  3679. "dev-3.x": "3.x-dev"
  3680. },
  3681. "drupal": {
  3682. "version": "8.x-3.1",
  3683. "datestamp": "1549603381",
  3684. "security-coverage": {
  3685. "status": "covered",
  3686. "message": "Covered by Drupal's security advisory policy"
  3687. }
  3688. }
  3689. },
  3690. "notification-url": "https://packages.drupal.org/8/downloads",
  3691. "license": [
  3692. "GPL-2.0+"
  3693. ],
  3694. "authors": [
  3695. {
  3696. "name": "Kris Vanderwater (EclipseGc)",
  3697. "homepage": "https://www.drupal.org/u/eclipsegc",
  3698. "role": "Maintainer"
  3699. },
  3700. {
  3701. "name": "Jakob Perry (japerry)",
  3702. "homepage": "https://www.drupal.org/u/japerry",
  3703. "role": "Maintainer"
  3704. },
  3705. {
  3706. "name": "Tim Plunkett (tim.plunkett)",
  3707. "homepage": "https://www.drupal.org/u/timplunkett",
  3708. "role": "Maintainer"
  3709. },
  3710. {
  3711. "name": "James Gilliland (neclimdul)",
  3712. "homepage": "https://www.drupal.org/u/neclimdul",
  3713. "role": "Maintainer"
  3714. },
  3715. {
  3716. "name": "Daniel Wehner (dawehner)",
  3717. "homepage": "https://www.drupal.org/u/dawehner",
  3718. "role": "Maintainer"
  3719. },
  3720. {
  3721. "name": "joelpittet",
  3722. "homepage": "https://www.drupal.org/user/160302"
  3723. },
  3724. {
  3725. "name": "merlinofchaos",
  3726. "homepage": "https://www.drupal.org/user/26979"
  3727. },
  3728. {
  3729. "name": "neclimdul",
  3730. "homepage": "https://www.drupal.org/user/48673"
  3731. },
  3732. {
  3733. "name": "sdboyer",
  3734. "homepage": "https://www.drupal.org/user/146719"
  3735. },
  3736. {
  3737. "name": "sun",
  3738. "homepage": "https://www.drupal.org/user/54136"
  3739. },
  3740. {
  3741. "name": "tim.plunkett",
  3742. "homepage": "https://www.drupal.org/user/241634"
  3743. }
  3744. ],
  3745. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3746. "homepage": "https://www.drupal.org/project/ctools",
  3747. "support": {
  3748. "source": "http://cgit.drupalcode.org/ctools",
  3749. "issues": "https://www.drupal.org/project/issues/ctools"
  3750. }
  3751. },
  3752. {
  3753. "name": "drupal/date_range_formatter",
  3754. "version": "3.1.0",
  3755. "source": {
  3756. "type": "git",
  3757. "url": "https://git.drupal.org/project/date_range_formatter",
  3758. "reference": "8.x-3.1"
  3759. },
  3760. "dist": {
  3761. "type": "zip",
  3762. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3763. "reference": "8.x-3.1",
  3764. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3765. },
  3766. "require": {
  3767. "drupal/core": "*"
  3768. },
  3769. "type": "drupal-module",
  3770. "extra": {
  3771. "branch-alias": {
  3772. "dev-3.x": "3.x-dev"
  3773. },
  3774. "drupal": {
  3775. "version": "8.x-3.1",
  3776. "datestamp": "1502454544",
  3777. "security-coverage": {
  3778. "status": "covered",
  3779. "message": "Covered by Drupal's security advisory policy"
  3780. }
  3781. }
  3782. },
  3783. "notification-url": "https://packages.drupal.org/8/downloads",
  3784. "license": [
  3785. "GPL-2.0-or-later"
  3786. ],
  3787. "authors": [
  3788. {
  3789. "name": "Sudishth",
  3790. "homepage": "https://www.drupal.org/user/1440562"
  3791. },
  3792. {
  3793. "name": "maximpodorov",
  3794. "homepage": "https://www.drupal.org/user/515310"
  3795. }
  3796. ],
  3797. "description": "Formats date ranges.",
  3798. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3799. "support": {
  3800. "source": "http://cgit.drupalcode.org/date_range_formatter"
  3801. }
  3802. },
  3803. {
  3804. "name": "drupal/devel",
  3805. "version": "2.0.0",
  3806. "source": {
  3807. "type": "git",
  3808. "url": "https://git.drupal.org/project/devel",
  3809. "reference": "8.x-2.0"
  3810. },
  3811. "dist": {
  3812. "type": "zip",
  3813. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.0.zip",
  3814. "reference": "8.x-2.0",
  3815. "shasum": "cf5fb816f767f3cac4f2e170ab39e982d5e0698b"
  3816. },
  3817. "require": {
  3818. "drupal/core": "~8.0",
  3819. "symfony/var-dumper": "~2.7|^3"
  3820. },
  3821. "type": "drupal-module",
  3822. "extra": {
  3823. "branch-alias": {
  3824. "dev-2.x": "2.x-dev"
  3825. },
  3826. "drupal": {
  3827. "version": "8.x-2.0",
  3828. "datestamp": "1548799380",
  3829. "security-coverage": {
  3830. "status": "covered",
  3831. "message": "Covered by Drupal's security advisory policy"
  3832. }
  3833. },
  3834. "drush": {
  3835. "services": {
  3836. "drush.services.yml": "^9"
  3837. }
  3838. }
  3839. },
  3840. "notification-url": "https://packages.drupal.org/8/downloads",
  3841. "license": [
  3842. "GPL-2.0+"
  3843. ],
  3844. "authors": [
  3845. {
  3846. "name": "Moshe Weitzman",
  3847. "homepage": "https://github.com/weitzman",
  3848. "email": "weitzman@tejasa.com",
  3849. "role": "Maintainer"
  3850. },
  3851. {
  3852. "name": "Hans Salvisberg",
  3853. "homepage": "https://www.drupal.org/u/salvis",
  3854. "email": "drupal@salvisberg.com",
  3855. "role": "Maintainer"
  3856. },
  3857. {
  3858. "name": "Luca Lusso",
  3859. "homepage": "https://www.drupal.org/u/lussoluca",
  3860. "role": "Maintainer"
  3861. },
  3862. {
  3863. "name": "Marco (willzyx)",
  3864. "homepage": "https://www.drupal.org/u/willzyx",
  3865. "role": "Maintainer"
  3866. },
  3867. {
  3868. "name": "See contributors",
  3869. "homepage": "https://www.drupal.org/node/3236/committers"
  3870. },
  3871. {
  3872. "name": "salvis",
  3873. "homepage": "https://www.drupal.org/user/82964"
  3874. },
  3875. {
  3876. "name": "willzyx",
  3877. "homepage": "https://www.drupal.org/user/1043862"
  3878. }
  3879. ],
  3880. "description": "Various blocks, pages, and functions for developers.",
  3881. "homepage": "http://drupal.org/project/devel",
  3882. "support": {
  3883. "source": "http://cgit.drupalcode.org/devel",
  3884. "issues": "http://drupal.org/project/devel",
  3885. "irc": "irc://irc.freenode.org/drupal-contribute"
  3886. }
  3887. },
  3888. {
  3889. "name": "drupal/devel_generate",
  3890. "version": "2.0.0",
  3891. "require": {
  3892. "drupal/core": "~8.0",
  3893. "drupal/devel": "self.version"
  3894. },
  3895. "type": "metapackage",
  3896. "extra": {
  3897. "branch-alias": {
  3898. "dev-2.x": "2.x-dev"
  3899. },
  3900. "drupal": {
  3901. "version": "8.x-2.0",
  3902. "datestamp": "1548799380",
  3903. "security-coverage": {
  3904. "status": "covered",
  3905. "message": "Covered by Drupal's security advisory policy"
  3906. }
  3907. },
  3908. "drush": {
  3909. "services": {
  3910. "drush.services.yml": "^9"
  3911. }
  3912. }
  3913. },
  3914. "notification-url": "https://packages.drupal.org/8/downloads",
  3915. "license": [
  3916. "GPL-2.0+"
  3917. ],
  3918. "authors": [
  3919. {
  3920. "name": "Moshe Weitzman",
  3921. "homepage": "https://github.com/weitzman",
  3922. "email": "weitzman@tejasa.com",
  3923. "role": "Maintainer"
  3924. },
  3925. {
  3926. "name": "Hans Salvisberg",
  3927. "homepage": "https://www.drupal.org/u/salvis",
  3928. "email": "drupal@salvisberg.com",
  3929. "role": "Maintainer"
  3930. },
  3931. {
  3932. "name": "Luca Lusso",
  3933. "homepage": "https://www.drupal.org/u/lussoluca",
  3934. "role": "Maintainer"
  3935. },
  3936. {
  3937. "name": "Marco (willzyx)",
  3938. "homepage": "https://www.drupal.org/u/willzyx",
  3939. "role": "Maintainer"
  3940. },
  3941. {
  3942. "name": "See contributors",
  3943. "homepage": "https://www.drupal.org/node/3236/committers"
  3944. },
  3945. {
  3946. "name": "salvis",
  3947. "homepage": "https://www.drupal.org/user/82964"
  3948. },
  3949. {
  3950. "name": "willzyx",
  3951. "homepage": "https://www.drupal.org/user/1043862"
  3952. }
  3953. ],
  3954. "description": "Generate dummy users, nodes, menus, taxonomy terms...",
  3955. "homepage": "http://drupal.org/project/devel",
  3956. "support": {
  3957. "source": "http://cgit.drupalcode.org/devel",
  3958. "issues": "http://drupal.org/project/devel",
  3959. "irc": "irc://irc.freenode.org/drupal-contribute"
  3960. }
  3961. },
  3962. {
  3963. "name": "drupal/domain",
  3964. "version": "dev-1.x",
  3965. "source": {
  3966. "type": "git",
  3967. "url": "https://git.drupal.org/project/domain",
  3968. "reference": "b8519b2a8201e7636efced1fb9945f8ce94f4bc8"
  3969. },
  3970. "require": {
  3971. "drupal/core": "^8.5"
  3972. },
  3973. "require-dev": {
  3974. "drupal/domain_access": "*"
  3975. },
  3976. "type": "drupal-module",
  3977. "extra": {
  3978. "branch-alias": {
  3979. "dev-1.x": "1.x-dev"
  3980. },
  3981. "drupal": {
  3982. "version": "8.x-1.0-alpha14+80-dev",
  3983. "datestamp": "1549396080",
  3984. "security-coverage": {
  3985. "status": "not-covered",
  3986. "message": "Dev releases are not covered by Drupal security advisories."
  3987. }
  3988. }
  3989. },
  3990. "notification-url": "https://packages.drupal.org/8/downloads",
  3991. "license": [
  3992. "GPL-2.0-or-later"
  3993. ],
  3994. "authors": [
  3995. {
  3996. "name": "agentrickard",
  3997. "homepage": "https://www.drupal.org/user/20975"
  3998. },
  3999. {
  4000. "name": "nonsie",
  4001. "homepage": "https://www.drupal.org/user/29899"
  4002. }
  4003. ],
  4004. "description": "Creates domain records within a Drupal installation.",
  4005. "homepage": "https://www.drupal.org/project/domain",
  4006. "support": {
  4007. "source": "http://cgit.drupalcode.org/domain"
  4008. },
  4009. "time": "2019-02-11T16:25:59+00:00"
  4010. },
  4011. {
  4012. "name": "drupal/domain_alias",
  4013. "version": "dev-1.x",
  4014. "require": {
  4015. "drupal/core": "~8.0",
  4016. "drupal/domain": "self.version"
  4017. },
  4018. "type": "metapackage",
  4019. "extra": {
  4020. "branch-alias": {
  4021. "dev-1.x": "1.x-dev"
  4022. },
  4023. "drupal": {
  4024. "version": "8.x-1.0-alpha14+23-dev",
  4025. "datestamp": "1543354380",
  4026. "security-coverage": {
  4027. "status": "not-covered",
  4028. "message": "Dev releases are not covered by Drupal security advisories."
  4029. }
  4030. }
  4031. },
  4032. "notification-url": "https://packages.drupal.org/8/downloads",
  4033. "license": [
  4034. "GPL-2.0-or-later"
  4035. ],
  4036. "authors": [
  4037. {
  4038. "name": "agentrickard",
  4039. "homepage": "https://www.drupal.org/user/20975"
  4040. },
  4041. {
  4042. "name": "nonsie",
  4043. "homepage": "https://www.drupal.org/user/29899"
  4044. }
  4045. ],
  4046. "description": "Maps multiple host requests to a single domain record.",
  4047. "homepage": "https://www.drupal.org/project/domain",
  4048. "support": {
  4049. "source": "http://cgit.drupalcode.org/domain"
  4050. }
  4051. },
  4052. {
  4053. "name": "drupal/domain_config",
  4054. "version": "dev-1.x",
  4055. "require": {
  4056. "drupal/core": "~8.0",
  4057. "drupal/domain": "self.version"
  4058. },
  4059. "type": "metapackage",
  4060. "extra": {
  4061. "branch-alias": {
  4062. "dev-1.x": "1.x-dev"
  4063. },
  4064. "drupal": {
  4065. "version": "8.x-1.0-alpha14+23-dev",
  4066. "datestamp": "1543354380",
  4067. "security-coverage": {
  4068. "status": "not-covered",
  4069. "message": "Dev releases are not covered by Drupal security advisories."
  4070. }
  4071. }
  4072. },
  4073. "notification-url": "https://packages.drupal.org/8/downloads",
  4074. "license": [
  4075. "GPL-2.0-or-later"
  4076. ],
  4077. "authors": [
  4078. {
  4079. "name": "agentrickard",
  4080. "homepage": "https://www.drupal.org/user/20975"
  4081. },
  4082. {
  4083. "name": "nonsie",
  4084. "homepage": "https://www.drupal.org/user/29899"
  4085. }
  4086. ],
  4087. "description": "Allows domain specific configuration.",
  4088. "homepage": "https://www.drupal.org/project/domain",
  4089. "support": {
  4090. "source": "http://cgit.drupalcode.org/domain"
  4091. }
  4092. },
  4093. {
  4094. "name": "drupal/domain_site_settings",
  4095. "version": "1.3.0",
  4096. "source": {
  4097. "type": "git",
  4098. "url": "https://git.drupal.org/project/domain_site_settings",
  4099. "reference": "8.x-1.3"
  4100. },
  4101. "dist": {
  4102. "type": "zip",
  4103. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  4104. "reference": "8.x-1.3",
  4105. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  4106. },
  4107. "require": {
  4108. "drupal/core": "~8.0",
  4109. "drupal/domain": "*",
  4110. "drupal/domain_config": "*"
  4111. },
  4112. "type": "drupal-module",
  4113. "extra": {
  4114. "branch-alias": {
  4115. "dev-1.x": "1.x-dev"
  4116. },
  4117. "drupal": {
  4118. "version": "8.x-1.3",
  4119. "datestamp": "1537684980",
  4120. "security-coverage": {
  4121. "status": "covered",
  4122. "message": "Covered by Drupal's security advisory policy"
  4123. }
  4124. }
  4125. },
  4126. "notification-url": "https://packages.drupal.org/8/downloads",
  4127. "license": [
  4128. "GPL-2.0+"
  4129. ],
  4130. "authors": [
  4131. {
  4132. "name": "aloknarwaria",
  4133. "homepage": "https://www.drupal.org/user/906640"
  4134. }
  4135. ],
  4136. "description": "Basic Site Setting for Domains.",
  4137. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4138. "keywords": [
  4139. "Drupal"
  4140. ],
  4141. "support": {
  4142. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4143. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4144. }
  4145. },
  4146. {
  4147. "name": "drupal/email_registration",
  4148. "version": "1.0.0-rc6",
  4149. "source": {
  4150. "type": "git",
  4151. "url": "https://git.drupal.org/project/email_registration",
  4152. "reference": "8.x-1.0-rc6"
  4153. },
  4154. "dist": {
  4155. "type": "zip",
  4156. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc6.zip",
  4157. "reference": "8.x-1.0-rc6",
  4158. "shasum": "b004bc24b79faaa9e8b2fe59a04eaab02f44c363"
  4159. },
  4160. "require": {
  4161. "drupal/core": "*"
  4162. },
  4163. "type": "drupal-module",
  4164. "extra": {
  4165. "branch-alias": {
  4166. "dev-1.x": "1.x-dev"
  4167. },
  4168. "drupal": {
  4169. "version": "8.x-1.0-rc6",
  4170. "datestamp": "1545350880",
  4171. "security-coverage": {
  4172. "status": "not-covered",
  4173. "message": "RC releases are not covered by Drupal security advisories."
  4174. }
  4175. }
  4176. },
  4177. "notification-url": "https://packages.drupal.org/8/downloads",
  4178. "license": [
  4179. "GPL-2.0+"
  4180. ],
  4181. "authors": [
  4182. {
  4183. "name": "Greg Knaddison (greggles)",
  4184. "homepage": "https://www.drupal.org/u/greggles",
  4185. "role": "Maintainer"
  4186. },
  4187. {
  4188. "name": "Andrey Postnikov (andypost)",
  4189. "homepage": "https://www.drupal.org/u/andypost",
  4190. "role": "Maintainer"
  4191. },
  4192. {
  4193. "name": "Chris Herberte",
  4194. "homepage": "https://www.drupal.org/u/chris-herberte",
  4195. "role": "Maintainer"
  4196. },
  4197. {
  4198. "name": "Moshe Weitzman (moshe weitzman)",
  4199. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4200. "role": "Maintainer"
  4201. }
  4202. ],
  4203. "description": "Allows users to register with an email address as their username.",
  4204. "homepage": "https://www.drupal.org/project/email_registration",
  4205. "support": {
  4206. "source": "http://cgit.drupalcode.org/email_registration",
  4207. "issues": "http://drupal.org/project/issues/email_registration"
  4208. }
  4209. },
  4210. {
  4211. "name": "drupal/embed",
  4212. "version": "1.0.0",
  4213. "source": {
  4214. "type": "git",
  4215. "url": "https://git.drupal.org/project/embed",
  4216. "reference": "8.x-1.0"
  4217. },
  4218. "dist": {
  4219. "type": "zip",
  4220. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.0.zip",
  4221. "reference": "8.x-1.0",
  4222. "shasum": "cc746ad807260e01c7788dd82110dcebbb4d678a"
  4223. },
  4224. "require": {
  4225. "drupal/core": "~8.0"
  4226. },
  4227. "type": "drupal-module",
  4228. "extra": {
  4229. "branch-alias": {
  4230. "dev-1.x": "1.x-dev"
  4231. },
  4232. "drupal": {
  4233. "version": "8.x-1.0",
  4234. "datestamp": "1490755685",
  4235. "security-coverage": {
  4236. "status": "covered",
  4237. "message": "Covered by Drupal's security advisory policy"
  4238. }
  4239. }
  4240. },
  4241. "notification-url": "https://packages.drupal.org/8/downloads",
  4242. "license": [
  4243. "GPL-2.0+"
  4244. ],
  4245. "authors": [
  4246. {
  4247. "name": "Dave Reid",
  4248. "homepage": "https://www.drupal.org/user/53892"
  4249. },
  4250. {
  4251. "name": "Devin Carlson",
  4252. "homepage": "https://www.drupal.org/user/290182"
  4253. },
  4254. {
  4255. "name": "Drupal Media Team",
  4256. "homepage": "https://www.drupal.org/user/3260690"
  4257. },
  4258. {
  4259. "name": "cs_shadow",
  4260. "homepage": "https://www.drupal.org/user/2828287"
  4261. },
  4262. {
  4263. "name": "slashrsm",
  4264. "homepage": "https://www.drupal.org/user/744628"
  4265. }
  4266. ],
  4267. "description": "Provide a framework for various different types of embeds in WYSIWYG editors, common functionality, interfaces, and standards.",
  4268. "homepage": "https://www.drupal.org/project/embed",
  4269. "support": {
  4270. "source": "http://cgit.drupalcode.org/embed",
  4271. "issues": "https://www.drupal.org/project/issues/embed",
  4272. "irc": "irc://irc.freenode.org/drupal-media"
  4273. }
  4274. },
  4275. {
  4276. "name": "drupal/entity",
  4277. "version": "1.0.0-rc1",
  4278. "source": {
  4279. "type": "git",
  4280. "url": "https://git.drupal.org/project/entity",
  4281. "reference": "8.x-1.0-rc1"
  4282. },
  4283. "dist": {
  4284. "type": "zip",
  4285. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc1.zip",
  4286. "reference": "8.x-1.0-rc1",
  4287. "shasum": "f2dcd7afd0d36b6f261b10a204057a5c801ad20b"
  4288. },
  4289. "require": {
  4290. "drupal/core": "^8.6"
  4291. },
  4292. "type": "drupal-module",
  4293. "extra": {
  4294. "branch-alias": {
  4295. "dev-1.x": "1.x-dev"
  4296. },
  4297. "drupal": {
  4298. "version": "8.x-1.0-rc1",
  4299. "datestamp": "1539272769",
  4300. "security-coverage": {
  4301. "status": "not-covered",
  4302. "message": "RC releases are not covered by Drupal security advisories."
  4303. }
  4304. }
  4305. },
  4306. "notification-url": "https://packages.drupal.org/8/downloads",
  4307. "license": [
  4308. "GPL-2.0+"
  4309. ],
  4310. "authors": [
  4311. {
  4312. "name": "Berdir",
  4313. "homepage": "https://www.drupal.org/user/214652"
  4314. },
  4315. {
  4316. "name": "bojanz",
  4317. "homepage": "https://www.drupal.org/user/86106"
  4318. },
  4319. {
  4320. "name": "dawehner",
  4321. "homepage": "https://www.drupal.org/user/99340"
  4322. },
  4323. {
  4324. "name": "dixon_",
  4325. "homepage": "https://www.drupal.org/user/239911"
  4326. },
  4327. {
  4328. "name": "fago",
  4329. "homepage": "https://www.drupal.org/user/16747"
  4330. }
  4331. ],
  4332. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4333. "homepage": "http://drupal.org/project/entity",
  4334. "support": {
  4335. "source": "http://cgit.drupalcode.org/entity"
  4336. }
  4337. },
  4338. {
  4339. "name": "drupal/entity_browser",
  4340. "version": "2.0.0",
  4341. "source": {
  4342. "type": "git",
  4343. "url": "https://git.drupal.org/project/entity_browser",
  4344. "reference": "8.x-2.0"
  4345. },
  4346. "dist": {
  4347. "type": "zip",
  4348. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.0.zip",
  4349. "reference": "8.x-2.0",
  4350. "shasum": "683a7a252c947433c7b78bb838d6d8973c13cf77"
  4351. },
  4352. "require": {
  4353. "drupal/core": "~8.0"
  4354. },
  4355. "require-dev": {
  4356. "drupal/ctools": "*",
  4357. "drupal/inline_entity_form": "*",
  4358. "drupal/paragraphs": "*",
  4359. "drupal/token": "*"
  4360. },
  4361. "type": "drupal-module",
  4362. "extra": {
  4363. "branch-alias": {
  4364. "dev-2.x": "2.x-dev",
  4365. "dev-8.x-1.x": "8.1.x-dev"
  4366. },
  4367. "drupal": {
  4368. "version": "8.x-2.0",
  4369. "datestamp": "1536328684",
  4370. "security-coverage": {
  4371. "status": "covered",
  4372. "message": "Covered by Drupal's security advisory policy"
  4373. }
  4374. }
  4375. },
  4376. "notification-url": "https://packages.drupal.org/8/downloads",
  4377. "license": [
  4378. "GPL-2.0+"
  4379. ],
  4380. "authors": [
  4381. {
  4382. "name": "Janez Urevc",
  4383. "homepage": "https://github.com/slashrsm",
  4384. "role": "Maintainer"
  4385. },
  4386. {
  4387. "name": "Primoz Hmeljak",
  4388. "homepage": "https://github.com/primsi",
  4389. "role": "Maintainer"
  4390. },
  4391. {
  4392. "name": "See other contributors",
  4393. "homepage": "https://www.drupal.org/node/1943336/committers",
  4394. "role": "contributor"
  4395. },
  4396. {
  4397. "name": "Primsi",
  4398. "homepage": "https://www.drupal.org/user/282629"
  4399. },
  4400. {
  4401. "name": "marcingy",
  4402. "homepage": "https://www.drupal.org/user/77320"
  4403. },
  4404. {
  4405. "name": "samuel.mortenson",
  4406. "homepage": "https://www.drupal.org/user/2582268"
  4407. },
  4408. {
  4409. "name": "slashrsm",
  4410. "homepage": "https://www.drupal.org/user/744628"
  4411. }
  4412. ],
  4413. "description": "Entity browsing and selecting component.",
  4414. "homepage": "http://drupal.org/project/entity_browser",
  4415. "support": {
  4416. "source": "http://cgit.drupalcode.org/entity_browser",
  4417. "issues": "http://drupal.org/project/issues/entity_browser",
  4418. "irc": "irc://irc.freenode.org/drupal-contribute"
  4419. }
  4420. },
  4421. {
  4422. "name": "drupal/entity_browser_enhanced",
  4423. "version": "1.0.0-rc3",
  4424. "source": {
  4425. "type": "git",
  4426. "url": "https://git.drupal.org/project/entity_browser_enhanced",
  4427. "reference": "8.x-1.0-rc3"
  4428. },
  4429. "dist": {
  4430. "type": "zip",
  4431. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0-rc3.zip",
  4432. "reference": "8.x-1.0-rc3",
  4433. "shasum": "041a93dac5ec9f74a8834faee60995c4db7d1e65"
  4434. },
  4435. "require": {
  4436. "drupal/core": "~8.0",
  4437. "drupal/entity_browser": "*"
  4438. },
  4439. "type": "drupal-module",
  4440. "extra": {
  4441. "branch-alias": {
  4442. "dev-1.x": "1.x-dev",
  4443. "dev-8.x-1.x": "8.1.x-dev"
  4444. },
  4445. "drupal": {
  4446. "version": "8.x-1.0-rc3",
  4447. "datestamp": "1528884525",
  4448. "security-coverage": {
  4449. "status": "not-covered",
  4450. "message": "RC releases are not covered by Drupal security advisories."
  4451. }
  4452. }
  4453. },
  4454. "notification-url": "https://packages.drupal.org/8/downloads",
  4455. "license": [
  4456. "GPL-2.0-or-later"
  4457. ],
  4458. "authors": [
  4459. {
  4460. "name": "Vardot",
  4461. "homepage": "https://www.drupal.org/vardot",
  4462. "role": "Maintainer"
  4463. },
  4464. {
  4465. "name": "RajabNatshah",
  4466. "homepage": "https://www.drupal.org/user/1414312"
  4467. }
  4468. ],
  4469. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4470. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4471. "support": {
  4472. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4473. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4474. }
  4475. },
  4476. {
  4477. "name": "drupal/entity_clone",
  4478. "version": "1.0.0-beta1",
  4479. "source": {
  4480. "type": "git",
  4481. "url": "https://git.drupal.org/project/entity_clone",
  4482. "reference": "8.x-1.0-beta1"
  4483. },
  4484. "dist": {
  4485. "type": "zip",
  4486. "url": "https://ftp.drupal.org/files/projects/entity_clone-8.x-1.0-beta1.zip",
  4487. "reference": "8.x-1.0-beta1",
  4488. "shasum": "d0ace20bbe1672fbe6d0cdd6da8f5b80cd156643"
  4489. },
  4490. "require": {
  4491. "drupal/core": "~8.0"
  4492. },
  4493. "type": "drupal-module",
  4494. "extra": {
  4495. "branch-alias": {
  4496. "dev-1.x": "1.x-dev"
  4497. },
  4498. "drupal": {
  4499. "version": "8.x-1.0-beta1",
  4500. "datestamp": "1546583284",
  4501. "security-coverage": {
  4502. "status": "not-covered",
  4503. "message": "Beta releases are not covered by Drupal security advisories."
  4504. }
  4505. }
  4506. },
  4507. "notification-url": "https://packages.drupal.org/8/downloads",
  4508. "license": [
  4509. "GPL-2.0-or-later"
  4510. ],
  4511. "authors": [
  4512. {
  4513. "name": "vpeltot",
  4514. "homepage": "https://www.drupal.org/user/1361586"
  4515. }
  4516. ],
  4517. "description": "Add a clone action for all entities",
  4518. "homepage": "https://www.drupal.org/project/entity_clone",
  4519. "support": {
  4520. "source": "http://cgit.drupalcode.org/entity_clone"
  4521. }
  4522. },
  4523. {
  4524. "name": "drupal/extlink",
  4525. "version": "1.1.0",
  4526. "source": {
  4527. "type": "git",
  4528. "url": "https://git.drupal.org/project/extlink",
  4529. "reference": "8.x-1.1"
  4530. },
  4531. "dist": {
  4532. "type": "zip",
  4533. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.1.zip",
  4534. "reference": "8.x-1.1",
  4535. "shasum": "0894f1cd12e2e1aa6b00ea4a6dd5e7234eb2b2b2"
  4536. },
  4537. "require": {
  4538. "drupal/core": "~8.0"
  4539. },
  4540. "type": "drupal-module",
  4541. "extra": {
  4542. "branch-alias": {
  4543. "dev-1.x": "1.x-dev"
  4544. },
  4545. "drupal": {
  4546. "version": "8.x-1.1",
  4547. "datestamp": "1524232684",
  4548. "security-coverage": {
  4549. "status": "covered",
  4550. "message": "Covered by Drupal's security advisory policy"
  4551. }
  4552. }
  4553. },
  4554. "notification-url": "https://packages.drupal.org/8/downloads",
  4555. "license": [
  4556. "GPL-2.0-or-later"
  4557. ],
  4558. "authors": [
  4559. {
  4560. "name": "elachlan",
  4561. "homepage": "https://www.drupal.org/user/1021502"
  4562. },
  4563. {
  4564. "name": "jjeff",
  4565. "homepage": "https://www.drupal.org/user/17190"
  4566. },
  4567. {
  4568. "name": "quicksketch",
  4569. "homepage": "https://www.drupal.org/user/35821"
  4570. }
  4571. ],
  4572. "description": "Modify behavior and appearance of external links.",
  4573. "homepage": "https://www.drupal.org/project/extlink",
  4574. "support": {
  4575. "source": "http://cgit.drupalcode.org/extlink"
  4576. }
  4577. },
  4578. {
  4579. "name": "drupal/field_group",
  4580. "version": "1.0.0",
  4581. "source": {
  4582. "type": "git",
  4583. "url": "https://git.drupal.org/project/field_group",
  4584. "reference": "8.x-1.0"
  4585. },
  4586. "dist": {
  4587. "type": "zip",
  4588. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-1.0.zip",
  4589. "reference": "8.x-1.0",
  4590. "shasum": "e8aa3fae5c3c5dec84644bb577996938d638a611"
  4591. },
  4592. "require": {
  4593. "drupal/core": "*"
  4594. },
  4595. "type": "drupal-module",
  4596. "extra": {
  4597. "branch-alias": {
  4598. "dev-1.x": "1.x-dev"
  4599. },
  4600. "drupal": {
  4601. "version": "8.x-1.0",
  4602. "datestamp": "1510352885",
  4603. "security-coverage": {
  4604. "status": "covered",
  4605. "message": "Covered by Drupal's security advisory policy"
  4606. }
  4607. }
  4608. },
  4609. "notification-url": "https://packages.drupal.org/8/downloads",
  4610. "license": [
  4611. "GPL-2.0+"
  4612. ],
  4613. "authors": [
  4614. {
  4615. "name": "Hydra",
  4616. "homepage": "https://www.drupal.org/user/647364"
  4617. },
  4618. {
  4619. "name": "Stalski",
  4620. "homepage": "https://www.drupal.org/user/322618"
  4621. },
  4622. {
  4623. "name": "jyve",
  4624. "homepage": "https://www.drupal.org/user/591438"
  4625. },
  4626. {
  4627. "name": "swentel",
  4628. "homepage": "https://www.drupal.org/user/107403"
  4629. },
  4630. {
  4631. "name": "zuuperman",
  4632. "homepage": "https://www.drupal.org/user/361625"
  4633. }
  4634. ],
  4635. "description": "Provides the field_group module.",
  4636. "homepage": "https://www.drupal.org/project/field_group",
  4637. "support": {
  4638. "source": "http://cgit.drupalcode.org/field_group"
  4639. }
  4640. },
  4641. {
  4642. "name": "drupal/file_mdm",
  4643. "version": "1.1.0",
  4644. "source": {
  4645. "type": "git",
  4646. "url": "https://git.drupal.org/project/file_mdm",
  4647. "reference": "8.x-1.1"
  4648. },
  4649. "dist": {
  4650. "type": "zip",
  4651. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-1.1.zip",
  4652. "reference": "8.x-1.1",
  4653. "shasum": "7f354aec6f89e3141c2aa1fb3747ad5d4578c13f"
  4654. },
  4655. "require": {
  4656. "drupal/core": "~8.0",
  4657. "lsolesen/pel": "0.9.6",
  4658. "phenx/php-font-lib": "0.5",
  4659. "php": ">=5.6"
  4660. },
  4661. "require-dev": {
  4662. "drupal/image_effects": "*"
  4663. },
  4664. "type": "drupal-module",
  4665. "extra": {
  4666. "branch-alias": {
  4667. "dev-1.x": "1.x-dev"
  4668. },
  4669. "drupal": {
  4670. "version": "8.x-1.1",
  4671. "datestamp": "1488273785",
  4672. "security-coverage": {
  4673. "status": "covered",
  4674. "message": "Covered by Drupal's security advisory policy"
  4675. }
  4676. }
  4677. },
  4678. "notification-url": "https://packages.drupal.org/8/downloads",
  4679. "license": [
  4680. "GPL-2.0-or-later"
  4681. ],
  4682. "authors": [
  4683. {
  4684. "name": "mondrake",
  4685. "homepage": "https://www.drupal.org/user/1307444"
  4686. }
  4687. ],
  4688. "description": "Provides a service to manage file metadata.",
  4689. "homepage": "https://www.drupal.org/project/file_mdm",
  4690. "support": {
  4691. "source": "http://cgit.drupalcode.org/file_mdm"
  4692. }
  4693. },
  4694. {
  4695. "name": "drupal/file_mdm_exif",
  4696. "version": "1.1.0",
  4697. "require": {
  4698. "drupal/core": "~8.0",
  4699. "drupal/file_mdm": "self.version"
  4700. },
  4701. "require-dev": {
  4702. "drupal/image_effects": "*"
  4703. },
  4704. "type": "metapackage",
  4705. "extra": {
  4706. "branch-alias": {
  4707. "dev-1.x": "1.x-dev"
  4708. },
  4709. "drupal": {
  4710. "version": "8.x-1.1",
  4711. "datestamp": "1488273785",
  4712. "security-coverage": {
  4713. "status": "covered",
  4714. "message": "Covered by Drupal's security advisory policy"
  4715. }
  4716. }
  4717. },
  4718. "notification-url": "https://packages.drupal.org/8/downloads",
  4719. "license": [
  4720. "GPL-2.0-or-later"
  4721. ],
  4722. "authors": [
  4723. {
  4724. "name": "mondrake",
  4725. "homepage": "https://www.drupal.org/user/1307444"
  4726. }
  4727. ],
  4728. "description": "Provides a file metadata plugin for EXIF image information.",
  4729. "homepage": "https://www.drupal.org/project/file_mdm",
  4730. "support": {
  4731. "source": "http://cgit.drupalcode.org/file_mdm"
  4732. }
  4733. },
  4734. {
  4735. "name": "drupal/filefield_sources",
  4736. "version": "dev-1.x",
  4737. "source": {
  4738. "type": "git",
  4739. "url": "https://git.drupal.org/project/filefield_sources",
  4740. "reference": "b19c6a839804f47587828d4a50e29e0720fa4c08"
  4741. },
  4742. "require": {
  4743. "drupal/core": "*"
  4744. },
  4745. "type": "drupal-module",
  4746. "extra": {
  4747. "branch-alias": {
  4748. "dev-1.x": "1.x-dev"
  4749. },
  4750. "drupal": {
  4751. "version": "8.x-1.x-dev",
  4752. "datestamp": "1487711283",
  4753. "security-coverage": {
  4754. "status": "not-covered",
  4755. "message": "Dev releases are not covered by Drupal security advisories."
  4756. }
  4757. }
  4758. },
  4759. "notification-url": "https://packages.drupal.org/8/downloads",
  4760. "license": [
  4761. "GPL-2.0-or-later"
  4762. ],
  4763. "authors": [
  4764. {
  4765. "name": "profak",
  4766. "homepage": "https://www.drupal.org/user/782534"
  4767. },
  4768. {
  4769. "name": "quicksketch",
  4770. "homepage": "https://www.drupal.org/user/35821"
  4771. }
  4772. ],
  4773. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4774. "homepage": "https://www.drupal.org/project/filefield_sources",
  4775. "support": {
  4776. "source": "http://cgit.drupalcode.org/filefield_sources"
  4777. },
  4778. "time": "2017-02-21T21:07:00+00:00"
  4779. },
  4780. {
  4781. "name": "drupal/filter_perms",
  4782. "version": "dev-1.x",
  4783. "source": {
  4784. "type": "git",
  4785. "url": "https://git.drupal.org/project/filter_perms",
  4786. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4787. },
  4788. "require": {
  4789. "drupal/core": "*"
  4790. },
  4791. "type": "drupal-module",
  4792. "extra": {
  4793. "branch-alias": {
  4794. "dev-1.x": "1.x-dev"
  4795. },
  4796. "drupal": {
  4797. "version": "8.x-1.x-dev",
  4798. "datestamp": "1469645939",
  4799. "security-coverage": {
  4800. "status": "not-covered",
  4801. "message": "Dev releases are not covered by Drupal security advisories."
  4802. }
  4803. }
  4804. },
  4805. "notification-url": "https://packages.drupal.org/8/downloads",
  4806. "license": [
  4807. "GPL-2.0-or-later"
  4808. ],
  4809. "authors": [
  4810. {
  4811. "name": "cYu",
  4812. "homepage": "https://www.drupal.org/user/202205"
  4813. },
  4814. {
  4815. "name": "deekayen",
  4816. "homepage": "https://www.drupal.org/user/972"
  4817. },
  4818. {
  4819. "name": "willzyx",
  4820. "homepage": "https://www.drupal.org/user/1043862"
  4821. }
  4822. ],
  4823. "description": "Provides role and module filters to simplify the user permissions page.",
  4824. "homepage": "https://www.drupal.org/project/filter_perms",
  4825. "support": {
  4826. "source": "http://cgit.drupalcode.org/filter_perms"
  4827. },
  4828. "time": "2016-07-27T19:01:11+00:00"
  4829. },
  4830. {
  4831. "name": "drupal/flexi",
  4832. "version": "dev-1.x",
  4833. "source": {
  4834. "type": "git",
  4835. "url": "https://git.drupal.org/project/flexi",
  4836. "reference": "1786c56c7dd2be20a4684d3a3df91eff13a3b928"
  4837. },
  4838. "require": {
  4839. "drupal/core": "~8.0"
  4840. },
  4841. "type": "drupal-theme",
  4842. "extra": {
  4843. "branch-alias": {
  4844. "dev-1.x": "1.x-dev"
  4845. },
  4846. "drupal": {
  4847. "version": "8.x-1.3+3-dev",
  4848. "datestamp": "1549435680",
  4849. "security-coverage": {
  4850. "status": "not-covered",
  4851. "message": "Project has not opted into security advisory coverage!"
  4852. }
  4853. }
  4854. },
  4855. "notification-url": "https://packages.drupal.org/8/downloads",
  4856. "license": [
  4857. "GPL-2.0-or-later"
  4858. ],
  4859. "authors": [
  4860. {
  4861. "name": "Girish-jerk",
  4862. "homepage": "https://www.drupal.org/user/3406890"
  4863. },
  4864. {
  4865. "name": "Sakthivel M",
  4866. "homepage": "https://www.drupal.org/user/2947669"
  4867. }
  4868. ],
  4869. "description": "HTML5 based Responsive Drupal Base theme. Most flexible & user friendly theme for backend and frontend.",
  4870. "homepage": "https://www.drupal.org/project/flexi",
  4871. "support": {
  4872. "source": "http://cgit.drupalcode.org/flexi"
  4873. },
  4874. "time": "2019-02-06T06:48:14+00:00"
  4875. },
  4876. {
  4877. "name": "drupal/honeypot",
  4878. "version": "1.29.0",
  4879. "source": {
  4880. "type": "git",
  4881. "url": "https://git.drupal.org/project/honeypot",
  4882. "reference": "8.x-1.29"
  4883. },
  4884. "dist": {
  4885. "type": "zip",
  4886. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4887. "reference": "8.x-1.29",
  4888. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4889. },
  4890. "require": {
  4891. "drupal/core": "~8.0"
  4892. },
  4893. "type": "drupal-module",
  4894. "extra": {
  4895. "branch-alias": {
  4896. "dev-1.x": "1.x-dev"
  4897. },
  4898. "drupal": {
  4899. "version": "8.x-1.29",
  4900. "datestamp": "1536179280",
  4901. "security-coverage": {
  4902. "status": "covered",
  4903. "message": "Covered by Drupal's security advisory policy"
  4904. }
  4905. }
  4906. },
  4907. "notification-url": "https://packages.drupal.org/8/downloads",
  4908. "license": [
  4909. "GPL-2.0+"
  4910. ],
  4911. "authors": [
  4912. {
  4913. "name": "Jeff Geerling",
  4914. "homepage": "https://www.drupal.org/user/389011",
  4915. "email": "geerlingguy@mac.com"
  4916. }
  4917. ],
  4918. "description": "Mitigates spam form submissions using the honeypot method.",
  4919. "homepage": "https://www.drupal.org/project/honeypot",
  4920. "keywords": [
  4921. "deterrent",
  4922. "form",
  4923. "honeypot",
  4924. "honeytrap",
  4925. "php",
  4926. "spam"
  4927. ],
  4928. "support": {
  4929. "source": "http://cgit.drupalcode.org/honeypot"
  4930. }
  4931. },
  4932. {
  4933. "name": "drupal/imagemagick",
  4934. "version": "2.3.0",
  4935. "source": {
  4936. "type": "git",
  4937. "url": "https://git.drupal.org/project/imagemagick",
  4938. "reference": "8.x-2.3"
  4939. },
  4940. "dist": {
  4941. "type": "zip",
  4942. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-2.3.zip",
  4943. "reference": "8.x-2.3",
  4944. "shasum": "8359921d4700e954364c2633332c20579bb75a34"
  4945. },
  4946. "require": {
  4947. "drupal/core": "^8.3",
  4948. "drupal/file_mdm": "^1.1",
  4949. "drupal/file_mdm_exif": "^1.1"
  4950. },
  4951. "type": "drupal-module",
  4952. "extra": {
  4953. "branch-alias": {
  4954. "dev-2.x": "2.x-dev"
  4955. },
  4956. "drupal": {
  4957. "version": "8.x-2.3",
  4958. "datestamp": "1520958305",
  4959. "security-coverage": {
  4960. "status": "covered",
  4961. "message": "Covered by Drupal's security advisory policy"
  4962. }
  4963. }
  4964. },
  4965. "notification-url": "https://packages.drupal.org/8/downloads",
  4966. "license": [
  4967. "GPL-2.0-or-later"
  4968. ],
  4969. "authors": [
  4970. {
  4971. "name": "Chris Charlton",
  4972. "homepage": "https://www.drupal.org/user/17089"
  4973. },
  4974. {
  4975. "name": "chx",
  4976. "homepage": "https://www.drupal.org/user/9446"
  4977. },
  4978. {
  4979. "name": "claudiu.cristea",
  4980. "homepage": "https://www.drupal.org/user/56348"
  4981. },
  4982. {
  4983. "name": "dman",
  4984. "homepage": "https://www.drupal.org/user/33240"
  4985. },
  4986. {
  4987. "name": "dopry",
  4988. "homepage": "https://www.drupal.org/user/22202"
  4989. },
  4990. {
  4991. "name": "drewish",
  4992. "homepage": "https://www.drupal.org/user/34869"
  4993. },
  4994. {
  4995. "name": "gdl",
  4996. "homepage": "https://www.drupal.org/user/507326"
  4997. },
  4998. {
  4999. "name": "mondrake",
  5000. "homepage": "https://www.drupal.org/user/1307444"
  5001. },
  5002. {
  5003. "name": "quicksketch",
  5004. "homepage": "https://www.drupal.org/user/35821"
  5005. },
  5006. {
  5007. "name": "sun",
  5008. "homepage": "https://www.drupal.org/user/54136"
  5009. },
  5010. {
  5011. "name": "walkah",
  5012. "homepage": "https://www.drupal.org/user/1531"
  5013. }
  5014. ],
  5015. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  5016. "homepage": "https://www.drupal.org/project/imagemagick",
  5017. "support": {
  5018. "source": "http://cgit.drupalcode.org/imagemagick"
  5019. }
  5020. },
  5021. {
  5022. "name": "drupal/inline_entity_form",
  5023. "version": "1.0.0-rc1",
  5024. "source": {
  5025. "type": "git",
  5026. "url": "https://git.drupal.org/project/inline_entity_form",
  5027. "reference": "8.x-1.0-rc1"
  5028. },
  5029. "dist": {
  5030. "type": "zip",
  5031. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc1.zip",
  5032. "reference": "8.x-1.0-rc1",
  5033. "shasum": "898789fb6a0662fc2572b87f8d0654a0241473f9"
  5034. },
  5035. "require": {
  5036. "drupal/core": "~8.0"
  5037. },
  5038. "require-dev": {
  5039. "drupal/entity_reference_revisions": "*"
  5040. },
  5041. "type": "drupal-module",
  5042. "extra": {
  5043. "branch-alias": {
  5044. "dev-1.x": "1.x-dev"
  5045. },
  5046. "drupal": {
  5047. "version": "8.x-1.0-rc1",
  5048. "datestamp": "1527030784",
  5049. "security-coverage": {
  5050. "status": "not-covered",
  5051. "message": "RC releases are not covered by Drupal security advisories."
  5052. }
  5053. }
  5054. },
  5055. "notification-url": "https://packages.drupal.org/8/downloads",
  5056. "license": [
  5057. "GPL-2.0+"
  5058. ],
  5059. "authors": [
  5060. {
  5061. "name": "bojanz",
  5062. "homepage": "https://www.drupal.org/user/86106"
  5063. },
  5064. {
  5065. "name": "dawehner",
  5066. "homepage": "https://www.drupal.org/user/99340"
  5067. },
  5068. {
  5069. "name": "rszrama",
  5070. "homepage": "https://www.drupal.org/user/49344"
  5071. },
  5072. {
  5073. "name": "slashrsm",
  5074. "homepage": "https://www.drupal.org/user/744628"
  5075. },
  5076. {
  5077. "name": "webflo",
  5078. "homepage": "https://www.drupal.org/user/254778"
  5079. }
  5080. ],
  5081. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5082. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5083. "support": {
  5084. "source": "http://cgit.drupalcode.org/inline_entity_form"
  5085. }
  5086. },
  5087. {
  5088. "name": "drupal/kint",
  5089. "version": "2.0.0",
  5090. "require": {
  5091. "drupal/core": "~8.0",
  5092. "drupal/devel": "self.version"
  5093. },
  5094. "type": "metapackage",
  5095. "extra": {
  5096. "branch-alias": {
  5097. "dev-2.x": "2.x-dev"
  5098. },
  5099. "drupal": {
  5100. "version": "8.x-2.0",
  5101. "datestamp": "1548799380",
  5102. "security-coverage": {
  5103. "status": "covered",
  5104. "message": "Covered by Drupal's security advisory policy"
  5105. }
  5106. }
  5107. },
  5108. "notification-url": "https://packages.drupal.org/8/downloads",
  5109. "license": [
  5110. "GPL-2.0-or-later"
  5111. ],
  5112. "authors": [
  5113. {
  5114. "name": "catch",
  5115. "homepage": "https://www.drupal.org/user/35733"
  5116. },
  5117. {
  5118. "name": "juampynr",
  5119. "homepage": "https://www.drupal.org/user/682736"
  5120. },
  5121. {
  5122. "name": "lussoluca",
  5123. "homepage": "https://www.drupal.org/user/138068"
  5124. },
  5125. {
  5126. "name": "moshe weitzman",
  5127. "homepage": "https://www.drupal.org/user/23"
  5128. },
  5129. {
  5130. "name": "pcambra",
  5131. "homepage": "https://www.drupal.org/user/122101"
  5132. },
  5133. {
  5134. "name": "salvis",
  5135. "homepage": "https://www.drupal.org/user/82964"
  5136. },
  5137. {
  5138. "name": "willzyx",
  5139. "homepage": "https://www.drupal.org/user/1043862"
  5140. }
  5141. ],
  5142. "description": "Wrapper for Kint debugging tool",
  5143. "homepage": "https://www.drupal.org/project/devel",
  5144. "support": {
  5145. "source": "http://cgit.drupalcode.org/devel"
  5146. }
  5147. },
  5148. {
  5149. "name": "drupal/link_attributes",
  5150. "version": "1.5.0",
  5151. "source": {
  5152. "type": "git",
  5153. "url": "https://git.drupal.org/project/link_attributes",
  5154. "reference": "8.x-1.5"
  5155. },
  5156. "dist": {
  5157. "type": "zip",
  5158. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.5.zip",
  5159. "reference": "8.x-1.5",
  5160. "shasum": "48c0e6ac2c3f4843372abb394c1aabe380dfa604"
  5161. },
  5162. "require": {
  5163. "drupal/core": "*"
  5164. },
  5165. "type": "drupal-module",
  5166. "extra": {
  5167. "branch-alias": {
  5168. "dev-1.x": "1.x-dev"
  5169. },
  5170. "drupal": {
  5171. "version": "8.x-1.5",
  5172. "datestamp": "1537173781",
  5173. "security-coverage": {
  5174. "status": "covered",
  5175. "message": "Covered by Drupal's security advisory policy"
  5176. }
  5177. }
  5178. },
  5179. "notification-url": "https://packages.drupal.org/8/downloads",
  5180. "license": [
  5181. "GPL-2.0-or-later"
  5182. ],
  5183. "authors": [
  5184. {
  5185. "name": "larowlan",
  5186. "homepage": "https://www.drupal.org/user/395439"
  5187. }
  5188. ],
  5189. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5190. "homepage": "https://www.drupal.org/project/link_attributes",
  5191. "support": {
  5192. "source": "http://cgit.drupalcode.org/link_attributes"
  5193. }
  5194. },
  5195. {
  5196. "name": "drupal/linkit",
  5197. "version": "4.3.0",
  5198. "source": {
  5199. "type": "git",
  5200. "url": "https://git.drupal.org/project/linkit",
  5201. "reference": "8.x-4.3"
  5202. },
  5203. "dist": {
  5204. "type": "zip",
  5205. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  5206. "reference": "8.x-4.3",
  5207. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  5208. },
  5209. "require": {
  5210. "drupal/core": "~8.0"
  5211. },
  5212. "type": "drupal-module",
  5213. "extra": {
  5214. "branch-alias": {
  5215. "dev-4.x": "4.x-dev"
  5216. },
  5217. "drupal": {
  5218. "version": "8.x-4.3",
  5219. "datestamp": "1490205830",
  5220. "security-coverage": {
  5221. "status": "covered",
  5222. "message": "Covered by Drupal's security advisory policy"
  5223. }
  5224. }
  5225. },
  5226. "notification-url": "https://packages.drupal.org/8/downloads",
  5227. "license": [
  5228. "GPL-2.0+"
  5229. ],
  5230. "authors": [
  5231. {
  5232. "name": "Emil Stjerneman",
  5233. "homepage": "https://stjerneman.com",
  5234. "email": "emil@stjerneman.com",
  5235. "role": "Maintainer"
  5236. }
  5237. ],
  5238. "description": "Linkit - Enriched linking experience",
  5239. "homepage": "http://drupal.org/project/linkit",
  5240. "support": {
  5241. "source": "http://cgit.drupalcode.org/linkit",
  5242. "issues": "http://drupal.org/project/linkit"
  5243. }
  5244. },
  5245. {
  5246. "name": "drupal/login_destination",
  5247. "version": "dev-1.x",
  5248. "source": {
  5249. "type": "git",
  5250. "url": "https://git.drupal.org/project/login_destination",
  5251. "reference": "54be8b89fdc073ca40af6b9b2eeb050e0aeb7908"
  5252. },
  5253. "require": {
  5254. "drupal/core": "~8.0"
  5255. },
  5256. "type": "drupal-module",
  5257. "extra": {
  5258. "branch-alias": {
  5259. "dev-1.x": "1.x-dev"
  5260. },
  5261. "drupal": {
  5262. "version": "8.x-1.x-dev",
  5263. "datestamp": "1514805485",
  5264. "security-coverage": {
  5265. "status": "not-covered",
  5266. "message": "Dev releases are not covered by Drupal security advisories."
  5267. }
  5268. }
  5269. },
  5270. "notification-url": "https://packages.drupal.org/8/downloads",
  5271. "license": [
  5272. "GPL-2.0-or-later"
  5273. ],
  5274. "authors": [
  5275. {
  5276. "name": "Oliver Huynh",
  5277. "homepage": "https://www.drupal.org/user/243730"
  5278. },
  5279. {
  5280. "name": "akashjain132",
  5281. "homepage": "https://www.drupal.org/user/2622667"
  5282. },
  5283. {
  5284. "name": "beautifulmind",
  5285. "homepage": "https://www.drupal.org/user/219482"
  5286. },
  5287. {
  5288. "name": "ddrozdik",
  5289. "homepage": "https://www.drupal.org/user/574124"
  5290. },
  5291. {
  5292. "name": "jng12",
  5293. "homepage": "https://www.drupal.org/user/204316"
  5294. },
  5295. {
  5296. "name": "marcp",
  5297. "homepage": "https://www.drupal.org/user/20885"
  5298. },
  5299. {
  5300. "name": "mithy",
  5301. "homepage": "https://www.drupal.org/user/258911"
  5302. },
  5303. {
  5304. "name": "moshe weitzman",
  5305. "homepage": "https://www.drupal.org/user/23"
  5306. },
  5307. {
  5308. "name": "quantumized",
  5309. "homepage": "https://www.drupal.org/user/61221"
  5310. },
  5311. {
  5312. "name": "rsvelko",
  5313. "homepage": "https://www.drupal.org/user/337401"
  5314. }
  5315. ],
  5316. "description": "The Login Destination module add possibility customize the destination that the user is redirected to after login.",
  5317. "homepage": "https://www.drupal.org/project/login_destination",
  5318. "support": {
  5319. "source": "http://cgit.drupalcode.org/login_destination"
  5320. },
  5321. "time": "2018-01-01T11:13:09+00:00"
  5322. },
  5323. {
  5324. "name": "drupal/maillog",
  5325. "version": "dev-1.x",
  5326. "source": {
  5327. "type": "git",
  5328. "url": "https://git.drupal.org/project/maillog",
  5329. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  5330. },
  5331. "require": {
  5332. "drupal/core": "*"
  5333. },
  5334. "type": "drupal-module",
  5335. "extra": {
  5336. "branch-alias": {
  5337. "dev-1.x": "1.x-dev"
  5338. },
  5339. "drupal": {
  5340. "version": "8.x-1.x-dev",
  5341. "datestamp": "1470431939",
  5342. "security-coverage": {
  5343. "status": "not-covered",
  5344. "message": "Project has not opted into security advisory coverage!"
  5345. }
  5346. }
  5347. },
  5348. "notification-url": "https://packages.drupal.org/8/downloads",
  5349. "license": [
  5350. "GPL-2.0-or-later"
  5351. ],
  5352. "authors": [
  5353. {
  5354. "name": "Berdir",
  5355. "homepage": "https://www.drupal.org/user/214652"
  5356. },
  5357. {
  5358. "name": "DamienMcKenna",
  5359. "homepage": "https://www.drupal.org/user/108450"
  5360. },
  5361. {
  5362. "name": "miro_dietiker",
  5363. "homepage": "https://www.drupal.org/user/227761"
  5364. },
  5365. {
  5366. "name": "pluess",
  5367. "homepage": "https://www.drupal.org/user/84659"
  5368. }
  5369. ],
  5370. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5371. "homepage": "https://www.drupal.org/project/maillog",
  5372. "support": {
  5373. "source": "http://cgit.drupalcode.org/maillog"
  5374. },
  5375. "time": "2016-08-05T21:18:07+00:00"
  5376. },
  5377. {
  5378. "name": "drupal/mailsystem",
  5379. "version": "4.1.0",
  5380. "source": {
  5381. "type": "git",
  5382. "url": "https://git.drupal.org/project/mailsystem",
  5383. "reference": "8.x-4.1"
  5384. },
  5385. "dist": {
  5386. "type": "zip",
  5387. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.1.zip",
  5388. "reference": "8.x-4.1",
  5389. "shasum": "318b87f1fdf96e6db30b04a98108af02a0fc3dcc"
  5390. },
  5391. "require": {
  5392. "drupal/core": "^8.0.5"
  5393. },
  5394. "type": "drupal-module",
  5395. "extra": {
  5396. "branch-alias": {
  5397. "dev-4.x": "4.x-dev"
  5398. },
  5399. "drupal": {
  5400. "version": "8.x-4.1",
  5401. "datestamp": "1467993646",
  5402. "security-coverage": {
  5403. "status": "covered",
  5404. "message": "Covered by Drupal's security advisory policy"
  5405. }
  5406. }
  5407. },
  5408. "notification-url": "https://packages.drupal.org/8/downloads",
  5409. "license": [
  5410. "GPL-2.0+"
  5411. ],
  5412. "authors": [
  5413. {
  5414. "name": "Berdir",
  5415. "homepage": "https://www.drupal.org/user/214652"
  5416. },
  5417. {
  5418. "name": "Les Lim",
  5419. "homepage": "https://www.drupal.org/user/84263"
  5420. },
  5421. {
  5422. "name": "Nafes",
  5423. "homepage": "https://www.drupal.org/user/2489926"
  5424. },
  5425. {
  5426. "name": "miro_dietiker",
  5427. "homepage": "https://www.drupal.org/user/227761"
  5428. },
  5429. {
  5430. "name": "pillarsdotnet",
  5431. "homepage": "https://www.drupal.org/user/36148"
  5432. }
  5433. ],
  5434. "description": "Mail System",
  5435. "homepage": "https://www.drupal.org/project/mailsystem",
  5436. "support": {
  5437. "source": "http://cgit.drupalcode.org/mailsystem"
  5438. }
  5439. },
  5440. {
  5441. "name": "drupal/matomo",
  5442. "version": "1.9.0",
  5443. "source": {
  5444. "type": "git",
  5445. "url": "https://git.drupal.org/project/matomo",
  5446. "reference": "8.x-1.9"
  5447. },
  5448. "dist": {
  5449. "type": "zip",
  5450. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  5451. "reference": "8.x-1.9",
  5452. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  5453. },
  5454. "require": {
  5455. "drupal/core": "~8.5"
  5456. },
  5457. "require-dev": {
  5458. "drupal/php": "*",
  5459. "drupal/token": "*"
  5460. },
  5461. "type": "drupal-module",
  5462. "extra": {
  5463. "branch-alias": {
  5464. "dev-1.x": "1.x-dev"
  5465. },
  5466. "drupal": {
  5467. "version": "8.x-1.9",
  5468. "datestamp": "1549615080",
  5469. "security-coverage": {
  5470. "status": "covered",
  5471. "message": "Covered by Drupal's security advisory policy"
  5472. }
  5473. }
  5474. },
  5475. "notification-url": "https://packages.drupal.org/8/downloads",
  5476. "license": [
  5477. "GPL-2.0+"
  5478. ],
  5479. "authors": [
  5480. {
  5481. "name": "hass",
  5482. "homepage": "https://www.drupal.org/u/hass"
  5483. },
  5484. {
  5485. "name": "See other contributors",
  5486. "homepage": "https://www.drupal.org/node/247808/committers"
  5487. }
  5488. ],
  5489. "description": "Adds Matomo javascript tracking code to all your site's pages",
  5490. "homepage": "https://www.drupal.org/project/matomo",
  5491. "support": {
  5492. "source": "https://git.drupal.org/project/matomo.git",
  5493. "issues": "https://www.drupal.org/project/issues/matomo"
  5494. }
  5495. },
  5496. {
  5497. "name": "drupal/maxlength",
  5498. "version": "1.0.0-beta2",
  5499. "source": {
  5500. "type": "git",
  5501. "url": "https://git.drupal.org/project/maxlength",
  5502. "reference": "8.x-1.0-beta2"
  5503. },
  5504. "dist": {
  5505. "type": "zip",
  5506. "url": "https://ftp.drupal.org/files/projects/maxlength-8.x-1.0-beta2.zip",
  5507. "reference": "8.x-1.0-beta2",
  5508. "shasum": "27f7374e55ebdcc696d22d98be8cf4cf9bf58204"
  5509. },
  5510. "require": {
  5511. "drupal/core": "~8.0"
  5512. },
  5513. "type": "drupal-module",
  5514. "extra": {
  5515. "branch-alias": {
  5516. "dev-1.x": "1.x-dev"
  5517. },
  5518. "drupal": {
  5519. "version": "8.x-1.0-beta2",
  5520. "datestamp": "1527856384",
  5521. "security-coverage": {
  5522. "status": "not-covered",
  5523. "message": "Beta releases are not covered by Drupal security advisories."
  5524. }
  5525. }
  5526. },
  5527. "notification-url": "https://packages.drupal.org/8/downloads",
  5528. "license": [
  5529. "GPL-2.0-or-later"
  5530. ],
  5531. "authors": [
  5532. {
  5533. "name": "Aron Novak",
  5534. "homepage": "https://www.drupal.org/user/61864"
  5535. },
  5536. {
  5537. "name": "Schnitzel",
  5538. "homepage": "https://www.drupal.org/user/643820"
  5539. },
  5540. {
  5541. "name": "a_c_m",
  5542. "homepage": "https://www.drupal.org/user/195063"
  5543. },
  5544. {
  5545. "name": "artur.thiessen",
  5546. "homepage": "https://www.drupal.org/user/2390554"
  5547. },
  5548. {
  5549. "name": "barneytech",
  5550. "homepage": "https://www.drupal.org/user/669922"
  5551. },
  5552. {
  5553. "name": "claudiu_cristea",
  5554. "homepage": "https://www.drupal.org/user/2623935"
  5555. },
  5556. {
  5557. "name": "dawehner",
  5558. "homepage": "https://www.drupal.org/user/99340"
  5559. },
  5560. {
  5561. "name": "derhasi",
  5562. "homepage": "https://www.drupal.org/user/83474"
  5563. },
  5564. {
  5565. "name": "frjo",
  5566. "homepage": "https://www.drupal.org/user/5546"
  5567. },
  5568. {
  5569. "name": "hefox",
  5570. "homepage": "https://www.drupal.org/user/426416"
  5571. },
  5572. {
  5573. "name": "jm.federico",
  5574. "homepage": "https://www.drupal.org/user/509892"
  5575. },
  5576. {
  5577. "name": "k4v",
  5578. "homepage": "https://www.drupal.org/user/744246"
  5579. },
  5580. {
  5581. "name": "mariano73",
  5582. "homepage": "https://www.drupal.org/user/1324866"
  5583. },
  5584. {
  5585. "name": "mariuss",
  5586. "homepage": "https://www.drupal.org/user/28539"
  5587. },
  5588. {
  5589. "name": "sanduhrs",
  5590. "homepage": "https://www.drupal.org/user/28074"
  5591. },
  5592. {
  5593. "name": "vasi1186",
  5594. "homepage": "https://www.drupal.org/user/342104"
  5595. }
  5596. ],
  5597. "description": "Limit the number of characters in textfields and textareas and shows the amount of characters left.",
  5598. "homepage": "https://www.drupal.org/project/maxlength",
  5599. "support": {
  5600. "source": "http://cgit.drupalcode.org/maxlength"
  5601. }
  5602. },
  5603. {
  5604. "name": "drupal/menu_admin_per_menu",
  5605. "version": "1.0.0",
  5606. "source": {
  5607. "type": "git",
  5608. "url": "https://git.drupal.org/project/menu_admin_per_menu",
  5609. "reference": "8.x-1.0"
  5610. },
  5611. "dist": {
  5612. "type": "zip",
  5613. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  5614. "reference": "8.x-1.0",
  5615. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  5616. },
  5617. "require": {
  5618. "drupal/core": "*"
  5619. },
  5620. "type": "drupal-module",
  5621. "extra": {
  5622. "branch-alias": {
  5623. "dev-1.x": "1.x-dev"
  5624. },
  5625. "drupal": {
  5626. "version": "8.x-1.0",
  5627. "datestamp": "1507184944",
  5628. "security-coverage": {
  5629. "status": "covered",
  5630. "message": "Covered by Drupal's security advisory policy"
  5631. }
  5632. }
  5633. },
  5634. "notification-url": "https://packages.drupal.org/8/downloads",
  5635. "license": [
  5636. "GPL-2.0-or-later"
  5637. ],
  5638. "authors": [
  5639. {
  5640. "name": "anrikun",
  5641. "homepage": "https://www.drupal.org/user/410199"
  5642. },
  5643. {
  5644. "name": "mkdok",
  5645. "homepage": "https://www.drupal.org/user/3308753"
  5646. }
  5647. ],
  5648. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5649. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5650. "support": {
  5651. "source": "http://cgit.drupalcode.org/menu_admin_per_menu"
  5652. }
  5653. },
  5654. {
  5655. "name": "drupal/menu_block",
  5656. "version": "1.5.0",
  5657. "source": {
  5658. "type": "git",
  5659. "url": "https://git.drupal.org/project/menu_block",
  5660. "reference": "8.x-1.5"
  5661. },
  5662. "dist": {
  5663. "type": "zip",
  5664. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.5.zip",
  5665. "reference": "8.x-1.5",
  5666. "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b"
  5667. },
  5668. "require": {
  5669. "drupal/core": "*"
  5670. },
  5671. "type": "drupal-module",
  5672. "extra": {
  5673. "branch-alias": {
  5674. "dev-1.x": "1.x-dev"
  5675. },
  5676. "drupal": {
  5677. "version": "8.x-1.5",
  5678. "datestamp": "1525200184",
  5679. "security-coverage": {
  5680. "status": "covered",
  5681. "message": "Covered by Drupal's security advisory policy"
  5682. }
  5683. }
  5684. },
  5685. "notification-url": "https://packages.drupal.org/8/downloads",
  5686. "license": [
  5687. "GPL-2.0-or-later"
  5688. ],
  5689. "authors": [
  5690. {
  5691. "name": "Dave Reid",
  5692. "homepage": "https://www.drupal.org/user/53892"
  5693. },
  5694. {
  5695. "name": "JohnAlbin",
  5696. "homepage": "https://www.drupal.org/user/32095"
  5697. },
  5698. {
  5699. "name": "joelpittet",
  5700. "homepage": "https://www.drupal.org/user/160302"
  5701. },
  5702. {
  5703. "name": "kim.pepper",
  5704. "homepage": "https://www.drupal.org/user/370574"
  5705. },
  5706. {
  5707. "name": "rrrob",
  5708. "homepage": "https://www.drupal.org/user/273533"
  5709. }
  5710. ],
  5711. "description": "Provides configurable blocks of menu links.",
  5712. "homepage": "https://www.drupal.org/project/menu_block",
  5713. "support": {
  5714. "source": "http://cgit.drupalcode.org/menu_block"
  5715. }
  5716. },
  5717. {
  5718. "name": "drupal/menu_position",
  5719. "version": "dev-1.x",
  5720. "source": {
  5721. "type": "git",
  5722. "url": "https://git.drupal.org/project/menu_position",
  5723. "reference": "552e5b1fc5baaec4d0496dd1c67df710093beccb"
  5724. },
  5725. "require": {
  5726. "drupal/core": "~8.0"
  5727. },
  5728. "type": "drupal-module",
  5729. "extra": {
  5730. "branch-alias": {
  5731. "dev-1.x": "1.x-dev"
  5732. },
  5733. "drupal": {
  5734. "version": "8.x-1.x-dev",
  5735. "datestamp": "1546518480",
  5736. "security-coverage": {
  5737. "status": "not-covered",
  5738. "message": "Dev releases are not covered by Drupal security advisories."
  5739. }
  5740. }
  5741. },
  5742. "notification-url": "https://packages.drupal.org/8/downloads",
  5743. "license": [
  5744. "GPL-2.0+"
  5745. ],
  5746. "authors": [
  5747. {
  5748. "name": "BarisW",
  5749. "homepage": "https://www.drupal.org/user/107229"
  5750. },
  5751. {
  5752. "name": "JohnAlbin",
  5753. "homepage": "https://www.drupal.org/user/32095"
  5754. },
  5755. {
  5756. "name": "lbainbridge",
  5757. "homepage": "https://www.drupal.org/user/2406996"
  5758. }
  5759. ],
  5760. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5761. "homepage": "https://www.drupal.org/project/menu_position",
  5762. "support": {
  5763. "source": "http://cgit.drupalcode.org/menu_position",
  5764. "issues": "https://www.drupal.org/project/issues/menu_position"
  5765. },
  5766. "time": "2019-01-03T12:23:26+00:00"
  5767. },
  5768. {
  5769. "name": "drupal/migrate_plus",
  5770. "version": "dev-4.x",
  5771. "source": {
  5772. "type": "git",
  5773. "url": "https://git.drupal.org/project/migrate_plus",
  5774. "reference": "022baac45c5b1d630b18cd90e1648d0932cc3478"
  5775. },
  5776. "require": {
  5777. "drupal/core": "^8.3"
  5778. },
  5779. "require-dev": {
  5780. "drupal/migrate_example_advanced_setup": "*",
  5781. "drupal/migrate_example_setup": "*",
  5782. "drupal/migrate_tools": "*"
  5783. },
  5784. "suggest": {
  5785. "ext-soap": "*",
  5786. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  5787. },
  5788. "type": "drupal-module",
  5789. "extra": {
  5790. "branch-alias": {
  5791. "dev-4.x": "4.x-dev"
  5792. },
  5793. "drupal": {
  5794. "version": "8.x-4.0+17-dev",
  5795. "datestamp": "1546539780",
  5796. "security-coverage": {
  5797. "status": "not-covered",
  5798. "message": "Dev releases are not covered by Drupal security advisories."
  5799. }
  5800. }
  5801. },
  5802. "notification-url": "https://packages.drupal.org/8/downloads",
  5803. "license": [
  5804. "GPL-2.0+"
  5805. ],
  5806. "authors": [
  5807. {
  5808. "name": "Mike Ryan",
  5809. "homepage": "https://www.drupal.org/u/mikeryan",
  5810. "role": "Maintainer"
  5811. },
  5812. {
  5813. "name": "mikeryan",
  5814. "homepage": "https://www.drupal.org/user/4420"
  5815. }
  5816. ],
  5817. "description": "Enhancements to core migration support.",
  5818. "homepage": "https://www.drupal.org/project/migrate_plus",
  5819. "support": {
  5820. "source": "https://cgit.drupalcode.org/migrate_plus",
  5821. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  5822. "irc": "irc://irc.freenode.org/drupal-migrate"
  5823. },
  5824. "time": "2019-01-03T18:20:23+00:00"
  5825. },
  5826. {
  5827. "name": "drupal/migrate_tools",
  5828. "version": "dev-4.x",
  5829. "source": {
  5830. "type": "git",
  5831. "url": "https://git.drupal.org/project/migrate_tools",
  5832. "reference": "853604c682a28b7d6960fa3d55eba36a443182bb"
  5833. },
  5834. "require": {
  5835. "drupal/core": "^8.3",
  5836. "drupal/migrate_plus": "^4"
  5837. },
  5838. "require-dev": {
  5839. "drupal/migrate_plus": "4.x-dev",
  5840. "drupal/migrate_source_csv": "^2.2",
  5841. "drush/drush": "^9"
  5842. },
  5843. "type": "drupal-module",
  5844. "extra": {
  5845. "branch-alias": {
  5846. "dev-4.x": "4.x-dev"
  5847. },
  5848. "drupal": {
  5849. "version": "8.x-4.0+14-dev",
  5850. "datestamp": "1545344880",
  5851. "security-coverage": {
  5852. "status": "not-covered",
  5853. "message": "Dev releases are not covered by Drupal security advisories."
  5854. }
  5855. },
  5856. "drush": {
  5857. "services": {
  5858. "drush.services.yml": "^9"
  5859. }
  5860. },
  5861. "patches_applied": {
  5862. "The --limit option does not accept a value.": "https://www.drupal.org/files/issues/2019-02-05/migrate-tools_fix-drush-options_3024399-23.patch"
  5863. }
  5864. },
  5865. "notification-url": "https://packages.drupal.org/8/downloads",
  5866. "license": [
  5867. "GPL-2.0-or-later"
  5868. ],
  5869. "authors": [
  5870. {
  5871. "name": "heddn",
  5872. "homepage": "https://www.drupal.org/user/1463982"
  5873. },
  5874. {
  5875. "name": "mikeryan",
  5876. "homepage": "https://www.drupal.org/user/4420"
  5877. },
  5878. {
  5879. "name": "moshe weitzman",
  5880. "homepage": "https://www.drupal.org/user/23"
  5881. }
  5882. ],
  5883. "description": "Tools to assist in developing and running migrations.",
  5884. "homepage": "http://drupal.org/project/migrate_tools",
  5885. "support": {
  5886. "source": "http://cgit.drupalcode.org/migrate_tools",
  5887. "issues": "http://drupal.org/project/migrate_tools",
  5888. "irc": "irc://irc.freenode.org/drupal-migrate"
  5889. },
  5890. "time": "2018-12-20T22:27:32+00:00"
  5891. },
  5892. {
  5893. "name": "drupal/pagerer",
  5894. "version": "1.4.0",
  5895. "source": {
  5896. "type": "git",
  5897. "url": "https://git.drupal.org/project/pagerer",
  5898. "reference": "8.x-1.4"
  5899. },
  5900. "dist": {
  5901. "type": "zip",
  5902. "url": "https://ftp.drupal.org/files/projects/pagerer-8.x-1.4.zip",
  5903. "reference": "8.x-1.4",
  5904. "shasum": "9b4eb6899b0927859e7d5198f1fd814a10a66ddb"
  5905. },
  5906. "require": {
  5907. "drupal/core": "^8.1"
  5908. },
  5909. "type": "drupal-module",
  5910. "extra": {
  5911. "branch-alias": {
  5912. "dev-1.x": "1.x-dev"
  5913. },
  5914. "drupal": {
  5915. "version": "8.x-1.4",
  5916. "datestamp": "1522851484",
  5917. "security-coverage": {
  5918. "status": "covered",
  5919. "message": "Covered by Drupal's security advisory policy"
  5920. }
  5921. }
  5922. },
  5923. "notification-url": "https://packages.drupal.org/8/downloads",
  5924. "license": [
  5925. "GPL-2.0-or-later"
  5926. ],
  5927. "authors": [
  5928. {
  5929. "name": "mondrake",
  5930. "homepage": "https://www.drupal.org/user/1307444"
  5931. }
  5932. ],
  5933. "description": "Configurable pager styles.",
  5934. "homepage": "https://www.drupal.org/project/pagerer",
  5935. "support": {
  5936. "source": "http://cgit.drupalcode.org/pagerer"
  5937. }
  5938. },
  5939. {
  5940. "name": "drupal/path_alias_xt",
  5941. "version": "dev-1.x",
  5942. "source": {
  5943. "type": "git",
  5944. "url": "https://git.drupal.org/project/path_alias_xt",
  5945. "reference": "2a79ac72191dc59ef656d1edd85e651538c6a389"
  5946. },
  5947. "require": {
  5948. "drupal/core": "*"
  5949. },
  5950. "type": "drupal-module",
  5951. "extra": {
  5952. "branch-alias": {
  5953. "dev-1.x": "1.x-dev"
  5954. },
  5955. "drupal": {
  5956. "version": "8.x-1.x-dev",
  5957. "datestamp": "1542641280",
  5958. "security-coverage": {
  5959. "status": "not-covered",
  5960. "message": "Dev releases are not covered by Drupal security advisories."
  5961. }
  5962. }
  5963. },
  5964. "notification-url": "https://packages.drupal.org/8/downloads",
  5965. "license": [
  5966. "GPL-2.0-or-later"
  5967. ],
  5968. "authors": [
  5969. {
  5970. "name": "RdeBoer",
  5971. "homepage": "https://www.drupal.org/user/404007"
  5972. },
  5973. {
  5974. "name": "adriancid",
  5975. "homepage": "https://www.drupal.org/user/1962106"
  5976. },
  5977. {
  5978. "name": "sdstyles",
  5979. "homepage": "https://www.drupal.org/user/1420228"
  5980. }
  5981. ],
  5982. "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.",
  5983. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5984. "support": {
  5985. "source": "http://cgit.drupalcode.org/path_alias_xt"
  5986. },
  5987. "time": "2019-01-30T19:27:58+00:00"
  5988. },
  5989. {
  5990. "name": "drupal/pathauto",
  5991. "version": "1.3.0",
  5992. "source": {
  5993. "type": "git",
  5994. "url": "https://git.drupal.org/project/pathauto",
  5995. "reference": "8.x-1.3"
  5996. },
  5997. "dist": {
  5998. "type": "zip",
  5999. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.3.zip",
  6000. "reference": "8.x-1.3",
  6001. "shasum": "115d5998d7636a03e26c7ce34261b65809d53965"
  6002. },
  6003. "require": {
  6004. "drupal/core": "^8.5",
  6005. "drupal/ctools": "*",
  6006. "drupal/token": "*"
  6007. },
  6008. "type": "drupal-module",
  6009. "extra": {
  6010. "branch-alias": {
  6011. "dev-1.x": "1.x-dev"
  6012. },
  6013. "drupal": {
  6014. "version": "8.x-1.3",
  6015. "datestamp": "1536407884",
  6016. "security-coverage": {
  6017. "status": "covered",
  6018. "message": "Covered by Drupal's security advisory policy"
  6019. }
  6020. }
  6021. },
  6022. "notification-url": "https://packages.drupal.org/8/downloads",
  6023. "license": [
  6024. "GPL-2.0-or-later"
  6025. ],
  6026. "authors": [
  6027. {
  6028. "name": "Berdir",
  6029. "homepage": "https://www.drupal.org/user/214652"
  6030. },
  6031. {
  6032. "name": "Dave Reid",
  6033. "homepage": "https://www.drupal.org/user/53892"
  6034. },
  6035. {
  6036. "name": "Freso",
  6037. "homepage": "https://www.drupal.org/user/27504"
  6038. },
  6039. {
  6040. "name": "greggles",
  6041. "homepage": "https://www.drupal.org/user/36762"
  6042. }
  6043. ],
  6044. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6045. "homepage": "https://www.drupal.org/project/pathauto",
  6046. "support": {
  6047. "source": "http://cgit.drupalcode.org/pathauto"
  6048. }
  6049. },
  6050. {
  6051. "name": "drupal/pathologic",
  6052. "version": "1.0.0-alpha1",
  6053. "source": {
  6054. "type": "git",
  6055. "url": "https://git.drupal.org/project/pathologic",
  6056. "reference": "8.x-1.0-alpha1"
  6057. },
  6058. "dist": {
  6059. "type": "zip",
  6060. "url": "https://ftp.drupal.org/files/projects/pathologic-8.x-1.0-alpha1.zip",
  6061. "reference": "8.x-1.0-alpha1",
  6062. "shasum": "51c699cc001969baa00cca60cf2302a32e578090"
  6063. },
  6064. "require": {
  6065. "drupal/core": "*"
  6066. },
  6067. "type": "drupal-module",
  6068. "extra": {
  6069. "branch-alias": {
  6070. "dev-1.x": "1.x-dev"
  6071. },
  6072. "drupal": {
  6073. "version": "8.x-1.0-alpha1",
  6074. "datestamp": "1525211884",
  6075. "security-coverage": {
  6076. "status": "not-covered",
  6077. "message": "Alpha releases are not covered by Drupal security advisories."
  6078. }
  6079. }
  6080. },
  6081. "notification-url": "https://packages.drupal.org/8/downloads",
  6082. "license": [
  6083. "GPL-2.0-or-later"
  6084. ],
  6085. "authors": [
  6086. {
  6087. "name": "Berdir",
  6088. "homepage": "https://www.drupal.org/user/214652"
  6089. },
  6090. {
  6091. "name": "Garrett Albright",
  6092. "homepage": "https://www.drupal.org/user/191212"
  6093. },
  6094. {
  6095. "name": "dww",
  6096. "homepage": "https://www.drupal.org/user/46549"
  6097. }
  6098. ],
  6099. "description": "Helps avoid broken links and incorrect paths in content.",
  6100. "homepage": "https://www.drupal.org/project/pathologic",
  6101. "support": {
  6102. "source": "http://cgit.drupalcode.org/pathologic"
  6103. }
  6104. },
  6105. {
  6106. "name": "drupal/persistent_login",
  6107. "version": "1.1.0",
  6108. "source": {
  6109. "type": "git",
  6110. "url": "https://git.drupal.org/project/persistent_login",
  6111. "reference": "8.x-1.1"
  6112. },
  6113. "dist": {
  6114. "type": "zip",
  6115. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.1.zip",
  6116. "reference": "8.x-1.1",
  6117. "shasum": "b1e8f725662ab915767f339e00d7b185ac9097b2"
  6118. },
  6119. "require": {
  6120. "drupal/core": "^8.3"
  6121. },
  6122. "type": "drupal-module",
  6123. "extra": {
  6124. "branch-alias": {
  6125. "dev-1.x": "1.x-dev"
  6126. },
  6127. "drupal": {
  6128. "version": "8.x-1.1",
  6129. "datestamp": "1539379980",
  6130. "security-coverage": {
  6131. "status": "covered",
  6132. "message": "Covered by Drupal's security advisory policy"
  6133. }
  6134. }
  6135. },
  6136. "notification-url": "https://packages.drupal.org/8/downloads",
  6137. "license": [
  6138. "GPL-2.0+"
  6139. ],
  6140. "authors": [
  6141. {
  6142. "name": "gapple",
  6143. "homepage": "https://www.drupal.org/user/490940"
  6144. }
  6145. ],
  6146. "description": "Provides a \"Remember Me\" feature on the login form.",
  6147. "homepage": "https://www.drupal.org/project/persistent_login",
  6148. "keywords": [
  6149. "Drupal"
  6150. ],
  6151. "support": {
  6152. "source": "http://cgit.drupalcode.org/persistent_login",
  6153. "issues": "http://drupal.org/project/issues/persistent_login"
  6154. }
  6155. },
  6156. {
  6157. "name": "drupal/profile",
  6158. "version": "1.0.0-rc1",
  6159. "source": {
  6160. "type": "git",
  6161. "url": "https://git.drupal.org/project/profile",
  6162. "reference": "8.x-1.0-rc1"
  6163. },
  6164. "dist": {
  6165. "type": "zip",
  6166. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc1.zip",
  6167. "reference": "8.x-1.0-rc1",
  6168. "shasum": "cc537ca25412adc4fa601ff42cf2fb5cbc6e7b6b"
  6169. },
  6170. "require": {
  6171. "drupal/core": "~8.1",
  6172. "drupal/entity": "*"
  6173. },
  6174. "type": "drupal-module",
  6175. "extra": {
  6176. "branch-alias": {
  6177. "dev-1.x": "1.x-dev"
  6178. },
  6179. "drupal": {
  6180. "version": "8.x-1.0-rc1",
  6181. "datestamp": "1505830324",
  6182. "security-coverage": {
  6183. "status": "not-covered",
  6184. "message": "RC releases are not covered by Drupal security advisories."
  6185. }
  6186. }
  6187. },
  6188. "notification-url": "https://packages.drupal.org/8/downloads",
  6189. "license": [
  6190. "GPL-2.0+"
  6191. ],
  6192. "authors": [
  6193. {
  6194. "name": "bojanz",
  6195. "homepage": "https://www.drupal.org/user/86106"
  6196. },
  6197. {
  6198. "name": "daggerhart",
  6199. "homepage": "https://www.drupal.org/user/167806"
  6200. },
  6201. {
  6202. "name": "dakala",
  6203. "homepage": "https://www.drupal.org/user/53175"
  6204. },
  6205. {
  6206. "name": "fago",
  6207. "homepage": "https://www.drupal.org/user/16747"
  6208. },
  6209. {
  6210. "name": "mglaman",
  6211. "homepage": "https://www.drupal.org/user/2416470"
  6212. },
  6213. {
  6214. "name": "pcambra",
  6215. "homepage": "https://www.drupal.org/user/122101"
  6216. }
  6217. ],
  6218. "description": "Provides configurable user profiles.",
  6219. "homepage": "http://drupal.org/project/profile",
  6220. "support": {
  6221. "source": "http://cgit.drupalcode.org/profile"
  6222. }
  6223. },
  6224. {
  6225. "name": "drupal/redirect",
  6226. "version": "1.3.0",
  6227. "source": {
  6228. "type": "git",
  6229. "url": "https://git.drupal.org/project/redirect",
  6230. "reference": "8.x-1.3"
  6231. },
  6232. "dist": {
  6233. "type": "zip",
  6234. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  6235. "reference": "8.x-1.3",
  6236. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  6237. },
  6238. "require": {
  6239. "drupal/core": "~8"
  6240. },
  6241. "type": "drupal-module",
  6242. "extra": {
  6243. "branch-alias": {
  6244. "dev-1.x": "1.x-dev"
  6245. },
  6246. "drupal": {
  6247. "version": "8.x-1.3",
  6248. "datestamp": "1539682684",
  6249. "security-coverage": {
  6250. "status": "covered",
  6251. "message": "Covered by Drupal's security advisory policy"
  6252. }
  6253. }
  6254. },
  6255. "notification-url": "https://packages.drupal.org/8/downloads",
  6256. "license": [
  6257. "GPL-2.0+"
  6258. ],
  6259. "authors": [
  6260. {
  6261. "name": "Berdir",
  6262. "homepage": "https://www.drupal.org/user/214652"
  6263. },
  6264. {
  6265. "name": "Dave Reid",
  6266. "homepage": "https://www.drupal.org/user/53892"
  6267. },
  6268. {
  6269. "name": "pifagor",
  6270. "homepage": "https://www.drupal.org/user/2375692"
  6271. }
  6272. ],
  6273. "description": "Allows users to redirect from old URLs to new URLs.",
  6274. "homepage": "https://www.drupal.org/project/redirect",
  6275. "support": {
  6276. "source": "http://cgit.drupalcode.org/redirect"
  6277. }
  6278. },
  6279. {
  6280. "name": "drupal/redis",
  6281. "version": "1.1.0",
  6282. "source": {
  6283. "type": "git",
  6284. "url": "https://git.drupal.org/project/redis",
  6285. "reference": "8.x-1.1"
  6286. },
  6287. "dist": {
  6288. "type": "zip",
  6289. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.1.zip",
  6290. "reference": "8.x-1.1",
  6291. "shasum": "33337fe1cbd2824797e87533b30e4886b48ecd77"
  6292. },
  6293. "require": {
  6294. "drupal/core": "~8.0"
  6295. },
  6296. "suggest": {
  6297. "predis/predis": "^1.1.1"
  6298. },
  6299. "type": "drupal-module",
  6300. "extra": {
  6301. "branch-alias": {
  6302. "dev-1.x": "1.x-dev"
  6303. },
  6304. "drupal": {
  6305. "version": "8.x-1.1",
  6306. "datestamp": "1541600580",
  6307. "security-coverage": {
  6308. "status": "covered",
  6309. "message": "Covered by Drupal's security advisory policy"
  6310. }
  6311. }
  6312. },
  6313. "autoload": {
  6314. "psr-4": {
  6315. "Drupal\\redis\\": "src"
  6316. }
  6317. },
  6318. "notification-url": "https://packages.drupal.org/8/downloads",
  6319. "license": [
  6320. "GPL-2.0"
  6321. ],
  6322. "authors": [
  6323. {
  6324. "name": "Berdir",
  6325. "homepage": "https://www.drupal.org/user/214652"
  6326. },
  6327. {
  6328. "name": "pounard",
  6329. "homepage": "https://www.drupal.org/user/240164"
  6330. }
  6331. ],
  6332. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  6333. "homepage": "https://www.drupal.org/project/redis",
  6334. "support": {
  6335. "source": "http://cgit.drupalcode.org/redis"
  6336. }
  6337. },
  6338. {
  6339. "name": "drupal/search_api",
  6340. "version": "1.11.0",
  6341. "source": {
  6342. "type": "git",
  6343. "url": "https://git.drupal.org/project/search_api",
  6344. "reference": "8.x-1.11"
  6345. },
  6346. "dist": {
  6347. "type": "zip",
  6348. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.11.zip",
  6349. "reference": "8.x-1.11",
  6350. "shasum": "d2bf92afa2ee760977dde1fadcb5bb64a4c2d7c1"
  6351. },
  6352. "require": {
  6353. "drupal/core": "^8.5"
  6354. },
  6355. "require-dev": {
  6356. "drupal/search_api_autocomplete": "@dev",
  6357. "drupal/search_api_db": "*"
  6358. },
  6359. "suggest": {
  6360. "drupal/facets": "Adds the ability to create faceted searches.",
  6361. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6362. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6363. },
  6364. "type": "drupal-module",
  6365. "extra": {
  6366. "branch-alias": {
  6367. "dev-1.x": "1.x-dev"
  6368. },
  6369. "drupal": {
  6370. "version": "8.x-1.11",
  6371. "datestamp": "1542564480",
  6372. "security-coverage": {
  6373. "status": "covered",
  6374. "message": "Covered by Drupal's security advisory policy"
  6375. }
  6376. },
  6377. "drush": {
  6378. "services": {
  6379. "drush.services.yml": "^9"
  6380. }
  6381. }
  6382. },
  6383. "notification-url": "https://packages.drupal.org/8/downloads",
  6384. "license": [
  6385. "GPL-2.0+"
  6386. ],
  6387. "authors": [
  6388. {
  6389. "name": "Thomas Seidl",
  6390. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6391. },
  6392. {
  6393. "name": "Nick Veenhof",
  6394. "homepage": "https://www.drupal.org/u/nick_vh"
  6395. },
  6396. {
  6397. "name": "See other contributors",
  6398. "homepage": "https://www.drupal.org/node/790418/committers"
  6399. }
  6400. ],
  6401. "description": "Provides a generic framework for modules offering search capabilities.",
  6402. "homepage": "https://www.drupal.org/project/search_api",
  6403. "support": {
  6404. "source": "http://git.drupal.org/project/search_api.git",
  6405. "issues": "https://www.drupal.org/project/issues/search_api",
  6406. "irc": "irc://irc.freenode.org/drupal-search-api"
  6407. }
  6408. },
  6409. {
  6410. "name": "drupal/search_api_db",
  6411. "version": "1.11.0",
  6412. "require": {
  6413. "drupal/core": "~8.0",
  6414. "drupal/search_api": "self.version"
  6415. },
  6416. "type": "metapackage",
  6417. "extra": {
  6418. "branch-alias": {
  6419. "dev-1.x": "1.x-dev"
  6420. },
  6421. "drupal": {
  6422. "version": "8.x-1.11",
  6423. "datestamp": "1542564480",
  6424. "security-coverage": {
  6425. "status": "covered",
  6426. "message": "Covered by Drupal's security advisory policy"
  6427. }
  6428. }
  6429. },
  6430. "notification-url": "https://packages.drupal.org/8/downloads",
  6431. "license": [
  6432. "GPL-2.0-or-later"
  6433. ],
  6434. "authors": [
  6435. {
  6436. "name": "Nick_vh",
  6437. "homepage": "https://www.drupal.org/user/122682"
  6438. },
  6439. {
  6440. "name": "drunken monkey",
  6441. "homepage": "https://www.drupal.org/user/205582"
  6442. }
  6443. ],
  6444. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6445. "homepage": "https://www.drupal.org/project/search_api",
  6446. "support": {
  6447. "source": "http://cgit.drupalcode.org/search_api"
  6448. }
  6449. },
  6450. {
  6451. "name": "drupal/select_translation",
  6452. "version": "dev-1.x",
  6453. "source": {
  6454. "type": "git",
  6455. "url": "https://git.drupal.org/project/select_translation",
  6456. "reference": "2efacaa519fff91593276a15fc4ef14ba665d4c2"
  6457. },
  6458. "require": {
  6459. "drupal/core": "*"
  6460. },
  6461. "type": "drupal-module",
  6462. "extra": {
  6463. "branch-alias": {
  6464. "dev-1.x": "1.x-dev"
  6465. },
  6466. "drupal": {
  6467. "version": "8.x-1.0+1-dev",
  6468. "datestamp": "1496930042",
  6469. "security-coverage": {
  6470. "status": "not-covered",
  6471. "message": "Dev releases are not covered by Drupal security advisories."
  6472. }
  6473. }
  6474. },
  6475. "notification-url": "https://packages.drupal.org/8/downloads",
  6476. "license": [
  6477. "GPL-2.0-or-later"
  6478. ],
  6479. "authors": [
  6480. {
  6481. "name": "Alice Heaton",
  6482. "homepage": "https://www.drupal.org/user/60899"
  6483. },
  6484. {
  6485. "name": "alcroito",
  6486. "homepage": "https://www.drupal.org/user/176134"
  6487. },
  6488. {
  6489. "name": "ao2",
  6490. "homepage": "https://www.drupal.org/user/234884"
  6491. }
  6492. ],
  6493. "description": "Provides a Views filter to select which translation of a node should be displayed.",
  6494. "homepage": "https://www.drupal.org/project/select_translation",
  6495. "support": {
  6496. "source": "http://cgit.drupalcode.org/select_translation"
  6497. },
  6498. "time": "2018-11-20T15:20:53+00:00"
  6499. },
  6500. {
  6501. "name": "drupal/smart_trim",
  6502. "version": "1.1.0",
  6503. "source": {
  6504. "type": "git",
  6505. "url": "https://git.drupal.org/project/smart_trim",
  6506. "reference": "8.x-1.1"
  6507. },
  6508. "dist": {
  6509. "type": "zip",
  6510. "url": "https://ftp.drupal.org/files/projects/smart_trim-8.x-1.1.zip",
  6511. "reference": "8.x-1.1",
  6512. "shasum": "5f1c0f15914208e0ad2ec5cce1d6419040596fc0"
  6513. },
  6514. "require": {
  6515. "drupal/core": "*"
  6516. },
  6517. "type": "drupal-module",
  6518. "extra": {
  6519. "branch-alias": {
  6520. "dev-1.x": "1.x-dev"
  6521. },
  6522. "drupal": {
  6523. "version": "8.x-1.1",
  6524. "datestamp": "1516301286",
  6525. "security-coverage": {
  6526. "status": "covered",
  6527. "message": "Covered by Drupal's security advisory policy"
  6528. }
  6529. }
  6530. },
  6531. "notification-url": "https://packages.drupal.org/8/downloads",
  6532. "license": [
  6533. "GPL-2.0+"
  6534. ],
  6535. "authors": [
  6536. {
  6537. "name": "Mark Casias (markie)",
  6538. "homepage": "https://www.drupal.org/u/markie",
  6539. "role": "Maintainer"
  6540. },
  6541. {
  6542. "name": "chrisjlee",
  6543. "homepage": "https://www.drupal.org/user/760600"
  6544. },
  6545. {
  6546. "name": "drywall",
  6547. "homepage": "https://www.drupal.org/user/192591"
  6548. },
  6549. {
  6550. "name": "jsenich",
  6551. "homepage": "https://www.drupal.org/user/58871"
  6552. },
  6553. {
  6554. "name": "markie",
  6555. "homepage": "https://www.drupal.org/user/206687"
  6556. },
  6557. {
  6558. "name": "newsignature",
  6559. "homepage": "https://www.drupal.org/user/765518"
  6560. }
  6561. ],
  6562. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6563. "homepage": "https://drupal.org/project/smart_trim",
  6564. "support": {
  6565. "source": "https://cgit.drupalcode.org/smart_trim",
  6566. "issues": "https://drupal.org/project/issues/smart_trim"
  6567. }
  6568. },
  6569. {
  6570. "name": "drupal/smtp",
  6571. "version": "1.0.0-beta4",
  6572. "source": {
  6573. "type": "git",
  6574. "url": "https://git.drupal.org/project/smtp",
  6575. "reference": "8.x-1.0-beta4"
  6576. },
  6577. "dist": {
  6578. "type": "zip",
  6579. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.0-beta4.zip",
  6580. "reference": "8.x-1.0-beta4",
  6581. "shasum": "80a4df4b2fd2d1b2dc653552d232ce98cb54bb9d"
  6582. },
  6583. "require": {
  6584. "drupal/core": "~8.0"
  6585. },
  6586. "type": "drupal-module",
  6587. "extra": {
  6588. "branch-alias": {
  6589. "dev-1.x": "1.x-dev"
  6590. },
  6591. "drupal": {
  6592. "version": "8.x-1.0-beta4",
  6593. "datestamp": "1527598380",
  6594. "security-coverage": {
  6595. "status": "not-covered",
  6596. "message": "Beta releases are not covered by Drupal security advisories."
  6597. }
  6598. }
  6599. },
  6600. "notification-url": "https://packages.drupal.org/8/downloads",
  6601. "license": [
  6602. "GPL-2.0"
  6603. ],
  6604. "authors": [
  6605. {
  6606. "name": "LukeLast",
  6607. "homepage": "https://www.drupal.org/user/30151"
  6608. },
  6609. {
  6610. "name": "japerry",
  6611. "homepage": "https://www.drupal.org/user/45640"
  6612. },
  6613. {
  6614. "name": "josesanmartin",
  6615. "homepage": "https://www.drupal.org/user/72012"
  6616. },
  6617. {
  6618. "name": "oadaeh",
  6619. "homepage": "https://www.drupal.org/user/4649"
  6620. },
  6621. {
  6622. "name": "wundo",
  6623. "homepage": "https://www.drupal.org/user/25523"
  6624. },
  6625. {
  6626. "name": "yettyn",
  6627. "homepage": "https://www.drupal.org/user/93281"
  6628. }
  6629. ],
  6630. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6631. "homepage": "https://www.drupal.org/project/smtp",
  6632. "support": {
  6633. "source": "http://cgit.drupalcode.org/smtp",
  6634. "issues": "https://www.drupal.org/project/issues/smtp"
  6635. }
  6636. },
  6637. {
  6638. "name": "drupal/synonyms",
  6639. "version": "1.0.0-alpha1",
  6640. "source": {
  6641. "type": "git",
  6642. "url": "https://git.drupal.org/project/synonyms",
  6643. "reference": "8.x-1.0-alpha1"
  6644. },
  6645. "dist": {
  6646. "type": "zip",
  6647. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha1.zip",
  6648. "reference": "8.x-1.0-alpha1",
  6649. "shasum": "98d39b5b0a26c7b5f9e6dfc4f72285ad014d14f4"
  6650. },
  6651. "require": {
  6652. "drupal/core": "~8.0"
  6653. },
  6654. "type": "drupal-module",
  6655. "extra": {
  6656. "branch-alias": {
  6657. "dev-1.x": "1.x-dev"
  6658. },
  6659. "drupal": {
  6660. "version": "8.x-1.0-alpha1",
  6661. "datestamp": "1477604941",
  6662. "security-coverage": {
  6663. "status": "not-covered",
  6664. "message": "Alpha releases are not covered by Drupal security advisories."
  6665. }
  6666. }
  6667. },
  6668. "notification-url": "https://packages.drupal.org/8/downloads",
  6669. "license": [
  6670. "GPL-2.0-or-later"
  6671. ],
  6672. "authors": [
  6673. {
  6674. "name": "Zen",
  6675. "homepage": "https://www.drupal.org/user/21209"
  6676. },
  6677. {
  6678. "name": "bojanz",
  6679. "homepage": "https://www.drupal.org/user/86106"
  6680. },
  6681. {
  6682. "name": "bucefal91",
  6683. "homepage": "https://www.drupal.org/user/504128"
  6684. }
  6685. ],
  6686. "description": "Provides synonyms feature for content entities.",
  6687. "homepage": "https://www.drupal.org/project/synonyms",
  6688. "support": {
  6689. "source": "http://cgit.drupalcode.org/synonyms"
  6690. }
  6691. },
  6692. {
  6693. "name": "drupal/telephone_formatter",
  6694. "version": "1.0.0",
  6695. "source": {
  6696. "type": "git",
  6697. "url": "https://git.drupal.org/project/telephone_formatter",
  6698. "reference": "8.x-1.0"
  6699. },
  6700. "dist": {
  6701. "type": "zip",
  6702. "url": "https://ftp.drupal.org/files/projects/telephone_formatter-8.x-1.0.zip",
  6703. "reference": "8.x-1.0",
  6704. "shasum": "a666215b950e8ec2c83d3882008db8a59c1caf39"
  6705. },
  6706. "require": {
  6707. "drupal/core": "*",
  6708. "giggsey/libphonenumber-for-php": "^8.0"
  6709. },
  6710. "suggest": {
  6711. "drupal/telephone_validation": "Unsure data quality"
  6712. },
  6713. "type": "drupal-module",
  6714. "extra": {
  6715. "branch-alias": {
  6716. "dev-1.x": "1.x-dev"
  6717. },
  6718. "drupal": {
  6719. "version": "8.x-1.0",
  6720. "datestamp": "1549031580",
  6721. "security-coverage": {
  6722. "status": "covered",
  6723. "message": "Covered by Drupal's security advisory policy"
  6724. }
  6725. }
  6726. },
  6727. "notification-url": "https://packages.drupal.org/8/downloads",
  6728. "license": [
  6729. "GPL-2.0+"
  6730. ],
  6731. "authors": [
  6732. {
  6733. "name": "Jakub Piasecki",
  6734. "homepage": "https://www.drupal.org/user/1532844",
  6735. "email": "jakub@piaseccy.pl"
  6736. }
  6737. ],
  6738. "description": "Additional formatters to Telephone field.",
  6739. "homepage": "https://www.drupal.org/project/telephone_formatter",
  6740. "support": {
  6741. "source": "http://cgit.drupalcode.org/telephone_formatter",
  6742. "issues": "http://drupal.org/project/issues/telephone_formatter"
  6743. }
  6744. },
  6745. {
  6746. "name": "drupal/telephone_validation",
  6747. "version": "2.2.0",
  6748. "source": {
  6749. "type": "git",
  6750. "url": "https://git.drupal.org/project/telephone_validation",
  6751. "reference": "8.x-2.2"
  6752. },
  6753. "dist": {
  6754. "type": "zip",
  6755. "url": "https://ftp.drupal.org/files/projects/telephone_validation-8.x-2.2.zip",
  6756. "reference": "8.x-2.2",
  6757. "shasum": "5f79cd8890cbc70a7c234f88a4f37a5d42354443"
  6758. },
  6759. "require": {
  6760. "drupal/core": "^8.0",
  6761. "drupal/telephone": "*",
  6762. "giggsey/libphonenumber-for-php": "~8.0"
  6763. },
  6764. "type": "drupal-module",
  6765. "extra": {
  6766. "branch-alias": {
  6767. "dev-2.x": "2.x-dev"
  6768. },
  6769. "drupal": {
  6770. "version": "8.x-2.2",
  6771. "datestamp": "1549289280",
  6772. "security-coverage": {
  6773. "status": "covered",
  6774. "message": "Covered by Drupal's security advisory policy"
  6775. }
  6776. }
  6777. },
  6778. "notification-url": "https://packages.drupal.org/8/downloads",
  6779. "license": [
  6780. "GPL-2.0+"
  6781. ],
  6782. "authors": [
  6783. {
  6784. "name": "zaporylie",
  6785. "homepage": "https://www.drupal.org/user/1532844"
  6786. }
  6787. ],
  6788. "description": "Use 3rd party library to validate telephone field.",
  6789. "homepage": "http://drupal.org/project/telephone_validation",
  6790. "support": {
  6791. "source": "http://cgit.drupalcode.org/telephone_validation",
  6792. "issues": "http://drupal.org/project/issues/telephone_validation"
  6793. }
  6794. },
  6795. {
  6796. "name": "drupal/token",
  6797. "version": "1.5.0",
  6798. "source": {
  6799. "type": "git",
  6800. "url": "https://git.drupal.org/project/token",
  6801. "reference": "8.x-1.5"
  6802. },
  6803. "dist": {
  6804. "type": "zip",
  6805. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  6806. "reference": "8.x-1.5",
  6807. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  6808. },
  6809. "require": {
  6810. "drupal/core": "^8.5"
  6811. },
  6812. "type": "drupal-module",
  6813. "extra": {
  6814. "branch-alias": {
  6815. "dev-1.x": "1.x-dev"
  6816. },
  6817. "drupal": {
  6818. "version": "8.x-1.5",
  6819. "datestamp": "1537557481",
  6820. "security-coverage": {
  6821. "status": "covered",
  6822. "message": "Covered by Drupal's security advisory policy"
  6823. }
  6824. }
  6825. },
  6826. "notification-url": "https://packages.drupal.org/8/downloads",
  6827. "license": [
  6828. "GPL-2.0-or-later"
  6829. ],
  6830. "authors": [
  6831. {
  6832. "name": "Berdir",
  6833. "homepage": "https://www.drupal.org/user/214652"
  6834. },
  6835. {
  6836. "name": "Dave Reid",
  6837. "homepage": "https://www.drupal.org/user/53892"
  6838. },
  6839. {
  6840. "name": "eaton",
  6841. "homepage": "https://www.drupal.org/user/16496"
  6842. },
  6843. {
  6844. "name": "fago",
  6845. "homepage": "https://www.drupal.org/user/16747"
  6846. },
  6847. {
  6848. "name": "greggles",
  6849. "homepage": "https://www.drupal.org/user/36762"
  6850. },
  6851. {
  6852. "name": "mikeryan",
  6853. "homepage": "https://www.drupal.org/user/4420"
  6854. }
  6855. ],
  6856. "description": "Provides a user interface for the Token API and some missing core tokens.",
  6857. "homepage": "https://www.drupal.org/project/token",
  6858. "support": {
  6859. "source": "http://cgit.drupalcode.org/token"
  6860. }
  6861. },
  6862. {
  6863. "name": "drupal/toolbar_themes",
  6864. "version": "1.0.0-alpha4",
  6865. "source": {
  6866. "type": "git",
  6867. "url": "https://git.drupal.org/project/toolbar_themes",
  6868. "reference": "8.x-1.0-alpha4"
  6869. },
  6870. "dist": {
  6871. "type": "zip",
  6872. "url": "https://ftp.drupal.org/files/projects/toolbar_themes-8.x-1.0-alpha4.zip",
  6873. "reference": "8.x-1.0-alpha4",
  6874. "shasum": "15c38da8bfd5a44e47e436d8f432a0aaf6b2cd70"
  6875. },
  6876. "require": {
  6877. "drupal/core": "*"
  6878. },
  6879. "type": "drupal-module",
  6880. "extra": {
  6881. "branch-alias": {
  6882. "dev-1.x": "1.x-dev"
  6883. },
  6884. "drupal": {
  6885. "version": "8.x-1.0-alpha4",
  6886. "datestamp": "1474198439",
  6887. "security-coverage": {
  6888. "status": "not-covered",
  6889. "message": "Project has not opted into security advisory coverage!"
  6890. }
  6891. }
  6892. },
  6893. "notification-url": "https://packages.drupal.org/8/downloads",
  6894. "license": [
  6895. "GPL-2.0-or-later"
  6896. ],
  6897. "authors": [
  6898. {
  6899. "name": "Jeff Burnz",
  6900. "homepage": "https://www.drupal.org/user/61393"
  6901. }
  6902. ],
  6903. "description": "Apply themes to the toolbar.",
  6904. "homepage": "https://www.drupal.org/project/toolbar_themes",
  6905. "support": {
  6906. "source": "http://cgit.drupalcode.org/toolbar_themes"
  6907. }
  6908. },
  6909. {
  6910. "name": "drupal/translation_views",
  6911. "version": "1.0.0-alpha5",
  6912. "source": {
  6913. "type": "git",
  6914. "url": "https://git.drupal.org/project/translation_views",
  6915. "reference": "8.x-1.0-alpha5"
  6916. },
  6917. "dist": {
  6918. "type": "zip",
  6919. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha5.zip",
  6920. "reference": "8.x-1.0-alpha5",
  6921. "shasum": "f1fc54c4648bca5194c0bdcb6df02dae1e8fefd9"
  6922. },
  6923. "require": {
  6924. "drupal/core": "*"
  6925. },
  6926. "require-dev": {
  6927. "drupal/local_translation": "*"
  6928. },
  6929. "type": "drupal-module",
  6930. "extra": {
  6931. "branch-alias": {
  6932. "dev-1.x": "1.x-dev"
  6933. },
  6934. "drupal": {
  6935. "version": "8.x-1.0-alpha5",
  6936. "datestamp": "1549581180",
  6937. "security-coverage": {
  6938. "status": "not-covered",
  6939. "message": "Project has not opted into security advisory coverage!"
  6940. }
  6941. }
  6942. },
  6943. "notification-url": "https://packages.drupal.org/8/downloads",
  6944. "license": [
  6945. "GPL-2.0-or-later"
  6946. ],
  6947. "authors": [
  6948. {
  6949. "name": "matsbla",
  6950. "homepage": "https://www.drupal.org/user/2325394"
  6951. },
  6952. {
  6953. "name": "vlad.dancer",
  6954. "homepage": "https://www.drupal.org/user/903844"
  6955. }
  6956. ],
  6957. "description": "Create customized lists and queries of translations from your database.",
  6958. "homepage": "https://www.drupal.org/project/translation_views",
  6959. "support": {
  6960. "source": "http://cgit.drupalcode.org/translation_views"
  6961. }
  6962. },
  6963. {
  6964. "name": "drupal/ultimate_cron",
  6965. "version": "2.0.0-alpha4",
  6966. "source": {
  6967. "type": "git",
  6968. "url": "https://git.drupal.org/project/ultimate_cron",
  6969. "reference": "8.x-2.0-alpha4"
  6970. },
  6971. "dist": {
  6972. "type": "zip",
  6973. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha4.zip",
  6974. "reference": "8.x-2.0-alpha4",
  6975. "shasum": "50cdadd061f1f6fadb961b04ed04348bcc4719d3"
  6976. },
  6977. "require": {
  6978. "drupal/core": "~8.0"
  6979. },
  6980. "type": "drupal-module",
  6981. "extra": {
  6982. "branch-alias": {
  6983. "dev-2.x": "2.x-dev"
  6984. },
  6985. "drupal": {
  6986. "version": "8.x-2.0-alpha4",
  6987. "datestamp": "1527925385",
  6988. "security-coverage": {
  6989. "status": "not-covered",
  6990. "message": "Alpha releases are not covered by Drupal security advisories."
  6991. }
  6992. }
  6993. },
  6994. "notification-url": "https://packages.drupal.org/8/downloads",
  6995. "license": [
  6996. "GPL-2.0-or-later"
  6997. ],
  6998. "authors": [
  6999. {
  7000. "name": "Berdir",
  7001. "homepage": "https://www.drupal.org/user/214652"
  7002. },
  7003. {
  7004. "name": "Dane Powell",
  7005. "homepage": "https://www.drupal.org/user/339326"
  7006. },
  7007. {
  7008. "name": "arnested",
  7009. "homepage": "https://www.drupal.org/user/245635"
  7010. },
  7011. {
  7012. "name": "gielfeldt",
  7013. "homepage": "https://www.drupal.org/user/366993"
  7014. },
  7015. {
  7016. "name": "miro_dietiker",
  7017. "homepage": "https://www.drupal.org/user/227761"
  7018. }
  7019. ],
  7020. "description": "Cron",
  7021. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7022. "support": {
  7023. "source": "http://cgit.drupalcode.org/ultimate_cron"
  7024. }
  7025. },
  7026. {
  7027. "name": "drupal/url_to_video_filter",
  7028. "version": "1.3.0",
  7029. "source": {
  7030. "type": "git",
  7031. "url": "https://git.drupal.org/project/url_to_video_filter",
  7032. "reference": "8.x-1.3"
  7033. },
  7034. "dist": {
  7035. "type": "zip",
  7036. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  7037. "reference": "8.x-1.3",
  7038. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  7039. },
  7040. "require": {
  7041. "drupal/core": "~8.0"
  7042. },
  7043. "type": "drupal-module",
  7044. "extra": {
  7045. "branch-alias": {
  7046. "dev-1.x": "1.x-dev"
  7047. },
  7048. "drupal": {
  7049. "version": "8.x-1.3",
  7050. "datestamp": "1532695981",
  7051. "security-coverage": {
  7052. "status": "covered",
  7053. "message": "Covered by Drupal's security advisory policy"
  7054. }
  7055. }
  7056. },
  7057. "notification-url": "https://packages.drupal.org/8/downloads",
  7058. "license": [
  7059. "GPL-2.0-or-later"
  7060. ],
  7061. "authors": [
  7062. {
  7063. "name": "Jaypan",
  7064. "homepage": "https://www.drupal.org/user/324696"
  7065. }
  7066. ],
  7067. "description": "Text filter to convert URLs to embedded videos",
  7068. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  7069. "support": {
  7070. "source": "http://cgit.drupalcode.org/url_to_video_filter"
  7071. }
  7072. },
  7073. {
  7074. "name": "drupal/video_embed_field",
  7075. "version": "2.0.0",
  7076. "source": {
  7077. "type": "git",
  7078. "url": "https://git.drupal.org/project/video_embed_field",
  7079. "reference": "8.x-2.0"
  7080. },
  7081. "dist": {
  7082. "type": "zip",
  7083. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.0.zip",
  7084. "reference": "8.x-2.0",
  7085. "shasum": "e864f090b3cb9405376ca324d81ace83613e2019"
  7086. },
  7087. "require": {
  7088. "drupal/core": "*"
  7089. },
  7090. "require-dev": {
  7091. "drupal/colorbox": "*",
  7092. "drupal/media_entity": "*",
  7093. "drupal/media_entity_embeddable_video": "*"
  7094. },
  7095. "type": "drupal-module",
  7096. "extra": {
  7097. "branch-alias": {
  7098. "dev-2.x": "2.x-dev"
  7099. },
  7100. "drupal": {
  7101. "version": "8.x-1.x",
  7102. "datestamp": "1523338084",
  7103. "security-coverage": {
  7104. "status": "covered",
  7105. "message": "Covered by Drupal's security advisory policy"
  7106. },
  7107. "package": "Field types"
  7108. }
  7109. },
  7110. "notification-url": "https://packages.drupal.org/8/downloads",
  7111. "license": [
  7112. "GPL-2.0+"
  7113. ],
  7114. "authors": [
  7115. {
  7116. "name": "Sam152",
  7117. "homepage": "https://www.drupal.org/user/1485048"
  7118. },
  7119. {
  7120. "name": "jec006",
  7121. "homepage": "https://www.drupal.org/user/855980"
  7122. },
  7123. {
  7124. "name": "plopesc",
  7125. "homepage": "https://www.drupal.org/user/282415"
  7126. }
  7127. ],
  7128. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7129. "homepage": "https://www.drupal.org/project/video_embed_field",
  7130. "support": {
  7131. "source": "http://cgit.drupalcode.org/video_embed_field"
  7132. }
  7133. },
  7134. {
  7135. "name": "drupal/views_bulk_edit",
  7136. "version": "2.2.0",
  7137. "source": {
  7138. "type": "git",
  7139. "url": "https://git.drupal.org/project/views_bulk_edit",
  7140. "reference": "8.x-2.2"
  7141. },
  7142. "dist": {
  7143. "type": "zip",
  7144. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  7145. "reference": "8.x-2.2",
  7146. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  7147. },
  7148. "require": {
  7149. "drupal/core": "*",
  7150. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  7151. },
  7152. "type": "drupal-module",
  7153. "extra": {
  7154. "branch-alias": {
  7155. "dev-2.x": "2.x-dev"
  7156. },
  7157. "drupal": {
  7158. "version": "8.x-2.2",
  7159. "datestamp": "1532689085",
  7160. "security-coverage": {
  7161. "status": "covered",
  7162. "message": "Covered by Drupal's security advisory policy"
  7163. }
  7164. }
  7165. },
  7166. "notification-url": "https://packages.drupal.org/8/downloads",
  7167. "license": [
  7168. "GPL-2.0+"
  7169. ],
  7170. "authors": [
  7171. {
  7172. "name": "Marcin Grabias",
  7173. "homepage": "https://www.drupal.org/u/graber"
  7174. },
  7175. {
  7176. "name": "benjy",
  7177. "homepage": "https://www.drupal.org/user/1852732"
  7178. }
  7179. ],
  7180. "description": "Allows bulk edition of entity field values.",
  7181. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7182. "support": {
  7183. "source": "http://cgit.drupalcode.org/views_bulk_edit",
  7184. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7185. }
  7186. },
  7187. {
  7188. "name": "drupal/views_bulk_operations",
  7189. "version": "2.4.0",
  7190. "source": {
  7191. "type": "git",
  7192. "url": "https://git.drupal.org/project/views_bulk_operations",
  7193. "reference": "8.x-2.4"
  7194. },
  7195. "dist": {
  7196. "type": "zip",
  7197. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.4.zip",
  7198. "reference": "8.x-2.4",
  7199. "shasum": "50c5778770f3a92e38ecf664301b77146e3cc931"
  7200. },
  7201. "require": {
  7202. "drupal/core": "^8.4"
  7203. },
  7204. "type": "drupal-module",
  7205. "extra": {
  7206. "branch-alias": {
  7207. "dev-2.x": "2.x-dev"
  7208. },
  7209. "drupal": {
  7210. "version": "8.x-2.4",
  7211. "datestamp": "1530516821",
  7212. "security-coverage": {
  7213. "status": "covered",
  7214. "message": "Covered by Drupal's security advisory policy"
  7215. }
  7216. },
  7217. "drush": {
  7218. "services": {
  7219. "drush.services.yml": "^9"
  7220. }
  7221. }
  7222. },
  7223. "notification-url": "https://packages.drupal.org/8/downloads",
  7224. "license": [
  7225. "GPL-2.0+"
  7226. ],
  7227. "authors": [
  7228. {
  7229. "name": "Marcin Grabias",
  7230. "homepage": "https://www.drupal.org/u/graber"
  7231. },
  7232. {
  7233. "name": "Jon Pugh",
  7234. "homepage": "https://www.drupal.org/user/17028"
  7235. },
  7236. {
  7237. "name": "bojanz",
  7238. "homepage": "https://www.drupal.org/user/86106"
  7239. },
  7240. {
  7241. "name": "infojunkie",
  7242. "homepage": "https://www.drupal.org/user/48424"
  7243. },
  7244. {
  7245. "name": "joelpittet",
  7246. "homepage": "https://www.drupal.org/user/160302"
  7247. }
  7248. ],
  7249. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7250. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7251. "support": {
  7252. "source": "http://cgit.drupalcode.org/views_bulk_operations",
  7253. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7254. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7255. }
  7256. },
  7257. {
  7258. "name": "drupal/views_conditional",
  7259. "version": "dev-1.x",
  7260. "source": {
  7261. "type": "git",
  7262. "url": "https://git.drupal.org/project/views_conditional",
  7263. "reference": "414f27d55ab8d25ce8236dbd9fc359bc454fe9c8"
  7264. },
  7265. "require": {
  7266. "drupal/core": "*"
  7267. },
  7268. "type": "drupal-module",
  7269. "extra": {
  7270. "branch-alias": {
  7271. "dev-1.x": "1.x-dev"
  7272. },
  7273. "drupal": {
  7274. "version": "8.x-1.x-dev",
  7275. "datestamp": "1514538185",
  7276. "security-coverage": {
  7277. "status": "not-covered",
  7278. "message": "Dev releases are not covered by Drupal security advisories."
  7279. }
  7280. }
  7281. },
  7282. "notification-url": "https://packages.drupal.org/8/downloads",
  7283. "license": [
  7284. "GPL-2.0-or-later"
  7285. ],
  7286. "authors": [
  7287. {
  7288. "name": "MChittenden",
  7289. "homepage": "https://www.drupal.org/user/2288348"
  7290. },
  7291. {
  7292. "name": "anand.toshniwal93",
  7293. "homepage": "https://www.drupal.org/user/3345088"
  7294. },
  7295. {
  7296. "name": "ofry",
  7297. "homepage": "https://www.drupal.org/user/2740599"
  7298. }
  7299. ],
  7300. "description": "Allows conditional views output.",
  7301. "homepage": "https://www.drupal.org/project/views_conditional",
  7302. "support": {
  7303. "source": "http://cgit.drupalcode.org/views_conditional"
  7304. },
  7305. "time": "2019-02-05T19:20:00+00:00"
  7306. },
  7307. {
  7308. "name": "drupal/views_ef_fieldset",
  7309. "version": "dev-1.x",
  7310. "source": {
  7311. "type": "git",
  7312. "url": "https://git.drupal.org/project/views_ef_fieldset",
  7313. "reference": "d8005b76baa0c9d03553ad75f1aaddae5fb8f0a8"
  7314. },
  7315. "require": {
  7316. "drupal/core": "*",
  7317. "php": ">=7"
  7318. },
  7319. "require-dev": {
  7320. "drupol/drupal-conventions": "^1"
  7321. },
  7322. "type": "drupal-module",
  7323. "extra": {
  7324. "branch-alias": {
  7325. "dev-1.x": "1.x-dev"
  7326. },
  7327. "drupal": {
  7328. "version": "8.x-1.2+1-dev",
  7329. "datestamp": "1549467480",
  7330. "security-coverage": {
  7331. "status": "not-covered",
  7332. "message": "Dev releases are not covered by Drupal security advisories."
  7333. }
  7334. },
  7335. "grumphp": {
  7336. "config-default-path": "vendor/drupol/drupal-conventions/config/drupal8/grumphp.yml"
  7337. },
  7338. "composer-exit-on-patch-failure": true,
  7339. "enable-patching": true,
  7340. "patches": {
  7341. "drupal/core": {
  7342. "https://www.drupal.org/project/drupal/issues/2943172": "https://www.drupal.org/files/issues/2018-07-05/2943172-kernel-test-base-3.patch"
  7343. }
  7344. }
  7345. },
  7346. "autoload-dev": {
  7347. "psr-4": {
  7348. "Drupal\\Tests\\views_ef_fieldset\\": "./tests/"
  7349. }
  7350. },
  7351. "notification-url": "https://packages.drupal.org/8/downloads",
  7352. "scripts": {
  7353. "grumphp": [
  7354. "./vendor/bin/grumphp run"
  7355. ]
  7356. },
  7357. "license": [
  7358. "GPL-2.0+"
  7359. ],
  7360. "authors": [
  7361. {
  7362. "name": "Pol Dellaiera",
  7363. "homepage": "https://www.drupal.org/user/47194",
  7364. "email": "pol.dellaiera@protonmail.com"
  7365. },
  7366. {
  7367. "name": "ciss",
  7368. "homepage": "https://www.drupal.org/user/1632364"
  7369. }
  7370. ],
  7371. "description": "Provide an option to render the 'exposed form widgets' in a fieldset.",
  7372. "homepage": "https://drupal.org/project/views_field_formatter",
  7373. "support": {
  7374. "source": "http://cgit.drupalcode.org/views_ef_fieldset"
  7375. },
  7376. "time": "2019-02-06T21:02:32+00:00"
  7377. },
  7378. {
  7379. "name": "drupal/workflow",
  7380. "version": "dev-1.x",
  7381. "source": {
  7382. "type": "git",
  7383. "url": "https://git.drupal.org/project/workflow",
  7384. "reference": "19030d5b4dd9523153a7af6e2df44cd9a03109b2"
  7385. },
  7386. "require": {
  7387. "drupal/core": "*"
  7388. },
  7389. "type": "drupal-module",
  7390. "extra": {
  7391. "branch-alias": {
  7392. "dev-1.x": "1.x-dev"
  7393. },
  7394. "drupal": {
  7395. "version": "8.x-1.1+34-dev",
  7396. "datestamp": "1548775680",
  7397. "security-coverage": {
  7398. "status": "not-covered",
  7399. "message": "Dev releases are not covered by Drupal security advisories."
  7400. }
  7401. }
  7402. },
  7403. "notification-url": "https://packages.drupal.org/8/downloads",
  7404. "license": [
  7405. "GPL-2.0-or-later"
  7406. ],
  7407. "authors": [
  7408. {
  7409. "name": "Bastlynn",
  7410. "homepage": "https://www.drupal.org/user/275249"
  7411. },
  7412. {
  7413. "name": "Heine",
  7414. "homepage": "https://www.drupal.org/user/17943"
  7415. },
  7416. {
  7417. "name": "JacobSingh",
  7418. "homepage": "https://www.drupal.org/user/68912"
  7419. },
  7420. {
  7421. "name": "NancyDru",
  7422. "homepage": "https://www.drupal.org/user/101412"
  7423. },
  7424. {
  7425. "name": "eaton",
  7426. "homepage": "https://www.drupal.org/user/16496"
  7427. },
  7428. {
  7429. "name": "johnv",
  7430. "homepage": "https://www.drupal.org/user/591042"
  7431. },
  7432. {
  7433. "name": "jvandyk",
  7434. "homepage": "https://www.drupal.org/user/2375"
  7435. },
  7436. {
  7437. "name": "mfredrickson",
  7438. "homepage": "https://www.drupal.org/user/31994"
  7439. },
  7440. {
  7441. "name": "q0rban",
  7442. "homepage": "https://www.drupal.org/user/31022"
  7443. }
  7444. ],
  7445. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  7446. "homepage": "https://www.drupal.org/project/workflow",
  7447. "support": {
  7448. "source": "http://cgit.drupalcode.org/workflow"
  7449. },
  7450. "time": "2019-01-29T22:35:30+00:00"
  7451. },
  7452. {
  7453. "name": "drush/drush",
  7454. "version": "9.5.2",
  7455. "source": {
  7456. "type": "git",
  7457. "url": "https://github.com/drush-ops/drush.git",
  7458. "reference": "17f0106706391675a281c6d212850853bdbe90f9"
  7459. },
  7460. "dist": {
  7461. "type": "zip",
  7462. "url": "https://api.github.com/repos/drush-ops/drush/zipball/17f0106706391675a281c6d212850853bdbe90f9",
  7463. "reference": "17f0106706391675a281c6d212850853bdbe90f9",
  7464. "shasum": ""
  7465. },
  7466. "require": {
  7467. "chi-teck/drupal-code-generator": "^1.27.0",
  7468. "composer/semver": "^1.4",
  7469. "consolidation/annotated-command": "^2.9.1",
  7470. "consolidation/config": "^1.1.0",
  7471. "consolidation/output-formatters": "^3.1.12",
  7472. "consolidation/robo": "^1.1.5",
  7473. "consolidation/site-alias": "^1.1.5",
  7474. "ext-dom": "*",
  7475. "grasmash/yaml-expander": "^1.1.1",
  7476. "league/container": "~2",
  7477. "php": ">=5.6.0",
  7478. "psr/log": "~1.0",
  7479. "psy/psysh": "~0.6",
  7480. "symfony/config": "^3.4",
  7481. "symfony/console": "^3.4",
  7482. "symfony/event-dispatcher": "^3.4",
  7483. "symfony/finder": "^3.4",
  7484. "symfony/process": "^3.4",
  7485. "symfony/var-dumper": "^3.4",
  7486. "symfony/yaml": "^3.4",
  7487. "webflo/drupal-finder": "^1.1",
  7488. "webmozart/path-util": "^2.1.0"
  7489. },
  7490. "require-dev": {
  7491. "composer/installers": "^1.2",
  7492. "cweagans/composer-patches": "~1.0",
  7493. "drupal/alinks": "1.0.0",
  7494. "drupal/devel": "^1.0@RC",
  7495. "drupal/empty_theme": "1.0",
  7496. "g1a/composer-test-scenarios": "^2.2.0",
  7497. "lox/xhprof": "dev-master",
  7498. "phpunit/phpunit": "^4.8.36 || ^6.1",
  7499. "squizlabs/php_codesniffer": "^2.7",
  7500. "vlucas/phpdotenv": "^2.4",
  7501. "webflo/drupal-core-strict": "8.6.x-dev"
  7502. },
  7503. "bin": [
  7504. "drush"
  7505. ],
  7506. "type": "library",
  7507. "extra": {
  7508. "installer-paths": {
  7509. "sut/core": [
  7510. "type:drupal-core"
  7511. ],
  7512. "sut/libraries/{$name}": [
  7513. "type:drupal-library"
  7514. ],
  7515. "sut/modules/unish/{$name}": [
  7516. "drupal/devel"
  7517. ],
  7518. "sut/themes/unish/{$name}": [
  7519. "drupal/empty_theme"
  7520. ],
  7521. "sut/modules/contrib/{$name}": [
  7522. "type:drupal-module"
  7523. ],
  7524. "sut/profiles/contrib/{$name}": [
  7525. "type:drupal-profile"
  7526. ],
  7527. "sut/themes/contrib/{$name}": [
  7528. "type:drupal-theme"
  7529. ],
  7530. "sut/drush/contrib/{$name}": [
  7531. "type:drupal-drush"
  7532. ]
  7533. },
  7534. "branch-alias": {
  7535. "dev-master": "9.x-dev"
  7536. }
  7537. },
  7538. "autoload": {
  7539. "psr-4": {
  7540. "Drush\\": "src/",
  7541. "Drush\\Internal\\": "internal-copy/",
  7542. "Unish\\": "tests/"
  7543. }
  7544. },
  7545. "notification-url": "https://packagist.org/downloads/",
  7546. "license": [
  7547. "GPL-2.0-or-later"
  7548. ],
  7549. "authors": [
  7550. {
  7551. "name": "Moshe Weitzman",
  7552. "email": "weitzman@tejasa.com"
  7553. },
  7554. {
  7555. "name": "Owen Barton",
  7556. "email": "drupal@owenbarton.com"
  7557. },
  7558. {
  7559. "name": "Greg Anderson",
  7560. "email": "greg.1.anderson@greenknowe.org"
  7561. },
  7562. {
  7563. "name": "Jonathan Araña Cruz",
  7564. "email": "jonhattan@faita.net"
  7565. },
  7566. {
  7567. "name": "Jonathan Hedstrom",
  7568. "email": "jhedstrom@gmail.com"
  7569. },
  7570. {
  7571. "name": "Christopher Gervais",
  7572. "email": "chris@ergonlogic.com"
  7573. },
  7574. {
  7575. "name": "Dave Reid",
  7576. "email": "dave@davereid.net"
  7577. },
  7578. {
  7579. "name": "Damian Lee",
  7580. "email": "damiankloip@googlemail.com"
  7581. }
  7582. ],
  7583. "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.",
  7584. "homepage": "http://www.drush.org",
  7585. "time": "2018-10-17T18:37:53+00:00"
  7586. },
  7587. {
  7588. "name": "easyrdf/easyrdf",
  7589. "version": "0.9.1",
  7590. "source": {
  7591. "type": "git",
  7592. "url": "https://github.com/njh/easyrdf.git",
  7593. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  7594. },
  7595. "dist": {
  7596. "type": "zip",
  7597. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  7598. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  7599. "shasum": ""
  7600. },
  7601. "require": {
  7602. "ext-mbstring": "*",
  7603. "ext-pcre": "*",
  7604. "php": ">=5.2.8"
  7605. },
  7606. "require-dev": {
  7607. "phpunit/phpunit": "~3.5",
  7608. "sami/sami": "~1.4",
  7609. "squizlabs/php_codesniffer": "~1.4.3"
  7610. },
  7611. "suggest": {
  7612. "ml/json-ld": "~1.0"
  7613. },
  7614. "type": "library",
  7615. "autoload": {
  7616. "psr-0": {
  7617. "EasyRdf_": "lib/"
  7618. }
  7619. },
  7620. "notification-url": "https://packagist.org/downloads/",
  7621. "license": [
  7622. "BSD-3-Clause"
  7623. ],
  7624. "authors": [
  7625. {
  7626. "name": "Nicholas Humfrey",
  7627. "email": "njh@aelius.com",
  7628. "homepage": "http://www.aelius.com/njh/",
  7629. "role": "Developer"
  7630. },
  7631. {
  7632. "name": "Alexey Zakhlestin",
  7633. "email": "indeyets@gmail.com",
  7634. "role": "Developer"
  7635. }
  7636. ],
  7637. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  7638. "homepage": "http://www.easyrdf.org/",
  7639. "keywords": [
  7640. "Linked Data",
  7641. "RDF",
  7642. "Semantic Web",
  7643. "Turtle",
  7644. "rdfa",
  7645. "sparql"
  7646. ],
  7647. "time": "2015-02-27T09:45:49+00:00"
  7648. },
  7649. {
  7650. "name": "egulias/email-validator",
  7651. "version": "1.2.15",
  7652. "source": {
  7653. "type": "git",
  7654. "url": "https://github.com/egulias/EmailValidator.git",
  7655. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  7656. },
  7657. "dist": {
  7658. "type": "zip",
  7659. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7660. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  7661. "shasum": ""
  7662. },
  7663. "require": {
  7664. "doctrine/lexer": "^1.0.1",
  7665. "php": ">= 5.3.3"
  7666. },
  7667. "require-dev": {
  7668. "phpunit/phpunit": "^4.8.24"
  7669. },
  7670. "type": "library",
  7671. "extra": {
  7672. "branch-alias": {
  7673. "dev-master": "2.0.x-dev"
  7674. }
  7675. },
  7676. "autoload": {
  7677. "psr-0": {
  7678. "Egulias\\": "src/"
  7679. }
  7680. },
  7681. "notification-url": "https://packagist.org/downloads/",
  7682. "license": [
  7683. "MIT"
  7684. ],
  7685. "authors": [
  7686. {
  7687. "name": "Eduardo Gulias Davis"
  7688. }
  7689. ],
  7690. "description": "A library for validating emails",
  7691. "homepage": "https://github.com/egulias/EmailValidator",
  7692. "keywords": [
  7693. "email",
  7694. "emailvalidation",
  7695. "emailvalidator",
  7696. "validation",
  7697. "validator"
  7698. ],
  7699. "time": "2018-09-25T20:59:41+00:00"
  7700. },
  7701. {
  7702. "name": "giggsey/libphonenumber-for-php",
  7703. "version": "8.10.5",
  7704. "source": {
  7705. "type": "git",
  7706. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  7707. "reference": "667a1fe292561b7c64c4fc457a9f1ecc41d67185"
  7708. },
  7709. "dist": {
  7710. "type": "zip",
  7711. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/667a1fe292561b7c64c4fc457a9f1ecc41d67185",
  7712. "reference": "667a1fe292561b7c64c4fc457a9f1ecc41d67185",
  7713. "shasum": ""
  7714. },
  7715. "require": {
  7716. "ext-mbstring": "*",
  7717. "giggsey/locale": "^1.2",
  7718. "php": ">=5.3.2"
  7719. },
  7720. "require-dev": {
  7721. "pear/pear-core-minimal": "^1.9",
  7722. "pear/pear_exception": "^1.0",
  7723. "pear/versioncontrol_git": "^0.5",
  7724. "phing/phing": "^2.7",
  7725. "php-coveralls/php-coveralls": "^1.0|^2.0",
  7726. "phpunit/phpunit": "^4.8.36|^5.0",
  7727. "symfony/console": "^2.8|^3.0"
  7728. },
  7729. "type": "library",
  7730. "extra": {
  7731. "branch-alias": {
  7732. "dev-master": "8.x-dev"
  7733. }
  7734. },
  7735. "autoload": {
  7736. "psr-4": {
  7737. "libphonenumber\\": "src/"
  7738. },
  7739. "exclude-from-classmap": [
  7740. "/src/data/",
  7741. "/src/carrier/data/",
  7742. "/src/geocoding/data/",
  7743. "/src/timezone/data/"
  7744. ]
  7745. },
  7746. "notification-url": "https://packagist.org/downloads/",
  7747. "license": [
  7748. "Apache-2.0"
  7749. ],
  7750. "authors": [
  7751. {
  7752. "name": "Joshua Gigg",
  7753. "email": "giggsey@gmail.com",
  7754. "homepage": "https://giggsey.com/"
  7755. }
  7756. ],
  7757. "description": "PHP Port of Google's libphonenumber",
  7758. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  7759. "keywords": [
  7760. "geocoding",
  7761. "geolocation",
  7762. "libphonenumber",
  7763. "mobile",
  7764. "phonenumber",
  7765. "validation"
  7766. ],
  7767. "time": "2019-02-08T08:31:08+00:00"
  7768. },
  7769. {
  7770. "name": "giggsey/locale",
  7771. "version": "1.6",
  7772. "source": {
  7773. "type": "git",
  7774. "url": "https://github.com/giggsey/Locale.git",
  7775. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5"
  7776. },
  7777. "dist": {
  7778. "type": "zip",
  7779. "url": "https://api.github.com/repos/giggsey/Locale/zipball/da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7780. "reference": "da6845720b5d104d319d7e84576f54e44dd9e4f5",
  7781. "shasum": ""
  7782. },
  7783. "require": {
  7784. "php": ">=5.3.2"
  7785. },
  7786. "require-dev": {
  7787. "pear/pear-core-minimal": "^1.9",
  7788. "pear/pear_exception": "^1.0",
  7789. "pear/versioncontrol_git": "^0.5",
  7790. "phing/phing": "~2.7",
  7791. "phpunit/phpunit": "^4.8|^5.0",
  7792. "satooshi/php-coveralls": "^1.0",
  7793. "symfony/console": "^2.8|^3.0|^4.0",
  7794. "symfony/filesystem": "^2.8|^3.0|^4.0",
  7795. "symfony/finder": "^2.8|^3.0|^4.0",
  7796. "symfony/process": "^2.8|^3.0|^4.0"
  7797. },
  7798. "type": "library",
  7799. "autoload": {
  7800. "psr-4": {
  7801. "Giggsey\\Locale\\": "src/"
  7802. }
  7803. },
  7804. "notification-url": "https://packagist.org/downloads/",
  7805. "license": [
  7806. "MIT"
  7807. ],
  7808. "authors": [
  7809. {
  7810. "name": "Joshua Gigg",
  7811. "email": "giggsey@gmail.com",
  7812. "homepage": "http://giggsey.com/"
  7813. }
  7814. ],
  7815. "description": "Locale functions required by libphonenumber-for-php",
  7816. "time": "2018-10-18T07:17:52+00:00"
  7817. },
  7818. {
  7819. "name": "grasmash/expander",
  7820. "version": "1.0.0",
  7821. "source": {
  7822. "type": "git",
  7823. "url": "https://github.com/grasmash/expander.git",
  7824. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  7825. },
  7826. "dist": {
  7827. "type": "zip",
  7828. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7829. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  7830. "shasum": ""
  7831. },
  7832. "require": {
  7833. "dflydev/dot-access-data": "^1.1.0",
  7834. "php": ">=5.4"
  7835. },
  7836. "require-dev": {
  7837. "greg-1-anderson/composer-test-scenarios": "^1",
  7838. "phpunit/phpunit": "^4|^5.5.4",
  7839. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7840. "squizlabs/php_codesniffer": "^2.7"
  7841. },
  7842. "type": "library",
  7843. "extra": {
  7844. "branch-alias": {
  7845. "dev-master": "1.x-dev"
  7846. }
  7847. },
  7848. "autoload": {
  7849. "psr-4": {
  7850. "Grasmash\\Expander\\": "src/"
  7851. }
  7852. },
  7853. "notification-url": "https://packagist.org/downloads/",
  7854. "license": [
  7855. "MIT"
  7856. ],
  7857. "authors": [
  7858. {
  7859. "name": "Matthew Grasmick"
  7860. }
  7861. ],
  7862. "description": "Expands internal property references in PHP arrays file.",
  7863. "time": "2017-12-21T22:14:55+00:00"
  7864. },
  7865. {
  7866. "name": "grasmash/yaml-expander",
  7867. "version": "1.4.0",
  7868. "source": {
  7869. "type": "git",
  7870. "url": "https://github.com/grasmash/yaml-expander.git",
  7871. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  7872. },
  7873. "dist": {
  7874. "type": "zip",
  7875. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7876. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  7877. "shasum": ""
  7878. },
  7879. "require": {
  7880. "dflydev/dot-access-data": "^1.1.0",
  7881. "php": ">=5.4",
  7882. "symfony/yaml": "^2.8.11|^3|^4"
  7883. },
  7884. "require-dev": {
  7885. "greg-1-anderson/composer-test-scenarios": "^1",
  7886. "phpunit/phpunit": "^4.8|^5.5.4",
  7887. "satooshi/php-coveralls": "^1.0.2|dev-master",
  7888. "squizlabs/php_codesniffer": "^2.7"
  7889. },
  7890. "type": "library",
  7891. "extra": {
  7892. "branch-alias": {
  7893. "dev-master": "1.x-dev"
  7894. }
  7895. },
  7896. "autoload": {
  7897. "psr-4": {
  7898. "Grasmash\\YamlExpander\\": "src/"
  7899. }
  7900. },
  7901. "notification-url": "https://packagist.org/downloads/",
  7902. "license": [
  7903. "MIT"
  7904. ],
  7905. "authors": [
  7906. {
  7907. "name": "Matthew Grasmick"
  7908. }
  7909. ],
  7910. "description": "Expands internal property references in a yaml file.",
  7911. "time": "2017-12-16T16:06:03+00:00"
  7912. },
  7913. {
  7914. "name": "guzzlehttp/guzzle",
  7915. "version": "6.3.3",
  7916. "source": {
  7917. "type": "git",
  7918. "url": "https://github.com/guzzle/guzzle.git",
  7919. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  7920. },
  7921. "dist": {
  7922. "type": "zip",
  7923. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7924. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  7925. "shasum": ""
  7926. },
  7927. "require": {
  7928. "guzzlehttp/promises": "^1.0",
  7929. "guzzlehttp/psr7": "^1.4",
  7930. "php": ">=5.5"
  7931. },
  7932. "require-dev": {
  7933. "ext-curl": "*",
  7934. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  7935. "psr/log": "^1.0"
  7936. },
  7937. "suggest": {
  7938. "psr/log": "Required for using the Log middleware"
  7939. },
  7940. "type": "library",
  7941. "extra": {
  7942. "branch-alias": {
  7943. "dev-master": "6.3-dev"
  7944. }
  7945. },
  7946. "autoload": {
  7947. "files": [
  7948. "src/functions_include.php"
  7949. ],
  7950. "psr-4": {
  7951. "GuzzleHttp\\": "src/"
  7952. }
  7953. },
  7954. "notification-url": "https://packagist.org/downloads/",
  7955. "license": [
  7956. "MIT"
  7957. ],
  7958. "authors": [
  7959. {
  7960. "name": "Michael Dowling",
  7961. "email": "mtdowling@gmail.com",
  7962. "homepage": "https://github.com/mtdowling"
  7963. }
  7964. ],
  7965. "description": "Guzzle is a PHP HTTP client library",
  7966. "homepage": "http://guzzlephp.org/",
  7967. "keywords": [
  7968. "client",
  7969. "curl",
  7970. "framework",
  7971. "http",
  7972. "http client",
  7973. "rest",
  7974. "web service"
  7975. ],
  7976. "time": "2018-04-22T15:46:56+00:00"
  7977. },
  7978. {
  7979. "name": "guzzlehttp/promises",
  7980. "version": "v1.3.1",
  7981. "source": {
  7982. "type": "git",
  7983. "url": "https://github.com/guzzle/promises.git",
  7984. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  7985. },
  7986. "dist": {
  7987. "type": "zip",
  7988. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7989. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  7990. "shasum": ""
  7991. },
  7992. "require": {
  7993. "php": ">=5.5.0"
  7994. },
  7995. "require-dev": {
  7996. "phpunit/phpunit": "^4.0"
  7997. },
  7998. "type": "library",
  7999. "extra": {
  8000. "branch-alias": {
  8001. "dev-master": "1.4-dev"
  8002. }
  8003. },
  8004. "autoload": {
  8005. "psr-4": {
  8006. "GuzzleHttp\\Promise\\": "src/"
  8007. },
  8008. "files": [
  8009. "src/functions_include.php"
  8010. ]
  8011. },
  8012. "notification-url": "https://packagist.org/downloads/",
  8013. "license": [
  8014. "MIT"
  8015. ],
  8016. "authors": [
  8017. {
  8018. "name": "Michael Dowling",
  8019. "email": "mtdowling@gmail.com",
  8020. "homepage": "https://github.com/mtdowling"
  8021. }
  8022. ],
  8023. "description": "Guzzle promises library",
  8024. "keywords": [
  8025. "promise"
  8026. ],
  8027. "time": "2016-12-20T10:07:11+00:00"
  8028. },
  8029. {
  8030. "name": "guzzlehttp/psr7",
  8031. "version": "1.5.2",
  8032. "source": {
  8033. "type": "git",
  8034. "url": "https://github.com/guzzle/psr7.git",
  8035. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  8036. },
  8037. "dist": {
  8038. "type": "zip",
  8039. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  8040. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  8041. "shasum": ""
  8042. },
  8043. "require": {
  8044. "php": ">=5.4.0",
  8045. "psr/http-message": "~1.0",
  8046. "ralouphie/getallheaders": "^2.0.5"
  8047. },
  8048. "provide": {
  8049. "psr/http-message-implementation": "1.0"
  8050. },
  8051. "require-dev": {
  8052. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  8053. },
  8054. "type": "library",
  8055. "extra": {
  8056. "branch-alias": {
  8057. "dev-master": "1.5-dev"
  8058. }
  8059. },
  8060. "autoload": {
  8061. "psr-4": {
  8062. "GuzzleHttp\\Psr7\\": "src/"
  8063. },
  8064. "files": [
  8065. "src/functions_include.php"
  8066. ]
  8067. },
  8068. "notification-url": "https://packagist.org/downloads/",
  8069. "license": [
  8070. "MIT"
  8071. ],
  8072. "authors": [
  8073. {
  8074. "name": "Michael Dowling",
  8075. "email": "mtdowling@gmail.com",
  8076. "homepage": "https://github.com/mtdowling"
  8077. },
  8078. {
  8079. "name": "Tobias Schultze",
  8080. "homepage": "https://github.com/Tobion"
  8081. }
  8082. ],
  8083. "description": "PSR-7 message implementation that also provides common utility methods",
  8084. "keywords": [
  8085. "http",
  8086. "message",
  8087. "psr-7",
  8088. "request",
  8089. "response",
  8090. "stream",
  8091. "uri",
  8092. "url"
  8093. ],
  8094. "time": "2018-12-04T20:46:45+00:00"
  8095. },
  8096. {
  8097. "name": "jakub-onderka/php-console-color",
  8098. "version": "v0.2",
  8099. "source": {
  8100. "type": "git",
  8101. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  8102. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  8103. },
  8104. "dist": {
  8105. "type": "zip",
  8106. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  8107. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  8108. "shasum": ""
  8109. },
  8110. "require": {
  8111. "php": ">=5.4.0"
  8112. },
  8113. "require-dev": {
  8114. "jakub-onderka/php-code-style": "1.0",
  8115. "jakub-onderka/php-parallel-lint": "1.0",
  8116. "jakub-onderka/php-var-dump-check": "0.*",
  8117. "phpunit/phpunit": "~4.3",
  8118. "squizlabs/php_codesniffer": "1.*"
  8119. },
  8120. "type": "library",
  8121. "autoload": {
  8122. "psr-4": {
  8123. "JakubOnderka\\PhpConsoleColor\\": "src/"
  8124. }
  8125. },
  8126. "notification-url": "https://packagist.org/downloads/",
  8127. "license": [
  8128. "BSD-2-Clause"
  8129. ],
  8130. "authors": [
  8131. {
  8132. "name": "Jakub Onderka",
  8133. "email": "jakub.onderka@gmail.com"
  8134. }
  8135. ],
  8136. "time": "2018-09-29T17:23:10+00:00"
  8137. },
  8138. {
  8139. "name": "jakub-onderka/php-console-highlighter",
  8140. "version": "v0.4",
  8141. "source": {
  8142. "type": "git",
  8143. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  8144. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  8145. },
  8146. "dist": {
  8147. "type": "zip",
  8148. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  8149. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  8150. "shasum": ""
  8151. },
  8152. "require": {
  8153. "ext-tokenizer": "*",
  8154. "jakub-onderka/php-console-color": "~0.2",
  8155. "php": ">=5.4.0"
  8156. },
  8157. "require-dev": {
  8158. "jakub-onderka/php-code-style": "~1.0",
  8159. "jakub-onderka/php-parallel-lint": "~1.0",
  8160. "jakub-onderka/php-var-dump-check": "~0.1",
  8161. "phpunit/phpunit": "~4.0",
  8162. "squizlabs/php_codesniffer": "~1.5"
  8163. },
  8164. "type": "library",
  8165. "autoload": {
  8166. "psr-4": {
  8167. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  8168. }
  8169. },
  8170. "notification-url": "https://packagist.org/downloads/",
  8171. "license": [
  8172. "MIT"
  8173. ],
  8174. "authors": [
  8175. {
  8176. "name": "Jakub Onderka",
  8177. "email": "acci@acci.cz",
  8178. "homepage": "http://www.acci.cz/"
  8179. }
  8180. ],
  8181. "description": "Highlight PHP code in terminal",
  8182. "time": "2018-09-29T18:48:56+00:00"
  8183. },
  8184. {
  8185. "name": "league/container",
  8186. "version": "2.4.1",
  8187. "source": {
  8188. "type": "git",
  8189. "url": "https://github.com/thephpleague/container.git",
  8190. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  8191. },
  8192. "dist": {
  8193. "type": "zip",
  8194. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  8195. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  8196. "shasum": ""
  8197. },
  8198. "require": {
  8199. "container-interop/container-interop": "^1.2",
  8200. "php": "^5.4.0 || ^7.0"
  8201. },
  8202. "provide": {
  8203. "container-interop/container-interop-implementation": "^1.2",
  8204. "psr/container-implementation": "^1.0"
  8205. },
  8206. "replace": {
  8207. "orno/di": "~2.0"
  8208. },
  8209. "require-dev": {
  8210. "phpunit/phpunit": "4.*"
  8211. },
  8212. "type": "library",
  8213. "extra": {
  8214. "branch-alias": {
  8215. "dev-2.x": "2.x-dev",
  8216. "dev-1.x": "1.x-dev"
  8217. }
  8218. },
  8219. "autoload": {
  8220. "psr-4": {
  8221. "League\\Container\\": "src"
  8222. }
  8223. },
  8224. "notification-url": "https://packagist.org/downloads/",
  8225. "license": [
  8226. "MIT"
  8227. ],
  8228. "authors": [
  8229. {
  8230. "name": "Phil Bennett",
  8231. "email": "philipobenito@gmail.com",
  8232. "homepage": "http://www.philipobenito.com",
  8233. "role": "Developer"
  8234. }
  8235. ],
  8236. "description": "A fast and intuitive dependency injection container.",
  8237. "homepage": "https://github.com/thephpleague/container",
  8238. "keywords": [
  8239. "container",
  8240. "dependency",
  8241. "di",
  8242. "injection",
  8243. "league",
  8244. "provider",
  8245. "service"
  8246. ],
  8247. "time": "2017-05-10T09:20:27+00:00"
  8248. },
  8249. {
  8250. "name": "lsolesen/pel",
  8251. "version": "0.9.6",
  8252. "source": {
  8253. "type": "git",
  8254. "url": "https://github.com/lsolesen/pel.git",
  8255. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23"
  8256. },
  8257. "dist": {
  8258. "type": "zip",
  8259. "url": "https://api.github.com/repos/lsolesen/pel/zipball/c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  8260. "reference": "c9e3919f5db3b85c3c422d4f8d448dbcb2a87a23",
  8261. "shasum": ""
  8262. },
  8263. "require": {
  8264. "php": ">=5.0.0"
  8265. },
  8266. "require-dev": {
  8267. "ext-gd": "*",
  8268. "phpunit/phpunit": "5.7.*",
  8269. "satooshi/php-coveralls": "1.0.*",
  8270. "squizlabs/php_codesniffer": "3.0.0RC3"
  8271. },
  8272. "type": "library",
  8273. "autoload": {
  8274. "psr-4": {
  8275. "lsolesen\\pel\\": "src/"
  8276. }
  8277. },
  8278. "notification-url": "https://packagist.org/downloads/",
  8279. "license": [
  8280. "GPL-2.0"
  8281. ],
  8282. "authors": [
  8283. {
  8284. "name": "Lars Olesen",
  8285. "email": "lars@intraface.dk",
  8286. "homepage": "http://intraface.dk",
  8287. "role": "Developer"
  8288. },
  8289. {
  8290. "name": "Martin Geisler",
  8291. "email": "martin@geisler.net",
  8292. "homepage": "http://geisler.net",
  8293. "role": "Developer"
  8294. }
  8295. ],
  8296. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  8297. "homepage": "http://lsolesen.github.com/pel/",
  8298. "keywords": [
  8299. "exif",
  8300. "image"
  8301. ],
  8302. "time": "2017-02-03T11:58:58+00:00"
  8303. },
  8304. {
  8305. "name": "masterminds/html5",
  8306. "version": "2.5.0",
  8307. "source": {
  8308. "type": "git",
  8309. "url": "https://github.com/Masterminds/html5-php.git",
  8310. "reference": "b5d892a4bd058d61f736935d32a9c248f11ccc93"
  8311. },
  8312. "dist": {
  8313. "type": "zip",
  8314. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/b5d892a4bd058d61f736935d32a9c248f11ccc93",
  8315. "reference": "b5d892a4bd058d61f736935d32a9c248f11ccc93",
  8316. "shasum": ""
  8317. },
  8318. "require": {
  8319. "ext-ctype": "*",
  8320. "ext-dom": "*",
  8321. "ext-libxml": "*",
  8322. "php": ">=5.3.0"
  8323. },
  8324. "require-dev": {
  8325. "phpunit/phpunit": "^4.8.35",
  8326. "sami/sami": "~2.0",
  8327. "satooshi/php-coveralls": "1.0.*"
  8328. },
  8329. "type": "library",
  8330. "extra": {
  8331. "branch-alias": {
  8332. "dev-master": "2.4-dev"
  8333. }
  8334. },
  8335. "autoload": {
  8336. "psr-4": {
  8337. "Masterminds\\": "src"
  8338. }
  8339. },
  8340. "notification-url": "https://packagist.org/downloads/",
  8341. "license": [
  8342. "MIT"
  8343. ],
  8344. "authors": [
  8345. {
  8346. "name": "Matt Butcher",
  8347. "email": "technosophos@gmail.com"
  8348. },
  8349. {
  8350. "name": "Asmir Mustafic",
  8351. "email": "goetas@gmail.com"
  8352. },
  8353. {
  8354. "name": "Matt Farina",
  8355. "email": "matt@mattfarina.com"
  8356. }
  8357. ],
  8358. "description": "An HTML5 parser and serializer.",
  8359. "homepage": "http://masterminds.github.io/html5-php",
  8360. "keywords": [
  8361. "HTML5",
  8362. "dom",
  8363. "html",
  8364. "parser",
  8365. "querypath",
  8366. "serializer",
  8367. "xml"
  8368. ],
  8369. "time": "2018-12-27T22:03:43+00:00"
  8370. },
  8371. {
  8372. "name": "nikic/php-parser",
  8373. "version": "v4.2.0",
  8374. "source": {
  8375. "type": "git",
  8376. "url": "https://github.com/nikic/PHP-Parser.git",
  8377. "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a"
  8378. },
  8379. "dist": {
  8380. "type": "zip",
  8381. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/594bcae1fc0bccd3993d2f0d61a018e26ac2865a",
  8382. "reference": "594bcae1fc0bccd3993d2f0d61a018e26ac2865a",
  8383. "shasum": ""
  8384. },
  8385. "require": {
  8386. "ext-tokenizer": "*",
  8387. "php": ">=7.0"
  8388. },
  8389. "require-dev": {
  8390. "phpunit/phpunit": "^6.5 || ^7.0"
  8391. },
  8392. "bin": [
  8393. "bin/php-parse"
  8394. ],
  8395. "type": "library",
  8396. "extra": {
  8397. "branch-alias": {
  8398. "dev-master": "4.2-dev"
  8399. }
  8400. },
  8401. "autoload": {
  8402. "psr-4": {
  8403. "PhpParser\\": "lib/PhpParser"
  8404. }
  8405. },
  8406. "notification-url": "https://packagist.org/downloads/",
  8407. "license": [
  8408. "BSD-3-Clause"
  8409. ],
  8410. "authors": [
  8411. {
  8412. "name": "Nikita Popov"
  8413. }
  8414. ],
  8415. "description": "A PHP parser written in PHP",
  8416. "keywords": [
  8417. "parser",
  8418. "php"
  8419. ],
  8420. "time": "2019-01-12T16:31:37+00:00"
  8421. },
  8422. {
  8423. "name": "paragonie/random_compat",
  8424. "version": "v2.0.18",
  8425. "source": {
  8426. "type": "git",
  8427. "url": "https://github.com/paragonie/random_compat.git",
  8428. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  8429. },
  8430. "dist": {
  8431. "type": "zip",
  8432. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  8433. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  8434. "shasum": ""
  8435. },
  8436. "require": {
  8437. "php": ">=5.2.0"
  8438. },
  8439. "require-dev": {
  8440. "phpunit/phpunit": "4.*|5.*"
  8441. },
  8442. "suggest": {
  8443. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  8444. },
  8445. "type": "library",
  8446. "autoload": {
  8447. "files": [
  8448. "lib/random.php"
  8449. ]
  8450. },
  8451. "notification-url": "https://packagist.org/downloads/",
  8452. "license": [
  8453. "MIT"
  8454. ],
  8455. "authors": [
  8456. {
  8457. "name": "Paragon Initiative Enterprises",
  8458. "email": "security@paragonie.com",
  8459. "homepage": "https://paragonie.com"
  8460. }
  8461. ],
  8462. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  8463. "keywords": [
  8464. "csprng",
  8465. "polyfill",
  8466. "pseudorandom",
  8467. "random"
  8468. ],
  8469. "time": "2019-01-03T20:59:08+00:00"
  8470. },
  8471. {
  8472. "name": "phenx/php-font-lib",
  8473. "version": "0.5",
  8474. "source": {
  8475. "type": "git",
  8476. "url": "https://github.com/PhenX/php-font-lib.git",
  8477. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962"
  8478. },
  8479. "dist": {
  8480. "type": "zip",
  8481. "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/19ad2bebc35be028fcc0221025fcbf3d436a3962",
  8482. "reference": "19ad2bebc35be028fcc0221025fcbf3d436a3962",
  8483. "shasum": ""
  8484. },
  8485. "require-dev": {
  8486. "phpunit/phpunit": "^4.8"
  8487. },
  8488. "type": "library",
  8489. "autoload": {
  8490. "psr-4": {
  8491. "FontLib\\": "src/FontLib"
  8492. }
  8493. },
  8494. "notification-url": "https://packagist.org/downloads/",
  8495. "license": [
  8496. "LGPL-3.0"
  8497. ],
  8498. "authors": [
  8499. {
  8500. "name": "Fabien Ménager",
  8501. "email": "fabien.menager@gmail.com"
  8502. }
  8503. ],
  8504. "description": "A library to read, parse, export and make subsets of different types of font files.",
  8505. "homepage": "https://github.com/PhenX/php-font-lib",
  8506. "time": "2017-02-11T10:58:43+00:00"
  8507. },
  8508. {
  8509. "name": "psr/container",
  8510. "version": "1.0.0",
  8511. "source": {
  8512. "type": "git",
  8513. "url": "https://github.com/php-fig/container.git",
  8514. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  8515. },
  8516. "dist": {
  8517. "type": "zip",
  8518. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8519. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8520. "shasum": ""
  8521. },
  8522. "require": {
  8523. "php": ">=5.3.0"
  8524. },
  8525. "type": "library",
  8526. "extra": {
  8527. "branch-alias": {
  8528. "dev-master": "1.0.x-dev"
  8529. }
  8530. },
  8531. "autoload": {
  8532. "psr-4": {
  8533. "Psr\\Container\\": "src/"
  8534. }
  8535. },
  8536. "notification-url": "https://packagist.org/downloads/",
  8537. "license": [
  8538. "MIT"
  8539. ],
  8540. "authors": [
  8541. {
  8542. "name": "PHP-FIG",
  8543. "homepage": "http://www.php-fig.org/"
  8544. }
  8545. ],
  8546. "description": "Common Container Interface (PHP FIG PSR-11)",
  8547. "homepage": "https://github.com/php-fig/container",
  8548. "keywords": [
  8549. "PSR-11",
  8550. "container",
  8551. "container-interface",
  8552. "container-interop",
  8553. "psr"
  8554. ],
  8555. "time": "2017-02-14T16:28:37+00:00"
  8556. },
  8557. {
  8558. "name": "psr/http-message",
  8559. "version": "1.0.1",
  8560. "source": {
  8561. "type": "git",
  8562. "url": "https://github.com/php-fig/http-message.git",
  8563. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  8564. },
  8565. "dist": {
  8566. "type": "zip",
  8567. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  8568. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  8569. "shasum": ""
  8570. },
  8571. "require": {
  8572. "php": ">=5.3.0"
  8573. },
  8574. "type": "library",
  8575. "extra": {
  8576. "branch-alias": {
  8577. "dev-master": "1.0.x-dev"
  8578. }
  8579. },
  8580. "autoload": {
  8581. "psr-4": {
  8582. "Psr\\Http\\Message\\": "src/"
  8583. }
  8584. },
  8585. "notification-url": "https://packagist.org/downloads/",
  8586. "license": [
  8587. "MIT"
  8588. ],
  8589. "authors": [
  8590. {
  8591. "name": "PHP-FIG",
  8592. "homepage": "http://www.php-fig.org/"
  8593. }
  8594. ],
  8595. "description": "Common interface for HTTP messages",
  8596. "homepage": "https://github.com/php-fig/http-message",
  8597. "keywords": [
  8598. "http",
  8599. "http-message",
  8600. "psr",
  8601. "psr-7",
  8602. "request",
  8603. "response"
  8604. ],
  8605. "time": "2016-08-06T14:39:51+00:00"
  8606. },
  8607. {
  8608. "name": "psr/log",
  8609. "version": "1.1.0",
  8610. "source": {
  8611. "type": "git",
  8612. "url": "https://github.com/php-fig/log.git",
  8613. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  8614. },
  8615. "dist": {
  8616. "type": "zip",
  8617. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  8618. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  8619. "shasum": ""
  8620. },
  8621. "require": {
  8622. "php": ">=5.3.0"
  8623. },
  8624. "type": "library",
  8625. "extra": {
  8626. "branch-alias": {
  8627. "dev-master": "1.0.x-dev"
  8628. }
  8629. },
  8630. "autoload": {
  8631. "psr-4": {
  8632. "Psr\\Log\\": "Psr/Log/"
  8633. }
  8634. },
  8635. "notification-url": "https://packagist.org/downloads/",
  8636. "license": [
  8637. "MIT"
  8638. ],
  8639. "authors": [
  8640. {
  8641. "name": "PHP-FIG",
  8642. "homepage": "http://www.php-fig.org/"
  8643. }
  8644. ],
  8645. "description": "Common interface for logging libraries",
  8646. "homepage": "https://github.com/php-fig/log",
  8647. "keywords": [
  8648. "log",
  8649. "psr",
  8650. "psr-3"
  8651. ],
  8652. "time": "2018-11-20T15:27:04+00:00"
  8653. },
  8654. {
  8655. "name": "psy/psysh",
  8656. "version": "v0.9.9",
  8657. "source": {
  8658. "type": "git",
  8659. "url": "https://github.com/bobthecow/psysh.git",
  8660. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  8661. },
  8662. "dist": {
  8663. "type": "zip",
  8664. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8665. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8666. "shasum": ""
  8667. },
  8668. "require": {
  8669. "dnoegel/php-xdg-base-dir": "0.1",
  8670. "ext-json": "*",
  8671. "ext-tokenizer": "*",
  8672. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8673. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8674. "php": ">=5.4.0",
  8675. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8676. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8677. },
  8678. "require-dev": {
  8679. "bamarni/composer-bin-plugin": "^1.2",
  8680. "hoa/console": "~2.15|~3.16",
  8681. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8682. },
  8683. "suggest": {
  8684. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8685. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8686. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8687. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8688. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8689. },
  8690. "bin": [
  8691. "bin/psysh"
  8692. ],
  8693. "type": "library",
  8694. "extra": {
  8695. "branch-alias": {
  8696. "dev-develop": "0.9.x-dev"
  8697. }
  8698. },
  8699. "autoload": {
  8700. "files": [
  8701. "src/functions.php"
  8702. ],
  8703. "psr-4": {
  8704. "Psy\\": "src/"
  8705. }
  8706. },
  8707. "notification-url": "https://packagist.org/downloads/",
  8708. "license": [
  8709. "MIT"
  8710. ],
  8711. "authors": [
  8712. {
  8713. "name": "Justin Hileman",
  8714. "email": "justin@justinhileman.info",
  8715. "homepage": "http://justinhileman.com"
  8716. }
  8717. ],
  8718. "description": "An interactive shell for modern PHP.",
  8719. "homepage": "http://psysh.org",
  8720. "keywords": [
  8721. "REPL",
  8722. "console",
  8723. "interactive",
  8724. "shell"
  8725. ],
  8726. "time": "2018-10-13T15:16:03+00:00"
  8727. },
  8728. {
  8729. "name": "ralouphie/getallheaders",
  8730. "version": "2.0.5",
  8731. "source": {
  8732. "type": "git",
  8733. "url": "https://github.com/ralouphie/getallheaders.git",
  8734. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  8735. },
  8736. "dist": {
  8737. "type": "zip",
  8738. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  8739. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  8740. "shasum": ""
  8741. },
  8742. "require": {
  8743. "php": ">=5.3"
  8744. },
  8745. "require-dev": {
  8746. "phpunit/phpunit": "~3.7.0",
  8747. "satooshi/php-coveralls": ">=1.0"
  8748. },
  8749. "type": "library",
  8750. "autoload": {
  8751. "files": [
  8752. "src/getallheaders.php"
  8753. ]
  8754. },
  8755. "notification-url": "https://packagist.org/downloads/",
  8756. "license": [
  8757. "MIT"
  8758. ],
  8759. "authors": [
  8760. {
  8761. "name": "Ralph Khattar",
  8762. "email": "ralph.khattar@gmail.com"
  8763. }
  8764. ],
  8765. "description": "A polyfill for getallheaders.",
  8766. "time": "2016-02-11T07:05:27+00:00"
  8767. },
  8768. {
  8769. "name": "stack/builder",
  8770. "version": "v1.0.5",
  8771. "source": {
  8772. "type": "git",
  8773. "url": "https://github.com/stackphp/builder.git",
  8774. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  8775. },
  8776. "dist": {
  8777. "type": "zip",
  8778. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8779. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8780. "shasum": ""
  8781. },
  8782. "require": {
  8783. "php": ">=5.3.0",
  8784. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  8785. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  8786. },
  8787. "require-dev": {
  8788. "silex/silex": "~1.0"
  8789. },
  8790. "type": "library",
  8791. "extra": {
  8792. "branch-alias": {
  8793. "dev-master": "1.0-dev"
  8794. }
  8795. },
  8796. "autoload": {
  8797. "psr-0": {
  8798. "Stack": "src"
  8799. }
  8800. },
  8801. "notification-url": "https://packagist.org/downloads/",
  8802. "license": [
  8803. "MIT"
  8804. ],
  8805. "authors": [
  8806. {
  8807. "name": "Igor Wiedler",
  8808. "email": "igor@wiedler.ch"
  8809. }
  8810. ],
  8811. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  8812. "keywords": [
  8813. "stack"
  8814. ],
  8815. "time": "2017-11-18T14:57:29+00:00"
  8816. },
  8817. {
  8818. "name": "stecman/symfony-console-completion",
  8819. "version": "0.9.0",
  8820. "source": {
  8821. "type": "git",
  8822. "url": "https://github.com/stecman/symfony-console-completion.git",
  8823. "reference": "bd07a24190541de2828c1d6469a8ddce599d3c5a"
  8824. },
  8825. "dist": {
  8826. "type": "zip",
  8827. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/bd07a24190541de2828c1d6469a8ddce599d3c5a",
  8828. "reference": "bd07a24190541de2828c1d6469a8ddce599d3c5a",
  8829. "shasum": ""
  8830. },
  8831. "require": {
  8832. "php": ">=5.3.2",
  8833. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  8834. },
  8835. "require-dev": {
  8836. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  8837. },
  8838. "type": "library",
  8839. "extra": {
  8840. "branch-alias": {
  8841. "dev-master": "0.6.x-dev"
  8842. }
  8843. },
  8844. "autoload": {
  8845. "psr-4": {
  8846. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  8847. }
  8848. },
  8849. "notification-url": "https://packagist.org/downloads/",
  8850. "license": [
  8851. "MIT"
  8852. ],
  8853. "authors": [
  8854. {
  8855. "name": "Stephen Holdaway",
  8856. "email": "stephen@stecman.co.nz"
  8857. }
  8858. ],
  8859. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  8860. "time": "2019-01-19T21:25:25+00:00"
  8861. },
  8862. {
  8863. "name": "symfony-cmf/routing",
  8864. "version": "1.4.1",
  8865. "source": {
  8866. "type": "git",
  8867. "url": "https://github.com/symfony-cmf/routing.git",
  8868. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  8869. },
  8870. "dist": {
  8871. "type": "zip",
  8872. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8873. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8874. "shasum": ""
  8875. },
  8876. "require": {
  8877. "php": "^5.3.9|^7.0",
  8878. "psr/log": "1.*",
  8879. "symfony/http-kernel": "^2.2|3.*",
  8880. "symfony/routing": "^2.2|3.*"
  8881. },
  8882. "require-dev": {
  8883. "friendsofsymfony/jsrouting-bundle": "^1.1",
  8884. "symfony-cmf/testing": "^1.3",
  8885. "symfony/config": "^2.2|3.*",
  8886. "symfony/dependency-injection": "^2.0.5|3.*",
  8887. "symfony/event-dispatcher": "^2.1|3.*"
  8888. },
  8889. "suggest": {
  8890. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  8891. },
  8892. "type": "library",
  8893. "extra": {
  8894. "branch-alias": {
  8895. "dev-master": "1.4-dev"
  8896. }
  8897. },
  8898. "autoload": {
  8899. "psr-4": {
  8900. "Symfony\\Cmf\\Component\\Routing\\": ""
  8901. }
  8902. },
  8903. "notification-url": "https://packagist.org/downloads/",
  8904. "license": [
  8905. "MIT"
  8906. ],
  8907. "authors": [
  8908. {
  8909. "name": "Symfony CMF Community",
  8910. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  8911. }
  8912. ],
  8913. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  8914. "homepage": "http://cmf.symfony.com",
  8915. "keywords": [
  8916. "database",
  8917. "routing"
  8918. ],
  8919. "time": "2017-05-09T08:10:41+00:00"
  8920. },
  8921. {
  8922. "name": "symfony/class-loader",
  8923. "version": "v3.4.22",
  8924. "source": {
  8925. "type": "git",
  8926. "url": "https://github.com/symfony/class-loader.git",
  8927. "reference": "4459eef5298dedfb69f771186a580062b8516497"
  8928. },
  8929. "dist": {
  8930. "type": "zip",
  8931. "url": "https://api.github.com/repos/symfony/class-loader/zipball/4459eef5298dedfb69f771186a580062b8516497",
  8932. "reference": "4459eef5298dedfb69f771186a580062b8516497",
  8933. "shasum": ""
  8934. },
  8935. "require": {
  8936. "php": "^5.5.9|>=7.0.8"
  8937. },
  8938. "require-dev": {
  8939. "symfony/finder": "~2.8|~3.0|~4.0",
  8940. "symfony/polyfill-apcu": "~1.1"
  8941. },
  8942. "suggest": {
  8943. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  8944. },
  8945. "type": "library",
  8946. "extra": {
  8947. "branch-alias": {
  8948. "dev-master": "3.4-dev"
  8949. }
  8950. },
  8951. "autoload": {
  8952. "psr-4": {
  8953. "Symfony\\Component\\ClassLoader\\": ""
  8954. },
  8955. "exclude-from-classmap": [
  8956. "/Tests/"
  8957. ]
  8958. },
  8959. "notification-url": "https://packagist.org/downloads/",
  8960. "license": [
  8961. "MIT"
  8962. ],
  8963. "authors": [
  8964. {
  8965. "name": "Fabien Potencier",
  8966. "email": "fabien@symfony.com"
  8967. },
  8968. {
  8969. "name": "Symfony Community",
  8970. "homepage": "https://symfony.com/contributors"
  8971. }
  8972. ],
  8973. "description": "Symfony ClassLoader Component",
  8974. "homepage": "https://symfony.com",
  8975. "time": "2019-01-16T09:39:14+00:00"
  8976. },
  8977. {
  8978. "name": "symfony/config",
  8979. "version": "v3.4.22",
  8980. "source": {
  8981. "type": "git",
  8982. "url": "https://github.com/symfony/config.git",
  8983. "reference": "c9bc510c217075d42d4a927e285917d0c2001cf4"
  8984. },
  8985. "dist": {
  8986. "type": "zip",
  8987. "url": "https://api.github.com/repos/symfony/config/zipball/c9bc510c217075d42d4a927e285917d0c2001cf4",
  8988. "reference": "c9bc510c217075d42d4a927e285917d0c2001cf4",
  8989. "shasum": ""
  8990. },
  8991. "require": {
  8992. "php": "^5.5.9|>=7.0.8",
  8993. "symfony/filesystem": "~2.8|~3.0|~4.0",
  8994. "symfony/polyfill-ctype": "~1.8"
  8995. },
  8996. "conflict": {
  8997. "symfony/dependency-injection": "<3.3",
  8998. "symfony/finder": "<3.3"
  8999. },
  9000. "require-dev": {
  9001. "symfony/dependency-injection": "~3.3|~4.0",
  9002. "symfony/event-dispatcher": "~3.3|~4.0",
  9003. "symfony/finder": "~3.3|~4.0",
  9004. "symfony/yaml": "~3.0|~4.0"
  9005. },
  9006. "suggest": {
  9007. "symfony/yaml": "To use the yaml reference dumper"
  9008. },
  9009. "type": "library",
  9010. "extra": {
  9011. "branch-alias": {
  9012. "dev-master": "3.4-dev"
  9013. }
  9014. },
  9015. "autoload": {
  9016. "psr-4": {
  9017. "Symfony\\Component\\Config\\": ""
  9018. },
  9019. "exclude-from-classmap": [
  9020. "/Tests/"
  9021. ]
  9022. },
  9023. "notification-url": "https://packagist.org/downloads/",
  9024. "license": [
  9025. "MIT"
  9026. ],
  9027. "authors": [
  9028. {
  9029. "name": "Fabien Potencier",
  9030. "email": "fabien@symfony.com"
  9031. },
  9032. {
  9033. "name": "Symfony Community",
  9034. "homepage": "https://symfony.com/contributors"
  9035. }
  9036. ],
  9037. "description": "Symfony Config Component",
  9038. "homepage": "https://symfony.com",
  9039. "time": "2019-01-30T11:33:42+00:00"
  9040. },
  9041. {
  9042. "name": "symfony/console",
  9043. "version": "v3.4.22",
  9044. "source": {
  9045. "type": "git",
  9046. "url": "https://github.com/symfony/console.git",
  9047. "reference": "069bf3f0e8f871a2169a06e43d9f3f03f355e9be"
  9048. },
  9049. "dist": {
  9050. "type": "zip",
  9051. "url": "https://api.github.com/repos/symfony/console/zipball/069bf3f0e8f871a2169a06e43d9f3f03f355e9be",
  9052. "reference": "069bf3f0e8f871a2169a06e43d9f3f03f355e9be",
  9053. "shasum": ""
  9054. },
  9055. "require": {
  9056. "php": "^5.5.9|>=7.0.8",
  9057. "symfony/debug": "~2.8|~3.0|~4.0",
  9058. "symfony/polyfill-mbstring": "~1.0"
  9059. },
  9060. "conflict": {
  9061. "symfony/dependency-injection": "<3.4",
  9062. "symfony/process": "<3.3"
  9063. },
  9064. "provide": {
  9065. "psr/log-implementation": "1.0"
  9066. },
  9067. "require-dev": {
  9068. "psr/log": "~1.0",
  9069. "symfony/config": "~3.3|~4.0",
  9070. "symfony/dependency-injection": "~3.4|~4.0",
  9071. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9072. "symfony/lock": "~3.4|~4.0",
  9073. "symfony/process": "~3.3|~4.0"
  9074. },
  9075. "suggest": {
  9076. "psr/log": "For using the console logger",
  9077. "symfony/event-dispatcher": "",
  9078. "symfony/lock": "",
  9079. "symfony/process": ""
  9080. },
  9081. "type": "library",
  9082. "extra": {
  9083. "branch-alias": {
  9084. "dev-master": "3.4-dev"
  9085. }
  9086. },
  9087. "autoload": {
  9088. "psr-4": {
  9089. "Symfony\\Component\\Console\\": ""
  9090. },
  9091. "exclude-from-classmap": [
  9092. "/Tests/"
  9093. ]
  9094. },
  9095. "notification-url": "https://packagist.org/downloads/",
  9096. "license": [
  9097. "MIT"
  9098. ],
  9099. "authors": [
  9100. {
  9101. "name": "Fabien Potencier",
  9102. "email": "fabien@symfony.com"
  9103. },
  9104. {
  9105. "name": "Symfony Community",
  9106. "homepage": "https://symfony.com/contributors"
  9107. }
  9108. ],
  9109. "description": "Symfony Console Component",
  9110. "homepage": "https://symfony.com",
  9111. "time": "2019-01-25T10:42:12+00:00"
  9112. },
  9113. {
  9114. "name": "symfony/css-selector",
  9115. "version": "v3.4.22",
  9116. "source": {
  9117. "type": "git",
  9118. "url": "https://github.com/symfony/css-selector.git",
  9119. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf"
  9120. },
  9121. "dist": {
  9122. "type": "zip",
  9123. "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  9124. "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf",
  9125. "shasum": ""
  9126. },
  9127. "require": {
  9128. "php": "^5.5.9|>=7.0.8"
  9129. },
  9130. "type": "library",
  9131. "extra": {
  9132. "branch-alias": {
  9133. "dev-master": "3.4-dev"
  9134. }
  9135. },
  9136. "autoload": {
  9137. "psr-4": {
  9138. "Symfony\\Component\\CssSelector\\": ""
  9139. },
  9140. "exclude-from-classmap": [
  9141. "/Tests/"
  9142. ]
  9143. },
  9144. "notification-url": "https://packagist.org/downloads/",
  9145. "license": [
  9146. "MIT"
  9147. ],
  9148. "authors": [
  9149. {
  9150. "name": "Jean-François Simon",
  9151. "email": "jeanfrancois.simon@sensiolabs.com"
  9152. },
  9153. {
  9154. "name": "Fabien Potencier",
  9155. "email": "fabien@symfony.com"
  9156. },
  9157. {
  9158. "name": "Symfony Community",
  9159. "homepage": "https://symfony.com/contributors"
  9160. }
  9161. ],
  9162. "description": "Symfony CssSelector Component",
  9163. "homepage": "https://symfony.com",
  9164. "time": "2019-01-16T09:39:14+00:00"
  9165. },
  9166. {
  9167. "name": "symfony/debug",
  9168. "version": "v3.4.22",
  9169. "source": {
  9170. "type": "git",
  9171. "url": "https://github.com/symfony/debug.git",
  9172. "reference": "667a26c4dd6bc75c67f06bc9bcd015bdecc7cbb8"
  9173. },
  9174. "dist": {
  9175. "type": "zip",
  9176. "url": "https://api.github.com/repos/symfony/debug/zipball/667a26c4dd6bc75c67f06bc9bcd015bdecc7cbb8",
  9177. "reference": "667a26c4dd6bc75c67f06bc9bcd015bdecc7cbb8",
  9178. "shasum": ""
  9179. },
  9180. "require": {
  9181. "php": "^5.5.9|>=7.0.8",
  9182. "psr/log": "~1.0"
  9183. },
  9184. "conflict": {
  9185. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  9186. },
  9187. "require-dev": {
  9188. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  9189. },
  9190. "type": "library",
  9191. "extra": {
  9192. "branch-alias": {
  9193. "dev-master": "3.4-dev"
  9194. }
  9195. },
  9196. "autoload": {
  9197. "psr-4": {
  9198. "Symfony\\Component\\Debug\\": ""
  9199. },
  9200. "exclude-from-classmap": [
  9201. "/Tests/"
  9202. ]
  9203. },
  9204. "notification-url": "https://packagist.org/downloads/",
  9205. "license": [
  9206. "MIT"
  9207. ],
  9208. "authors": [
  9209. {
  9210. "name": "Fabien Potencier",
  9211. "email": "fabien@symfony.com"
  9212. },
  9213. {
  9214. "name": "Symfony Community",
  9215. "homepage": "https://symfony.com/contributors"
  9216. }
  9217. ],
  9218. "description": "Symfony Debug Component",
  9219. "homepage": "https://symfony.com",
  9220. "time": "2019-01-25T10:19:25+00:00"
  9221. },
  9222. {
  9223. "name": "symfony/dependency-injection",
  9224. "version": "v3.4.22",
  9225. "source": {
  9226. "type": "git",
  9227. "url": "https://github.com/symfony/dependency-injection.git",
  9228. "reference": "b514f5b765cf3e4a56e9d8ebacf14b117f7a0ee1"
  9229. },
  9230. "dist": {
  9231. "type": "zip",
  9232. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/b514f5b765cf3e4a56e9d8ebacf14b117f7a0ee1",
  9233. "reference": "b514f5b765cf3e4a56e9d8ebacf14b117f7a0ee1",
  9234. "shasum": ""
  9235. },
  9236. "require": {
  9237. "php": "^5.5.9|>=7.0.8",
  9238. "psr/container": "^1.0"
  9239. },
  9240. "conflict": {
  9241. "symfony/config": "<3.3.7",
  9242. "symfony/finder": "<3.3",
  9243. "symfony/proxy-manager-bridge": "<3.4",
  9244. "symfony/yaml": "<3.4"
  9245. },
  9246. "provide": {
  9247. "psr/container-implementation": "1.0"
  9248. },
  9249. "require-dev": {
  9250. "symfony/config": "~3.3|~4.0",
  9251. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9252. "symfony/yaml": "~3.4|~4.0"
  9253. },
  9254. "suggest": {
  9255. "symfony/config": "",
  9256. "symfony/expression-language": "For using expressions in service container configuration",
  9257. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9258. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9259. "symfony/yaml": ""
  9260. },
  9261. "type": "library",
  9262. "extra": {
  9263. "branch-alias": {
  9264. "dev-master": "3.4-dev"
  9265. }
  9266. },
  9267. "autoload": {
  9268. "psr-4": {
  9269. "Symfony\\Component\\DependencyInjection\\": ""
  9270. },
  9271. "exclude-from-classmap": [
  9272. "/Tests/"
  9273. ]
  9274. },
  9275. "notification-url": "https://packagist.org/downloads/",
  9276. "license": [
  9277. "MIT"
  9278. ],
  9279. "authors": [
  9280. {
  9281. "name": "Fabien Potencier",
  9282. "email": "fabien@symfony.com"
  9283. },
  9284. {
  9285. "name": "Symfony Community",
  9286. "homepage": "https://symfony.com/contributors"
  9287. }
  9288. ],
  9289. "description": "Symfony DependencyInjection Component",
  9290. "homepage": "https://symfony.com",
  9291. "time": "2019-01-30T17:48:51+00:00"
  9292. },
  9293. {
  9294. "name": "symfony/dom-crawler",
  9295. "version": "v3.4.22",
  9296. "source": {
  9297. "type": "git",
  9298. "url": "https://github.com/symfony/dom-crawler.git",
  9299. "reference": "32cb577c07bd900ee883a9d4b55d4098aa02e422"
  9300. },
  9301. "dist": {
  9302. "type": "zip",
  9303. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/32cb577c07bd900ee883a9d4b55d4098aa02e422",
  9304. "reference": "32cb577c07bd900ee883a9d4b55d4098aa02e422",
  9305. "shasum": ""
  9306. },
  9307. "require": {
  9308. "php": "^5.5.9|>=7.0.8",
  9309. "symfony/polyfill-ctype": "~1.8",
  9310. "symfony/polyfill-mbstring": "~1.0"
  9311. },
  9312. "require-dev": {
  9313. "symfony/css-selector": "~2.8|~3.0|~4.0"
  9314. },
  9315. "suggest": {
  9316. "symfony/css-selector": ""
  9317. },
  9318. "type": "library",
  9319. "extra": {
  9320. "branch-alias": {
  9321. "dev-master": "3.4-dev"
  9322. }
  9323. },
  9324. "autoload": {
  9325. "psr-4": {
  9326. "Symfony\\Component\\DomCrawler\\": ""
  9327. },
  9328. "exclude-from-classmap": [
  9329. "/Tests/"
  9330. ]
  9331. },
  9332. "notification-url": "https://packagist.org/downloads/",
  9333. "license": [
  9334. "MIT"
  9335. ],
  9336. "authors": [
  9337. {
  9338. "name": "Fabien Potencier",
  9339. "email": "fabien@symfony.com"
  9340. },
  9341. {
  9342. "name": "Symfony Community",
  9343. "homepage": "https://symfony.com/contributors"
  9344. }
  9345. ],
  9346. "description": "Symfony DomCrawler Component",
  9347. "homepage": "https://symfony.com",
  9348. "time": "2019-01-16T13:27:11+00:00"
  9349. },
  9350. {
  9351. "name": "symfony/event-dispatcher",
  9352. "version": "v3.4.22",
  9353. "source": {
  9354. "type": "git",
  9355. "url": "https://github.com/symfony/event-dispatcher.git",
  9356. "reference": "ed5be1663fa66623b3a7004d5d51a14c4045399b"
  9357. },
  9358. "dist": {
  9359. "type": "zip",
  9360. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ed5be1663fa66623b3a7004d5d51a14c4045399b",
  9361. "reference": "ed5be1663fa66623b3a7004d5d51a14c4045399b",
  9362. "shasum": ""
  9363. },
  9364. "require": {
  9365. "php": "^5.5.9|>=7.0.8"
  9366. },
  9367. "conflict": {
  9368. "symfony/dependency-injection": "<3.3"
  9369. },
  9370. "require-dev": {
  9371. "psr/log": "~1.0",
  9372. "symfony/config": "~2.8|~3.0|~4.0",
  9373. "symfony/dependency-injection": "~3.3|~4.0",
  9374. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9375. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  9376. },
  9377. "suggest": {
  9378. "symfony/dependency-injection": "",
  9379. "symfony/http-kernel": ""
  9380. },
  9381. "type": "library",
  9382. "extra": {
  9383. "branch-alias": {
  9384. "dev-master": "3.4-dev"
  9385. }
  9386. },
  9387. "autoload": {
  9388. "psr-4": {
  9389. "Symfony\\Component\\EventDispatcher\\": ""
  9390. },
  9391. "exclude-from-classmap": [
  9392. "/Tests/"
  9393. ]
  9394. },
  9395. "notification-url": "https://packagist.org/downloads/",
  9396. "license": [
  9397. "MIT"
  9398. ],
  9399. "authors": [
  9400. {
  9401. "name": "Fabien Potencier",
  9402. "email": "fabien@symfony.com"
  9403. },
  9404. {
  9405. "name": "Symfony Community",
  9406. "homepage": "https://symfony.com/contributors"
  9407. }
  9408. ],
  9409. "description": "Symfony EventDispatcher Component",
  9410. "homepage": "https://symfony.com",
  9411. "time": "2019-01-16T13:27:11+00:00"
  9412. },
  9413. {
  9414. "name": "symfony/filesystem",
  9415. "version": "v3.4.22",
  9416. "source": {
  9417. "type": "git",
  9418. "url": "https://github.com/symfony/filesystem.git",
  9419. "reference": "b52454ec66fe5082b7a66a491339d1f1da9a5a0d"
  9420. },
  9421. "dist": {
  9422. "type": "zip",
  9423. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b52454ec66fe5082b7a66a491339d1f1da9a5a0d",
  9424. "reference": "b52454ec66fe5082b7a66a491339d1f1da9a5a0d",
  9425. "shasum": ""
  9426. },
  9427. "require": {
  9428. "php": "^5.5.9|>=7.0.8",
  9429. "symfony/polyfill-ctype": "~1.8"
  9430. },
  9431. "type": "library",
  9432. "extra": {
  9433. "branch-alias": {
  9434. "dev-master": "3.4-dev"
  9435. }
  9436. },
  9437. "autoload": {
  9438. "psr-4": {
  9439. "Symfony\\Component\\Filesystem\\": ""
  9440. },
  9441. "exclude-from-classmap": [
  9442. "/Tests/"
  9443. ]
  9444. },
  9445. "notification-url": "https://packagist.org/downloads/",
  9446. "license": [
  9447. "MIT"
  9448. ],
  9449. "authors": [
  9450. {
  9451. "name": "Fabien Potencier",
  9452. "email": "fabien@symfony.com"
  9453. },
  9454. {
  9455. "name": "Symfony Community",
  9456. "homepage": "https://symfony.com/contributors"
  9457. }
  9458. ],
  9459. "description": "Symfony Filesystem Component",
  9460. "homepage": "https://symfony.com",
  9461. "time": "2019-01-16T13:27:11+00:00"
  9462. },
  9463. {
  9464. "name": "symfony/finder",
  9465. "version": "v3.4.22",
  9466. "source": {
  9467. "type": "git",
  9468. "url": "https://github.com/symfony/finder.git",
  9469. "reference": "7c0c627220308928e958a87c293108e5891cde1d"
  9470. },
  9471. "dist": {
  9472. "type": "zip",
  9473. "url": "https://api.github.com/repos/symfony/finder/zipball/7c0c627220308928e958a87c293108e5891cde1d",
  9474. "reference": "7c0c627220308928e958a87c293108e5891cde1d",
  9475. "shasum": ""
  9476. },
  9477. "require": {
  9478. "php": "^5.5.9|>=7.0.8"
  9479. },
  9480. "type": "library",
  9481. "extra": {
  9482. "branch-alias": {
  9483. "dev-master": "3.4-dev"
  9484. }
  9485. },
  9486. "autoload": {
  9487. "psr-4": {
  9488. "Symfony\\Component\\Finder\\": ""
  9489. },
  9490. "exclude-from-classmap": [
  9491. "/Tests/"
  9492. ]
  9493. },
  9494. "notification-url": "https://packagist.org/downloads/",
  9495. "license": [
  9496. "MIT"
  9497. ],
  9498. "authors": [
  9499. {
  9500. "name": "Fabien Potencier",
  9501. "email": "fabien@symfony.com"
  9502. },
  9503. {
  9504. "name": "Symfony Community",
  9505. "homepage": "https://symfony.com/contributors"
  9506. }
  9507. ],
  9508. "description": "Symfony Finder Component",
  9509. "homepage": "https://symfony.com",
  9510. "time": "2019-01-16T13:43:35+00:00"
  9511. },
  9512. {
  9513. "name": "symfony/http-foundation",
  9514. "version": "v3.4.22",
  9515. "source": {
  9516. "type": "git",
  9517. "url": "https://github.com/symfony/http-foundation.git",
  9518. "reference": "9a81d2330ea255ded06a69b4f7fb7804836e7a05"
  9519. },
  9520. "dist": {
  9521. "type": "zip",
  9522. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9a81d2330ea255ded06a69b4f7fb7804836e7a05",
  9523. "reference": "9a81d2330ea255ded06a69b4f7fb7804836e7a05",
  9524. "shasum": ""
  9525. },
  9526. "require": {
  9527. "php": "^5.5.9|>=7.0.8",
  9528. "symfony/polyfill-mbstring": "~1.1",
  9529. "symfony/polyfill-php70": "~1.6"
  9530. },
  9531. "require-dev": {
  9532. "symfony/expression-language": "~2.8|~3.0|~4.0"
  9533. },
  9534. "type": "library",
  9535. "extra": {
  9536. "branch-alias": {
  9537. "dev-master": "3.4-dev"
  9538. }
  9539. },
  9540. "autoload": {
  9541. "psr-4": {
  9542. "Symfony\\Component\\HttpFoundation\\": ""
  9543. },
  9544. "exclude-from-classmap": [
  9545. "/Tests/"
  9546. ]
  9547. },
  9548. "notification-url": "https://packagist.org/downloads/",
  9549. "license": [
  9550. "MIT"
  9551. ],
  9552. "authors": [
  9553. {
  9554. "name": "Fabien Potencier",
  9555. "email": "fabien@symfony.com"
  9556. },
  9557. {
  9558. "name": "Symfony Community",
  9559. "homepage": "https://symfony.com/contributors"
  9560. }
  9561. ],
  9562. "description": "Symfony HttpFoundation Component",
  9563. "homepage": "https://symfony.com",
  9564. "time": "2019-01-27T09:04:14+00:00"
  9565. },
  9566. {
  9567. "name": "symfony/http-kernel",
  9568. "version": "v3.4.22",
  9569. "source": {
  9570. "type": "git",
  9571. "url": "https://github.com/symfony/http-kernel.git",
  9572. "reference": "dc6bf17684b7120f7bf74fae85c9155506041002"
  9573. },
  9574. "dist": {
  9575. "type": "zip",
  9576. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/dc6bf17684b7120f7bf74fae85c9155506041002",
  9577. "reference": "dc6bf17684b7120f7bf74fae85c9155506041002",
  9578. "shasum": ""
  9579. },
  9580. "require": {
  9581. "php": "^5.5.9|>=7.0.8",
  9582. "psr/log": "~1.0",
  9583. "symfony/debug": "^3.3.3|~4.0",
  9584. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9585. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  9586. "symfony/polyfill-ctype": "~1.8"
  9587. },
  9588. "conflict": {
  9589. "symfony/config": "<2.8",
  9590. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  9591. "symfony/var-dumper": "<3.3",
  9592. "twig/twig": "<1.34|<2.4,>=2"
  9593. },
  9594. "provide": {
  9595. "psr/log-implementation": "1.0"
  9596. },
  9597. "require-dev": {
  9598. "psr/cache": "~1.0",
  9599. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  9600. "symfony/class-loader": "~2.8|~3.0",
  9601. "symfony/config": "~2.8|~3.0|~4.0",
  9602. "symfony/console": "~2.8|~3.0|~4.0",
  9603. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9604. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  9605. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  9606. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9607. "symfony/finder": "~2.8|~3.0|~4.0",
  9608. "symfony/process": "~2.8|~3.0|~4.0",
  9609. "symfony/routing": "~3.4|~4.0",
  9610. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  9611. "symfony/templating": "~2.8|~3.0|~4.0",
  9612. "symfony/translation": "~2.8|~3.0|~4.0",
  9613. "symfony/var-dumper": "~3.3|~4.0"
  9614. },
  9615. "suggest": {
  9616. "symfony/browser-kit": "",
  9617. "symfony/config": "",
  9618. "symfony/console": "",
  9619. "symfony/dependency-injection": "",
  9620. "symfony/finder": "",
  9621. "symfony/var-dumper": ""
  9622. },
  9623. "type": "library",
  9624. "extra": {
  9625. "branch-alias": {
  9626. "dev-master": "3.4-dev"
  9627. }
  9628. },
  9629. "autoload": {
  9630. "psr-4": {
  9631. "Symfony\\Component\\HttpKernel\\": ""
  9632. },
  9633. "exclude-from-classmap": [
  9634. "/Tests/"
  9635. ]
  9636. },
  9637. "notification-url": "https://packagist.org/downloads/",
  9638. "license": [
  9639. "MIT"
  9640. ],
  9641. "authors": [
  9642. {
  9643. "name": "Fabien Potencier",
  9644. "email": "fabien@symfony.com"
  9645. },
  9646. {
  9647. "name": "Symfony Community",
  9648. "homepage": "https://symfony.com/contributors"
  9649. }
  9650. ],
  9651. "description": "Symfony HttpKernel Component",
  9652. "homepage": "https://symfony.com",
  9653. "time": "2019-02-03T12:22:50+00:00"
  9654. },
  9655. {
  9656. "name": "symfony/polyfill-ctype",
  9657. "version": "v1.10.0",
  9658. "source": {
  9659. "type": "git",
  9660. "url": "https://github.com/symfony/polyfill-ctype.git",
  9661. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
  9662. },
  9663. "dist": {
  9664. "type": "zip",
  9665. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e3d826245268269cd66f8326bd8bc066687b4a19",
  9666. "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
  9667. "shasum": ""
  9668. },
  9669. "require": {
  9670. "php": ">=5.3.3"
  9671. },
  9672. "suggest": {
  9673. "ext-ctype": "For best performance"
  9674. },
  9675. "type": "library",
  9676. "extra": {
  9677. "branch-alias": {
  9678. "dev-master": "1.9-dev"
  9679. }
  9680. },
  9681. "autoload": {
  9682. "psr-4": {
  9683. "Symfony\\Polyfill\\Ctype\\": ""
  9684. },
  9685. "files": [
  9686. "bootstrap.php"
  9687. ]
  9688. },
  9689. "notification-url": "https://packagist.org/downloads/",
  9690. "license": [
  9691. "MIT"
  9692. ],
  9693. "authors": [
  9694. {
  9695. "name": "Symfony Community",
  9696. "homepage": "https://symfony.com/contributors"
  9697. },
  9698. {
  9699. "name": "Gert de Pagter",
  9700. "email": "backendtea@gmail.com"
  9701. }
  9702. ],
  9703. "description": "Symfony polyfill for ctype functions",
  9704. "homepage": "https://symfony.com",
  9705. "keywords": [
  9706. "compatibility",
  9707. "ctype",
  9708. "polyfill",
  9709. "portable"
  9710. ],
  9711. "time": "2018-08-06T14:22:27+00:00"
  9712. },
  9713. {
  9714. "name": "symfony/polyfill-iconv",
  9715. "version": "v1.10.0",
  9716. "source": {
  9717. "type": "git",
  9718. "url": "https://github.com/symfony/polyfill-iconv.git",
  9719. "reference": "97001cfc283484c9691769f51cdf25259037eba2"
  9720. },
  9721. "dist": {
  9722. "type": "zip",
  9723. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/97001cfc283484c9691769f51cdf25259037eba2",
  9724. "reference": "97001cfc283484c9691769f51cdf25259037eba2",
  9725. "shasum": ""
  9726. },
  9727. "require": {
  9728. "php": ">=5.3.3"
  9729. },
  9730. "suggest": {
  9731. "ext-iconv": "For best performance"
  9732. },
  9733. "type": "library",
  9734. "extra": {
  9735. "branch-alias": {
  9736. "dev-master": "1.9-dev"
  9737. }
  9738. },
  9739. "autoload": {
  9740. "psr-4": {
  9741. "Symfony\\Polyfill\\Iconv\\": ""
  9742. },
  9743. "files": [
  9744. "bootstrap.php"
  9745. ]
  9746. },
  9747. "notification-url": "https://packagist.org/downloads/",
  9748. "license": [
  9749. "MIT"
  9750. ],
  9751. "authors": [
  9752. {
  9753. "name": "Nicolas Grekas",
  9754. "email": "p@tchwork.com"
  9755. },
  9756. {
  9757. "name": "Symfony Community",
  9758. "homepage": "https://symfony.com/contributors"
  9759. }
  9760. ],
  9761. "description": "Symfony polyfill for the Iconv extension",
  9762. "homepage": "https://symfony.com",
  9763. "keywords": [
  9764. "compatibility",
  9765. "iconv",
  9766. "polyfill",
  9767. "portable",
  9768. "shim"
  9769. ],
  9770. "time": "2018-09-21T06:26:08+00:00"
  9771. },
  9772. {
  9773. "name": "symfony/polyfill-mbstring",
  9774. "version": "v1.10.0",
  9775. "source": {
  9776. "type": "git",
  9777. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9778. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
  9779. },
  9780. "dist": {
  9781. "type": "zip",
  9782. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
  9783. "reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
  9784. "shasum": ""
  9785. },
  9786. "require": {
  9787. "php": ">=5.3.3"
  9788. },
  9789. "suggest": {
  9790. "ext-mbstring": "For best performance"
  9791. },
  9792. "type": "library",
  9793. "extra": {
  9794. "branch-alias": {
  9795. "dev-master": "1.9-dev"
  9796. }
  9797. },
  9798. "autoload": {
  9799. "psr-4": {
  9800. "Symfony\\Polyfill\\Mbstring\\": ""
  9801. },
  9802. "files": [
  9803. "bootstrap.php"
  9804. ]
  9805. },
  9806. "notification-url": "https://packagist.org/downloads/",
  9807. "license": [
  9808. "MIT"
  9809. ],
  9810. "authors": [
  9811. {
  9812. "name": "Nicolas Grekas",
  9813. "email": "p@tchwork.com"
  9814. },
  9815. {
  9816. "name": "Symfony Community",
  9817. "homepage": "https://symfony.com/contributors"
  9818. }
  9819. ],
  9820. "description": "Symfony polyfill for the Mbstring extension",
  9821. "homepage": "https://symfony.com",
  9822. "keywords": [
  9823. "compatibility",
  9824. "mbstring",
  9825. "polyfill",
  9826. "portable",
  9827. "shim"
  9828. ],
  9829. "time": "2018-09-21T13:07:52+00:00"
  9830. },
  9831. {
  9832. "name": "symfony/polyfill-php70",
  9833. "version": "v1.10.0",
  9834. "source": {
  9835. "type": "git",
  9836. "url": "https://github.com/symfony/polyfill-php70.git",
  9837. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224"
  9838. },
  9839. "dist": {
  9840. "type": "zip",
  9841. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/6b88000cdd431cd2e940caa2cb569201f3f84224",
  9842. "reference": "6b88000cdd431cd2e940caa2cb569201f3f84224",
  9843. "shasum": ""
  9844. },
  9845. "require": {
  9846. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  9847. "php": ">=5.3.3"
  9848. },
  9849. "type": "library",
  9850. "extra": {
  9851. "branch-alias": {
  9852. "dev-master": "1.9-dev"
  9853. }
  9854. },
  9855. "autoload": {
  9856. "psr-4": {
  9857. "Symfony\\Polyfill\\Php70\\": ""
  9858. },
  9859. "files": [
  9860. "bootstrap.php"
  9861. ],
  9862. "classmap": [
  9863. "Resources/stubs"
  9864. ]
  9865. },
  9866. "notification-url": "https://packagist.org/downloads/",
  9867. "license": [
  9868. "MIT"
  9869. ],
  9870. "authors": [
  9871. {
  9872. "name": "Nicolas Grekas",
  9873. "email": "p@tchwork.com"
  9874. },
  9875. {
  9876. "name": "Symfony Community",
  9877. "homepage": "https://symfony.com/contributors"
  9878. }
  9879. ],
  9880. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9881. "homepage": "https://symfony.com",
  9882. "keywords": [
  9883. "compatibility",
  9884. "polyfill",
  9885. "portable",
  9886. "shim"
  9887. ],
  9888. "time": "2018-09-21T06:26:08+00:00"
  9889. },
  9890. {
  9891. "name": "symfony/process",
  9892. "version": "v3.4.22",
  9893. "source": {
  9894. "type": "git",
  9895. "url": "https://github.com/symfony/process.git",
  9896. "reference": "009f8dda80930e89e8344a4e310b08f9ff07dd2e"
  9897. },
  9898. "dist": {
  9899. "type": "zip",
  9900. "url": "https://api.github.com/repos/symfony/process/zipball/009f8dda80930e89e8344a4e310b08f9ff07dd2e",
  9901. "reference": "009f8dda80930e89e8344a4e310b08f9ff07dd2e",
  9902. "shasum": ""
  9903. },
  9904. "require": {
  9905. "php": "^5.5.9|>=7.0.8"
  9906. },
  9907. "type": "library",
  9908. "extra": {
  9909. "branch-alias": {
  9910. "dev-master": "3.4-dev"
  9911. }
  9912. },
  9913. "autoload": {
  9914. "psr-4": {
  9915. "Symfony\\Component\\Process\\": ""
  9916. },
  9917. "exclude-from-classmap": [
  9918. "/Tests/"
  9919. ]
  9920. },
  9921. "notification-url": "https://packagist.org/downloads/",
  9922. "license": [
  9923. "MIT"
  9924. ],
  9925. "authors": [
  9926. {
  9927. "name": "Fabien Potencier",
  9928. "email": "fabien@symfony.com"
  9929. },
  9930. {
  9931. "name": "Symfony Community",
  9932. "homepage": "https://symfony.com/contributors"
  9933. }
  9934. ],
  9935. "description": "Symfony Process Component",
  9936. "homepage": "https://symfony.com",
  9937. "time": "2019-01-16T13:27:11+00:00"
  9938. },
  9939. {
  9940. "name": "symfony/psr-http-message-bridge",
  9941. "version": "v1.1.0",
  9942. "source": {
  9943. "type": "git",
  9944. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9945. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
  9946. },
  9947. "dist": {
  9948. "type": "zip",
  9949. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9950. "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
  9951. "shasum": ""
  9952. },
  9953. "require": {
  9954. "php": "^5.3.3 || ^7.0",
  9955. "psr/http-message": "^1.0",
  9956. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9957. },
  9958. "require-dev": {
  9959. "symfony/phpunit-bridge": "^3.4 || 4.0"
  9960. },
  9961. "suggest": {
  9962. "psr/http-factory-implementation": "To use the PSR-17 factory",
  9963. "psr/http-message-implementation": "To use the HttpFoundation factory",
  9964. "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
  9965. },
  9966. "type": "symfony-bridge",
  9967. "extra": {
  9968. "branch-alias": {
  9969. "dev-master": "1.1-dev"
  9970. }
  9971. },
  9972. "autoload": {
  9973. "psr-4": {
  9974. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9975. }
  9976. },
  9977. "notification-url": "https://packagist.org/downloads/",
  9978. "license": [
  9979. "MIT"
  9980. ],
  9981. "authors": [
  9982. {
  9983. "name": "Symfony Community",
  9984. "homepage": "http://symfony.com/contributors"
  9985. },
  9986. {
  9987. "name": "Fabien Potencier",
  9988. "email": "fabien@symfony.com"
  9989. }
  9990. ],
  9991. "description": "PSR HTTP message bridge",
  9992. "homepage": "http://symfony.com",
  9993. "keywords": [
  9994. "http",
  9995. "http-message",
  9996. "psr-7"
  9997. ],
  9998. "time": "2018-08-30T16:28:28+00:00"
  9999. },
  10000. {
  10001. "name": "symfony/routing",
  10002. "version": "v3.4.22",
  10003. "source": {
  10004. "type": "git",
  10005. "url": "https://github.com/symfony/routing.git",
  10006. "reference": "62f0b8d8cd2cd359c3caa5a9f5253a4a6d480646"
  10007. },
  10008. "dist": {
  10009. "type": "zip",
  10010. "url": "https://api.github.com/repos/symfony/routing/zipball/62f0b8d8cd2cd359c3caa5a9f5253a4a6d480646",
  10011. "reference": "62f0b8d8cd2cd359c3caa5a9f5253a4a6d480646",
  10012. "shasum": ""
  10013. },
  10014. "require": {
  10015. "php": "^5.5.9|>=7.0.8"
  10016. },
  10017. "conflict": {
  10018. "symfony/config": "<3.3.1",
  10019. "symfony/dependency-injection": "<3.3",
  10020. "symfony/yaml": "<3.4"
  10021. },
  10022. "require-dev": {
  10023. "doctrine/annotations": "~1.0",
  10024. "psr/log": "~1.0",
  10025. "symfony/config": "^3.3.1|~4.0",
  10026. "symfony/dependency-injection": "~3.3|~4.0",
  10027. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10028. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10029. "symfony/yaml": "~3.4|~4.0"
  10030. },
  10031. "suggest": {
  10032. "doctrine/annotations": "For using the annotation loader",
  10033. "symfony/config": "For using the all-in-one router or any loader",
  10034. "symfony/dependency-injection": "For loading routes from a service",
  10035. "symfony/expression-language": "For using expression matching",
  10036. "symfony/http-foundation": "For using a Symfony Request object",
  10037. "symfony/yaml": "For using the YAML loader"
  10038. },
  10039. "type": "library",
  10040. "extra": {
  10041. "branch-alias": {
  10042. "dev-master": "3.4-dev"
  10043. }
  10044. },
  10045. "autoload": {
  10046. "psr-4": {
  10047. "Symfony\\Component\\Routing\\": ""
  10048. },
  10049. "exclude-from-classmap": [
  10050. "/Tests/"
  10051. ]
  10052. },
  10053. "notification-url": "https://packagist.org/downloads/",
  10054. "license": [
  10055. "MIT"
  10056. ],
  10057. "authors": [
  10058. {
  10059. "name": "Fabien Potencier",
  10060. "email": "fabien@symfony.com"
  10061. },
  10062. {
  10063. "name": "Symfony Community",
  10064. "homepage": "https://symfony.com/contributors"
  10065. }
  10066. ],
  10067. "description": "Symfony Routing Component",
  10068. "homepage": "https://symfony.com",
  10069. "keywords": [
  10070. "router",
  10071. "routing",
  10072. "uri",
  10073. "url"
  10074. ],
  10075. "time": "2019-01-29T08:47:12+00:00"
  10076. },
  10077. {
  10078. "name": "symfony/serializer",
  10079. "version": "v3.4.22",
  10080. "source": {
  10081. "type": "git",
  10082. "url": "https://github.com/symfony/serializer.git",
  10083. "reference": "a897373b86489ddecacc665d15ab32983a519907"
  10084. },
  10085. "dist": {
  10086. "type": "zip",
  10087. "url": "https://api.github.com/repos/symfony/serializer/zipball/a897373b86489ddecacc665d15ab32983a519907",
  10088. "reference": "a897373b86489ddecacc665d15ab32983a519907",
  10089. "shasum": ""
  10090. },
  10091. "require": {
  10092. "php": "^5.5.9|>=7.0.8",
  10093. "symfony/polyfill-ctype": "~1.8"
  10094. },
  10095. "conflict": {
  10096. "phpdocumentor/type-resolver": "<0.2.1",
  10097. "symfony/dependency-injection": "<3.2",
  10098. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  10099. "symfony/property-info": "<3.1",
  10100. "symfony/yaml": "<3.4"
  10101. },
  10102. "require-dev": {
  10103. "doctrine/annotations": "~1.0",
  10104. "doctrine/cache": "~1.0",
  10105. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  10106. "symfony/cache": "~3.1|~4.0",
  10107. "symfony/config": "~2.8|~3.0|~4.0",
  10108. "symfony/dependency-injection": "~3.2|~4.0",
  10109. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10110. "symfony/property-access": "~2.8|~3.0|~4.0",
  10111. "symfony/property-info": "~3.1|~4.0",
  10112. "symfony/yaml": "~3.4|~4.0"
  10113. },
  10114. "suggest": {
  10115. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10116. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10117. "psr/cache-implementation": "For using the metadata cache.",
  10118. "symfony/config": "For using the XML mapping loader.",
  10119. "symfony/http-foundation": "To use the DataUriNormalizer.",
  10120. "symfony/property-access": "For using the ObjectNormalizer.",
  10121. "symfony/property-info": "To deserialize relations.",
  10122. "symfony/yaml": "For using the default YAML mapping loader."
  10123. },
  10124. "type": "library",
  10125. "extra": {
  10126. "branch-alias": {
  10127. "dev-master": "3.4-dev"
  10128. }
  10129. },
  10130. "autoload": {
  10131. "psr-4": {
  10132. "Symfony\\Component\\Serializer\\": ""
  10133. },
  10134. "exclude-from-classmap": [
  10135. "/Tests/"
  10136. ]
  10137. },
  10138. "notification-url": "https://packagist.org/downloads/",
  10139. "license": [
  10140. "MIT"
  10141. ],
  10142. "authors": [
  10143. {
  10144. "name": "Fabien Potencier",
  10145. "email": "fabien@symfony.com"
  10146. },
  10147. {
  10148. "name": "Symfony Community",
  10149. "homepage": "https://symfony.com/contributors"
  10150. }
  10151. ],
  10152. "description": "Symfony Serializer Component",
  10153. "homepage": "https://symfony.com",
  10154. "time": "2019-01-26T19:55:54+00:00"
  10155. },
  10156. {
  10157. "name": "symfony/translation",
  10158. "version": "v3.4.22",
  10159. "source": {
  10160. "type": "git",
  10161. "url": "https://github.com/symfony/translation.git",
  10162. "reference": "81cfcd6935cb7505640153576c1f9155b2a179c1"
  10163. },
  10164. "dist": {
  10165. "type": "zip",
  10166. "url": "https://api.github.com/repos/symfony/translation/zipball/81cfcd6935cb7505640153576c1f9155b2a179c1",
  10167. "reference": "81cfcd6935cb7505640153576c1f9155b2a179c1",
  10168. "shasum": ""
  10169. },
  10170. "require": {
  10171. "php": "^5.5.9|>=7.0.8",
  10172. "symfony/polyfill-mbstring": "~1.0"
  10173. },
  10174. "conflict": {
  10175. "symfony/config": "<2.8",
  10176. "symfony/dependency-injection": "<3.4",
  10177. "symfony/yaml": "<3.4"
  10178. },
  10179. "require-dev": {
  10180. "psr/log": "~1.0",
  10181. "symfony/config": "~2.8|~3.0|~4.0",
  10182. "symfony/dependency-injection": "~3.4|~4.0",
  10183. "symfony/finder": "~2.8|~3.0|~4.0",
  10184. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10185. "symfony/yaml": "~3.4|~4.0"
  10186. },
  10187. "suggest": {
  10188. "psr/log-implementation": "To use logging capability in translator",
  10189. "symfony/config": "",
  10190. "symfony/yaml": ""
  10191. },
  10192. "type": "library",
  10193. "extra": {
  10194. "branch-alias": {
  10195. "dev-master": "3.4-dev"
  10196. }
  10197. },
  10198. "autoload": {
  10199. "psr-4": {
  10200. "Symfony\\Component\\Translation\\": ""
  10201. },
  10202. "exclude-from-classmap": [
  10203. "/Tests/"
  10204. ]
  10205. },
  10206. "notification-url": "https://packagist.org/downloads/",
  10207. "license": [
  10208. "MIT"
  10209. ],
  10210. "authors": [
  10211. {
  10212. "name": "Fabien Potencier",
  10213. "email": "fabien@symfony.com"
  10214. },
  10215. {
  10216. "name": "Symfony Community",
  10217. "homepage": "https://symfony.com/contributors"
  10218. }
  10219. ],
  10220. "description": "Symfony Translation Component",
  10221. "homepage": "https://symfony.com",
  10222. "time": "2019-01-25T10:00:44+00:00"
  10223. },
  10224. {
  10225. "name": "symfony/validator",
  10226. "version": "v3.4.22",
  10227. "source": {
  10228. "type": "git",
  10229. "url": "https://github.com/symfony/validator.git",
  10230. "reference": "06af494d8634df6ad9655ec7d80cb61983253912"
  10231. },
  10232. "dist": {
  10233. "type": "zip",
  10234. "url": "https://api.github.com/repos/symfony/validator/zipball/06af494d8634df6ad9655ec7d80cb61983253912",
  10235. "reference": "06af494d8634df6ad9655ec7d80cb61983253912",
  10236. "shasum": ""
  10237. },
  10238. "require": {
  10239. "php": "^5.5.9|>=7.0.8",
  10240. "symfony/polyfill-ctype": "~1.8",
  10241. "symfony/polyfill-mbstring": "~1.0",
  10242. "symfony/translation": "~2.8|~3.0|~4.0"
  10243. },
  10244. "conflict": {
  10245. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10246. "symfony/dependency-injection": "<3.3",
  10247. "symfony/http-kernel": "<3.3.5",
  10248. "symfony/yaml": "<3.4"
  10249. },
  10250. "require-dev": {
  10251. "doctrine/annotations": "~1.0",
  10252. "doctrine/cache": "~1.0",
  10253. "egulias/email-validator": "^1.2.8|~2.0",
  10254. "symfony/cache": "~3.1|~4.0",
  10255. "symfony/config": "~2.8|~3.0|~4.0",
  10256. "symfony/dependency-injection": "~3.3|~4.0",
  10257. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10258. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10259. "symfony/http-kernel": "^3.3.5|~4.0",
  10260. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10261. "symfony/property-access": "~2.8|~3.0|~4.0",
  10262. "symfony/var-dumper": "~3.3|~4.0",
  10263. "symfony/yaml": "~3.4|~4.0"
  10264. },
  10265. "suggest": {
  10266. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10267. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10268. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10269. "psr/cache-implementation": "For using the metadata cache.",
  10270. "symfony/config": "",
  10271. "symfony/expression-language": "For using the Expression validator",
  10272. "symfony/http-foundation": "",
  10273. "symfony/intl": "",
  10274. "symfony/property-access": "For accessing properties within comparison constraints",
  10275. "symfony/yaml": ""
  10276. },
  10277. "type": "library",
  10278. "extra": {
  10279. "branch-alias": {
  10280. "dev-master": "3.4-dev"
  10281. }
  10282. },
  10283. "autoload": {
  10284. "psr-4": {
  10285. "Symfony\\Component\\Validator\\": ""
  10286. },
  10287. "exclude-from-classmap": [
  10288. "/Tests/"
  10289. ]
  10290. },
  10291. "notification-url": "https://packagist.org/downloads/",
  10292. "license": [
  10293. "MIT"
  10294. ],
  10295. "authors": [
  10296. {
  10297. "name": "Fabien Potencier",
  10298. "email": "fabien@symfony.com"
  10299. },
  10300. {
  10301. "name": "Symfony Community",
  10302. "homepage": "https://symfony.com/contributors"
  10303. }
  10304. ],
  10305. "description": "Symfony Validator Component",
  10306. "homepage": "https://symfony.com",
  10307. "time": "2019-01-30T09:03:33+00:00"
  10308. },
  10309. {
  10310. "name": "symfony/var-dumper",
  10311. "version": "v3.4.22",
  10312. "source": {
  10313. "type": "git",
  10314. "url": "https://github.com/symfony/var-dumper.git",
  10315. "reference": "2159335b452d929cbb9921fc4eb7d1bfed32d0be"
  10316. },
  10317. "dist": {
  10318. "type": "zip",
  10319. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2159335b452d929cbb9921fc4eb7d1bfed32d0be",
  10320. "reference": "2159335b452d929cbb9921fc4eb7d1bfed32d0be",
  10321. "shasum": ""
  10322. },
  10323. "require": {
  10324. "php": "^5.5.9|>=7.0.8",
  10325. "symfony/polyfill-mbstring": "~1.0"
  10326. },
  10327. "conflict": {
  10328. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  10329. },
  10330. "require-dev": {
  10331. "ext-iconv": "*",
  10332. "twig/twig": "~1.34|~2.4"
  10333. },
  10334. "suggest": {
  10335. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10336. "ext-intl": "To show region name in time zone dump",
  10337. "ext-symfony_debug": ""
  10338. },
  10339. "type": "library",
  10340. "extra": {
  10341. "branch-alias": {
  10342. "dev-master": "3.4-dev"
  10343. }
  10344. },
  10345. "autoload": {
  10346. "files": [
  10347. "Resources/functions/dump.php"
  10348. ],
  10349. "psr-4": {
  10350. "Symfony\\Component\\VarDumper\\": ""
  10351. },
  10352. "exclude-from-classmap": [
  10353. "/Tests/"
  10354. ]
  10355. },
  10356. "notification-url": "https://packagist.org/downloads/",
  10357. "license": [
  10358. "MIT"
  10359. ],
  10360. "authors": [
  10361. {
  10362. "name": "Nicolas Grekas",
  10363. "email": "p@tchwork.com"
  10364. },
  10365. {
  10366. "name": "Symfony Community",
  10367. "homepage": "https://symfony.com/contributors"
  10368. }
  10369. ],
  10370. "description": "Symfony mechanism for exploring and dumping PHP variables",
  10371. "homepage": "https://symfony.com",
  10372. "keywords": [
  10373. "debug",
  10374. "dump"
  10375. ],
  10376. "time": "2019-01-29T16:19:17+00:00"
  10377. },
  10378. {
  10379. "name": "symfony/yaml",
  10380. "version": "v3.4.22",
  10381. "source": {
  10382. "type": "git",
  10383. "url": "https://github.com/symfony/yaml.git",
  10384. "reference": "ba11776e9e6c15ad5759a07bffb15899bac75c2d"
  10385. },
  10386. "dist": {
  10387. "type": "zip",
  10388. "url": "https://api.github.com/repos/symfony/yaml/zipball/ba11776e9e6c15ad5759a07bffb15899bac75c2d",
  10389. "reference": "ba11776e9e6c15ad5759a07bffb15899bac75c2d",
  10390. "shasum": ""
  10391. },
  10392. "require": {
  10393. "php": "^5.5.9|>=7.0.8",
  10394. "symfony/polyfill-ctype": "~1.8"
  10395. },
  10396. "conflict": {
  10397. "symfony/console": "<3.4"
  10398. },
  10399. "require-dev": {
  10400. "symfony/console": "~3.4|~4.0"
  10401. },
  10402. "suggest": {
  10403. "symfony/console": "For validating YAML files using the lint command"
  10404. },
  10405. "type": "library",
  10406. "extra": {
  10407. "branch-alias": {
  10408. "dev-master": "3.4-dev"
  10409. }
  10410. },
  10411. "autoload": {
  10412. "psr-4": {
  10413. "Symfony\\Component\\Yaml\\": ""
  10414. },
  10415. "exclude-from-classmap": [
  10416. "/Tests/"
  10417. ]
  10418. },
  10419. "notification-url": "https://packagist.org/downloads/",
  10420. "license": [
  10421. "MIT"
  10422. ],
  10423. "authors": [
  10424. {
  10425. "name": "Fabien Potencier",
  10426. "email": "fabien@symfony.com"
  10427. },
  10428. {
  10429. "name": "Symfony Community",
  10430. "homepage": "https://symfony.com/contributors"
  10431. }
  10432. ],
  10433. "description": "Symfony Yaml Component",
  10434. "homepage": "https://symfony.com",
  10435. "time": "2019-01-16T10:59:17+00:00"
  10436. },
  10437. {
  10438. "name": "twig/twig",
  10439. "version": "v1.37.1",
  10440. "source": {
  10441. "type": "git",
  10442. "url": "https://github.com/twigphp/Twig.git",
  10443. "reference": "66be9366c76cbf23e82e7171d47cbfa54a057a62"
  10444. },
  10445. "dist": {
  10446. "type": "zip",
  10447. "url": "https://api.github.com/repos/twigphp/Twig/zipball/66be9366c76cbf23e82e7171d47cbfa54a057a62",
  10448. "reference": "66be9366c76cbf23e82e7171d47cbfa54a057a62",
  10449. "shasum": ""
  10450. },
  10451. "require": {
  10452. "php": ">=5.4.0",
  10453. "symfony/polyfill-ctype": "^1.8"
  10454. },
  10455. "require-dev": {
  10456. "psr/container": "^1.0",
  10457. "symfony/debug": "^2.7",
  10458. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  10459. },
  10460. "type": "library",
  10461. "extra": {
  10462. "branch-alias": {
  10463. "dev-master": "1.37-dev"
  10464. }
  10465. },
  10466. "autoload": {
  10467. "psr-0": {
  10468. "Twig_": "lib/"
  10469. },
  10470. "psr-4": {
  10471. "Twig\\": "src/"
  10472. }
  10473. },
  10474. "notification-url": "https://packagist.org/downloads/",
  10475. "license": [
  10476. "BSD-3-Clause"
  10477. ],
  10478. "authors": [
  10479. {
  10480. "name": "Fabien Potencier",
  10481. "email": "fabien@symfony.com",
  10482. "homepage": "http://fabien.potencier.org",
  10483. "role": "Lead Developer"
  10484. },
  10485. {
  10486. "name": "Armin Ronacher",
  10487. "email": "armin.ronacher@active-4.com",
  10488. "role": "Project Founder"
  10489. },
  10490. {
  10491. "name": "Twig Team",
  10492. "homepage": "https://twig.symfony.com/contributors",
  10493. "role": "Contributors"
  10494. }
  10495. ],
  10496. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10497. "homepage": "https://twig.symfony.com",
  10498. "keywords": [
  10499. "templating"
  10500. ],
  10501. "time": "2019-01-14T14:59:29+00:00"
  10502. },
  10503. {
  10504. "name": "typo3/phar-stream-wrapper",
  10505. "version": "v2.0.1",
  10506. "source": {
  10507. "type": "git",
  10508. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10509. "reference": "0469d9fefa0146ea4299d3b11cfbb76faa7045bf"
  10510. },
  10511. "dist": {
  10512. "type": "zip",
  10513. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/0469d9fefa0146ea4299d3b11cfbb76faa7045bf",
  10514. "reference": "0469d9fefa0146ea4299d3b11cfbb76faa7045bf",
  10515. "shasum": ""
  10516. },
  10517. "require": {
  10518. "php": "^5.3.3|^7.0"
  10519. },
  10520. "require-dev": {
  10521. "phpunit/phpunit": "^4.8.36"
  10522. },
  10523. "type": "library",
  10524. "autoload": {
  10525. "psr-4": {
  10526. "TYPO3\\PharStreamWrapper\\": "src/"
  10527. }
  10528. },
  10529. "notification-url": "https://packagist.org/downloads/",
  10530. "license": [
  10531. "MIT"
  10532. ],
  10533. "description": "Interceptors for PHP's native phar:// stream handling",
  10534. "homepage": "https://typo3.org/",
  10535. "keywords": [
  10536. "phar",
  10537. "php",
  10538. "security",
  10539. "stream-wrapper"
  10540. ],
  10541. "time": "2018-10-18T08:46:28+00:00"
  10542. },
  10543. {
  10544. "name": "vlucas/phpdotenv",
  10545. "version": "v2.6.1",
  10546. "source": {
  10547. "type": "git",
  10548. "url": "https://github.com/vlucas/phpdotenv.git",
  10549. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  10550. },
  10551. "dist": {
  10552. "type": "zip",
  10553. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10554. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10555. "shasum": ""
  10556. },
  10557. "require": {
  10558. "php": ">=5.3.9",
  10559. "symfony/polyfill-ctype": "^1.9"
  10560. },
  10561. "require-dev": {
  10562. "phpunit/phpunit": "^4.8.35 || ^5.0"
  10563. },
  10564. "type": "library",
  10565. "extra": {
  10566. "branch-alias": {
  10567. "dev-master": "2.6-dev"
  10568. }
  10569. },
  10570. "autoload": {
  10571. "psr-4": {
  10572. "Dotenv\\": "src/"
  10573. }
  10574. },
  10575. "notification-url": "https://packagist.org/downloads/",
  10576. "license": [
  10577. "BSD-3-Clause"
  10578. ],
  10579. "authors": [
  10580. {
  10581. "name": "Vance Lucas",
  10582. "email": "vance@vancelucas.com",
  10583. "homepage": "http://www.vancelucas.com"
  10584. }
  10585. ],
  10586. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10587. "keywords": [
  10588. "dotenv",
  10589. "env",
  10590. "environment"
  10591. ],
  10592. "time": "2019-01-29T11:11:52+00:00"
  10593. },
  10594. {
  10595. "name": "webflo/drupal-finder",
  10596. "version": "1.1.0",
  10597. "source": {
  10598. "type": "git",
  10599. "url": "https://github.com/webflo/drupal-finder.git",
  10600. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  10601. },
  10602. "dist": {
  10603. "type": "zip",
  10604. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  10605. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  10606. "shasum": ""
  10607. },
  10608. "require-dev": {
  10609. "mikey179/vfsstream": "^1.6",
  10610. "phpunit/phpunit": "^4.8"
  10611. },
  10612. "type": "library",
  10613. "autoload": {
  10614. "classmap": [
  10615. "src/DrupalFinder.php"
  10616. ]
  10617. },
  10618. "notification-url": "https://packagist.org/downloads/",
  10619. "license": [
  10620. "GPL-2.0+"
  10621. ],
  10622. "authors": [
  10623. {
  10624. "name": "Florian Weber",
  10625. "email": "florian@webflo.org"
  10626. }
  10627. ],
  10628. "description": "Helper class to locate a Drupal installation from a given path.",
  10629. "time": "2017-10-24T08:12:11+00:00"
  10630. },
  10631. {
  10632. "name": "webmozart/assert",
  10633. "version": "1.4.0",
  10634. "source": {
  10635. "type": "git",
  10636. "url": "https://github.com/webmozart/assert.git",
  10637. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  10638. },
  10639. "dist": {
  10640. "type": "zip",
  10641. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  10642. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  10643. "shasum": ""
  10644. },
  10645. "require": {
  10646. "php": "^5.3.3 || ^7.0",
  10647. "symfony/polyfill-ctype": "^1.8"
  10648. },
  10649. "require-dev": {
  10650. "phpunit/phpunit": "^4.6",
  10651. "sebastian/version": "^1.0.1"
  10652. },
  10653. "type": "library",
  10654. "extra": {
  10655. "branch-alias": {
  10656. "dev-master": "1.3-dev"
  10657. }
  10658. },
  10659. "autoload": {
  10660. "psr-4": {
  10661. "Webmozart\\Assert\\": "src/"
  10662. }
  10663. },
  10664. "notification-url": "https://packagist.org/downloads/",
  10665. "license": [
  10666. "MIT"
  10667. ],
  10668. "authors": [
  10669. {
  10670. "name": "Bernhard Schussek",
  10671. "email": "bschussek@gmail.com"
  10672. }
  10673. ],
  10674. "description": "Assertions to validate method input/output with nice error messages.",
  10675. "keywords": [
  10676. "assert",
  10677. "check",
  10678. "validate"
  10679. ],
  10680. "time": "2018-12-25T11:19:39+00:00"
  10681. },
  10682. {
  10683. "name": "webmozart/path-util",
  10684. "version": "2.3.0",
  10685. "source": {
  10686. "type": "git",
  10687. "url": "https://github.com/webmozart/path-util.git",
  10688. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10689. },
  10690. "dist": {
  10691. "type": "zip",
  10692. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10693. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10694. "shasum": ""
  10695. },
  10696. "require": {
  10697. "php": ">=5.3.3",
  10698. "webmozart/assert": "~1.0"
  10699. },
  10700. "require-dev": {
  10701. "phpunit/phpunit": "^4.6",
  10702. "sebastian/version": "^1.0.1"
  10703. },
  10704. "type": "library",
  10705. "extra": {
  10706. "branch-alias": {
  10707. "dev-master": "2.3-dev"
  10708. }
  10709. },
  10710. "autoload": {
  10711. "psr-4": {
  10712. "Webmozart\\PathUtil\\": "src/"
  10713. }
  10714. },
  10715. "notification-url": "https://packagist.org/downloads/",
  10716. "license": [
  10717. "MIT"
  10718. ],
  10719. "authors": [
  10720. {
  10721. "name": "Bernhard Schussek",
  10722. "email": "bschussek@gmail.com"
  10723. }
  10724. ],
  10725. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10726. "time": "2015-12-17T08:42:14+00:00"
  10727. },
  10728. {
  10729. "name": "wikimedia/composer-merge-plugin",
  10730. "version": "v1.4.1",
  10731. "source": {
  10732. "type": "git",
  10733. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  10734. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100"
  10735. },
  10736. "dist": {
  10737. "type": "zip",
  10738. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  10739. "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100",
  10740. "shasum": ""
  10741. },
  10742. "require": {
  10743. "composer-plugin-api": "^1.0",
  10744. "php": ">=5.3.2"
  10745. },
  10746. "require-dev": {
  10747. "composer/composer": "~1.0.0",
  10748. "jakub-onderka/php-parallel-lint": "~0.8",
  10749. "phpunit/phpunit": "~4.8|~5.0",
  10750. "squizlabs/php_codesniffer": "~2.1.0"
  10751. },
  10752. "type": "composer-plugin",
  10753. "extra": {
  10754. "branch-alias": {
  10755. "dev-master": "1.3.x-dev"
  10756. },
  10757. "class": "Wikimedia\\Composer\\MergePlugin"
  10758. },
  10759. "autoload": {
  10760. "psr-4": {
  10761. "Wikimedia\\Composer\\": "src/"
  10762. }
  10763. },
  10764. "notification-url": "https://packagist.org/downloads/",
  10765. "license": [
  10766. "MIT"
  10767. ],
  10768. "authors": [
  10769. {
  10770. "name": "Bryan Davis",
  10771. "email": "bd808@wikimedia.org"
  10772. }
  10773. ],
  10774. "description": "Composer plugin to merge multiple composer.json files",
  10775. "time": "2017-04-25T02:31:25+00:00"
  10776. },
  10777. {
  10778. "name": "zaporylie/composer-drupal-optimizations",
  10779. "version": "1.0.2",
  10780. "source": {
  10781. "type": "git",
  10782. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  10783. "reference": "cc5eb9f0b5fa664885765748ce5190c1de7d2571"
  10784. },
  10785. "dist": {
  10786. "type": "zip",
  10787. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/cc5eb9f0b5fa664885765748ce5190c1de7d2571",
  10788. "reference": "cc5eb9f0b5fa664885765748ce5190c1de7d2571",
  10789. "shasum": ""
  10790. },
  10791. "require": {
  10792. "composer-plugin-api": "^1.1",
  10793. "drupal/core": "^8.5"
  10794. },
  10795. "require-dev": {
  10796. "composer/composer": "^1.6"
  10797. },
  10798. "type": "composer-plugin",
  10799. "extra": {
  10800. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  10801. },
  10802. "autoload": {
  10803. "psr-4": {
  10804. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  10805. }
  10806. },
  10807. "notification-url": "https://packagist.org/downloads/",
  10808. "license": [
  10809. "GPL-2.0-or-later"
  10810. ],
  10811. "authors": [
  10812. {
  10813. "name": "Jakub Piasecki",
  10814. "email": "jakub@piaseccy.pl"
  10815. }
  10816. ],
  10817. "description": "Composer plugin to improve composer performance for Drupal projects",
  10818. "time": "2018-07-15T18:04:58+00:00"
  10819. },
  10820. {
  10821. "name": "zendframework/zend-diactoros",
  10822. "version": "1.8.6",
  10823. "source": {
  10824. "type": "git",
  10825. "url": "https://github.com/zendframework/zend-diactoros.git",
  10826. "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
  10827. },
  10828. "dist": {
  10829. "type": "zip",
  10830. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
  10831. "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
  10832. "shasum": ""
  10833. },
  10834. "require": {
  10835. "php": "^5.6 || ^7.0",
  10836. "psr/http-message": "^1.0"
  10837. },
  10838. "provide": {
  10839. "psr/http-message-implementation": "1.0"
  10840. },
  10841. "require-dev": {
  10842. "ext-dom": "*",
  10843. "ext-libxml": "*",
  10844. "php-http/psr7-integration-tests": "dev-master",
  10845. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  10846. "zendframework/zend-coding-standard": "~1.0"
  10847. },
  10848. "type": "library",
  10849. "extra": {
  10850. "branch-alias": {
  10851. "dev-master": "1.8.x-dev",
  10852. "dev-develop": "1.9.x-dev",
  10853. "dev-release-2.0": "2.0.x-dev"
  10854. }
  10855. },
  10856. "autoload": {
  10857. "files": [
  10858. "src/functions/create_uploaded_file.php",
  10859. "src/functions/marshal_headers_from_sapi.php",
  10860. "src/functions/marshal_method_from_sapi.php",
  10861. "src/functions/marshal_protocol_version_from_sapi.php",
  10862. "src/functions/marshal_uri_from_sapi.php",
  10863. "src/functions/normalize_server.php",
  10864. "src/functions/normalize_uploaded_files.php",
  10865. "src/functions/parse_cookie_header.php"
  10866. ],
  10867. "psr-4": {
  10868. "Zend\\Diactoros\\": "src/"
  10869. }
  10870. },
  10871. "notification-url": "https://packagist.org/downloads/",
  10872. "license": [
  10873. "BSD-2-Clause"
  10874. ],
  10875. "description": "PSR HTTP Message implementations",
  10876. "homepage": "https://github.com/zendframework/zend-diactoros",
  10877. "keywords": [
  10878. "http",
  10879. "psr",
  10880. "psr-7"
  10881. ],
  10882. "time": "2018-09-05T19:29:37+00:00"
  10883. },
  10884. {
  10885. "name": "zendframework/zend-escaper",
  10886. "version": "2.6.0",
  10887. "source": {
  10888. "type": "git",
  10889. "url": "https://github.com/zendframework/zend-escaper.git",
  10890. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
  10891. },
  10892. "dist": {
  10893. "type": "zip",
  10894. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
  10895. "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
  10896. "shasum": ""
  10897. },
  10898. "require": {
  10899. "php": "^5.6 || ^7.0"
  10900. },
  10901. "require-dev": {
  10902. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  10903. "zendframework/zend-coding-standard": "~1.0.0"
  10904. },
  10905. "type": "library",
  10906. "extra": {
  10907. "branch-alias": {
  10908. "dev-master": "2.6.x-dev",
  10909. "dev-develop": "2.7.x-dev"
  10910. }
  10911. },
  10912. "autoload": {
  10913. "psr-4": {
  10914. "Zend\\Escaper\\": "src/"
  10915. }
  10916. },
  10917. "notification-url": "https://packagist.org/downloads/",
  10918. "license": [
  10919. "BSD-3-Clause"
  10920. ],
  10921. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  10922. "keywords": [
  10923. "ZendFramework",
  10924. "escaper",
  10925. "zf"
  10926. ],
  10927. "time": "2018-04-25T15:48:53+00:00"
  10928. },
  10929. {
  10930. "name": "zendframework/zend-feed",
  10931. "version": "2.11.0",
  10932. "source": {
  10933. "type": "git",
  10934. "url": "https://github.com/zendframework/zend-feed.git",
  10935. "reference": "5248e9fffa760e5c36092aeff02c3797e4a8a690"
  10936. },
  10937. "dist": {
  10938. "type": "zip",
  10939. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/5248e9fffa760e5c36092aeff02c3797e4a8a690",
  10940. "reference": "5248e9fffa760e5c36092aeff02c3797e4a8a690",
  10941. "shasum": ""
  10942. },
  10943. "require": {
  10944. "ext-dom": "*",
  10945. "ext-libxml": "*",
  10946. "php": "^5.6 || ^7.0",
  10947. "zendframework/zend-escaper": "^2.5.2",
  10948. "zendframework/zend-stdlib": "^3.2.1"
  10949. },
  10950. "require-dev": {
  10951. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  10952. "psr/http-message": "^1.0.1",
  10953. "zendframework/zend-cache": "^2.7.2",
  10954. "zendframework/zend-coding-standard": "~1.0.0",
  10955. "zendframework/zend-db": "^2.8.2",
  10956. "zendframework/zend-http": "^2.7",
  10957. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  10958. "zendframework/zend-validator": "^2.10.1"
  10959. },
  10960. "suggest": {
  10961. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  10962. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  10963. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  10964. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  10965. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  10966. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  10967. },
  10968. "type": "library",
  10969. "extra": {
  10970. "branch-alias": {
  10971. "dev-master": "2.11.x-dev",
  10972. "dev-develop": "2.12.x-dev"
  10973. }
  10974. },
  10975. "autoload": {
  10976. "psr-4": {
  10977. "Zend\\Feed\\": "src/"
  10978. }
  10979. },
  10980. "notification-url": "https://packagist.org/downloads/",
  10981. "license": [
  10982. "BSD-3-Clause"
  10983. ],
  10984. "description": "provides functionality for consuming RSS and Atom feeds",
  10985. "keywords": [
  10986. "ZendFramework",
  10987. "feed",
  10988. "zf"
  10989. ],
  10990. "time": "2019-01-29T21:37:15+00:00"
  10991. },
  10992. {
  10993. "name": "zendframework/zend-stdlib",
  10994. "version": "3.2.1",
  10995. "source": {
  10996. "type": "git",
  10997. "url": "https://github.com/zendframework/zend-stdlib.git",
  10998. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  10999. },
  11000. "dist": {
  11001. "type": "zip",
  11002. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  11003. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  11004. "shasum": ""
  11005. },
  11006. "require": {
  11007. "php": "^5.6 || ^7.0"
  11008. },
  11009. "require-dev": {
  11010. "phpbench/phpbench": "^0.13",
  11011. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11012. "zendframework/zend-coding-standard": "~1.0.0"
  11013. },
  11014. "type": "library",
  11015. "extra": {
  11016. "branch-alias": {
  11017. "dev-master": "3.2.x-dev",
  11018. "dev-develop": "3.3.x-dev"
  11019. }
  11020. },
  11021. "autoload": {
  11022. "psr-4": {
  11023. "Zend\\Stdlib\\": "src/"
  11024. }
  11025. },
  11026. "notification-url": "https://packagist.org/downloads/",
  11027. "license": [
  11028. "BSD-3-Clause"
  11029. ],
  11030. "description": "SPL extensions, array utilities, error handlers, and more",
  11031. "keywords": [
  11032. "ZendFramework",
  11033. "stdlib",
  11034. "zf"
  11035. ],
  11036. "time": "2018-08-28T21:34:05+00:00"
  11037. }
  11038. ],
  11039. "packages-dev": [
  11040. {
  11041. "name": "behat/mink",
  11042. "version": "dev-master",
  11043. "source": {
  11044. "type": "git",
  11045. "url": "https://github.com/minkphp/Mink.git",
  11046. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b"
  11047. },
  11048. "dist": {
  11049. "type": "zip",
  11050. "url": "https://api.github.com/repos/minkphp/Mink/zipball/d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  11051. "reference": "d5ee350c40baff5f331a05ebdbe1927345c9ac8b",
  11052. "shasum": ""
  11053. },
  11054. "require": {
  11055. "php": ">=5.3.1",
  11056. "symfony/css-selector": "^2.7|^3.0|^4.0"
  11057. },
  11058. "require-dev": {
  11059. "symfony/phpunit-bridge": "^3.3|^4.0"
  11060. },
  11061. "suggest": {
  11062. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  11063. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  11064. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  11065. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  11066. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  11067. },
  11068. "type": "library",
  11069. "extra": {
  11070. "branch-alias": {
  11071. "dev-master": "1.7.x-dev"
  11072. }
  11073. },
  11074. "autoload": {
  11075. "psr-4": {
  11076. "Behat\\Mink\\": "src/"
  11077. }
  11078. },
  11079. "notification-url": "https://packagist.org/downloads/",
  11080. "license": [
  11081. "MIT"
  11082. ],
  11083. "authors": [
  11084. {
  11085. "name": "Konstantin Kudryashov",
  11086. "email": "ever.zet@gmail.com",
  11087. "homepage": "http://everzet.com"
  11088. }
  11089. ],
  11090. "description": "Browser controller/emulator abstraction for PHP",
  11091. "homepage": "http://mink.behat.org/",
  11092. "keywords": [
  11093. "browser",
  11094. "testing",
  11095. "web"
  11096. ],
  11097. "time": "2018-06-24T20:08:51+00:00"
  11098. },
  11099. {
  11100. "name": "behat/mink-browserkit-driver",
  11101. "version": "1.3.3",
  11102. "source": {
  11103. "type": "git",
  11104. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  11105. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  11106. },
  11107. "dist": {
  11108. "type": "zip",
  11109. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  11110. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  11111. "shasum": ""
  11112. },
  11113. "require": {
  11114. "behat/mink": "^1.7.1@dev",
  11115. "php": ">=5.3.6",
  11116. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  11117. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  11118. },
  11119. "require-dev": {
  11120. "mink/driver-testsuite": "dev-master",
  11121. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  11122. },
  11123. "type": "mink-driver",
  11124. "extra": {
  11125. "branch-alias": {
  11126. "dev-master": "1.3.x-dev"
  11127. }
  11128. },
  11129. "autoload": {
  11130. "psr-4": {
  11131. "Behat\\Mink\\Driver\\": "src/"
  11132. }
  11133. },
  11134. "notification-url": "https://packagist.org/downloads/",
  11135. "license": [
  11136. "MIT"
  11137. ],
  11138. "authors": [
  11139. {
  11140. "name": "Konstantin Kudryashov",
  11141. "email": "ever.zet@gmail.com",
  11142. "homepage": "http://everzet.com"
  11143. }
  11144. ],
  11145. "description": "Symfony2 BrowserKit driver for Mink framework",
  11146. "homepage": "http://mink.behat.org/",
  11147. "keywords": [
  11148. "Mink",
  11149. "Symfony2",
  11150. "browser",
  11151. "testing"
  11152. ],
  11153. "time": "2018-05-02T09:25:31+00:00"
  11154. },
  11155. {
  11156. "name": "behat/mink-goutte-driver",
  11157. "version": "v1.2.1",
  11158. "source": {
  11159. "type": "git",
  11160. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  11161. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  11162. },
  11163. "dist": {
  11164. "type": "zip",
  11165. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  11166. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  11167. "shasum": ""
  11168. },
  11169. "require": {
  11170. "behat/mink": "~1.6@dev",
  11171. "behat/mink-browserkit-driver": "~1.2@dev",
  11172. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  11173. "php": ">=5.3.1"
  11174. },
  11175. "require-dev": {
  11176. "symfony/phpunit-bridge": "~2.7|~3.0"
  11177. },
  11178. "type": "mink-driver",
  11179. "extra": {
  11180. "branch-alias": {
  11181. "dev-master": "1.2.x-dev"
  11182. }
  11183. },
  11184. "autoload": {
  11185. "psr-4": {
  11186. "Behat\\Mink\\Driver\\": "src/"
  11187. }
  11188. },
  11189. "notification-url": "https://packagist.org/downloads/",
  11190. "license": [
  11191. "MIT"
  11192. ],
  11193. "authors": [
  11194. {
  11195. "name": "Konstantin Kudryashov",
  11196. "email": "ever.zet@gmail.com",
  11197. "homepage": "http://everzet.com"
  11198. }
  11199. ],
  11200. "description": "Goutte driver for Mink framework",
  11201. "homepage": "http://mink.behat.org/",
  11202. "keywords": [
  11203. "browser",
  11204. "goutte",
  11205. "headless",
  11206. "testing"
  11207. ],
  11208. "time": "2016-03-05T09:04:22+00:00"
  11209. },
  11210. {
  11211. "name": "behat/mink-selenium2-driver",
  11212. "version": "dev-master",
  11213. "source": {
  11214. "type": "git",
  11215. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  11216. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  11217. },
  11218. "dist": {
  11219. "type": "zip",
  11220. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  11221. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  11222. "shasum": ""
  11223. },
  11224. "require": {
  11225. "behat/mink": "~1.7@dev",
  11226. "instaclick/php-webdriver": "~1.1",
  11227. "php": ">=5.3.1"
  11228. },
  11229. "require-dev": {
  11230. "mink/driver-testsuite": "dev-master"
  11231. },
  11232. "type": "mink-driver",
  11233. "extra": {
  11234. "branch-alias": {
  11235. "dev-master": "1.3.x-dev"
  11236. }
  11237. },
  11238. "autoload": {
  11239. "psr-4": {
  11240. "Behat\\Mink\\Driver\\": "src/"
  11241. }
  11242. },
  11243. "notification-url": "https://packagist.org/downloads/",
  11244. "license": [
  11245. "MIT"
  11246. ],
  11247. "authors": [
  11248. {
  11249. "name": "Konstantin Kudryashov",
  11250. "email": "ever.zet@gmail.com",
  11251. "homepage": "http://everzet.com"
  11252. },
  11253. {
  11254. "name": "Pete Otaqui",
  11255. "email": "pete@otaqui.com",
  11256. "homepage": "https://github.com/pete-otaqui"
  11257. }
  11258. ],
  11259. "description": "Selenium2 (WebDriver) driver for Mink framework",
  11260. "homepage": "http://mink.behat.org/",
  11261. "keywords": [
  11262. "ajax",
  11263. "browser",
  11264. "javascript",
  11265. "selenium",
  11266. "testing",
  11267. "webdriver"
  11268. ],
  11269. "time": "2018-10-10T12:39:06+00:00"
  11270. },
  11271. {
  11272. "name": "doctrine/instantiator",
  11273. "version": "1.0.5",
  11274. "source": {
  11275. "type": "git",
  11276. "url": "https://github.com/doctrine/instantiator.git",
  11277. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  11278. },
  11279. "dist": {
  11280. "type": "zip",
  11281. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  11282. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  11283. "shasum": ""
  11284. },
  11285. "require": {
  11286. "php": ">=5.3,<8.0-DEV"
  11287. },
  11288. "require-dev": {
  11289. "athletic/athletic": "~0.1.8",
  11290. "ext-pdo": "*",
  11291. "ext-phar": "*",
  11292. "phpunit/phpunit": "~4.0",
  11293. "squizlabs/php_codesniffer": "~2.0"
  11294. },
  11295. "type": "library",
  11296. "extra": {
  11297. "branch-alias": {
  11298. "dev-master": "1.0.x-dev"
  11299. }
  11300. },
  11301. "autoload": {
  11302. "psr-4": {
  11303. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  11304. }
  11305. },
  11306. "notification-url": "https://packagist.org/downloads/",
  11307. "license": [
  11308. "MIT"
  11309. ],
  11310. "authors": [
  11311. {
  11312. "name": "Marco Pivetta",
  11313. "email": "ocramius@gmail.com",
  11314. "homepage": "http://ocramius.github.com/"
  11315. }
  11316. ],
  11317. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  11318. "homepage": "https://github.com/doctrine/instantiator",
  11319. "keywords": [
  11320. "constructor",
  11321. "instantiate"
  11322. ],
  11323. "time": "2015-06-14T21:17:01+00:00"
  11324. },
  11325. {
  11326. "name": "drupal/coder",
  11327. "version": "8.3.1",
  11328. "source": {
  11329. "type": "git",
  11330. "url": "https://git.drupal.org/project/coder.git",
  11331. "reference": "29a25627e7148b3119c84f18e087fc3b8c85b959"
  11332. },
  11333. "require": {
  11334. "ext-mbstring": "*",
  11335. "php": ">=5.4.0",
  11336. "squizlabs/php_codesniffer": "^3.0.1",
  11337. "symfony/yaml": ">=2.0.0"
  11338. },
  11339. "require-dev": {
  11340. "phpunit/phpunit": ">=3.7 <6"
  11341. },
  11342. "type": "phpcodesniffer-standard",
  11343. "autoload": {
  11344. "psr-0": {
  11345. "Drupal\\": "coder_sniffer/Drupal/",
  11346. "DrupalPractice\\": "coder_sniffer/Drupal/"
  11347. }
  11348. },
  11349. "notification-url": "https://packagist.org/downloads/",
  11350. "license": [
  11351. "GPL-2.0+"
  11352. ],
  11353. "description": "Coder is a library to review Drupal code.",
  11354. "homepage": "https://www.drupal.org/project/coder",
  11355. "keywords": [
  11356. "code review",
  11357. "phpcs",
  11358. "standards"
  11359. ],
  11360. "time": "2018-09-21T14:22:49+00:00"
  11361. },
  11362. {
  11363. "name": "fabpot/goutte",
  11364. "version": "v3.2.3",
  11365. "source": {
  11366. "type": "git",
  11367. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  11368. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  11369. },
  11370. "dist": {
  11371. "type": "zip",
  11372. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  11373. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  11374. "shasum": ""
  11375. },
  11376. "require": {
  11377. "guzzlehttp/guzzle": "^6.0",
  11378. "php": ">=5.5.0",
  11379. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  11380. "symfony/css-selector": "~2.1|~3.0|~4.0",
  11381. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  11382. },
  11383. "require-dev": {
  11384. "symfony/phpunit-bridge": "^3.3 || ^4"
  11385. },
  11386. "type": "application",
  11387. "extra": {
  11388. "branch-alias": {
  11389. "dev-master": "3.2-dev"
  11390. }
  11391. },
  11392. "autoload": {
  11393. "psr-4": {
  11394. "Goutte\\": "Goutte"
  11395. },
  11396. "exclude-from-classmap": [
  11397. "Goutte/Tests"
  11398. ]
  11399. },
  11400. "notification-url": "https://packagist.org/downloads/",
  11401. "license": [
  11402. "MIT"
  11403. ],
  11404. "authors": [
  11405. {
  11406. "name": "Fabien Potencier",
  11407. "email": "fabien@symfony.com"
  11408. }
  11409. ],
  11410. "description": "A simple PHP Web Scraper",
  11411. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  11412. "keywords": [
  11413. "scraper"
  11414. ],
  11415. "time": "2018-06-29T15:13:57+00:00"
  11416. },
  11417. {
  11418. "name": "instaclick/php-webdriver",
  11419. "version": "1.4.5",
  11420. "source": {
  11421. "type": "git",
  11422. "url": "https://github.com/instaclick/php-webdriver.git",
  11423. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
  11424. },
  11425. "dist": {
  11426. "type": "zip",
  11427. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
  11428. "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
  11429. "shasum": ""
  11430. },
  11431. "require": {
  11432. "ext-curl": "*",
  11433. "php": ">=5.3.2"
  11434. },
  11435. "require-dev": {
  11436. "phpunit/phpunit": "^4.8",
  11437. "satooshi/php-coveralls": "^1.0||^2.0"
  11438. },
  11439. "type": "library",
  11440. "extra": {
  11441. "branch-alias": {
  11442. "dev-master": "1.4.x-dev"
  11443. }
  11444. },
  11445. "autoload": {
  11446. "psr-0": {
  11447. "WebDriver": "lib/"
  11448. }
  11449. },
  11450. "notification-url": "https://packagist.org/downloads/",
  11451. "license": [
  11452. "Apache-2.0"
  11453. ],
  11454. "authors": [
  11455. {
  11456. "name": "Justin Bishop",
  11457. "email": "jubishop@gmail.com",
  11458. "role": "Developer"
  11459. },
  11460. {
  11461. "name": "Anthon Pang",
  11462. "email": "apang@softwaredevelopment.ca",
  11463. "role": "Fork Maintainer"
  11464. }
  11465. ],
  11466. "description": "PHP WebDriver for Selenium 2",
  11467. "homepage": "http://instaclick.com/",
  11468. "keywords": [
  11469. "browser",
  11470. "selenium",
  11471. "webdriver",
  11472. "webtest"
  11473. ],
  11474. "time": "2017-06-30T04:02:48+00:00"
  11475. },
  11476. {
  11477. "name": "jcalderonzumba/gastonjs",
  11478. "version": "v1.2.0",
  11479. "source": {
  11480. "type": "git",
  11481. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  11482. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  11483. },
  11484. "dist": {
  11485. "type": "zip",
  11486. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  11487. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  11488. "shasum": ""
  11489. },
  11490. "require": {
  11491. "guzzlehttp/guzzle": "~5.0|~6.0",
  11492. "php": ">=5.4"
  11493. },
  11494. "require-dev": {
  11495. "phpunit/phpunit": "~4.6",
  11496. "silex/silex": "~1.2",
  11497. "symfony/phpunit-bridge": "~2.7",
  11498. "symfony/process": "~2.1"
  11499. },
  11500. "type": "phantomjs-api",
  11501. "extra": {
  11502. "branch-alias": {
  11503. "dev-master": "1.1.x-dev"
  11504. }
  11505. },
  11506. "autoload": {
  11507. "psr-4": {
  11508. "Zumba\\GastonJS\\": "src"
  11509. }
  11510. },
  11511. "notification-url": "https://packagist.org/downloads/",
  11512. "license": [
  11513. "MIT"
  11514. ],
  11515. "authors": [
  11516. {
  11517. "name": "Juan Francisco Calderón Zumba",
  11518. "email": "juanfcz@gmail.com",
  11519. "homepage": "http://github.com/jcalderonzumba"
  11520. }
  11521. ],
  11522. "description": "PhantomJS API based server for webpage automation",
  11523. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  11524. "keywords": [
  11525. "api",
  11526. "automation",
  11527. "browser",
  11528. "headless",
  11529. "phantomjs"
  11530. ],
  11531. "time": "2017-03-31T07:31:47+00:00"
  11532. },
  11533. {
  11534. "name": "jcalderonzumba/mink-phantomjs-driver",
  11535. "version": "v0.3.3",
  11536. "source": {
  11537. "type": "git",
  11538. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  11539. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  11540. },
  11541. "dist": {
  11542. "type": "zip",
  11543. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  11544. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  11545. "shasum": ""
  11546. },
  11547. "require": {
  11548. "behat/mink": "~1.7",
  11549. "jcalderonzumba/gastonjs": "~1.0",
  11550. "php": ">=5.4",
  11551. "twig/twig": "~1.20|~2.0"
  11552. },
  11553. "require-dev": {
  11554. "mink/driver-testsuite": "dev-master",
  11555. "phpunit/phpunit": "~4.6"
  11556. },
  11557. "type": "mink-driver",
  11558. "extra": {
  11559. "branch-alias": {
  11560. "dev-master": "0.4.x-dev"
  11561. }
  11562. },
  11563. "autoload": {
  11564. "psr-4": {
  11565. "Zumba\\Mink\\Driver\\": "src"
  11566. }
  11567. },
  11568. "notification-url": "https://packagist.org/downloads/",
  11569. "license": [
  11570. "MIT"
  11571. ],
  11572. "authors": [
  11573. {
  11574. "name": "Juan Francisco Calderón Zumba",
  11575. "email": "juanfcz@gmail.com",
  11576. "homepage": "http://github.com/jcalderonzumba"
  11577. }
  11578. ],
  11579. "description": "PhantomJS driver for Mink framework",
  11580. "homepage": "http://mink.behat.org/",
  11581. "keywords": [
  11582. "ajax",
  11583. "browser",
  11584. "headless",
  11585. "javascript",
  11586. "phantomjs",
  11587. "testing"
  11588. ],
  11589. "time": "2016-12-01T10:57:30+00:00"
  11590. },
  11591. {
  11592. "name": "mikey179/vfsStream",
  11593. "version": "v1.6.5",
  11594. "source": {
  11595. "type": "git",
  11596. "url": "https://github.com/mikey179/vfsStream.git",
  11597. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
  11598. },
  11599. "dist": {
  11600. "type": "zip",
  11601. "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  11602. "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
  11603. "shasum": ""
  11604. },
  11605. "require": {
  11606. "php": ">=5.3.0"
  11607. },
  11608. "require-dev": {
  11609. "phpunit/phpunit": "~4.5"
  11610. },
  11611. "type": "library",
  11612. "extra": {
  11613. "branch-alias": {
  11614. "dev-master": "1.6.x-dev"
  11615. }
  11616. },
  11617. "autoload": {
  11618. "psr-0": {
  11619. "org\\bovigo\\vfs\\": "src/main/php"
  11620. }
  11621. },
  11622. "notification-url": "https://packagist.org/downloads/",
  11623. "license": [
  11624. "BSD-3-Clause"
  11625. ],
  11626. "authors": [
  11627. {
  11628. "name": "Frank Kleine",
  11629. "homepage": "http://frankkleine.de/",
  11630. "role": "Developer"
  11631. }
  11632. ],
  11633. "description": "Virtual file system to mock the real file system in unit tests.",
  11634. "homepage": "http://vfs.bovigo.org/",
  11635. "time": "2017-08-01T08:02:14+00:00"
  11636. },
  11637. {
  11638. "name": "myclabs/deep-copy",
  11639. "version": "1.7.0",
  11640. "source": {
  11641. "type": "git",
  11642. "url": "https://github.com/myclabs/DeepCopy.git",
  11643. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  11644. },
  11645. "dist": {
  11646. "type": "zip",
  11647. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  11648. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  11649. "shasum": ""
  11650. },
  11651. "require": {
  11652. "php": "^5.6 || ^7.0"
  11653. },
  11654. "require-dev": {
  11655. "doctrine/collections": "^1.0",
  11656. "doctrine/common": "^2.6",
  11657. "phpunit/phpunit": "^4.1"
  11658. },
  11659. "type": "library",
  11660. "autoload": {
  11661. "psr-4": {
  11662. "DeepCopy\\": "src/DeepCopy/"
  11663. },
  11664. "files": [
  11665. "src/DeepCopy/deep_copy.php"
  11666. ]
  11667. },
  11668. "notification-url": "https://packagist.org/downloads/",
  11669. "license": [
  11670. "MIT"
  11671. ],
  11672. "description": "Create deep copies (clones) of your objects",
  11673. "keywords": [
  11674. "clone",
  11675. "copy",
  11676. "duplicate",
  11677. "object",
  11678. "object graph"
  11679. ],
  11680. "time": "2017-10-19T19:58:43+00:00"
  11681. },
  11682. {
  11683. "name": "phar-io/manifest",
  11684. "version": "1.0.1",
  11685. "source": {
  11686. "type": "git",
  11687. "url": "https://github.com/phar-io/manifest.git",
  11688. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  11689. },
  11690. "dist": {
  11691. "type": "zip",
  11692. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  11693. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  11694. "shasum": ""
  11695. },
  11696. "require": {
  11697. "ext-dom": "*",
  11698. "ext-phar": "*",
  11699. "phar-io/version": "^1.0.1",
  11700. "php": "^5.6 || ^7.0"
  11701. },
  11702. "type": "library",
  11703. "extra": {
  11704. "branch-alias": {
  11705. "dev-master": "1.0.x-dev"
  11706. }
  11707. },
  11708. "autoload": {
  11709. "classmap": [
  11710. "src/"
  11711. ]
  11712. },
  11713. "notification-url": "https://packagist.org/downloads/",
  11714. "license": [
  11715. "BSD-3-Clause"
  11716. ],
  11717. "authors": [
  11718. {
  11719. "name": "Arne Blankerts",
  11720. "email": "arne@blankerts.de",
  11721. "role": "Developer"
  11722. },
  11723. {
  11724. "name": "Sebastian Heuer",
  11725. "email": "sebastian@phpeople.de",
  11726. "role": "Developer"
  11727. },
  11728. {
  11729. "name": "Sebastian Bergmann",
  11730. "email": "sebastian@phpunit.de",
  11731. "role": "Developer"
  11732. }
  11733. ],
  11734. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11735. "time": "2017-03-05T18:14:27+00:00"
  11736. },
  11737. {
  11738. "name": "phar-io/version",
  11739. "version": "1.0.1",
  11740. "source": {
  11741. "type": "git",
  11742. "url": "https://github.com/phar-io/version.git",
  11743. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  11744. },
  11745. "dist": {
  11746. "type": "zip",
  11747. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  11748. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  11749. "shasum": ""
  11750. },
  11751. "require": {
  11752. "php": "^5.6 || ^7.0"
  11753. },
  11754. "type": "library",
  11755. "autoload": {
  11756. "classmap": [
  11757. "src/"
  11758. ]
  11759. },
  11760. "notification-url": "https://packagist.org/downloads/",
  11761. "license": [
  11762. "BSD-3-Clause"
  11763. ],
  11764. "authors": [
  11765. {
  11766. "name": "Arne Blankerts",
  11767. "email": "arne@blankerts.de",
  11768. "role": "Developer"
  11769. },
  11770. {
  11771. "name": "Sebastian Heuer",
  11772. "email": "sebastian@phpeople.de",
  11773. "role": "Developer"
  11774. },
  11775. {
  11776. "name": "Sebastian Bergmann",
  11777. "email": "sebastian@phpunit.de",
  11778. "role": "Developer"
  11779. }
  11780. ],
  11781. "description": "Library for handling version information and constraints",
  11782. "time": "2017-03-05T17:38:23+00:00"
  11783. },
  11784. {
  11785. "name": "phpdocumentor/reflection-common",
  11786. "version": "1.0.1",
  11787. "source": {
  11788. "type": "git",
  11789. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  11790. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  11791. },
  11792. "dist": {
  11793. "type": "zip",
  11794. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11795. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  11796. "shasum": ""
  11797. },
  11798. "require": {
  11799. "php": ">=5.5"
  11800. },
  11801. "require-dev": {
  11802. "phpunit/phpunit": "^4.6"
  11803. },
  11804. "type": "library",
  11805. "extra": {
  11806. "branch-alias": {
  11807. "dev-master": "1.0.x-dev"
  11808. }
  11809. },
  11810. "autoload": {
  11811. "psr-4": {
  11812. "phpDocumentor\\Reflection\\": [
  11813. "src"
  11814. ]
  11815. }
  11816. },
  11817. "notification-url": "https://packagist.org/downloads/",
  11818. "license": [
  11819. "MIT"
  11820. ],
  11821. "authors": [
  11822. {
  11823. "name": "Jaap van Otterdijk",
  11824. "email": "opensource@ijaap.nl"
  11825. }
  11826. ],
  11827. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  11828. "homepage": "http://www.phpdoc.org",
  11829. "keywords": [
  11830. "FQSEN",
  11831. "phpDocumentor",
  11832. "phpdoc",
  11833. "reflection",
  11834. "static analysis"
  11835. ],
  11836. "time": "2017-09-11T18:02:19+00:00"
  11837. },
  11838. {
  11839. "name": "phpdocumentor/reflection-docblock",
  11840. "version": "4.3.0",
  11841. "source": {
  11842. "type": "git",
  11843. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  11844. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  11845. },
  11846. "dist": {
  11847. "type": "zip",
  11848. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  11849. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  11850. "shasum": ""
  11851. },
  11852. "require": {
  11853. "php": "^7.0",
  11854. "phpdocumentor/reflection-common": "^1.0.0",
  11855. "phpdocumentor/type-resolver": "^0.4.0",
  11856. "webmozart/assert": "^1.0"
  11857. },
  11858. "require-dev": {
  11859. "doctrine/instantiator": "~1.0.5",
  11860. "mockery/mockery": "^1.0",
  11861. "phpunit/phpunit": "^6.4"
  11862. },
  11863. "type": "library",
  11864. "extra": {
  11865. "branch-alias": {
  11866. "dev-master": "4.x-dev"
  11867. }
  11868. },
  11869. "autoload": {
  11870. "psr-4": {
  11871. "phpDocumentor\\Reflection\\": [
  11872. "src/"
  11873. ]
  11874. }
  11875. },
  11876. "notification-url": "https://packagist.org/downloads/",
  11877. "license": [
  11878. "MIT"
  11879. ],
  11880. "authors": [
  11881. {
  11882. "name": "Mike van Riel",
  11883. "email": "me@mikevanriel.com"
  11884. }
  11885. ],
  11886. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  11887. "time": "2017-11-30T07:14:17+00:00"
  11888. },
  11889. {
  11890. "name": "phpdocumentor/type-resolver",
  11891. "version": "0.4.0",
  11892. "source": {
  11893. "type": "git",
  11894. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  11895. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  11896. },
  11897. "dist": {
  11898. "type": "zip",
  11899. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  11900. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  11901. "shasum": ""
  11902. },
  11903. "require": {
  11904. "php": "^5.5 || ^7.0",
  11905. "phpdocumentor/reflection-common": "^1.0"
  11906. },
  11907. "require-dev": {
  11908. "mockery/mockery": "^0.9.4",
  11909. "phpunit/phpunit": "^5.2||^4.8.24"
  11910. },
  11911. "type": "library",
  11912. "extra": {
  11913. "branch-alias": {
  11914. "dev-master": "1.0.x-dev"
  11915. }
  11916. },
  11917. "autoload": {
  11918. "psr-4": {
  11919. "phpDocumentor\\Reflection\\": [
  11920. "src/"
  11921. ]
  11922. }
  11923. },
  11924. "notification-url": "https://packagist.org/downloads/",
  11925. "license": [
  11926. "MIT"
  11927. ],
  11928. "authors": [
  11929. {
  11930. "name": "Mike van Riel",
  11931. "email": "me@mikevanriel.com"
  11932. }
  11933. ],
  11934. "time": "2017-07-14T14:27:02+00:00"
  11935. },
  11936. {
  11937. "name": "phpspec/prophecy",
  11938. "version": "1.8.0",
  11939. "source": {
  11940. "type": "git",
  11941. "url": "https://github.com/phpspec/prophecy.git",
  11942. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  11943. },
  11944. "dist": {
  11945. "type": "zip",
  11946. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11947. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  11948. "shasum": ""
  11949. },
  11950. "require": {
  11951. "doctrine/instantiator": "^1.0.2",
  11952. "php": "^5.3|^7.0",
  11953. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  11954. "sebastian/comparator": "^1.1|^2.0|^3.0",
  11955. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  11956. },
  11957. "require-dev": {
  11958. "phpspec/phpspec": "^2.5|^3.2",
  11959. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  11960. },
  11961. "type": "library",
  11962. "extra": {
  11963. "branch-alias": {
  11964. "dev-master": "1.8.x-dev"
  11965. }
  11966. },
  11967. "autoload": {
  11968. "psr-0": {
  11969. "Prophecy\\": "src/"
  11970. }
  11971. },
  11972. "notification-url": "https://packagist.org/downloads/",
  11973. "license": [
  11974. "MIT"
  11975. ],
  11976. "authors": [
  11977. {
  11978. "name": "Konstantin Kudryashov",
  11979. "email": "ever.zet@gmail.com",
  11980. "homepage": "http://everzet.com"
  11981. },
  11982. {
  11983. "name": "Marcello Duarte",
  11984. "email": "marcello.duarte@gmail.com"
  11985. }
  11986. ],
  11987. "description": "Highly opinionated mocking framework for PHP 5.3+",
  11988. "homepage": "https://github.com/phpspec/prophecy",
  11989. "keywords": [
  11990. "Double",
  11991. "Dummy",
  11992. "fake",
  11993. "mock",
  11994. "spy",
  11995. "stub"
  11996. ],
  11997. "time": "2018-08-05T17:53:17+00:00"
  11998. },
  11999. {
  12000. "name": "phpunit/php-code-coverage",
  12001. "version": "5.3.2",
  12002. "source": {
  12003. "type": "git",
  12004. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  12005. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  12006. },
  12007. "dist": {
  12008. "type": "zip",
  12009. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  12010. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  12011. "shasum": ""
  12012. },
  12013. "require": {
  12014. "ext-dom": "*",
  12015. "ext-xmlwriter": "*",
  12016. "php": "^7.0",
  12017. "phpunit/php-file-iterator": "^1.4.2",
  12018. "phpunit/php-text-template": "^1.2.1",
  12019. "phpunit/php-token-stream": "^2.0.1",
  12020. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  12021. "sebastian/environment": "^3.0",
  12022. "sebastian/version": "^2.0.1",
  12023. "theseer/tokenizer": "^1.1"
  12024. },
  12025. "require-dev": {
  12026. "phpunit/phpunit": "^6.0"
  12027. },
  12028. "suggest": {
  12029. "ext-xdebug": "^2.5.5"
  12030. },
  12031. "type": "library",
  12032. "extra": {
  12033. "branch-alias": {
  12034. "dev-master": "5.3.x-dev"
  12035. }
  12036. },
  12037. "autoload": {
  12038. "classmap": [
  12039. "src/"
  12040. ]
  12041. },
  12042. "notification-url": "https://packagist.org/downloads/",
  12043. "license": [
  12044. "BSD-3-Clause"
  12045. ],
  12046. "authors": [
  12047. {
  12048. "name": "Sebastian Bergmann",
  12049. "email": "sebastian@phpunit.de",
  12050. "role": "lead"
  12051. }
  12052. ],
  12053. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  12054. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  12055. "keywords": [
  12056. "coverage",
  12057. "testing",
  12058. "xunit"
  12059. ],
  12060. "time": "2018-04-06T15:36:58+00:00"
  12061. },
  12062. {
  12063. "name": "phpunit/php-file-iterator",
  12064. "version": "1.4.5",
  12065. "source": {
  12066. "type": "git",
  12067. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  12068. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  12069. },
  12070. "dist": {
  12071. "type": "zip",
  12072. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  12073. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  12074. "shasum": ""
  12075. },
  12076. "require": {
  12077. "php": ">=5.3.3"
  12078. },
  12079. "type": "library",
  12080. "extra": {
  12081. "branch-alias": {
  12082. "dev-master": "1.4.x-dev"
  12083. }
  12084. },
  12085. "autoload": {
  12086. "classmap": [
  12087. "src/"
  12088. ]
  12089. },
  12090. "notification-url": "https://packagist.org/downloads/",
  12091. "license": [
  12092. "BSD-3-Clause"
  12093. ],
  12094. "authors": [
  12095. {
  12096. "name": "Sebastian Bergmann",
  12097. "email": "sb@sebastian-bergmann.de",
  12098. "role": "lead"
  12099. }
  12100. ],
  12101. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  12102. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  12103. "keywords": [
  12104. "filesystem",
  12105. "iterator"
  12106. ],
  12107. "time": "2017-11-27T13:52:08+00:00"
  12108. },
  12109. {
  12110. "name": "phpunit/php-text-template",
  12111. "version": "1.2.1",
  12112. "source": {
  12113. "type": "git",
  12114. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  12115. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  12116. },
  12117. "dist": {
  12118. "type": "zip",
  12119. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  12120. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  12121. "shasum": ""
  12122. },
  12123. "require": {
  12124. "php": ">=5.3.3"
  12125. },
  12126. "type": "library",
  12127. "autoload": {
  12128. "classmap": [
  12129. "src/"
  12130. ]
  12131. },
  12132. "notification-url": "https://packagist.org/downloads/",
  12133. "license": [
  12134. "BSD-3-Clause"
  12135. ],
  12136. "authors": [
  12137. {
  12138. "name": "Sebastian Bergmann",
  12139. "email": "sebastian@phpunit.de",
  12140. "role": "lead"
  12141. }
  12142. ],
  12143. "description": "Simple template engine.",
  12144. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  12145. "keywords": [
  12146. "template"
  12147. ],
  12148. "time": "2015-06-21T13:50:34+00:00"
  12149. },
  12150. {
  12151. "name": "phpunit/php-timer",
  12152. "version": "1.0.9",
  12153. "source": {
  12154. "type": "git",
  12155. "url": "https://github.com/sebastianbergmann/php-timer.git",
  12156. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  12157. },
  12158. "dist": {
  12159. "type": "zip",
  12160. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  12161. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  12162. "shasum": ""
  12163. },
  12164. "require": {
  12165. "php": "^5.3.3 || ^7.0"
  12166. },
  12167. "require-dev": {
  12168. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  12169. },
  12170. "type": "library",
  12171. "extra": {
  12172. "branch-alias": {
  12173. "dev-master": "1.0-dev"
  12174. }
  12175. },
  12176. "autoload": {
  12177. "classmap": [
  12178. "src/"
  12179. ]
  12180. },
  12181. "notification-url": "https://packagist.org/downloads/",
  12182. "license": [
  12183. "BSD-3-Clause"
  12184. ],
  12185. "authors": [
  12186. {
  12187. "name": "Sebastian Bergmann",
  12188. "email": "sb@sebastian-bergmann.de",
  12189. "role": "lead"
  12190. }
  12191. ],
  12192. "description": "Utility class for timing",
  12193. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  12194. "keywords": [
  12195. "timer"
  12196. ],
  12197. "time": "2017-02-26T11:10:40+00:00"
  12198. },
  12199. {
  12200. "name": "phpunit/php-token-stream",
  12201. "version": "2.0.2",
  12202. "source": {
  12203. "type": "git",
  12204. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  12205. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  12206. },
  12207. "dist": {
  12208. "type": "zip",
  12209. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  12210. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  12211. "shasum": ""
  12212. },
  12213. "require": {
  12214. "ext-tokenizer": "*",
  12215. "php": "^7.0"
  12216. },
  12217. "require-dev": {
  12218. "phpunit/phpunit": "^6.2.4"
  12219. },
  12220. "type": "library",
  12221. "extra": {
  12222. "branch-alias": {
  12223. "dev-master": "2.0-dev"
  12224. }
  12225. },
  12226. "autoload": {
  12227. "classmap": [
  12228. "src/"
  12229. ]
  12230. },
  12231. "notification-url": "https://packagist.org/downloads/",
  12232. "license": [
  12233. "BSD-3-Clause"
  12234. ],
  12235. "authors": [
  12236. {
  12237. "name": "Sebastian Bergmann",
  12238. "email": "sebastian@phpunit.de"
  12239. }
  12240. ],
  12241. "description": "Wrapper around PHP's tokenizer extension.",
  12242. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  12243. "keywords": [
  12244. "tokenizer"
  12245. ],
  12246. "time": "2017-11-27T05:48:46+00:00"
  12247. },
  12248. {
  12249. "name": "phpunit/phpunit",
  12250. "version": "6.5.14",
  12251. "source": {
  12252. "type": "git",
  12253. "url": "https://github.com/sebastianbergmann/phpunit.git",
  12254. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  12255. },
  12256. "dist": {
  12257. "type": "zip",
  12258. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  12259. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  12260. "shasum": ""
  12261. },
  12262. "require": {
  12263. "ext-dom": "*",
  12264. "ext-json": "*",
  12265. "ext-libxml": "*",
  12266. "ext-mbstring": "*",
  12267. "ext-xml": "*",
  12268. "myclabs/deep-copy": "^1.6.1",
  12269. "phar-io/manifest": "^1.0.1",
  12270. "phar-io/version": "^1.0",
  12271. "php": "^7.0",
  12272. "phpspec/prophecy": "^1.7",
  12273. "phpunit/php-code-coverage": "^5.3",
  12274. "phpunit/php-file-iterator": "^1.4.3",
  12275. "phpunit/php-text-template": "^1.2.1",
  12276. "phpunit/php-timer": "^1.0.9",
  12277. "phpunit/phpunit-mock-objects": "^5.0.9",
  12278. "sebastian/comparator": "^2.1",
  12279. "sebastian/diff": "^2.0",
  12280. "sebastian/environment": "^3.1",
  12281. "sebastian/exporter": "^3.1",
  12282. "sebastian/global-state": "^2.0",
  12283. "sebastian/object-enumerator": "^3.0.3",
  12284. "sebastian/resource-operations": "^1.0",
  12285. "sebastian/version": "^2.0.1"
  12286. },
  12287. "conflict": {
  12288. "phpdocumentor/reflection-docblock": "3.0.2",
  12289. "phpunit/dbunit": "<3.0"
  12290. },
  12291. "require-dev": {
  12292. "ext-pdo": "*"
  12293. },
  12294. "suggest": {
  12295. "ext-xdebug": "*",
  12296. "phpunit/php-invoker": "^1.1"
  12297. },
  12298. "bin": [
  12299. "phpunit"
  12300. ],
  12301. "type": "library",
  12302. "extra": {
  12303. "branch-alias": {
  12304. "dev-master": "6.5.x-dev"
  12305. }
  12306. },
  12307. "autoload": {
  12308. "classmap": [
  12309. "src/"
  12310. ]
  12311. },
  12312. "notification-url": "https://packagist.org/downloads/",
  12313. "license": [
  12314. "BSD-3-Clause"
  12315. ],
  12316. "authors": [
  12317. {
  12318. "name": "Sebastian Bergmann",
  12319. "email": "sebastian@phpunit.de",
  12320. "role": "lead"
  12321. }
  12322. ],
  12323. "description": "The PHP Unit Testing framework.",
  12324. "homepage": "https://phpunit.de/",
  12325. "keywords": [
  12326. "phpunit",
  12327. "testing",
  12328. "xunit"
  12329. ],
  12330. "time": "2019-02-01T05:22:47+00:00"
  12331. },
  12332. {
  12333. "name": "phpunit/phpunit-mock-objects",
  12334. "version": "5.0.10",
  12335. "source": {
  12336. "type": "git",
  12337. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  12338. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  12339. },
  12340. "dist": {
  12341. "type": "zip",
  12342. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  12343. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  12344. "shasum": ""
  12345. },
  12346. "require": {
  12347. "doctrine/instantiator": "^1.0.5",
  12348. "php": "^7.0",
  12349. "phpunit/php-text-template": "^1.2.1",
  12350. "sebastian/exporter": "^3.1"
  12351. },
  12352. "conflict": {
  12353. "phpunit/phpunit": "<6.0"
  12354. },
  12355. "require-dev": {
  12356. "phpunit/phpunit": "^6.5.11"
  12357. },
  12358. "suggest": {
  12359. "ext-soap": "*"
  12360. },
  12361. "type": "library",
  12362. "extra": {
  12363. "branch-alias": {
  12364. "dev-master": "5.0.x-dev"
  12365. }
  12366. },
  12367. "autoload": {
  12368. "classmap": [
  12369. "src/"
  12370. ]
  12371. },
  12372. "notification-url": "https://packagist.org/downloads/",
  12373. "license": [
  12374. "BSD-3-Clause"
  12375. ],
  12376. "authors": [
  12377. {
  12378. "name": "Sebastian Bergmann",
  12379. "email": "sebastian@phpunit.de",
  12380. "role": "lead"
  12381. }
  12382. ],
  12383. "description": "Mock Object library for PHPUnit",
  12384. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  12385. "keywords": [
  12386. "mock",
  12387. "xunit"
  12388. ],
  12389. "time": "2018-08-09T05:50:03+00:00"
  12390. },
  12391. {
  12392. "name": "sebastian/code-unit-reverse-lookup",
  12393. "version": "1.0.1",
  12394. "source": {
  12395. "type": "git",
  12396. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  12397. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  12398. },
  12399. "dist": {
  12400. "type": "zip",
  12401. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  12402. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  12403. "shasum": ""
  12404. },
  12405. "require": {
  12406. "php": "^5.6 || ^7.0"
  12407. },
  12408. "require-dev": {
  12409. "phpunit/phpunit": "^5.7 || ^6.0"
  12410. },
  12411. "type": "library",
  12412. "extra": {
  12413. "branch-alias": {
  12414. "dev-master": "1.0.x-dev"
  12415. }
  12416. },
  12417. "autoload": {
  12418. "classmap": [
  12419. "src/"
  12420. ]
  12421. },
  12422. "notification-url": "https://packagist.org/downloads/",
  12423. "license": [
  12424. "BSD-3-Clause"
  12425. ],
  12426. "authors": [
  12427. {
  12428. "name": "Sebastian Bergmann",
  12429. "email": "sebastian@phpunit.de"
  12430. }
  12431. ],
  12432. "description": "Looks up which function or method a line of code belongs to",
  12433. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  12434. "time": "2017-03-04T06:30:41+00:00"
  12435. },
  12436. {
  12437. "name": "sebastian/comparator",
  12438. "version": "2.1.3",
  12439. "source": {
  12440. "type": "git",
  12441. "url": "https://github.com/sebastianbergmann/comparator.git",
  12442. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  12443. },
  12444. "dist": {
  12445. "type": "zip",
  12446. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  12447. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  12448. "shasum": ""
  12449. },
  12450. "require": {
  12451. "php": "^7.0",
  12452. "sebastian/diff": "^2.0 || ^3.0",
  12453. "sebastian/exporter": "^3.1"
  12454. },
  12455. "require-dev": {
  12456. "phpunit/phpunit": "^6.4"
  12457. },
  12458. "type": "library",
  12459. "extra": {
  12460. "branch-alias": {
  12461. "dev-master": "2.1.x-dev"
  12462. }
  12463. },
  12464. "autoload": {
  12465. "classmap": [
  12466. "src/"
  12467. ]
  12468. },
  12469. "notification-url": "https://packagist.org/downloads/",
  12470. "license": [
  12471. "BSD-3-Clause"
  12472. ],
  12473. "authors": [
  12474. {
  12475. "name": "Jeff Welch",
  12476. "email": "whatthejeff@gmail.com"
  12477. },
  12478. {
  12479. "name": "Volker Dusch",
  12480. "email": "github@wallbash.com"
  12481. },
  12482. {
  12483. "name": "Bernhard Schussek",
  12484. "email": "bschussek@2bepublished.at"
  12485. },
  12486. {
  12487. "name": "Sebastian Bergmann",
  12488. "email": "sebastian@phpunit.de"
  12489. }
  12490. ],
  12491. "description": "Provides the functionality to compare PHP values for equality",
  12492. "homepage": "https://github.com/sebastianbergmann/comparator",
  12493. "keywords": [
  12494. "comparator",
  12495. "compare",
  12496. "equality"
  12497. ],
  12498. "time": "2018-02-01T13:46:46+00:00"
  12499. },
  12500. {
  12501. "name": "sebastian/diff",
  12502. "version": "2.0.1",
  12503. "source": {
  12504. "type": "git",
  12505. "url": "https://github.com/sebastianbergmann/diff.git",
  12506. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  12507. },
  12508. "dist": {
  12509. "type": "zip",
  12510. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  12511. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  12512. "shasum": ""
  12513. },
  12514. "require": {
  12515. "php": "^7.0"
  12516. },
  12517. "require-dev": {
  12518. "phpunit/phpunit": "^6.2"
  12519. },
  12520. "type": "library",
  12521. "extra": {
  12522. "branch-alias": {
  12523. "dev-master": "2.0-dev"
  12524. }
  12525. },
  12526. "autoload": {
  12527. "classmap": [
  12528. "src/"
  12529. ]
  12530. },
  12531. "notification-url": "https://packagist.org/downloads/",
  12532. "license": [
  12533. "BSD-3-Clause"
  12534. ],
  12535. "authors": [
  12536. {
  12537. "name": "Kore Nordmann",
  12538. "email": "mail@kore-nordmann.de"
  12539. },
  12540. {
  12541. "name": "Sebastian Bergmann",
  12542. "email": "sebastian@phpunit.de"
  12543. }
  12544. ],
  12545. "description": "Diff implementation",
  12546. "homepage": "https://github.com/sebastianbergmann/diff",
  12547. "keywords": [
  12548. "diff"
  12549. ],
  12550. "time": "2017-08-03T08:09:46+00:00"
  12551. },
  12552. {
  12553. "name": "sebastian/environment",
  12554. "version": "3.1.0",
  12555. "source": {
  12556. "type": "git",
  12557. "url": "https://github.com/sebastianbergmann/environment.git",
  12558. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  12559. },
  12560. "dist": {
  12561. "type": "zip",
  12562. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  12563. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  12564. "shasum": ""
  12565. },
  12566. "require": {
  12567. "php": "^7.0"
  12568. },
  12569. "require-dev": {
  12570. "phpunit/phpunit": "^6.1"
  12571. },
  12572. "type": "library",
  12573. "extra": {
  12574. "branch-alias": {
  12575. "dev-master": "3.1.x-dev"
  12576. }
  12577. },
  12578. "autoload": {
  12579. "classmap": [
  12580. "src/"
  12581. ]
  12582. },
  12583. "notification-url": "https://packagist.org/downloads/",
  12584. "license": [
  12585. "BSD-3-Clause"
  12586. ],
  12587. "authors": [
  12588. {
  12589. "name": "Sebastian Bergmann",
  12590. "email": "sebastian@phpunit.de"
  12591. }
  12592. ],
  12593. "description": "Provides functionality to handle HHVM/PHP environments",
  12594. "homepage": "http://www.github.com/sebastianbergmann/environment",
  12595. "keywords": [
  12596. "Xdebug",
  12597. "environment",
  12598. "hhvm"
  12599. ],
  12600. "time": "2017-07-01T08:51:00+00:00"
  12601. },
  12602. {
  12603. "name": "sebastian/exporter",
  12604. "version": "3.1.0",
  12605. "source": {
  12606. "type": "git",
  12607. "url": "https://github.com/sebastianbergmann/exporter.git",
  12608. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  12609. },
  12610. "dist": {
  12611. "type": "zip",
  12612. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  12613. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  12614. "shasum": ""
  12615. },
  12616. "require": {
  12617. "php": "^7.0",
  12618. "sebastian/recursion-context": "^3.0"
  12619. },
  12620. "require-dev": {
  12621. "ext-mbstring": "*",
  12622. "phpunit/phpunit": "^6.0"
  12623. },
  12624. "type": "library",
  12625. "extra": {
  12626. "branch-alias": {
  12627. "dev-master": "3.1.x-dev"
  12628. }
  12629. },
  12630. "autoload": {
  12631. "classmap": [
  12632. "src/"
  12633. ]
  12634. },
  12635. "notification-url": "https://packagist.org/downloads/",
  12636. "license": [
  12637. "BSD-3-Clause"
  12638. ],
  12639. "authors": [
  12640. {
  12641. "name": "Jeff Welch",
  12642. "email": "whatthejeff@gmail.com"
  12643. },
  12644. {
  12645. "name": "Volker Dusch",
  12646. "email": "github@wallbash.com"
  12647. },
  12648. {
  12649. "name": "Bernhard Schussek",
  12650. "email": "bschussek@2bepublished.at"
  12651. },
  12652. {
  12653. "name": "Sebastian Bergmann",
  12654. "email": "sebastian@phpunit.de"
  12655. },
  12656. {
  12657. "name": "Adam Harvey",
  12658. "email": "aharvey@php.net"
  12659. }
  12660. ],
  12661. "description": "Provides the functionality to export PHP variables for visualization",
  12662. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  12663. "keywords": [
  12664. "export",
  12665. "exporter"
  12666. ],
  12667. "time": "2017-04-03T13:19:02+00:00"
  12668. },
  12669. {
  12670. "name": "sebastian/global-state",
  12671. "version": "2.0.0",
  12672. "source": {
  12673. "type": "git",
  12674. "url": "https://github.com/sebastianbergmann/global-state.git",
  12675. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  12676. },
  12677. "dist": {
  12678. "type": "zip",
  12679. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  12680. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  12681. "shasum": ""
  12682. },
  12683. "require": {
  12684. "php": "^7.0"
  12685. },
  12686. "require-dev": {
  12687. "phpunit/phpunit": "^6.0"
  12688. },
  12689. "suggest": {
  12690. "ext-uopz": "*"
  12691. },
  12692. "type": "library",
  12693. "extra": {
  12694. "branch-alias": {
  12695. "dev-master": "2.0-dev"
  12696. }
  12697. },
  12698. "autoload": {
  12699. "classmap": [
  12700. "src/"
  12701. ]
  12702. },
  12703. "notification-url": "https://packagist.org/downloads/",
  12704. "license": [
  12705. "BSD-3-Clause"
  12706. ],
  12707. "authors": [
  12708. {
  12709. "name": "Sebastian Bergmann",
  12710. "email": "sebastian@phpunit.de"
  12711. }
  12712. ],
  12713. "description": "Snapshotting of global state",
  12714. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12715. "keywords": [
  12716. "global state"
  12717. ],
  12718. "time": "2017-04-27T15:39:26+00:00"
  12719. },
  12720. {
  12721. "name": "sebastian/object-enumerator",
  12722. "version": "3.0.3",
  12723. "source": {
  12724. "type": "git",
  12725. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12726. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  12727. },
  12728. "dist": {
  12729. "type": "zip",
  12730. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  12731. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  12732. "shasum": ""
  12733. },
  12734. "require": {
  12735. "php": "^7.0",
  12736. "sebastian/object-reflector": "^1.1.1",
  12737. "sebastian/recursion-context": "^3.0"
  12738. },
  12739. "require-dev": {
  12740. "phpunit/phpunit": "^6.0"
  12741. },
  12742. "type": "library",
  12743. "extra": {
  12744. "branch-alias": {
  12745. "dev-master": "3.0.x-dev"
  12746. }
  12747. },
  12748. "autoload": {
  12749. "classmap": [
  12750. "src/"
  12751. ]
  12752. },
  12753. "notification-url": "https://packagist.org/downloads/",
  12754. "license": [
  12755. "BSD-3-Clause"
  12756. ],
  12757. "authors": [
  12758. {
  12759. "name": "Sebastian Bergmann",
  12760. "email": "sebastian@phpunit.de"
  12761. }
  12762. ],
  12763. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12764. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12765. "time": "2017-08-03T12:35:26+00:00"
  12766. },
  12767. {
  12768. "name": "sebastian/object-reflector",
  12769. "version": "1.1.1",
  12770. "source": {
  12771. "type": "git",
  12772. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12773. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  12774. },
  12775. "dist": {
  12776. "type": "zip",
  12777. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  12778. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  12779. "shasum": ""
  12780. },
  12781. "require": {
  12782. "php": "^7.0"
  12783. },
  12784. "require-dev": {
  12785. "phpunit/phpunit": "^6.0"
  12786. },
  12787. "type": "library",
  12788. "extra": {
  12789. "branch-alias": {
  12790. "dev-master": "1.1-dev"
  12791. }
  12792. },
  12793. "autoload": {
  12794. "classmap": [
  12795. "src/"
  12796. ]
  12797. },
  12798. "notification-url": "https://packagist.org/downloads/",
  12799. "license": [
  12800. "BSD-3-Clause"
  12801. ],
  12802. "authors": [
  12803. {
  12804. "name": "Sebastian Bergmann",
  12805. "email": "sebastian@phpunit.de"
  12806. }
  12807. ],
  12808. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12809. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12810. "time": "2017-03-29T09:07:27+00:00"
  12811. },
  12812. {
  12813. "name": "sebastian/recursion-context",
  12814. "version": "3.0.0",
  12815. "source": {
  12816. "type": "git",
  12817. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12818. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  12819. },
  12820. "dist": {
  12821. "type": "zip",
  12822. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12823. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  12824. "shasum": ""
  12825. },
  12826. "require": {
  12827. "php": "^7.0"
  12828. },
  12829. "require-dev": {
  12830. "phpunit/phpunit": "^6.0"
  12831. },
  12832. "type": "library",
  12833. "extra": {
  12834. "branch-alias": {
  12835. "dev-master": "3.0.x-dev"
  12836. }
  12837. },
  12838. "autoload": {
  12839. "classmap": [
  12840. "src/"
  12841. ]
  12842. },
  12843. "notification-url": "https://packagist.org/downloads/",
  12844. "license": [
  12845. "BSD-3-Clause"
  12846. ],
  12847. "authors": [
  12848. {
  12849. "name": "Jeff Welch",
  12850. "email": "whatthejeff@gmail.com"
  12851. },
  12852. {
  12853. "name": "Sebastian Bergmann",
  12854. "email": "sebastian@phpunit.de"
  12855. },
  12856. {
  12857. "name": "Adam Harvey",
  12858. "email": "aharvey@php.net"
  12859. }
  12860. ],
  12861. "description": "Provides functionality to recursively process PHP variables",
  12862. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  12863. "time": "2017-03-03T06:23:57+00:00"
  12864. },
  12865. {
  12866. "name": "sebastian/resource-operations",
  12867. "version": "1.0.0",
  12868. "source": {
  12869. "type": "git",
  12870. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12871. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  12872. },
  12873. "dist": {
  12874. "type": "zip",
  12875. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12876. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  12877. "shasum": ""
  12878. },
  12879. "require": {
  12880. "php": ">=5.6.0"
  12881. },
  12882. "type": "library",
  12883. "extra": {
  12884. "branch-alias": {
  12885. "dev-master": "1.0.x-dev"
  12886. }
  12887. },
  12888. "autoload": {
  12889. "classmap": [
  12890. "src/"
  12891. ]
  12892. },
  12893. "notification-url": "https://packagist.org/downloads/",
  12894. "license": [
  12895. "BSD-3-Clause"
  12896. ],
  12897. "authors": [
  12898. {
  12899. "name": "Sebastian Bergmann",
  12900. "email": "sebastian@phpunit.de"
  12901. }
  12902. ],
  12903. "description": "Provides a list of PHP built-in functions that operate on resources",
  12904. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12905. "time": "2015-07-28T20:34:47+00:00"
  12906. },
  12907. {
  12908. "name": "sebastian/version",
  12909. "version": "2.0.1",
  12910. "source": {
  12911. "type": "git",
  12912. "url": "https://github.com/sebastianbergmann/version.git",
  12913. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  12914. },
  12915. "dist": {
  12916. "type": "zip",
  12917. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  12918. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  12919. "shasum": ""
  12920. },
  12921. "require": {
  12922. "php": ">=5.6"
  12923. },
  12924. "type": "library",
  12925. "extra": {
  12926. "branch-alias": {
  12927. "dev-master": "2.0.x-dev"
  12928. }
  12929. },
  12930. "autoload": {
  12931. "classmap": [
  12932. "src/"
  12933. ]
  12934. },
  12935. "notification-url": "https://packagist.org/downloads/",
  12936. "license": [
  12937. "BSD-3-Clause"
  12938. ],
  12939. "authors": [
  12940. {
  12941. "name": "Sebastian Bergmann",
  12942. "email": "sebastian@phpunit.de",
  12943. "role": "lead"
  12944. }
  12945. ],
  12946. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12947. "homepage": "https://github.com/sebastianbergmann/version",
  12948. "time": "2016-10-03T07:35:21+00:00"
  12949. },
  12950. {
  12951. "name": "squizlabs/php_codesniffer",
  12952. "version": "3.4.0",
  12953. "source": {
  12954. "type": "git",
  12955. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  12956. "reference": "379deb987e26c7cd103a7b387aea178baec96e48"
  12957. },
  12958. "dist": {
  12959. "type": "zip",
  12960. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/379deb987e26c7cd103a7b387aea178baec96e48",
  12961. "reference": "379deb987e26c7cd103a7b387aea178baec96e48",
  12962. "shasum": ""
  12963. },
  12964. "require": {
  12965. "ext-simplexml": "*",
  12966. "ext-tokenizer": "*",
  12967. "ext-xmlwriter": "*",
  12968. "php": ">=5.4.0"
  12969. },
  12970. "require-dev": {
  12971. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  12972. },
  12973. "bin": [
  12974. "bin/phpcs",
  12975. "bin/phpcbf"
  12976. ],
  12977. "type": "library",
  12978. "extra": {
  12979. "branch-alias": {
  12980. "dev-master": "3.x-dev"
  12981. }
  12982. },
  12983. "notification-url": "https://packagist.org/downloads/",
  12984. "license": [
  12985. "BSD-3-Clause"
  12986. ],
  12987. "authors": [
  12988. {
  12989. "name": "Greg Sherwood",
  12990. "role": "lead"
  12991. }
  12992. ],
  12993. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  12994. "homepage": "http://www.squizlabs.com/php-codesniffer",
  12995. "keywords": [
  12996. "phpcs",
  12997. "standards"
  12998. ],
  12999. "time": "2018-12-19T23:57:18+00:00"
  13000. },
  13001. {
  13002. "name": "symfony/browser-kit",
  13003. "version": "v3.4.22",
  13004. "source": {
  13005. "type": "git",
  13006. "url": "https://github.com/symfony/browser-kit.git",
  13007. "reference": "884689e5d29fc3c48498a0038e96d60e4f91b471"
  13008. },
  13009. "dist": {
  13010. "type": "zip",
  13011. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/884689e5d29fc3c48498a0038e96d60e4f91b471",
  13012. "reference": "884689e5d29fc3c48498a0038e96d60e4f91b471",
  13013. "shasum": ""
  13014. },
  13015. "require": {
  13016. "php": "^5.5.9|>=7.0.8",
  13017. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  13018. },
  13019. "require-dev": {
  13020. "symfony/css-selector": "~2.8|~3.0|~4.0",
  13021. "symfony/process": "~2.8|~3.0|~4.0"
  13022. },
  13023. "suggest": {
  13024. "symfony/process": ""
  13025. },
  13026. "type": "library",
  13027. "extra": {
  13028. "branch-alias": {
  13029. "dev-master": "3.4-dev"
  13030. }
  13031. },
  13032. "autoload": {
  13033. "psr-4": {
  13034. "Symfony\\Component\\BrowserKit\\": ""
  13035. },
  13036. "exclude-from-classmap": [
  13037. "/Tests/"
  13038. ]
  13039. },
  13040. "notification-url": "https://packagist.org/downloads/",
  13041. "license": [
  13042. "MIT"
  13043. ],
  13044. "authors": [
  13045. {
  13046. "name": "Fabien Potencier",
  13047. "email": "fabien@symfony.com"
  13048. },
  13049. {
  13050. "name": "Symfony Community",
  13051. "homepage": "https://symfony.com/contributors"
  13052. }
  13053. ],
  13054. "description": "Symfony BrowserKit Component",
  13055. "homepage": "https://symfony.com",
  13056. "time": "2019-01-16T09:39:14+00:00"
  13057. },
  13058. {
  13059. "name": "symfony/phpunit-bridge",
  13060. "version": "v3.4.22",
  13061. "source": {
  13062. "type": "git",
  13063. "url": "https://github.com/symfony/phpunit-bridge.git",
  13064. "reference": "6a2148bfc6ca0016846a32bdc55a317274283709"
  13065. },
  13066. "dist": {
  13067. "type": "zip",
  13068. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/6a2148bfc6ca0016846a32bdc55a317274283709",
  13069. "reference": "6a2148bfc6ca0016846a32bdc55a317274283709",
  13070. "shasum": ""
  13071. },
  13072. "require": {
  13073. "php": ">=5.3.3"
  13074. },
  13075. "conflict": {
  13076. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  13077. },
  13078. "suggest": {
  13079. "ext-zip": "Zip support is required when using bin/simple-phpunit",
  13080. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  13081. },
  13082. "bin": [
  13083. "bin/simple-phpunit"
  13084. ],
  13085. "type": "symfony-bridge",
  13086. "extra": {
  13087. "branch-alias": {
  13088. "dev-master": "3.4-dev"
  13089. },
  13090. "thanks": {
  13091. "name": "phpunit/phpunit",
  13092. "url": "https://github.com/sebastianbergmann/phpunit"
  13093. }
  13094. },
  13095. "autoload": {
  13096. "files": [
  13097. "bootstrap.php"
  13098. ],
  13099. "psr-4": {
  13100. "Symfony\\Bridge\\PhpUnit\\": ""
  13101. },
  13102. "exclude-from-classmap": [
  13103. "/Tests/"
  13104. ]
  13105. },
  13106. "notification-url": "https://packagist.org/downloads/",
  13107. "license": [
  13108. "MIT"
  13109. ],
  13110. "authors": [
  13111. {
  13112. "name": "Nicolas Grekas",
  13113. "email": "p@tchwork.com"
  13114. },
  13115. {
  13116. "name": "Symfony Community",
  13117. "homepage": "https://symfony.com/contributors"
  13118. }
  13119. ],
  13120. "description": "Symfony PHPUnit Bridge",
  13121. "homepage": "https://symfony.com",
  13122. "time": "2019-01-30T13:30:37+00:00"
  13123. },
  13124. {
  13125. "name": "theseer/tokenizer",
  13126. "version": "1.1.0",
  13127. "source": {
  13128. "type": "git",
  13129. "url": "https://github.com/theseer/tokenizer.git",
  13130. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  13131. },
  13132. "dist": {
  13133. "type": "zip",
  13134. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  13135. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  13136. "shasum": ""
  13137. },
  13138. "require": {
  13139. "ext-dom": "*",
  13140. "ext-tokenizer": "*",
  13141. "ext-xmlwriter": "*",
  13142. "php": "^7.0"
  13143. },
  13144. "type": "library",
  13145. "autoload": {
  13146. "classmap": [
  13147. "src/"
  13148. ]
  13149. },
  13150. "notification-url": "https://packagist.org/downloads/",
  13151. "license": [
  13152. "BSD-3-Clause"
  13153. ],
  13154. "authors": [
  13155. {
  13156. "name": "Arne Blankerts",
  13157. "email": "arne@blankerts.de",
  13158. "role": "Developer"
  13159. }
  13160. ],
  13161. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13162. "time": "2017-04-07T12:08:54+00:00"
  13163. },
  13164. {
  13165. "name": "webflo/drupal-core-require-dev",
  13166. "version": "8.6.9",
  13167. "source": {
  13168. "type": "git",
  13169. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  13170. "reference": "c083ddd802bda504d836dc0d4fea44cf2e6f191f"
  13171. },
  13172. "dist": {
  13173. "type": "zip",
  13174. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/c083ddd802bda504d836dc0d4fea44cf2e6f191f",
  13175. "reference": "c083ddd802bda504d836dc0d4fea44cf2e6f191f",
  13176. "shasum": ""
  13177. },
  13178. "require": {
  13179. "behat/mink": "1.7.x-dev",
  13180. "behat/mink-goutte-driver": "^1.2",
  13181. "behat/mink-selenium2-driver": "1.3.x-dev",
  13182. "drupal/coder": "^8.2.12",
  13183. "drupal/core": "8.6.9",
  13184. "jcalderonzumba/gastonjs": "^1.0.2",
  13185. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  13186. "mikey179/vfsstream": "^1.2",
  13187. "phpspec/prophecy": "^1.7",
  13188. "phpunit/phpunit": "^4.8.35 || ^6.5",
  13189. "symfony/css-selector": "^3.4.0",
  13190. "symfony/debug": "^3.4.0",
  13191. "symfony/phpunit-bridge": "^3.4.3"
  13192. },
  13193. "type": "metapackage",
  13194. "notification-url": "https://packagist.org/downloads/",
  13195. "license": [
  13196. "GPL-2.0-or-later"
  13197. ],
  13198. "description": "require-dev dependencies from drupal/core",
  13199. "time": "2019-02-08T12:31:37+00:00"
  13200. }
  13201. ],
  13202. "aliases": [],
  13203. "minimum-stability": "dev",
  13204. "stability-flags": {
  13205. "drupal/agnian_material_admin": 20,
  13206. "drupal/computed_field": 10,
  13207. "drupal/flexi": 20,
  13208. "drupal/migrate_plus": 20,
  13209. "drupal/migrate_tools": 20,
  13210. "drupal/select_translation": 20,
  13211. "drupal/telephone_formatter": 10,
  13212. "drupal/views_conditional": 20,
  13213. "drupal/advanced_text_formatter": 10,
  13214. "drupal/autocomplete_deluxe": 10,
  13215. "drupal/better_exposed_filters": 15,
  13216. "drupal/better_messages": 15,
  13217. "drupal/bulkdelete": 20,
  13218. "drupal/cshs": 20,
  13219. "drupal/content_lock": 15,
  13220. "drupal/context": 10,
  13221. "drupal/domain": 20,
  13222. "drupal/domain_alias": 20,
  13223. "drupal/domain_config": 20,
  13224. "drupal/email_registration": 5,
  13225. "drupal/entity_browser_enhanced": 5,
  13226. "drupal/entity_clone": 15,
  13227. "drupal/filefield_sources": 20,
  13228. "drupal/filter_perms": 20,
  13229. "drupal/inline_entity_form": 5,
  13230. "drupal/login_destination": 20,
  13231. "drupal/maillog": 20,
  13232. "drupal/maxlength": 10,
  13233. "drupal/menu_position": 20,
  13234. "drupal/path_alias_xt": 20,
  13235. "drupal/pathologic": 15,
  13236. "drupal/profile": 5,
  13237. "drupal/smtp": 10,
  13238. "drupal/synonyms": 15,
  13239. "drupal/translation_views": 15,
  13240. "drupal/toolbar_themes": 15,
  13241. "drupal/ultimate_cron": 15,
  13242. "drupal/workflow": 20
  13243. },
  13244. "prefer-stable": true,
  13245. "prefer-lowest": false,
  13246. "platform": {
  13247. "php": ">=5.6"
  13248. },
  13249. "platform-dev": []
  13250. }