composer.lock 401 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159
  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": "98a714e3bdc9fb1e62e9d71fd2749112",
  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": "behat/mink",
  127. "version": "dev-master",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/minkphp/Mink.git",
  131. "reference": "a534fe7dac9525e8e10ca68e737c3d7e5058ec83"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/minkphp/Mink/zipball/a534fe7dac9525e8e10ca68e737c3d7e5058ec83",
  136. "reference": "a534fe7dac9525e8e10ca68e737c3d7e5058ec83",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": ">=5.3.1",
  141. "symfony/css-selector": "^2.7|^3.0|^4.0"
  142. },
  143. "require-dev": {
  144. "symfony/phpunit-bridge": "^4.2"
  145. },
  146. "suggest": {
  147. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  148. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  149. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  150. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  151. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  152. },
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-master": "1.7.x-dev"
  157. }
  158. },
  159. "autoload": {
  160. "psr-4": {
  161. "Behat\\Mink\\": "src/"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "authors": [
  169. {
  170. "name": "Konstantin Kudryashov",
  171. "email": "ever.zet@gmail.com",
  172. "homepage": "http://everzet.com"
  173. }
  174. ],
  175. "description": "Browser controller/emulator abstraction for PHP",
  176. "homepage": "http://mink.behat.org/",
  177. "keywords": [
  178. "browser",
  179. "testing",
  180. "web"
  181. ],
  182. "time": "2019-07-15T12:45:29+00:00"
  183. },
  184. {
  185. "name": "behat/mink-browserkit-driver",
  186. "version": "1.3.3",
  187. "source": {
  188. "type": "git",
  189. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  190. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  191. },
  192. "dist": {
  193. "type": "zip",
  194. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  195. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  196. "shasum": ""
  197. },
  198. "require": {
  199. "behat/mink": "^1.7.1@dev",
  200. "php": ">=5.3.6",
  201. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  202. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  203. },
  204. "require-dev": {
  205. "mink/driver-testsuite": "dev-master",
  206. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  207. },
  208. "type": "mink-driver",
  209. "extra": {
  210. "branch-alias": {
  211. "dev-master": "1.3.x-dev"
  212. }
  213. },
  214. "autoload": {
  215. "psr-4": {
  216. "Behat\\Mink\\Driver\\": "src/"
  217. }
  218. },
  219. "notification-url": "https://packagist.org/downloads/",
  220. "license": [
  221. "MIT"
  222. ],
  223. "authors": [
  224. {
  225. "name": "Konstantin Kudryashov",
  226. "email": "ever.zet@gmail.com",
  227. "homepage": "http://everzet.com"
  228. }
  229. ],
  230. "description": "Symfony2 BrowserKit driver for Mink framework",
  231. "homepage": "http://mink.behat.org/",
  232. "keywords": [
  233. "Mink",
  234. "Symfony2",
  235. "browser",
  236. "testing"
  237. ],
  238. "time": "2018-05-02T09:25:31+00:00"
  239. },
  240. {
  241. "name": "behat/mink-goutte-driver",
  242. "version": "v1.2.1",
  243. "source": {
  244. "type": "git",
  245. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  246. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  247. },
  248. "dist": {
  249. "type": "zip",
  250. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  251. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  252. "shasum": ""
  253. },
  254. "require": {
  255. "behat/mink": "~1.6@dev",
  256. "behat/mink-browserkit-driver": "~1.2@dev",
  257. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  258. "php": ">=5.3.1"
  259. },
  260. "require-dev": {
  261. "symfony/phpunit-bridge": "~2.7|~3.0"
  262. },
  263. "type": "mink-driver",
  264. "extra": {
  265. "branch-alias": {
  266. "dev-master": "1.2.x-dev"
  267. }
  268. },
  269. "autoload": {
  270. "psr-4": {
  271. "Behat\\Mink\\Driver\\": "src/"
  272. }
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "authors": [
  279. {
  280. "name": "Konstantin Kudryashov",
  281. "email": "ever.zet@gmail.com",
  282. "homepage": "http://everzet.com"
  283. }
  284. ],
  285. "description": "Goutte driver for Mink framework",
  286. "homepage": "http://mink.behat.org/",
  287. "keywords": [
  288. "browser",
  289. "goutte",
  290. "headless",
  291. "testing"
  292. ],
  293. "time": "2016-03-05T09:04:22+00:00"
  294. },
  295. {
  296. "name": "behat/mink-selenium2-driver",
  297. "version": "dev-master",
  298. "source": {
  299. "type": "git",
  300. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  301. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  302. },
  303. "dist": {
  304. "type": "zip",
  305. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  306. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  307. "shasum": ""
  308. },
  309. "require": {
  310. "behat/mink": "~1.7@dev",
  311. "instaclick/php-webdriver": "~1.1",
  312. "php": ">=5.4"
  313. },
  314. "require-dev": {
  315. "mink/driver-testsuite": "dev-master"
  316. },
  317. "type": "mink-driver",
  318. "extra": {
  319. "branch-alias": {
  320. "dev-master": "1.3.x-dev"
  321. }
  322. },
  323. "autoload": {
  324. "psr-4": {
  325. "Behat\\Mink\\Driver\\": "src/"
  326. }
  327. },
  328. "notification-url": "https://packagist.org/downloads/",
  329. "license": [
  330. "MIT"
  331. ],
  332. "authors": [
  333. {
  334. "name": "Konstantin Kudryashov",
  335. "email": "ever.zet@gmail.com",
  336. "homepage": "http://everzet.com"
  337. },
  338. {
  339. "name": "Pete Otaqui",
  340. "email": "pete@otaqui.com",
  341. "homepage": "https://github.com/pete-otaqui"
  342. }
  343. ],
  344. "description": "Selenium2 (WebDriver) driver for Mink framework",
  345. "homepage": "http://mink.behat.org/",
  346. "keywords": [
  347. "ajax",
  348. "browser",
  349. "javascript",
  350. "selenium",
  351. "testing",
  352. "webdriver"
  353. ],
  354. "time": "2018-10-10T12:39:06+00:00"
  355. },
  356. {
  357. "name": "brumann/polyfill-unserialize",
  358. "version": "v1.0.4",
  359. "source": {
  360. "type": "git",
  361. "url": "https://github.com/dbrumann/polyfill-unserialize.git",
  362. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008"
  363. },
  364. "dist": {
  365. "type": "zip",
  366. "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  367. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  368. "shasum": ""
  369. },
  370. "require": {
  371. "php": "^5.3|^7.0"
  372. },
  373. "type": "library",
  374. "autoload": {
  375. "psr-4": {
  376. "Brumann\\Polyfill\\": "src/"
  377. }
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "MIT"
  382. ],
  383. "authors": [
  384. {
  385. "name": "Denis Brumann",
  386. "email": "denis.brumann@sensiolabs.de"
  387. }
  388. ],
  389. "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.",
  390. "time": "2019-07-14T23:16:24+00:00"
  391. },
  392. {
  393. "name": "chi-teck/drupal-code-generator",
  394. "version": "1.29.1",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  398. "reference": "f1da0370113ee246cd8f6d744d4835e8d53ea61c"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/f1da0370113ee246cd8f6d744d4835e8d53ea61c",
  403. "reference": "f1da0370113ee246cd8f6d744d4835e8d53ea61c",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "ext-json": "*",
  408. "php": ">=5.5.9",
  409. "symfony/console": "^3.4 || ^4.0",
  410. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  411. "twig/twig": "^1.35"
  412. },
  413. "bin": [
  414. "bin/dcg"
  415. ],
  416. "type": "library",
  417. "extra": {
  418. "branch-alias": {
  419. "dev-master": "1.x-dev"
  420. }
  421. },
  422. "autoload": {
  423. "files": [
  424. "src/bootstrap.php"
  425. ],
  426. "psr-4": {
  427. "DrupalCodeGenerator\\": "src"
  428. }
  429. },
  430. "notification-url": "https://packagist.org/downloads/",
  431. "license": [
  432. "GPL-2.0-or-later"
  433. ],
  434. "description": "Drupal code generator",
  435. "time": "2019-04-26T08:30:10+00:00"
  436. },
  437. {
  438. "name": "composer/installers",
  439. "version": "v1.6.0",
  440. "source": {
  441. "type": "git",
  442. "url": "https://github.com/composer/installers.git",
  443. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
  444. },
  445. "dist": {
  446. "type": "zip",
  447. "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  448. "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
  449. "shasum": ""
  450. },
  451. "require": {
  452. "composer-plugin-api": "^1.0"
  453. },
  454. "replace": {
  455. "roundcube/plugin-installer": "*",
  456. "shama/baton": "*"
  457. },
  458. "require-dev": {
  459. "composer/composer": "1.0.*@dev",
  460. "phpunit/phpunit": "^4.8.36"
  461. },
  462. "type": "composer-plugin",
  463. "extra": {
  464. "class": "Composer\\Installers\\Plugin",
  465. "branch-alias": {
  466. "dev-master": "1.0-dev"
  467. }
  468. },
  469. "autoload": {
  470. "psr-4": {
  471. "Composer\\Installers\\": "src/Composer/Installers"
  472. }
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "MIT"
  477. ],
  478. "authors": [
  479. {
  480. "name": "Kyle Robinson Young",
  481. "email": "kyle@dontkry.com",
  482. "homepage": "https://github.com/shama"
  483. }
  484. ],
  485. "description": "A multi-framework Composer library installer",
  486. "homepage": "https://composer.github.io/installers/",
  487. "keywords": [
  488. "Craft",
  489. "Dolibarr",
  490. "Eliasis",
  491. "Hurad",
  492. "ImageCMS",
  493. "Kanboard",
  494. "Lan Management System",
  495. "MODX Evo",
  496. "Mautic",
  497. "Maya",
  498. "OXID",
  499. "Plentymarkets",
  500. "Porto",
  501. "RadPHP",
  502. "SMF",
  503. "Thelia",
  504. "WolfCMS",
  505. "agl",
  506. "aimeos",
  507. "annotatecms",
  508. "attogram",
  509. "bitrix",
  510. "cakephp",
  511. "chef",
  512. "cockpit",
  513. "codeigniter",
  514. "concrete5",
  515. "croogo",
  516. "dokuwiki",
  517. "drupal",
  518. "eZ Platform",
  519. "elgg",
  520. "expressionengine",
  521. "fuelphp",
  522. "grav",
  523. "installer",
  524. "itop",
  525. "joomla",
  526. "kohana",
  527. "laravel",
  528. "lavalite",
  529. "lithium",
  530. "magento",
  531. "majima",
  532. "mako",
  533. "mediawiki",
  534. "modulework",
  535. "modx",
  536. "moodle",
  537. "osclass",
  538. "phpbb",
  539. "piwik",
  540. "ppi",
  541. "puppet",
  542. "pxcms",
  543. "reindex",
  544. "roundcube",
  545. "shopware",
  546. "silverstripe",
  547. "sydes",
  548. "symfony",
  549. "typo3",
  550. "wordpress",
  551. "yawik",
  552. "zend",
  553. "zikula"
  554. ],
  555. "time": "2018-08-27T06:10:37+00:00"
  556. },
  557. {
  558. "name": "composer/semver",
  559. "version": "1.5.0",
  560. "source": {
  561. "type": "git",
  562. "url": "https://github.com/composer/semver.git",
  563. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  564. },
  565. "dist": {
  566. "type": "zip",
  567. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  568. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  569. "shasum": ""
  570. },
  571. "require": {
  572. "php": "^5.3.2 || ^7.0"
  573. },
  574. "require-dev": {
  575. "phpunit/phpunit": "^4.5 || ^5.0.5",
  576. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  577. },
  578. "type": "library",
  579. "extra": {
  580. "branch-alias": {
  581. "dev-master": "1.x-dev"
  582. }
  583. },
  584. "autoload": {
  585. "psr-4": {
  586. "Composer\\Semver\\": "src"
  587. }
  588. },
  589. "notification-url": "https://packagist.org/downloads/",
  590. "license": [
  591. "MIT"
  592. ],
  593. "authors": [
  594. {
  595. "name": "Nils Adermann",
  596. "email": "naderman@naderman.de",
  597. "homepage": "http://www.naderman.de"
  598. },
  599. {
  600. "name": "Jordi Boggiano",
  601. "email": "j.boggiano@seld.be",
  602. "homepage": "http://seld.be"
  603. },
  604. {
  605. "name": "Rob Bast",
  606. "email": "rob.bast@gmail.com",
  607. "homepage": "http://robbast.nl"
  608. }
  609. ],
  610. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  611. "keywords": [
  612. "semantic",
  613. "semver",
  614. "validation",
  615. "versioning"
  616. ],
  617. "time": "2019-03-19T17:25:45+00:00"
  618. },
  619. {
  620. "name": "consolidation/annotated-command",
  621. "version": "2.12.0",
  622. "source": {
  623. "type": "git",
  624. "url": "https://github.com/consolidation/annotated-command.git",
  625. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  626. },
  627. "dist": {
  628. "type": "zip",
  629. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  630. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  631. "shasum": ""
  632. },
  633. "require": {
  634. "consolidation/output-formatters": "^3.4",
  635. "php": ">=5.4.5",
  636. "psr/log": "^1",
  637. "symfony/console": "^2.8|^3|^4",
  638. "symfony/event-dispatcher": "^2.5|^3|^4",
  639. "symfony/finder": "^2.5|^3|^4"
  640. },
  641. "require-dev": {
  642. "g1a/composer-test-scenarios": "^3",
  643. "php-coveralls/php-coveralls": "^1",
  644. "phpunit/phpunit": "^6",
  645. "squizlabs/php_codesniffer": "^2.7"
  646. },
  647. "type": "library",
  648. "extra": {
  649. "scenarios": {
  650. "symfony4": {
  651. "require": {
  652. "symfony/console": "^4.0"
  653. },
  654. "config": {
  655. "platform": {
  656. "php": "7.1.3"
  657. }
  658. }
  659. },
  660. "symfony2": {
  661. "require": {
  662. "symfony/console": "^2.8"
  663. },
  664. "require-dev": {
  665. "phpunit/phpunit": "^4.8.36"
  666. },
  667. "remove": [
  668. "php-coveralls/php-coveralls"
  669. ],
  670. "config": {
  671. "platform": {
  672. "php": "5.4.8"
  673. }
  674. },
  675. "scenario-options": {
  676. "create-lockfile": "false"
  677. }
  678. },
  679. "phpunit4": {
  680. "require-dev": {
  681. "phpunit/phpunit": "^4.8.36"
  682. },
  683. "remove": [
  684. "php-coveralls/php-coveralls"
  685. ],
  686. "config": {
  687. "platform": {
  688. "php": "5.4.8"
  689. }
  690. }
  691. }
  692. },
  693. "branch-alias": {
  694. "dev-master": "2.x-dev"
  695. }
  696. },
  697. "autoload": {
  698. "psr-4": {
  699. "Consolidation\\AnnotatedCommand\\": "src"
  700. }
  701. },
  702. "notification-url": "https://packagist.org/downloads/",
  703. "license": [
  704. "MIT"
  705. ],
  706. "authors": [
  707. {
  708. "name": "Greg Anderson",
  709. "email": "greg.1.anderson@greenknowe.org"
  710. }
  711. ],
  712. "description": "Initialize Symfony Console commands from annotated command class methods.",
  713. "time": "2019-03-08T16:55:03+00:00"
  714. },
  715. {
  716. "name": "consolidation/config",
  717. "version": "1.2.1",
  718. "source": {
  719. "type": "git",
  720. "url": "https://github.com/consolidation/config.git",
  721. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  722. },
  723. "dist": {
  724. "type": "zip",
  725. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  726. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  727. "shasum": ""
  728. },
  729. "require": {
  730. "dflydev/dot-access-data": "^1.1.0",
  731. "grasmash/expander": "^1",
  732. "php": ">=5.4.0"
  733. },
  734. "require-dev": {
  735. "g1a/composer-test-scenarios": "^3",
  736. "php-coveralls/php-coveralls": "^1",
  737. "phpunit/phpunit": "^5",
  738. "squizlabs/php_codesniffer": "2.*",
  739. "symfony/console": "^2.5|^3|^4",
  740. "symfony/yaml": "^2.8.11|^3|^4"
  741. },
  742. "suggest": {
  743. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  744. },
  745. "type": "library",
  746. "extra": {
  747. "scenarios": {
  748. "symfony4": {
  749. "require-dev": {
  750. "symfony/console": "^4.0"
  751. },
  752. "config": {
  753. "platform": {
  754. "php": "7.1.3"
  755. }
  756. }
  757. },
  758. "symfony2": {
  759. "require-dev": {
  760. "symfony/console": "^2.8",
  761. "symfony/event-dispatcher": "^2.8",
  762. "phpunit/phpunit": "^4.8.36"
  763. },
  764. "remove": [
  765. "php-coveralls/php-coveralls"
  766. ],
  767. "config": {
  768. "platform": {
  769. "php": "5.4.8"
  770. }
  771. }
  772. }
  773. },
  774. "branch-alias": {
  775. "dev-master": "1.x-dev"
  776. }
  777. },
  778. "autoload": {
  779. "psr-4": {
  780. "Consolidation\\Config\\": "src"
  781. }
  782. },
  783. "notification-url": "https://packagist.org/downloads/",
  784. "license": [
  785. "MIT"
  786. ],
  787. "authors": [
  788. {
  789. "name": "Greg Anderson",
  790. "email": "greg.1.anderson@greenknowe.org"
  791. }
  792. ],
  793. "description": "Provide configuration services for a commandline tool.",
  794. "time": "2019-03-03T19:37:04+00:00"
  795. },
  796. {
  797. "name": "consolidation/filter-via-dot-access-data",
  798. "version": "1.0.0",
  799. "source": {
  800. "type": "git",
  801. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  802. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  803. },
  804. "dist": {
  805. "type": "zip",
  806. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  807. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  808. "shasum": ""
  809. },
  810. "require": {
  811. "dflydev/dot-access-data": "^1.1.0",
  812. "php": ">=5.5.0"
  813. },
  814. "require-dev": {
  815. "consolidation/robo": "^1.2.3",
  816. "g1a/composer-test-scenarios": "^3",
  817. "knplabs/github-api": "^2.7",
  818. "php-coveralls/php-coveralls": "^1",
  819. "php-http/guzzle6-adapter": "^1.1",
  820. "phpunit/phpunit": "^5",
  821. "squizlabs/php_codesniffer": "^2.8",
  822. "symfony/console": "^2.8|^3|^4"
  823. },
  824. "type": "library",
  825. "extra": {
  826. "scenarios": {
  827. "phpunit5": {
  828. "require-dev": {
  829. "phpunit/phpunit": "^5.7.27"
  830. },
  831. "remove": [
  832. "php-coveralls/php-coveralls"
  833. ],
  834. "config": {
  835. "platform": {
  836. "php": "5.6.33"
  837. }
  838. }
  839. }
  840. },
  841. "branch-alias": {
  842. "dev-master": "1.x-dev"
  843. }
  844. },
  845. "autoload": {
  846. "psr-4": {
  847. "Consolidation\\Filter\\": "src"
  848. }
  849. },
  850. "notification-url": "https://packagist.org/downloads/",
  851. "license": [
  852. "MIT"
  853. ],
  854. "authors": [
  855. {
  856. "name": "Greg Anderson",
  857. "email": "greg.1.anderson@greenknowe.org"
  858. }
  859. ],
  860. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  861. "time": "2019-01-18T06:05:07+00:00"
  862. },
  863. {
  864. "name": "consolidation/log",
  865. "version": "1.1.1",
  866. "source": {
  867. "type": "git",
  868. "url": "https://github.com/consolidation/log.git",
  869. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  870. },
  871. "dist": {
  872. "type": "zip",
  873. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  874. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  875. "shasum": ""
  876. },
  877. "require": {
  878. "php": ">=5.4.5",
  879. "psr/log": "^1.0",
  880. "symfony/console": "^2.8|^3|^4"
  881. },
  882. "require-dev": {
  883. "g1a/composer-test-scenarios": "^3",
  884. "php-coveralls/php-coveralls": "^1",
  885. "phpunit/phpunit": "^6",
  886. "squizlabs/php_codesniffer": "^2"
  887. },
  888. "type": "library",
  889. "extra": {
  890. "scenarios": {
  891. "symfony4": {
  892. "require": {
  893. "symfony/console": "^4.0"
  894. },
  895. "config": {
  896. "platform": {
  897. "php": "7.1.3"
  898. }
  899. }
  900. },
  901. "symfony2": {
  902. "require": {
  903. "symfony/console": "^2.8"
  904. },
  905. "require-dev": {
  906. "phpunit/phpunit": "^4.8.36"
  907. },
  908. "remove": [
  909. "php-coveralls/php-coveralls"
  910. ],
  911. "config": {
  912. "platform": {
  913. "php": "5.4.8"
  914. }
  915. }
  916. },
  917. "phpunit4": {
  918. "require-dev": {
  919. "phpunit/phpunit": "^4.8.36"
  920. },
  921. "remove": [
  922. "php-coveralls/php-coveralls"
  923. ],
  924. "config": {
  925. "platform": {
  926. "php": "5.4.8"
  927. }
  928. }
  929. }
  930. },
  931. "branch-alias": {
  932. "dev-master": "1.x-dev"
  933. }
  934. },
  935. "autoload": {
  936. "psr-4": {
  937. "Consolidation\\Log\\": "src"
  938. }
  939. },
  940. "notification-url": "https://packagist.org/downloads/",
  941. "license": [
  942. "MIT"
  943. ],
  944. "authors": [
  945. {
  946. "name": "Greg Anderson",
  947. "email": "greg.1.anderson@greenknowe.org"
  948. }
  949. ],
  950. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  951. "time": "2019-01-01T17:30:51+00:00"
  952. },
  953. {
  954. "name": "consolidation/output-formatters",
  955. "version": "3.4.1",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/consolidation/output-formatters.git",
  959. "reference": "0881112642ad9059071f13f397f571035b527cb9"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0881112642ad9059071f13f397f571035b527cb9",
  964. "reference": "0881112642ad9059071f13f397f571035b527cb9",
  965. "shasum": ""
  966. },
  967. "require": {
  968. "dflydev/dot-access-data": "^1.1.0",
  969. "php": ">=5.4.0",
  970. "symfony/console": "^2.8|^3|^4",
  971. "symfony/finder": "^2.5|^3|^4"
  972. },
  973. "require-dev": {
  974. "g1a/composer-test-scenarios": "^3",
  975. "php-coveralls/php-coveralls": "^1",
  976. "phpunit/phpunit": "^5.7.27",
  977. "squizlabs/php_codesniffer": "^2.7",
  978. "symfony/var-dumper": "^2.8|^3|^4",
  979. "victorjonsson/markdowndocs": "^1.3"
  980. },
  981. "suggest": {
  982. "symfony/var-dumper": "For using the var_dump formatter"
  983. },
  984. "type": "library",
  985. "extra": {
  986. "scenarios": {
  987. "symfony4": {
  988. "require": {
  989. "symfony/console": "^4.0"
  990. },
  991. "require-dev": {
  992. "phpunit/phpunit": "^6"
  993. },
  994. "config": {
  995. "platform": {
  996. "php": "7.1.3"
  997. }
  998. }
  999. },
  1000. "symfony3": {
  1001. "require": {
  1002. "symfony/console": "^3.4",
  1003. "symfony/finder": "^3.4",
  1004. "symfony/var-dumper": "^3.4"
  1005. },
  1006. "config": {
  1007. "platform": {
  1008. "php": "5.6.32"
  1009. }
  1010. }
  1011. },
  1012. "symfony2": {
  1013. "require": {
  1014. "symfony/console": "^2.8"
  1015. },
  1016. "require-dev": {
  1017. "phpunit/phpunit": "^4.8.36"
  1018. },
  1019. "remove": [
  1020. "php-coveralls/php-coveralls"
  1021. ],
  1022. "config": {
  1023. "platform": {
  1024. "php": "5.4.8"
  1025. }
  1026. },
  1027. "scenario-options": {
  1028. "create-lockfile": "false"
  1029. }
  1030. }
  1031. },
  1032. "branch-alias": {
  1033. "dev-master": "3.x-dev"
  1034. }
  1035. },
  1036. "autoload": {
  1037. "psr-4": {
  1038. "Consolidation\\OutputFormatters\\": "src"
  1039. }
  1040. },
  1041. "notification-url": "https://packagist.org/downloads/",
  1042. "license": [
  1043. "MIT"
  1044. ],
  1045. "authors": [
  1046. {
  1047. "name": "Greg Anderson",
  1048. "email": "greg.1.anderson@greenknowe.org"
  1049. }
  1050. ],
  1051. "description": "Format text by applying transformations provided by plug-in formatters.",
  1052. "time": "2019-03-14T03:45:44+00:00"
  1053. },
  1054. {
  1055. "name": "consolidation/robo",
  1056. "version": "1.4.9",
  1057. "source": {
  1058. "type": "git",
  1059. "url": "https://github.com/consolidation/Robo.git",
  1060. "reference": "5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345"
  1061. },
  1062. "dist": {
  1063. "type": "zip",
  1064. "url": "https://api.github.com/repos/consolidation/Robo/zipball/5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345",
  1065. "reference": "5c6b3840a45afda1cbffbb3bb1f94dd5f9f83345",
  1066. "shasum": ""
  1067. },
  1068. "require": {
  1069. "consolidation/annotated-command": "^2.10.2",
  1070. "consolidation/config": "^1.2",
  1071. "consolidation/log": "~1",
  1072. "consolidation/output-formatters": "^3.1.13",
  1073. "consolidation/self-update": "^1",
  1074. "grasmash/yaml-expander": "^1.3",
  1075. "league/container": "^2.2",
  1076. "php": ">=5.5.0",
  1077. "symfony/console": "^2.8|^3|^4",
  1078. "symfony/event-dispatcher": "^2.5|^3|^4",
  1079. "symfony/filesystem": "^2.5|^3|^4",
  1080. "symfony/finder": "^2.5|^3|^4",
  1081. "symfony/process": "^2.5|^3|^4"
  1082. },
  1083. "replace": {
  1084. "codegyre/robo": "< 1.0"
  1085. },
  1086. "require-dev": {
  1087. "codeception/aspect-mock": "^1|^2.1.1",
  1088. "codeception/base": "^2.3.7",
  1089. "codeception/verify": "^0.3.2",
  1090. "g1a/composer-test-scenarios": "^3",
  1091. "goaop/framework": "~2.1.2",
  1092. "goaop/parser-reflection": "^1.1.0",
  1093. "natxet/cssmin": "3.0.4",
  1094. "nikic/php-parser": "^3.1.5",
  1095. "patchwork/jsqueeze": "~2",
  1096. "pear/archive_tar": "^1.4.4",
  1097. "php-coveralls/php-coveralls": "^1",
  1098. "phpunit/php-code-coverage": "~2|~4",
  1099. "squizlabs/php_codesniffer": "^2.8"
  1100. },
  1101. "suggest": {
  1102. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  1103. "natxet/CssMin": "For minifying CSS files in taskMinify",
  1104. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  1105. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  1106. },
  1107. "bin": [
  1108. "robo"
  1109. ],
  1110. "type": "library",
  1111. "extra": {
  1112. "scenarios": {
  1113. "symfony4": {
  1114. "require": {
  1115. "symfony/console": "^4"
  1116. },
  1117. "config": {
  1118. "platform": {
  1119. "php": "7.1.3"
  1120. }
  1121. }
  1122. },
  1123. "symfony2": {
  1124. "require": {
  1125. "symfony/console": "^2.8"
  1126. },
  1127. "remove": [
  1128. "goaop/framework"
  1129. ],
  1130. "config": {
  1131. "platform": {
  1132. "php": "5.5.9"
  1133. }
  1134. },
  1135. "scenario-options": {
  1136. "create-lockfile": "false"
  1137. }
  1138. }
  1139. },
  1140. "branch-alias": {
  1141. "dev-master": "2.x-dev"
  1142. }
  1143. },
  1144. "autoload": {
  1145. "psr-4": {
  1146. "Robo\\": "src"
  1147. }
  1148. },
  1149. "notification-url": "https://packagist.org/downloads/",
  1150. "license": [
  1151. "MIT"
  1152. ],
  1153. "authors": [
  1154. {
  1155. "name": "Davert",
  1156. "email": "davert.php@resend.cc"
  1157. }
  1158. ],
  1159. "description": "Modern task runner",
  1160. "time": "2019-03-19T18:07:19+00:00"
  1161. },
  1162. {
  1163. "name": "consolidation/self-update",
  1164. "version": "1.1.5",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/consolidation/self-update.git",
  1168. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  1173. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": ">=5.5.0",
  1178. "symfony/console": "^2.8|^3|^4",
  1179. "symfony/filesystem": "^2.5|^3|^4"
  1180. },
  1181. "bin": [
  1182. "scripts/release"
  1183. ],
  1184. "type": "library",
  1185. "extra": {
  1186. "branch-alias": {
  1187. "dev-master": "1.x-dev"
  1188. }
  1189. },
  1190. "autoload": {
  1191. "psr-4": {
  1192. "SelfUpdate\\": "src"
  1193. }
  1194. },
  1195. "notification-url": "https://packagist.org/downloads/",
  1196. "license": [
  1197. "MIT"
  1198. ],
  1199. "authors": [
  1200. {
  1201. "name": "Greg Anderson",
  1202. "email": "greg.1.anderson@greenknowe.org"
  1203. },
  1204. {
  1205. "name": "Alexander Menk",
  1206. "email": "menk@mestrona.net"
  1207. }
  1208. ],
  1209. "description": "Provides a self:update command for Symfony Console applications.",
  1210. "time": "2018-10-28T01:52:03+00:00"
  1211. },
  1212. {
  1213. "name": "consolidation/site-alias",
  1214. "version": "3.0.0",
  1215. "source": {
  1216. "type": "git",
  1217. "url": "https://github.com/consolidation/site-alias.git",
  1218. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  1219. },
  1220. "dist": {
  1221. "type": "zip",
  1222. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1223. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1224. "shasum": ""
  1225. },
  1226. "require": {
  1227. "consolidation/config": "^1.2.1",
  1228. "php": ">=5.5.0"
  1229. },
  1230. "require-dev": {
  1231. "consolidation/robo": "^1.2.3",
  1232. "g1a/composer-test-scenarios": "^3",
  1233. "knplabs/github-api": "^2.7",
  1234. "php-coveralls/php-coveralls": "^1",
  1235. "php-http/guzzle6-adapter": "^1.1",
  1236. "phpunit/phpunit": "^6",
  1237. "squizlabs/php_codesniffer": "^2.8",
  1238. "symfony/console": "^2.8|^3|^4",
  1239. "symfony/yaml": "~2.3|^3"
  1240. },
  1241. "type": "library",
  1242. "extra": {
  1243. "scenarios": {
  1244. "phpunit5": {
  1245. "require-dev": {
  1246. "phpunit/phpunit": "^5.7.27"
  1247. },
  1248. "remove": [
  1249. "php-coveralls/php-coveralls"
  1250. ],
  1251. "config": {
  1252. "platform": {
  1253. "php": "5.6.33"
  1254. }
  1255. }
  1256. }
  1257. },
  1258. "branch-alias": {
  1259. "dev-master": "3.x-dev"
  1260. }
  1261. },
  1262. "autoload": {
  1263. "psr-4": {
  1264. "Consolidation\\SiteAlias\\": "src"
  1265. }
  1266. },
  1267. "notification-url": "https://packagist.org/downloads/",
  1268. "license": [
  1269. "MIT"
  1270. ],
  1271. "authors": [
  1272. {
  1273. "name": "Moshe Weitzman",
  1274. "email": "weitzman@tejasa.com"
  1275. },
  1276. {
  1277. "name": "Greg Anderson",
  1278. "email": "greg.1.anderson@greenknowe.org"
  1279. }
  1280. ],
  1281. "description": "Manage alias records for local and remote sites.",
  1282. "time": "2019-03-12T17:31:48+00:00"
  1283. },
  1284. {
  1285. "name": "consolidation/site-process",
  1286. "version": "2.0.2",
  1287. "source": {
  1288. "type": "git",
  1289. "url": "https://github.com/consolidation/site-process.git",
  1290. "reference": "8957b9b3f4d48c183b7b11a29089d52875442e2f"
  1291. },
  1292. "dist": {
  1293. "type": "zip",
  1294. "url": "https://api.github.com/repos/consolidation/site-process/zipball/8957b9b3f4d48c183b7b11a29089d52875442e2f",
  1295. "reference": "8957b9b3f4d48c183b7b11a29089d52875442e2f",
  1296. "shasum": ""
  1297. },
  1298. "require": {
  1299. "consolidation/config": "^1.2.1",
  1300. "consolidation/site-alias": "^3",
  1301. "php": ">=5.6.0",
  1302. "symfony/process": "^3.4"
  1303. },
  1304. "require-dev": {
  1305. "consolidation/robo": "^1.3",
  1306. "g1a/composer-test-scenarios": "^3",
  1307. "knplabs/github-api": "^2.7",
  1308. "php-coveralls/php-coveralls": "^1",
  1309. "php-http/guzzle6-adapter": "^1.1",
  1310. "phpunit/phpunit": "^6",
  1311. "squizlabs/php_codesniffer": "^2.8"
  1312. },
  1313. "type": "library",
  1314. "extra": {
  1315. "scenarios": {
  1316. "phpunit5": {
  1317. "require-dev": {
  1318. "phpunit/phpunit": "^5.7.27"
  1319. },
  1320. "remove": [
  1321. "php-coveralls/php-coveralls"
  1322. ],
  1323. "config": {
  1324. "platform": {
  1325. "php": "5.6.33"
  1326. }
  1327. }
  1328. }
  1329. },
  1330. "branch-alias": {
  1331. "dev-master": "0.x-dev"
  1332. }
  1333. },
  1334. "autoload": {
  1335. "psr-4": {
  1336. "Consolidation\\SiteProcess\\": "src"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "Moshe Weitzman",
  1346. "email": "weitzman@tejasa.com"
  1347. },
  1348. {
  1349. "name": "Greg Anderson",
  1350. "email": "greg.1.anderson@greenknowe.org"
  1351. }
  1352. ],
  1353. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  1354. "time": "2019-04-05T20:16:00+00:00"
  1355. },
  1356. {
  1357. "name": "container-interop/container-interop",
  1358. "version": "1.2.0",
  1359. "source": {
  1360. "type": "git",
  1361. "url": "https://github.com/container-interop/container-interop.git",
  1362. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1363. },
  1364. "dist": {
  1365. "type": "zip",
  1366. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1367. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1368. "shasum": ""
  1369. },
  1370. "require": {
  1371. "psr/container": "^1.0"
  1372. },
  1373. "type": "library",
  1374. "autoload": {
  1375. "psr-4": {
  1376. "Interop\\Container\\": "src/Interop/Container/"
  1377. }
  1378. },
  1379. "notification-url": "https://packagist.org/downloads/",
  1380. "license": [
  1381. "MIT"
  1382. ],
  1383. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1384. "homepage": "https://github.com/container-interop/container-interop",
  1385. "time": "2017-02-14T19:40:03+00:00"
  1386. },
  1387. {
  1388. "name": "cweagans/composer-patches",
  1389. "version": "1.6.5",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://github.com/cweagans/composer-patches.git",
  1393. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  1398. "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
  1399. "shasum": ""
  1400. },
  1401. "require": {
  1402. "composer-plugin-api": "^1.0",
  1403. "php": ">=5.3.0"
  1404. },
  1405. "require-dev": {
  1406. "composer/composer": "~1.0",
  1407. "phpunit/phpunit": "~4.6"
  1408. },
  1409. "type": "composer-plugin",
  1410. "extra": {
  1411. "class": "cweagans\\Composer\\Patches"
  1412. },
  1413. "autoload": {
  1414. "psr-4": {
  1415. "cweagans\\Composer\\": "src"
  1416. }
  1417. },
  1418. "notification-url": "https://packagist.org/downloads/",
  1419. "license": [
  1420. "BSD-3-Clause"
  1421. ],
  1422. "authors": [
  1423. {
  1424. "name": "Cameron Eagans",
  1425. "email": "me@cweagans.net"
  1426. }
  1427. ],
  1428. "description": "Provides a way to patch Composer packages.",
  1429. "time": "2018-05-11T18:00:16+00:00"
  1430. },
  1431. {
  1432. "name": "dflydev/dot-access-configuration",
  1433. "version": "v1.0.3",
  1434. "source": {
  1435. "type": "git",
  1436. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1437. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1438. },
  1439. "dist": {
  1440. "type": "zip",
  1441. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1442. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1443. "shasum": ""
  1444. },
  1445. "require": {
  1446. "dflydev/dot-access-data": "1.*",
  1447. "dflydev/placeholder-resolver": "1.*",
  1448. "php": ">=5.3.2"
  1449. },
  1450. "require-dev": {
  1451. "symfony/yaml": "~2.1"
  1452. },
  1453. "suggest": {
  1454. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1455. },
  1456. "type": "library",
  1457. "extra": {
  1458. "branch-alias": {
  1459. "dev-master": "1.0-dev"
  1460. }
  1461. },
  1462. "autoload": {
  1463. "psr-0": {
  1464. "Dflydev\\DotAccessConfiguration": "src"
  1465. }
  1466. },
  1467. "notification-url": "https://packagist.org/downloads/",
  1468. "license": [
  1469. "MIT"
  1470. ],
  1471. "authors": [
  1472. {
  1473. "name": "Dragonfly Development Inc.",
  1474. "email": "info@dflydev.com",
  1475. "homepage": "http://dflydev.com"
  1476. },
  1477. {
  1478. "name": "Beau Simensen",
  1479. "email": "beau@dflydev.com",
  1480. "homepage": "http://beausimensen.com"
  1481. }
  1482. ],
  1483. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1484. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1485. "keywords": [
  1486. "config",
  1487. "configuration"
  1488. ],
  1489. "time": "2018-09-08T23:00:17+00:00"
  1490. },
  1491. {
  1492. "name": "dflydev/dot-access-data",
  1493. "version": "v1.1.0",
  1494. "source": {
  1495. "type": "git",
  1496. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1497. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1498. },
  1499. "dist": {
  1500. "type": "zip",
  1501. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1502. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1503. "shasum": ""
  1504. },
  1505. "require": {
  1506. "php": ">=5.3.2"
  1507. },
  1508. "type": "library",
  1509. "extra": {
  1510. "branch-alias": {
  1511. "dev-master": "1.0-dev"
  1512. }
  1513. },
  1514. "autoload": {
  1515. "psr-0": {
  1516. "Dflydev\\DotAccessData": "src"
  1517. }
  1518. },
  1519. "notification-url": "https://packagist.org/downloads/",
  1520. "license": [
  1521. "MIT"
  1522. ],
  1523. "authors": [
  1524. {
  1525. "name": "Dragonfly Development Inc.",
  1526. "email": "info@dflydev.com",
  1527. "homepage": "http://dflydev.com"
  1528. },
  1529. {
  1530. "name": "Beau Simensen",
  1531. "email": "beau@dflydev.com",
  1532. "homepage": "http://beausimensen.com"
  1533. },
  1534. {
  1535. "name": "Carlos Frutos",
  1536. "email": "carlos@kiwing.it",
  1537. "homepage": "https://github.com/cfrutos"
  1538. }
  1539. ],
  1540. "description": "Given a deep data structure, access data by dot notation.",
  1541. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1542. "keywords": [
  1543. "access",
  1544. "data",
  1545. "dot",
  1546. "notation"
  1547. ],
  1548. "time": "2017-01-20T21:14:22+00:00"
  1549. },
  1550. {
  1551. "name": "dflydev/placeholder-resolver",
  1552. "version": "v1.0.2",
  1553. "source": {
  1554. "type": "git",
  1555. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1556. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1557. },
  1558. "dist": {
  1559. "type": "zip",
  1560. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1561. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1562. "shasum": ""
  1563. },
  1564. "require": {
  1565. "php": ">=5.3.2"
  1566. },
  1567. "type": "library",
  1568. "extra": {
  1569. "branch-alias": {
  1570. "dev-master": "1.0-dev"
  1571. }
  1572. },
  1573. "autoload": {
  1574. "psr-0": {
  1575. "Dflydev\\PlaceholderResolver": "src"
  1576. }
  1577. },
  1578. "notification-url": "https://packagist.org/downloads/",
  1579. "license": [
  1580. "MIT"
  1581. ],
  1582. "authors": [
  1583. {
  1584. "name": "Dragonfly Development Inc.",
  1585. "email": "info@dflydev.com",
  1586. "homepage": "http://dflydev.com"
  1587. },
  1588. {
  1589. "name": "Beau Simensen",
  1590. "email": "beau@dflydev.com",
  1591. "homepage": "http://beausimensen.com"
  1592. }
  1593. ],
  1594. "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.",
  1595. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1596. "keywords": [
  1597. "placeholder",
  1598. "resolver"
  1599. ],
  1600. "time": "2012-10-28T21:08:28+00:00"
  1601. },
  1602. {
  1603. "name": "dnoegel/php-xdg-base-dir",
  1604. "version": "0.1",
  1605. "source": {
  1606. "type": "git",
  1607. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1608. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1609. },
  1610. "dist": {
  1611. "type": "zip",
  1612. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1613. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1614. "shasum": ""
  1615. },
  1616. "require": {
  1617. "php": ">=5.3.2"
  1618. },
  1619. "require-dev": {
  1620. "phpunit/phpunit": "@stable"
  1621. },
  1622. "type": "project",
  1623. "autoload": {
  1624. "psr-4": {
  1625. "XdgBaseDir\\": "src/"
  1626. }
  1627. },
  1628. "notification-url": "https://packagist.org/downloads/",
  1629. "license": [
  1630. "MIT"
  1631. ],
  1632. "description": "implementation of xdg base directory specification for php",
  1633. "time": "2014-10-24T07:27:01+00:00"
  1634. },
  1635. {
  1636. "name": "doctrine/annotations",
  1637. "version": "v1.4.0",
  1638. "source": {
  1639. "type": "git",
  1640. "url": "https://github.com/doctrine/annotations.git",
  1641. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1642. },
  1643. "dist": {
  1644. "type": "zip",
  1645. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1646. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1647. "shasum": ""
  1648. },
  1649. "require": {
  1650. "doctrine/lexer": "1.*",
  1651. "php": "^5.6 || ^7.0"
  1652. },
  1653. "require-dev": {
  1654. "doctrine/cache": "1.*",
  1655. "phpunit/phpunit": "^5.7"
  1656. },
  1657. "type": "library",
  1658. "extra": {
  1659. "branch-alias": {
  1660. "dev-master": "1.4.x-dev"
  1661. }
  1662. },
  1663. "autoload": {
  1664. "psr-4": {
  1665. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1666. }
  1667. },
  1668. "notification-url": "https://packagist.org/downloads/",
  1669. "license": [
  1670. "MIT"
  1671. ],
  1672. "authors": [
  1673. {
  1674. "name": "Roman Borschel",
  1675. "email": "roman@code-factory.org"
  1676. },
  1677. {
  1678. "name": "Benjamin Eberlei",
  1679. "email": "kontakt@beberlei.de"
  1680. },
  1681. {
  1682. "name": "Guilherme Blanco",
  1683. "email": "guilhermeblanco@gmail.com"
  1684. },
  1685. {
  1686. "name": "Jonathan Wage",
  1687. "email": "jonwage@gmail.com"
  1688. },
  1689. {
  1690. "name": "Johannes Schmitt",
  1691. "email": "schmittjoh@gmail.com"
  1692. }
  1693. ],
  1694. "description": "Docblock Annotations Parser",
  1695. "homepage": "http://www.doctrine-project.org",
  1696. "keywords": [
  1697. "annotations",
  1698. "docblock",
  1699. "parser"
  1700. ],
  1701. "time": "2017-02-24T16:22:25+00:00"
  1702. },
  1703. {
  1704. "name": "doctrine/cache",
  1705. "version": "v1.6.2",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/doctrine/cache.git",
  1709. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1714. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1715. "shasum": ""
  1716. },
  1717. "require": {
  1718. "php": "~5.5|~7.0"
  1719. },
  1720. "conflict": {
  1721. "doctrine/common": ">2.2,<2.4"
  1722. },
  1723. "require-dev": {
  1724. "phpunit/phpunit": "~4.8|~5.0",
  1725. "predis/predis": "~1.0",
  1726. "satooshi/php-coveralls": "~0.6"
  1727. },
  1728. "type": "library",
  1729. "extra": {
  1730. "branch-alias": {
  1731. "dev-master": "1.6.x-dev"
  1732. }
  1733. },
  1734. "autoload": {
  1735. "psr-4": {
  1736. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1737. }
  1738. },
  1739. "notification-url": "https://packagist.org/downloads/",
  1740. "license": [
  1741. "MIT"
  1742. ],
  1743. "authors": [
  1744. {
  1745. "name": "Roman Borschel",
  1746. "email": "roman@code-factory.org"
  1747. },
  1748. {
  1749. "name": "Benjamin Eberlei",
  1750. "email": "kontakt@beberlei.de"
  1751. },
  1752. {
  1753. "name": "Guilherme Blanco",
  1754. "email": "guilhermeblanco@gmail.com"
  1755. },
  1756. {
  1757. "name": "Jonathan Wage",
  1758. "email": "jonwage@gmail.com"
  1759. },
  1760. {
  1761. "name": "Johannes Schmitt",
  1762. "email": "schmittjoh@gmail.com"
  1763. }
  1764. ],
  1765. "description": "Caching library offering an object-oriented API for many cache backends",
  1766. "homepage": "http://www.doctrine-project.org",
  1767. "keywords": [
  1768. "cache",
  1769. "caching"
  1770. ],
  1771. "time": "2017-07-22T12:49:21+00:00"
  1772. },
  1773. {
  1774. "name": "doctrine/collections",
  1775. "version": "v1.4.0",
  1776. "source": {
  1777. "type": "git",
  1778. "url": "https://github.com/doctrine/collections.git",
  1779. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1780. },
  1781. "dist": {
  1782. "type": "zip",
  1783. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1784. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1785. "shasum": ""
  1786. },
  1787. "require": {
  1788. "php": "^5.6 || ^7.0"
  1789. },
  1790. "require-dev": {
  1791. "doctrine/coding-standard": "~0.1@dev",
  1792. "phpunit/phpunit": "^5.7"
  1793. },
  1794. "type": "library",
  1795. "extra": {
  1796. "branch-alias": {
  1797. "dev-master": "1.3.x-dev"
  1798. }
  1799. },
  1800. "autoload": {
  1801. "psr-0": {
  1802. "Doctrine\\Common\\Collections\\": "lib/"
  1803. }
  1804. },
  1805. "notification-url": "https://packagist.org/downloads/",
  1806. "license": [
  1807. "MIT"
  1808. ],
  1809. "authors": [
  1810. {
  1811. "name": "Roman Borschel",
  1812. "email": "roman@code-factory.org"
  1813. },
  1814. {
  1815. "name": "Benjamin Eberlei",
  1816. "email": "kontakt@beberlei.de"
  1817. },
  1818. {
  1819. "name": "Guilherme Blanco",
  1820. "email": "guilhermeblanco@gmail.com"
  1821. },
  1822. {
  1823. "name": "Jonathan Wage",
  1824. "email": "jonwage@gmail.com"
  1825. },
  1826. {
  1827. "name": "Johannes Schmitt",
  1828. "email": "schmittjoh@gmail.com"
  1829. }
  1830. ],
  1831. "description": "Collections Abstraction library",
  1832. "homepage": "http://www.doctrine-project.org",
  1833. "keywords": [
  1834. "array",
  1835. "collections",
  1836. "iterator"
  1837. ],
  1838. "time": "2017-01-03T10:49:41+00:00"
  1839. },
  1840. {
  1841. "name": "doctrine/common",
  1842. "version": "v2.7.3",
  1843. "source": {
  1844. "type": "git",
  1845. "url": "https://github.com/doctrine/common.git",
  1846. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1847. },
  1848. "dist": {
  1849. "type": "zip",
  1850. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1851. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1852. "shasum": ""
  1853. },
  1854. "require": {
  1855. "doctrine/annotations": "1.*",
  1856. "doctrine/cache": "1.*",
  1857. "doctrine/collections": "1.*",
  1858. "doctrine/inflector": "1.*",
  1859. "doctrine/lexer": "1.*",
  1860. "php": "~5.6|~7.0"
  1861. },
  1862. "require-dev": {
  1863. "phpunit/phpunit": "^5.4.6"
  1864. },
  1865. "type": "library",
  1866. "extra": {
  1867. "branch-alias": {
  1868. "dev-master": "2.7.x-dev"
  1869. }
  1870. },
  1871. "autoload": {
  1872. "psr-4": {
  1873. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1874. }
  1875. },
  1876. "notification-url": "https://packagist.org/downloads/",
  1877. "license": [
  1878. "MIT"
  1879. ],
  1880. "authors": [
  1881. {
  1882. "name": "Roman Borschel",
  1883. "email": "roman@code-factory.org"
  1884. },
  1885. {
  1886. "name": "Benjamin Eberlei",
  1887. "email": "kontakt@beberlei.de"
  1888. },
  1889. {
  1890. "name": "Guilherme Blanco",
  1891. "email": "guilhermeblanco@gmail.com"
  1892. },
  1893. {
  1894. "name": "Jonathan Wage",
  1895. "email": "jonwage@gmail.com"
  1896. },
  1897. {
  1898. "name": "Johannes Schmitt",
  1899. "email": "schmittjoh@gmail.com"
  1900. }
  1901. ],
  1902. "description": "Common Library for Doctrine projects",
  1903. "homepage": "http://www.doctrine-project.org",
  1904. "keywords": [
  1905. "annotations",
  1906. "collections",
  1907. "eventmanager",
  1908. "persistence",
  1909. "spl"
  1910. ],
  1911. "time": "2017-07-22T08:35:12+00:00"
  1912. },
  1913. {
  1914. "name": "doctrine/inflector",
  1915. "version": "v1.2.0",
  1916. "source": {
  1917. "type": "git",
  1918. "url": "https://github.com/doctrine/inflector.git",
  1919. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1920. },
  1921. "dist": {
  1922. "type": "zip",
  1923. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1924. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1925. "shasum": ""
  1926. },
  1927. "require": {
  1928. "php": "^7.0"
  1929. },
  1930. "require-dev": {
  1931. "phpunit/phpunit": "^6.2"
  1932. },
  1933. "type": "library",
  1934. "extra": {
  1935. "branch-alias": {
  1936. "dev-master": "1.2.x-dev"
  1937. }
  1938. },
  1939. "autoload": {
  1940. "psr-4": {
  1941. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1942. }
  1943. },
  1944. "notification-url": "https://packagist.org/downloads/",
  1945. "license": [
  1946. "MIT"
  1947. ],
  1948. "authors": [
  1949. {
  1950. "name": "Roman Borschel",
  1951. "email": "roman@code-factory.org"
  1952. },
  1953. {
  1954. "name": "Benjamin Eberlei",
  1955. "email": "kontakt@beberlei.de"
  1956. },
  1957. {
  1958. "name": "Guilherme Blanco",
  1959. "email": "guilhermeblanco@gmail.com"
  1960. },
  1961. {
  1962. "name": "Jonathan Wage",
  1963. "email": "jonwage@gmail.com"
  1964. },
  1965. {
  1966. "name": "Johannes Schmitt",
  1967. "email": "schmittjoh@gmail.com"
  1968. }
  1969. ],
  1970. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1971. "homepage": "http://www.doctrine-project.org",
  1972. "keywords": [
  1973. "inflection",
  1974. "pluralize",
  1975. "singularize",
  1976. "string"
  1977. ],
  1978. "time": "2017-07-22T12:18:28+00:00"
  1979. },
  1980. {
  1981. "name": "doctrine/instantiator",
  1982. "version": "1.0.5",
  1983. "source": {
  1984. "type": "git",
  1985. "url": "https://github.com/doctrine/instantiator.git",
  1986. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1987. },
  1988. "dist": {
  1989. "type": "zip",
  1990. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1991. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1992. "shasum": ""
  1993. },
  1994. "require": {
  1995. "php": ">=5.3,<8.0-DEV"
  1996. },
  1997. "require-dev": {
  1998. "athletic/athletic": "~0.1.8",
  1999. "ext-pdo": "*",
  2000. "ext-phar": "*",
  2001. "phpunit/phpunit": "~4.0",
  2002. "squizlabs/php_codesniffer": "~2.0"
  2003. },
  2004. "type": "library",
  2005. "extra": {
  2006. "branch-alias": {
  2007. "dev-master": "1.0.x-dev"
  2008. }
  2009. },
  2010. "autoload": {
  2011. "psr-4": {
  2012. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2013. }
  2014. },
  2015. "notification-url": "https://packagist.org/downloads/",
  2016. "license": [
  2017. "MIT"
  2018. ],
  2019. "authors": [
  2020. {
  2021. "name": "Marco Pivetta",
  2022. "email": "ocramius@gmail.com",
  2023. "homepage": "http://ocramius.github.com/"
  2024. }
  2025. ],
  2026. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2027. "homepage": "https://github.com/doctrine/instantiator",
  2028. "keywords": [
  2029. "constructor",
  2030. "instantiate"
  2031. ],
  2032. "time": "2015-06-14T21:17:01+00:00"
  2033. },
  2034. {
  2035. "name": "doctrine/lexer",
  2036. "version": "1.0.2",
  2037. "source": {
  2038. "type": "git",
  2039. "url": "https://github.com/doctrine/lexer.git",
  2040. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  2041. },
  2042. "dist": {
  2043. "type": "zip",
  2044. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2045. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2046. "shasum": ""
  2047. },
  2048. "require": {
  2049. "php": ">=5.3.2"
  2050. },
  2051. "require-dev": {
  2052. "phpunit/phpunit": "^4.5"
  2053. },
  2054. "type": "library",
  2055. "extra": {
  2056. "branch-alias": {
  2057. "dev-master": "1.0.x-dev"
  2058. }
  2059. },
  2060. "autoload": {
  2061. "psr-4": {
  2062. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  2063. }
  2064. },
  2065. "notification-url": "https://packagist.org/downloads/",
  2066. "license": [
  2067. "MIT"
  2068. ],
  2069. "authors": [
  2070. {
  2071. "name": "Roman Borschel",
  2072. "email": "roman@code-factory.org"
  2073. },
  2074. {
  2075. "name": "Guilherme Blanco",
  2076. "email": "guilhermeblanco@gmail.com"
  2077. },
  2078. {
  2079. "name": "Johannes Schmitt",
  2080. "email": "schmittjoh@gmail.com"
  2081. }
  2082. ],
  2083. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  2084. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  2085. "keywords": [
  2086. "annotations",
  2087. "docblock",
  2088. "lexer",
  2089. "parser",
  2090. "php"
  2091. ],
  2092. "time": "2019-06-08T11:03:04+00:00"
  2093. },
  2094. {
  2095. "name": "drupal-composer/drupal-scaffold",
  2096. "version": "2.6.1",
  2097. "source": {
  2098. "type": "git",
  2099. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  2100. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8"
  2101. },
  2102. "dist": {
  2103. "type": "zip",
  2104. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2105. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2106. "shasum": ""
  2107. },
  2108. "require": {
  2109. "composer-plugin-api": "^1.0.0",
  2110. "composer/semver": "^1.4",
  2111. "php": "^5.5.9|>=7.0.8"
  2112. },
  2113. "require-dev": {
  2114. "composer/composer": "dev-master",
  2115. "g1a/composer-test-scenarios": "^2.1.0",
  2116. "phpunit/phpunit": "^6",
  2117. "squizlabs/php_codesniffer": "^2.8"
  2118. },
  2119. "type": "composer-plugin",
  2120. "extra": {
  2121. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  2122. "branch-alias": {
  2123. "dev-master": "2.0.x-dev"
  2124. }
  2125. },
  2126. "autoload": {
  2127. "psr-4": {
  2128. "DrupalComposer\\DrupalScaffold\\": "src/"
  2129. }
  2130. },
  2131. "notification-url": "https://packagist.org/downloads/",
  2132. "license": [
  2133. "GPL-2.0-or-later"
  2134. ],
  2135. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  2136. "time": "2019-03-30T10:41:38+00:00"
  2137. },
  2138. {
  2139. "name": "drupal/addtoany",
  2140. "version": "1.12.0",
  2141. "source": {
  2142. "type": "git",
  2143. "url": "https://git.drupalcode.org/project/addtoany.git",
  2144. "reference": "8.x-1.12"
  2145. },
  2146. "dist": {
  2147. "type": "zip",
  2148. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.12.zip",
  2149. "reference": "8.x-1.12",
  2150. "shasum": "f66b3cb0a95b500e4802e8ff9c29af04554327d8"
  2151. },
  2152. "require": {
  2153. "drupal/core": "*"
  2154. },
  2155. "type": "drupal-module",
  2156. "extra": {
  2157. "branch-alias": {
  2158. "dev-1.x": "1.x-dev"
  2159. },
  2160. "drupal": {
  2161. "version": "8.x-1.12",
  2162. "datestamp": "1554702781",
  2163. "security-coverage": {
  2164. "status": "covered",
  2165. "message": "Covered by Drupal's security advisory policy"
  2166. }
  2167. }
  2168. },
  2169. "notification-url": "https://packages.drupal.org/8/downloads",
  2170. "license": [
  2171. "GPL-2.0-or-later"
  2172. ],
  2173. "authors": [
  2174. {
  2175. "name": "AddToAny",
  2176. "homepage": "https://www.drupal.org/user/2640913"
  2177. },
  2178. {
  2179. "name": "micropat",
  2180. "homepage": "https://www.drupal.org/user/260224"
  2181. }
  2182. ],
  2183. "description": "Share buttons by AddToAny, including the AddToAny universal sharing button, Facebook, Twitter, Google+, Pinterest, and over 100 more on the <a href=\"https://www.addtoany.com/\" target=\"_blank\">AddToAny</a> platform.",
  2184. "homepage": "https://www.drupal.org/project/addtoany",
  2185. "support": {
  2186. "source": "https://git.drupalcode.org/project/addtoany"
  2187. }
  2188. },
  2189. {
  2190. "name": "drupal/admin_toolbar",
  2191. "version": "2.0.0",
  2192. "source": {
  2193. "type": "git",
  2194. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2195. "reference": "8.x-2.0"
  2196. },
  2197. "dist": {
  2198. "type": "zip",
  2199. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.0.zip",
  2200. "reference": "8.x-2.0",
  2201. "shasum": "568de63dbaa8046a82d327dbd0b892ab79fb87aa"
  2202. },
  2203. "require": {
  2204. "drupal/core": "*"
  2205. },
  2206. "type": "drupal-module",
  2207. "extra": {
  2208. "branch-alias": {
  2209. "dev-2.x": "2.x-dev"
  2210. },
  2211. "drupal": {
  2212. "version": "8.x-2.0",
  2213. "datestamp": "1572370984",
  2214. "security-coverage": {
  2215. "status": "covered",
  2216. "message": "Covered by Drupal's security advisory policy"
  2217. }
  2218. }
  2219. },
  2220. "notification-url": "https://packages.drupal.org/8/downloads",
  2221. "license": [
  2222. "GPL-2.0+"
  2223. ],
  2224. "authors": [
  2225. {
  2226. "name": "Wilfrid Roze (eme)",
  2227. "homepage": "https://www.drupal.org/u/eme",
  2228. "role": "Maintainer"
  2229. },
  2230. {
  2231. "name": "Romain Jarraud (romainj)",
  2232. "homepage": "https://www.drupal.org/u/romainj",
  2233. "role": "Maintainer"
  2234. },
  2235. {
  2236. "name": "Adrian Cid Almaguer (adriancid)",
  2237. "homepage": "https://www.drupal.org/u/adriancid",
  2238. "email": "adriancid@gmail.com",
  2239. "role": "Maintainer"
  2240. },
  2241. {
  2242. "name": "Mohamed Anis Taktak (matio89)",
  2243. "homepage": "https://www.drupal.org/u/matio89",
  2244. "role": "Maintainer"
  2245. },
  2246. {
  2247. "name": "fethi.krout",
  2248. "homepage": "https://www.drupal.org/user/3206765"
  2249. },
  2250. {
  2251. "name": "matio89",
  2252. "homepage": "https://www.drupal.org/user/2320090"
  2253. },
  2254. {
  2255. "name": "romainj",
  2256. "homepage": "https://www.drupal.org/user/370706"
  2257. }
  2258. ],
  2259. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2260. "homepage": "http://drupal.org/project/admin_toolbar",
  2261. "keywords": [
  2262. "Drupal",
  2263. "Toolbar"
  2264. ],
  2265. "support": {
  2266. "source": "http://cgit.drupalcode.org/admin_toolbar",
  2267. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2268. }
  2269. },
  2270. {
  2271. "name": "drupal/adminimal_theme",
  2272. "version": "1.4.0",
  2273. "source": {
  2274. "type": "git",
  2275. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2276. "reference": "8.x-1.4"
  2277. },
  2278. "dist": {
  2279. "type": "zip",
  2280. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.4.zip",
  2281. "reference": "8.x-1.4",
  2282. "shasum": "af9cbce473d0bd9590889992200ed175cb7e1159"
  2283. },
  2284. "require": {
  2285. "drupal/core": "~8.0"
  2286. },
  2287. "type": "drupal-theme",
  2288. "extra": {
  2289. "branch-alias": {
  2290. "dev-1.x": "1.x-dev"
  2291. },
  2292. "drupal": {
  2293. "version": "8.x-1.4",
  2294. "datestamp": "1547996580",
  2295. "security-coverage": {
  2296. "status": "covered",
  2297. "message": "Covered by Drupal's security advisory policy"
  2298. }
  2299. }
  2300. },
  2301. "notification-url": "https://packages.drupal.org/8/downloads",
  2302. "license": [
  2303. "GPL-2.0+"
  2304. ],
  2305. "authors": [
  2306. {
  2307. "name": "ANDiTKO",
  2308. "homepage": "https://www.drupal.org/user/1428124"
  2309. },
  2310. {
  2311. "name": "andrey.troeglazov",
  2312. "homepage": "https://www.drupal.org/user/3145389"
  2313. },
  2314. {
  2315. "name": "realityloop",
  2316. "homepage": "https://www.drupal.org/user/139189"
  2317. }
  2318. ],
  2319. "description": "Drupal administration theme with modern minimalist design.",
  2320. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2321. "support": {
  2322. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2323. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2324. }
  2325. },
  2326. {
  2327. "name": "drupal/audiofield",
  2328. "version": "1.9.0",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://git.drupalcode.org/project/audiofield.git",
  2332. "reference": "8.x-1.9"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  2337. "reference": "8.x-1.9",
  2338. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  2339. },
  2340. "require": {
  2341. "drupal/core": "~8.0"
  2342. },
  2343. "type": "drupal-module",
  2344. "extra": {
  2345. "branch-alias": {
  2346. "dev-1.x": "1.x-dev"
  2347. },
  2348. "drupal": {
  2349. "version": "8.x-1.9",
  2350. "datestamp": "1553712781",
  2351. "security-coverage": {
  2352. "status": "covered",
  2353. "message": "Covered by Drupal's security advisory policy"
  2354. }
  2355. },
  2356. "drush": {
  2357. "services": {
  2358. "drush.services.yml": "^9"
  2359. }
  2360. }
  2361. },
  2362. "notification-url": "https://packages.drupal.org/8/downloads",
  2363. "license": [
  2364. "GPL-2.0+"
  2365. ],
  2366. "authors": [
  2367. {
  2368. "name": "Daniel Moberly",
  2369. "homepage": "https://www.drupal.org/u/danielmoberly",
  2370. "role": "Maintainer"
  2371. },
  2372. {
  2373. "name": "josipsaric",
  2374. "homepage": "https://www.drupal.org/user/3063287"
  2375. },
  2376. {
  2377. "name": "tamerzg",
  2378. "homepage": "https://www.drupal.org/user/464564"
  2379. }
  2380. ],
  2381. "description": "AudioField Module",
  2382. "homepage": "https://www.drupal.org/project/audiofield",
  2383. "support": {
  2384. "source": "https://git.drupalcode.org/project/audiofield",
  2385. "issues": "https://www.drupal.org/project/issues/audiofield"
  2386. }
  2387. },
  2388. {
  2389. "name": "drupal/autologout",
  2390. "version": "1.0.0",
  2391. "source": {
  2392. "type": "git",
  2393. "url": "https://git.drupalcode.org/project/autologout.git",
  2394. "reference": "8.x-1.0"
  2395. },
  2396. "dist": {
  2397. "type": "zip",
  2398. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2399. "reference": "8.x-1.0",
  2400. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2401. },
  2402. "require": {
  2403. "drupal/core": "~8.0"
  2404. },
  2405. "type": "drupal-module",
  2406. "extra": {
  2407. "branch-alias": {
  2408. "dev-1.x": "1.x-dev"
  2409. },
  2410. "drupal": {
  2411. "version": "8.x-1.0",
  2412. "datestamp": "1494237185",
  2413. "security-coverage": {
  2414. "status": "covered",
  2415. "message": "Covered by Drupal's security advisory policy"
  2416. }
  2417. }
  2418. },
  2419. "notification-url": "https://packages.drupal.org/8/downloads",
  2420. "license": [
  2421. "GPL-2.0+"
  2422. ],
  2423. "authors": [
  2424. {
  2425. "name": "AjK",
  2426. "homepage": "https://www.drupal.org/user/39030"
  2427. },
  2428. {
  2429. "name": "AjitS",
  2430. "homepage": "https://www.drupal.org/user/981944"
  2431. },
  2432. {
  2433. "name": "boshtian",
  2434. "homepage": "https://www.drupal.org/user/1773456"
  2435. },
  2436. {
  2437. "name": "dandrews",
  2438. "homepage": "https://www.drupal.org/user/2014490"
  2439. },
  2440. {
  2441. "name": "darksnow",
  2442. "homepage": "https://www.drupal.org/user/391915"
  2443. },
  2444. {
  2445. "name": "johnennew",
  2446. "homepage": "https://www.drupal.org/user/1150042"
  2447. },
  2448. {
  2449. "name": "jrglasgow",
  2450. "homepage": "https://www.drupal.org/user/36590"
  2451. },
  2452. {
  2453. "name": "kmasood",
  2454. "homepage": "https://www.drupal.org/user/1262860"
  2455. },
  2456. {
  2457. "name": "levelos",
  2458. "homepage": "https://www.drupal.org/user/54135"
  2459. },
  2460. {
  2461. "name": "prabeen.giri",
  2462. "homepage": "https://www.drupal.org/user/913078"
  2463. },
  2464. {
  2465. "name": "str8",
  2466. "homepage": "https://www.drupal.org/user/2865063"
  2467. }
  2468. ],
  2469. "description": "Adds automated timed logout.",
  2470. "homepage": "http://drupal.org/project/autologout",
  2471. "support": {
  2472. "source": "https://git.drupalcode.org/project/autologout"
  2473. }
  2474. },
  2475. {
  2476. "name": "drupal/basic",
  2477. "version": "1.3.0",
  2478. "source": {
  2479. "type": "git",
  2480. "url": "https://git.drupalcode.org/project/basic.git",
  2481. "reference": "8.x-1.3"
  2482. },
  2483. "dist": {
  2484. "type": "zip",
  2485. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  2486. "reference": "8.x-1.3",
  2487. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  2488. },
  2489. "require": {
  2490. "drupal/core": "~8.0"
  2491. },
  2492. "type": "drupal-theme",
  2493. "extra": {
  2494. "branch-alias": {
  2495. "dev-1.x": "1.x-dev"
  2496. },
  2497. "drupal": {
  2498. "version": "8.x-1.3",
  2499. "datestamp": "1508096944",
  2500. "security-coverage": {
  2501. "status": "covered",
  2502. "message": "Covered by Drupal's security advisory policy"
  2503. }
  2504. }
  2505. },
  2506. "notification-url": "https://packages.drupal.org/8/downloads",
  2507. "license": [
  2508. "GPL-2.0+"
  2509. ],
  2510. "authors": [
  2511. {
  2512. "name": "Steve Krueger",
  2513. "homepage": "http://thejibe.com",
  2514. "email": "steve@thejibe.com",
  2515. "role": "Maintainer"
  2516. },
  2517. {
  2518. "name": "Joël Pittet",
  2519. "homepage": "https://www.drupal.org/u/joelpittet",
  2520. "email": "joel@pittet.ca",
  2521. "role": "Maintainer"
  2522. },
  2523. {
  2524. "name": "Leah Wagner",
  2525. "homepage": "http://thejibe.com",
  2526. "email": "leah@thejibe.com",
  2527. "role": "Maintainer"
  2528. },
  2529. {
  2530. "name": "Catherine Winters",
  2531. "homepage": "http://www.catherinewinters.com",
  2532. "email": "catherine@catherinewinters.com",
  2533. "role": "Maintainer"
  2534. },
  2535. {
  2536. "name": "Johannes Schmidt",
  2537. "homepage": "http://2tabs.com",
  2538. "email": "mail@2tabs.com",
  2539. "role": "Maintainer"
  2540. },
  2541. {
  2542. "name": "johannez",
  2543. "homepage": "https://www.drupal.org/user/670988"
  2544. },
  2545. {
  2546. "name": "leahtard",
  2547. "homepage": "https://www.drupal.org/user/683812"
  2548. }
  2549. ],
  2550. "description": "HTML5, SASS, Responsive grid starter theme.",
  2551. "homepage": "http://drupal.org/project/basic",
  2552. "support": {
  2553. "source": "http://cgit.drupalcode.org/basic",
  2554. "issues": "https://www.drupal.org/project/issues/basic",
  2555. "irc": "irc://irc.freenode.org/drupal-contribute"
  2556. }
  2557. },
  2558. {
  2559. "name": "drupal/better_messages",
  2560. "version": "1.0.0-alpha2",
  2561. "source": {
  2562. "type": "git",
  2563. "url": "https://git.drupalcode.org/project/better_messages.git",
  2564. "reference": "8.x-1.0-alpha2"
  2565. },
  2566. "dist": {
  2567. "type": "zip",
  2568. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2569. "reference": "8.x-1.0-alpha2",
  2570. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2571. },
  2572. "require": {
  2573. "drupal/core": "~8.0"
  2574. },
  2575. "type": "drupal-module",
  2576. "extra": {
  2577. "branch-alias": {
  2578. "dev-1.x": "1.x-dev"
  2579. },
  2580. "drupal": {
  2581. "version": "8.x-1.0-alpha2",
  2582. "datestamp": "1517663880",
  2583. "security-coverage": {
  2584. "status": "not-covered",
  2585. "message": "Alpha releases are not covered by Drupal security advisories."
  2586. }
  2587. }
  2588. },
  2589. "notification-url": "https://packages.drupal.org/8/downloads",
  2590. "license": [
  2591. "GPL-2.0-or-later"
  2592. ],
  2593. "authors": [
  2594. {
  2595. "name": "Mohammed J. Razem",
  2596. "homepage": "https://www.drupal.org/user/255384"
  2597. },
  2598. {
  2599. "name": "bucefal91",
  2600. "homepage": "https://www.drupal.org/user/504128"
  2601. },
  2602. {
  2603. "name": "le72",
  2604. "homepage": "https://www.drupal.org/user/1866896"
  2605. }
  2606. ],
  2607. "description": "Better Messages module for Drupal 8.",
  2608. "homepage": "https://www.drupal.org/project/better_messages",
  2609. "support": {
  2610. "source": "https://git.drupalcode.org/project/better_messages"
  2611. }
  2612. },
  2613. {
  2614. "name": "drupal/bulkdelete",
  2615. "version": "dev-1.x",
  2616. "source": {
  2617. "type": "git",
  2618. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2619. "reference": "24499e0f069301d605ab0691e2d6e17ecbcb4060"
  2620. },
  2621. "require": {
  2622. "drupal/core": "~8.0"
  2623. },
  2624. "type": "drupal-module",
  2625. "extra": {
  2626. "branch-alias": {
  2627. "dev-1.x": "1.x-dev"
  2628. },
  2629. "drupal": {
  2630. "version": "8.x-1.x-dev",
  2631. "datestamp": "1495565583",
  2632. "security-coverage": {
  2633. "status": "not-covered",
  2634. "message": "Dev releases are not covered by Drupal security advisories."
  2635. }
  2636. }
  2637. },
  2638. "notification-url": "https://packages.drupal.org/8/downloads",
  2639. "license": [
  2640. "GPL-2.0-or-later"
  2641. ],
  2642. "authors": [
  2643. {
  2644. "name": "Kars-T",
  2645. "homepage": "https://www.drupal.org/user/224499"
  2646. },
  2647. {
  2648. "name": "Rahul Seth",
  2649. "homepage": "https://www.drupal.org/user/2694359"
  2650. },
  2651. {
  2652. "name": "adriancid",
  2653. "homepage": "https://www.drupal.org/user/1962106"
  2654. },
  2655. {
  2656. "name": "robertDouglass",
  2657. "homepage": "https://www.drupal.org/user/5449"
  2658. }
  2659. ],
  2660. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2661. "homepage": "https://www.drupal.org/project/bulkdelete",
  2662. "support": {
  2663. "source": "https://git.drupalcode.org/project/bulkdelete"
  2664. },
  2665. "time": "2017-05-23T18:49:48+00:00"
  2666. },
  2667. {
  2668. "name": "drupal/coder",
  2669. "version": "8.3.6",
  2670. "source": {
  2671. "type": "git",
  2672. "url": "https://git.drupalcode.org/project/coder.git",
  2673. "reference": "4337ddf58d28dbdee4e1367bf71ee13393ab9820"
  2674. },
  2675. "require": {
  2676. "ext-mbstring": "*",
  2677. "php": ">=5.5.9",
  2678. "squizlabs/php_codesniffer": "^3.4.1",
  2679. "symfony/yaml": ">=2.0.5"
  2680. },
  2681. "require-dev": {
  2682. "phpunit/phpunit": ">=3.7 <6"
  2683. },
  2684. "type": "phpcodesniffer-standard",
  2685. "autoload": {
  2686. "psr-0": {
  2687. "Drupal\\": "coder_sniffer/Drupal/",
  2688. "DrupalPractice\\": "coder_sniffer/DrupalPractice/"
  2689. }
  2690. },
  2691. "notification-url": "https://packagist.org/downloads/",
  2692. "license": [
  2693. "GPL-2.0+"
  2694. ],
  2695. "description": "Coder is a library to review Drupal code.",
  2696. "homepage": "https://www.drupal.org/project/coder",
  2697. "keywords": [
  2698. "code review",
  2699. "phpcs",
  2700. "standards"
  2701. ],
  2702. "time": "2019-08-09T09:27:26+00:00"
  2703. },
  2704. {
  2705. "name": "drupal/color_field",
  2706. "version": "2.0.0",
  2707. "source": {
  2708. "type": "git",
  2709. "url": "https://git.drupalcode.org/project/color_field.git",
  2710. "reference": "8.x-2.0"
  2711. },
  2712. "dist": {
  2713. "type": "zip",
  2714. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.0.zip",
  2715. "reference": "8.x-2.0",
  2716. "shasum": "27c510d258e409e1d029d69cf7747e96c1087df6"
  2717. },
  2718. "require": {
  2719. "drupal/core": "*"
  2720. },
  2721. "require-dev": {
  2722. "drupal/token": "~1.3"
  2723. },
  2724. "suggest": {
  2725. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2726. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2727. },
  2728. "type": "drupal-module",
  2729. "extra": {
  2730. "branch-alias": {
  2731. "dev-2.x": "2.x-dev"
  2732. },
  2733. "drupal": {
  2734. "version": "8.x-2.0",
  2735. "datestamp": "1536168780",
  2736. "security-coverage": {
  2737. "status": "covered",
  2738. "message": "Covered by Drupal's security advisory policy"
  2739. }
  2740. }
  2741. },
  2742. "notification-url": "https://packages.drupal.org/8/downloads",
  2743. "license": [
  2744. "GPL-2.0-or-later"
  2745. ],
  2746. "authors": [
  2747. {
  2748. "name": "targoo",
  2749. "homepage": "https://www.drupal.org/user/431910",
  2750. "role": "Maintainer"
  2751. },
  2752. {
  2753. "name": "Nick Wilde",
  2754. "homepage": "https://www.drupal.org/user/nickwilde",
  2755. "role": "Maintainer"
  2756. }
  2757. ],
  2758. "description": "Provides a color field type to store the color value and opacity",
  2759. "homepage": "https://www.drupal.org/project/color_field",
  2760. "support": {
  2761. "source": "http://cgit.drupalcode.org/color_field",
  2762. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2763. }
  2764. },
  2765. {
  2766. "name": "drupal/config_devel",
  2767. "version": "1.2.0",
  2768. "source": {
  2769. "type": "git",
  2770. "url": "https://git.drupalcode.org/project/config_devel.git",
  2771. "reference": "8.x-1.2"
  2772. },
  2773. "dist": {
  2774. "type": "zip",
  2775. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.2.zip",
  2776. "reference": "8.x-1.2",
  2777. "shasum": "203bf299b1ad395d1451e22ea5a8f25ae462d880"
  2778. },
  2779. "require": {
  2780. "drupal/core": "~8.0"
  2781. },
  2782. "type": "drupal-module",
  2783. "extra": {
  2784. "branch-alias": {
  2785. "dev-1.x": "1.x-dev"
  2786. },
  2787. "drupal": {
  2788. "version": "8.x-1.2",
  2789. "datestamp": "1510843084",
  2790. "security-coverage": {
  2791. "status": "covered",
  2792. "message": "Covered by Drupal's security advisory policy"
  2793. }
  2794. }
  2795. },
  2796. "notification-url": "https://packages.drupal.org/8/downloads",
  2797. "license": [
  2798. "GPL-2.0+"
  2799. ],
  2800. "authors": [
  2801. {
  2802. "name": "alexpott",
  2803. "homepage": "https://www.drupal.org/user/157725"
  2804. },
  2805. {
  2806. "name": "benjy",
  2807. "homepage": "https://www.drupal.org/user/1852732"
  2808. },
  2809. {
  2810. "name": "chx",
  2811. "homepage": "https://www.drupal.org/user/9446"
  2812. },
  2813. {
  2814. "name": "joachim",
  2815. "homepage": "https://www.drupal.org/user/107701"
  2816. },
  2817. {
  2818. "name": "nedjo",
  2819. "homepage": "https://www.drupal.org/user/4481"
  2820. },
  2821. {
  2822. "name": "tim.plunkett",
  2823. "homepage": "https://www.drupal.org/user/241634"
  2824. },
  2825. {
  2826. "name": "vijaycs85",
  2827. "homepage": "https://www.drupal.org/user/93488"
  2828. }
  2829. ],
  2830. "description": "Helps developers work with configuration.",
  2831. "homepage": "https://www.drupal.org/project/config_devel",
  2832. "support": {
  2833. "source": "https://git.drupalcode.org/project/config_devel"
  2834. }
  2835. },
  2836. {
  2837. "name": "drupal/config_filter",
  2838. "version": "1.4.0",
  2839. "source": {
  2840. "type": "git",
  2841. "url": "https://git.drupalcode.org/project/config_filter.git",
  2842. "reference": "8.x-1.4"
  2843. },
  2844. "dist": {
  2845. "type": "zip",
  2846. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.4.zip",
  2847. "reference": "8.x-1.4",
  2848. "shasum": "4b2b7f4dfc8358212f9e25f63dcc77cc2c1dcf6c"
  2849. },
  2850. "require": {
  2851. "drupal/core": "~8.0"
  2852. },
  2853. "suggest": {
  2854. "drupal/config_split": "Split site configuration for different environments."
  2855. },
  2856. "type": "drupal-module",
  2857. "extra": {
  2858. "branch-alias": {
  2859. "dev-1.x": "1.x-dev"
  2860. },
  2861. "drupal": {
  2862. "version": "8.x-1.4",
  2863. "datestamp": "1542184982",
  2864. "security-coverage": {
  2865. "status": "covered",
  2866. "message": "Covered by Drupal's security advisory policy"
  2867. }
  2868. }
  2869. },
  2870. "notification-url": "https://packages.drupal.org/8/downloads",
  2871. "license": [
  2872. "GPL-2.0+"
  2873. ],
  2874. "authors": [
  2875. {
  2876. "name": "Fabian Bircher",
  2877. "homepage": "https://www.drupal.org/u/bircher",
  2878. "email": "opensource@fabianbircher.com",
  2879. "role": "Maintainer"
  2880. },
  2881. {
  2882. "name": "Nuvole Web",
  2883. "homepage": "http://nuvole.org",
  2884. "email": "info@nuvole.org",
  2885. "role": "Maintainer"
  2886. },
  2887. {
  2888. "name": "pescetti",
  2889. "homepage": "https://www.drupal.org/user/436244"
  2890. }
  2891. ],
  2892. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2893. "homepage": "https://www.drupal.org/project/config_filter",
  2894. "keywords": [
  2895. "Drupal",
  2896. "configuration",
  2897. "configuration management"
  2898. ],
  2899. "support": {
  2900. "source": "http://cgit.drupalcode.org/config_filter",
  2901. "issues": "https://www.drupal.org/project/issues/config_filter",
  2902. "irc": "irc://irc.freenode.org/drupal-contribute"
  2903. }
  2904. },
  2905. {
  2906. "name": "drupal/config_ignore",
  2907. "version": "2.1.0",
  2908. "source": {
  2909. "type": "git",
  2910. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2911. "reference": "8.x-2.1"
  2912. },
  2913. "dist": {
  2914. "type": "zip",
  2915. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2916. "reference": "8.x-2.1",
  2917. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2918. },
  2919. "require": {
  2920. "drupal/config_filter": "1.*",
  2921. "drupal/core": "~8.0"
  2922. },
  2923. "type": "drupal-module",
  2924. "extra": {
  2925. "branch-alias": {
  2926. "dev-2.x": "2.x-dev"
  2927. },
  2928. "drupal": {
  2929. "version": "8.x-2.1",
  2930. "datestamp": "1507706044",
  2931. "security-coverage": {
  2932. "status": "covered",
  2933. "message": "Covered by Drupal's security advisory policy"
  2934. }
  2935. }
  2936. },
  2937. "notification-url": "https://packages.drupal.org/8/downloads",
  2938. "license": [
  2939. "GPL-2.0+"
  2940. ],
  2941. "authors": [
  2942. {
  2943. "name": "Tommy Lynge Jørgensen",
  2944. "homepage": "https://www.drupal.org/u/tlyngej",
  2945. "email": "tlyngej@gmail.com",
  2946. "role": "Maintainer"
  2947. },
  2948. {
  2949. "name": "Fabian Bircher",
  2950. "homepage": "https://www.drupal.org/u/bircher",
  2951. "role": "Maintainer"
  2952. }
  2953. ],
  2954. "description": "Ignore certain configuration during import.",
  2955. "homepage": "http://drupal.org/project/config_ignore",
  2956. "support": {
  2957. "source": "http://cgit.drupalcode.org/config_ignore",
  2958. "issues": "http://drupal.org/project/config_ignore",
  2959. "irc": "irc://irc.freenode.org/drupal-contribute"
  2960. }
  2961. },
  2962. {
  2963. "name": "drupal/config_update",
  2964. "version": "1.6.0",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://git.drupalcode.org/project/config_update.git",
  2968. "reference": "8.x-1.6"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2973. "reference": "8.x-1.6",
  2974. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2975. },
  2976. "require": {
  2977. "drupal/core": "*"
  2978. },
  2979. "type": "drupal-module",
  2980. "extra": {
  2981. "branch-alias": {
  2982. "dev-1.x": "1.x-dev"
  2983. },
  2984. "drupal": {
  2985. "version": "8.x-1.6",
  2986. "datestamp": "1545090480",
  2987. "security-coverage": {
  2988. "status": "covered",
  2989. "message": "Covered by Drupal's security advisory policy"
  2990. }
  2991. }
  2992. },
  2993. "notification-url": "https://packages.drupal.org/8/downloads",
  2994. "license": [
  2995. "GPL-2.0-or-later"
  2996. ],
  2997. "authors": [
  2998. {
  2999. "name": "jhodgdon",
  3000. "homepage": "https://www.drupal.org/user/155601"
  3001. },
  3002. {
  3003. "name": "nedjo",
  3004. "homepage": "https://www.drupal.org/user/4481"
  3005. }
  3006. ],
  3007. "description": "Provides basic revert and update functionality for other modules",
  3008. "homepage": "https://www.drupal.org/project/config_update",
  3009. "support": {
  3010. "source": "https://git.drupalcode.org/project/config_update"
  3011. }
  3012. },
  3013. {
  3014. "name": "drupal/console",
  3015. "version": "1.8.0",
  3016. "source": {
  3017. "type": "git",
  3018. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3019. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18"
  3020. },
  3021. "dist": {
  3022. "type": "zip",
  3023. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/368bbfa44dc6b957eb4db01977f7c39e83032d18",
  3024. "reference": "368bbfa44dc6b957eb4db01977f7c39e83032d18",
  3025. "shasum": ""
  3026. },
  3027. "require": {
  3028. "alchemy/zippy": "0.4.3",
  3029. "composer/installers": "~1.0",
  3030. "doctrine/annotations": "^1.2",
  3031. "doctrine/collections": "^1.3",
  3032. "drupal/console-core": "1.8.0",
  3033. "drupal/console-extend-plugin": "~0",
  3034. "guzzlehttp/guzzle": "~6.1",
  3035. "php": "^5.5.9 || ^7.0",
  3036. "psy/psysh": "0.6.* || ~0.8",
  3037. "symfony/css-selector": "~2.8|~3.0",
  3038. "symfony/dom-crawler": "~2.8|~3.0",
  3039. "symfony/http-foundation": "~2.8|~3.0"
  3040. },
  3041. "suggest": {
  3042. "symfony/thanks": "Thank your favorite PHP projects on Github using the CLI!",
  3043. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically."
  3044. },
  3045. "bin": [
  3046. "bin/drupal"
  3047. ],
  3048. "type": "library",
  3049. "autoload": {
  3050. "psr-4": {
  3051. "Drupal\\Console\\": "src"
  3052. }
  3053. },
  3054. "notification-url": "https://packagist.org/downloads/",
  3055. "license": [
  3056. "GPL-2.0-or-later"
  3057. ],
  3058. "authors": [
  3059. {
  3060. "name": "David Flores",
  3061. "email": "dmousex@gmail.com",
  3062. "homepage": "http://dmouse.net"
  3063. },
  3064. {
  3065. "name": "Jesus Manuel Olivas",
  3066. "email": "jesus.olivas@gmail.com",
  3067. "homepage": "http://jmolivas.com"
  3068. },
  3069. {
  3070. "name": "Eduardo Garcia",
  3071. "email": "enzo@enzolutions.com",
  3072. "homepage": "http://enzolutions.com/"
  3073. },
  3074. {
  3075. "name": "Omar Aguirre",
  3076. "email": "omersguchigu@gmail.com"
  3077. },
  3078. {
  3079. "name": "Drupal Console Contributors",
  3080. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3081. }
  3082. ],
  3083. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3084. "homepage": "http://drupalconsole.com/",
  3085. "keywords": [
  3086. "console",
  3087. "development",
  3088. "drupal",
  3089. "symfony"
  3090. ],
  3091. "time": "2018-03-21T20:50:16+00:00"
  3092. },
  3093. {
  3094. "name": "drupal/console-core",
  3095. "version": "1.8.0",
  3096. "source": {
  3097. "type": "git",
  3098. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3099. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1"
  3100. },
  3101. "dist": {
  3102. "type": "zip",
  3103. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/bf1fb4a6f689377acec1694267f674178d28e5d1",
  3104. "reference": "bf1fb4a6f689377acec1694267f674178d28e5d1",
  3105. "shasum": ""
  3106. },
  3107. "require": {
  3108. "dflydev/dot-access-configuration": "^1.0",
  3109. "drupal/console-en": "1.8.0",
  3110. "php": "^5.5.9 || ^7.0",
  3111. "stecman/symfony-console-completion": "~0.7",
  3112. "symfony/config": "~2.8|~3.0",
  3113. "symfony/console": "~2.8|~3.0",
  3114. "symfony/debug": "~2.8|~3.0",
  3115. "symfony/dependency-injection": "~2.8|~3.0",
  3116. "symfony/event-dispatcher": "~2.8|~3.0",
  3117. "symfony/filesystem": "~2.8|~3.0",
  3118. "symfony/finder": "~2.8|~3.0",
  3119. "symfony/process": "~2.8|~3.0",
  3120. "symfony/translation": "~2.8|~3.0",
  3121. "symfony/yaml": "~2.8|~3.0",
  3122. "twig/twig": "^1.23.1",
  3123. "webflo/drupal-finder": "^1.0",
  3124. "webmozart/path-util": "^2.3"
  3125. },
  3126. "type": "library",
  3127. "autoload": {
  3128. "files": [
  3129. "src/functions.php"
  3130. ],
  3131. "psr-4": {
  3132. "Drupal\\Console\\Core\\": "src"
  3133. }
  3134. },
  3135. "notification-url": "https://packagist.org/downloads/",
  3136. "license": [
  3137. "GPL-2.0-or-later"
  3138. ],
  3139. "authors": [
  3140. {
  3141. "name": "David Flores",
  3142. "email": "dmousex@gmail.com",
  3143. "homepage": "http://dmouse.net"
  3144. },
  3145. {
  3146. "name": "Jesus Manuel Olivas",
  3147. "email": "jesus.olivas@gmail.com",
  3148. "homepage": "http://jmolivas.com"
  3149. },
  3150. {
  3151. "name": "Drupal Console Contributors",
  3152. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3153. },
  3154. {
  3155. "name": "Eduardo Garcia",
  3156. "email": "enzo@enzolutions.com",
  3157. "homepage": "http://enzolutions.com/"
  3158. },
  3159. {
  3160. "name": "Omar Aguirre",
  3161. "email": "omersguchigu@gmail.com"
  3162. }
  3163. ],
  3164. "description": "Drupal Console Core",
  3165. "homepage": "http://drupalconsole.com/",
  3166. "keywords": [
  3167. "console",
  3168. "development",
  3169. "drupal",
  3170. "symfony"
  3171. ],
  3172. "time": "2018-03-21T19:33:23+00:00"
  3173. },
  3174. {
  3175. "name": "drupal/console-en",
  3176. "version": "1.8.0",
  3177. "source": {
  3178. "type": "git",
  3179. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3180. "reference": "ea956ddffab04f519a89858810e5f695b9def92b"
  3181. },
  3182. "dist": {
  3183. "type": "zip",
  3184. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/ea956ddffab04f519a89858810e5f695b9def92b",
  3185. "reference": "ea956ddffab04f519a89858810e5f695b9def92b",
  3186. "shasum": ""
  3187. },
  3188. "type": "drupal-console-language",
  3189. "notification-url": "https://packagist.org/downloads/",
  3190. "license": [
  3191. "GPL-2.0-or-later"
  3192. ],
  3193. "authors": [
  3194. {
  3195. "name": "David Flores",
  3196. "email": "dmousex@gmail.com",
  3197. "homepage": "http://dmouse.net"
  3198. },
  3199. {
  3200. "name": "Jesus Manuel Olivas",
  3201. "email": "jesus.olivas@gmail.com",
  3202. "homepage": "http://jmolivas.com"
  3203. },
  3204. {
  3205. "name": "Drupal Console Contributors",
  3206. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3207. },
  3208. {
  3209. "name": "Eduardo Garcia",
  3210. "email": "enzo@enzolutions.com",
  3211. "homepage": "http://enzolutions.com/"
  3212. },
  3213. {
  3214. "name": "Omar Aguirre",
  3215. "email": "omersguchigu@gmail.com"
  3216. }
  3217. ],
  3218. "description": "Drupal Console English Language",
  3219. "homepage": "http://drupalconsole.com/",
  3220. "keywords": [
  3221. "console",
  3222. "development",
  3223. "drupal",
  3224. "symfony"
  3225. ],
  3226. "time": "2018-03-21T19:16:27+00:00"
  3227. },
  3228. {
  3229. "name": "drupal/console-extend-plugin",
  3230. "version": "0.9.2",
  3231. "source": {
  3232. "type": "git",
  3233. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3234. "reference": "f3bac233fd305359c33e96621443b3bd065555cc"
  3235. },
  3236. "dist": {
  3237. "type": "zip",
  3238. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/f3bac233fd305359c33e96621443b3bd065555cc",
  3239. "reference": "f3bac233fd305359c33e96621443b3bd065555cc",
  3240. "shasum": ""
  3241. },
  3242. "require": {
  3243. "composer-plugin-api": "^1.0",
  3244. "symfony/finder": "~2.7|~3.0",
  3245. "symfony/yaml": "~2.7|~3.0"
  3246. },
  3247. "type": "composer-plugin",
  3248. "extra": {
  3249. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3250. },
  3251. "autoload": {
  3252. "psr-4": {
  3253. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3254. }
  3255. },
  3256. "notification-url": "https://packagist.org/downloads/",
  3257. "license": [
  3258. "GPL-2.0+"
  3259. ],
  3260. "authors": [
  3261. {
  3262. "name": "Jesus Manuel Olivas",
  3263. "email": "jesus.olivas@gmail.com"
  3264. }
  3265. ],
  3266. "description": "Drupal Console Extend Plugin",
  3267. "time": "2017-07-28T17:11:54+00:00"
  3268. },
  3269. {
  3270. "name": "drupal/context",
  3271. "version": "4.0.0-beta2",
  3272. "source": {
  3273. "type": "git",
  3274. "url": "https://git.drupalcode.org/project/context.git",
  3275. "reference": "8.x-4.0-beta2"
  3276. },
  3277. "dist": {
  3278. "type": "zip",
  3279. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  3280. "reference": "8.x-4.0-beta2",
  3281. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  3282. },
  3283. "require": {
  3284. "drupal/core": "~8.0"
  3285. },
  3286. "type": "drupal-module",
  3287. "extra": {
  3288. "branch-alias": {
  3289. "dev-4.x": "4.x-dev"
  3290. },
  3291. "drupal": {
  3292. "version": "8.x-4.0-beta2",
  3293. "datestamp": "1505378944",
  3294. "security-coverage": {
  3295. "status": "not-covered",
  3296. "message": "Beta releases are not covered by Drupal security advisories."
  3297. }
  3298. }
  3299. },
  3300. "notification-url": "https://packages.drupal.org/8/downloads",
  3301. "license": [
  3302. "MIT"
  3303. ],
  3304. "authors": [
  3305. {
  3306. "name": "Christoffer Palm",
  3307. "homepage": "http://www.oddhill.se/",
  3308. "email": "christoffer.palm@oddhill.se",
  3309. "role": "Developer"
  3310. },
  3311. {
  3312. "name": "Steven Jones",
  3313. "homepage": "https://www.drupal.org/user/99644"
  3314. },
  3315. {
  3316. "name": "alex_b",
  3317. "homepage": "https://www.drupal.org/user/53995"
  3318. },
  3319. {
  3320. "name": "boshtian",
  3321. "homepage": "https://www.drupal.org/user/1773456"
  3322. },
  3323. {
  3324. "name": "colan",
  3325. "homepage": "https://www.drupal.org/user/58704"
  3326. },
  3327. {
  3328. "name": "emanaton",
  3329. "homepage": "https://www.drupal.org/user/120853"
  3330. },
  3331. {
  3332. "name": "febbraro",
  3333. "homepage": "https://www.drupal.org/user/43670"
  3334. },
  3335. {
  3336. "name": "fizk",
  3337. "homepage": "https://www.drupal.org/user/473174"
  3338. },
  3339. {
  3340. "name": "hass",
  3341. "homepage": "https://www.drupal.org/user/85918"
  3342. },
  3343. {
  3344. "name": "hefox",
  3345. "homepage": "https://www.drupal.org/user/426416"
  3346. },
  3347. {
  3348. "name": "hyrcan",
  3349. "homepage": "https://www.drupal.org/user/26618"
  3350. },
  3351. {
  3352. "name": "jmiccolis",
  3353. "homepage": "https://www.drupal.org/user/31731"
  3354. },
  3355. {
  3356. "name": "nedjo",
  3357. "homepage": "https://www.drupal.org/user/4481"
  3358. },
  3359. {
  3360. "name": "tekante",
  3361. "homepage": "https://www.drupal.org/user/640024"
  3362. },
  3363. {
  3364. "name": "yhahn",
  3365. "homepage": "https://www.drupal.org/user/264833"
  3366. }
  3367. ],
  3368. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3369. "homepage": "https://github.com/oddhill/context",
  3370. "keywords": [
  3371. "Drupal",
  3372. "block",
  3373. "conditions",
  3374. "context",
  3375. "visibility"
  3376. ],
  3377. "support": {
  3378. "source": "https://github.com/oddhill/context",
  3379. "issues": "https://github.com/oddhill/context/issues",
  3380. "docs": "https://github.com/oddhill/context"
  3381. }
  3382. },
  3383. {
  3384. "name": "drupal/core",
  3385. "version": "8.6.17",
  3386. "source": {
  3387. "type": "git",
  3388. "url": "https://github.com/drupal/core.git",
  3389. "reference": "47cb4ad62b01424221d045313d76385cbd19df22"
  3390. },
  3391. "dist": {
  3392. "type": "zip",
  3393. "url": "https://api.github.com/repos/drupal/core/zipball/47cb4ad62b01424221d045313d76385cbd19df22",
  3394. "reference": "47cb4ad62b01424221d045313d76385cbd19df22",
  3395. "shasum": ""
  3396. },
  3397. "require": {
  3398. "asm89/stack-cors": "^1.1",
  3399. "composer/semver": "^1.0",
  3400. "doctrine/annotations": "^1.2",
  3401. "doctrine/common": "^2.5",
  3402. "easyrdf/easyrdf": "^0.9",
  3403. "egulias/email-validator": "^1.2",
  3404. "ext-date": "*",
  3405. "ext-dom": "*",
  3406. "ext-filter": "*",
  3407. "ext-gd": "*",
  3408. "ext-hash": "*",
  3409. "ext-json": "*",
  3410. "ext-pcre": "*",
  3411. "ext-pdo": "*",
  3412. "ext-session": "*",
  3413. "ext-simplexml": "*",
  3414. "ext-spl": "*",
  3415. "ext-tokenizer": "*",
  3416. "ext-xml": "*",
  3417. "guzzlehttp/guzzle": "^6.2.1",
  3418. "masterminds/html5": "^2.1",
  3419. "paragonie/random_compat": "^1.0|^2.0",
  3420. "php": "^5.5.9|>=7.0.8",
  3421. "stack/builder": "^1.0",
  3422. "symfony-cmf/routing": "^1.4",
  3423. "symfony/class-loader": "~3.4.0",
  3424. "symfony/console": "~3.4.0",
  3425. "symfony/dependency-injection": "~3.4.26",
  3426. "symfony/event-dispatcher": "~3.4.0",
  3427. "symfony/http-foundation": "~3.4.27",
  3428. "symfony/http-kernel": "~3.4.14",
  3429. "symfony/polyfill-iconv": "^1.0",
  3430. "symfony/process": "~3.4.0",
  3431. "symfony/psr-http-message-bridge": "^1.0",
  3432. "symfony/routing": "~3.4.0",
  3433. "symfony/serializer": "~3.4.0",
  3434. "symfony/translation": "~3.4.0",
  3435. "symfony/validator": "~3.4.0",
  3436. "symfony/yaml": "~3.4.5",
  3437. "twig/twig": "^1.38.2",
  3438. "typo3/phar-stream-wrapper": "^2.1.1",
  3439. "zendframework/zend-diactoros": "^1.1",
  3440. "zendframework/zend-feed": "^2.4"
  3441. },
  3442. "conflict": {
  3443. "drush/drush": "<8.1.10"
  3444. },
  3445. "replace": {
  3446. "drupal/action": "self.version",
  3447. "drupal/aggregator": "self.version",
  3448. "drupal/automated_cron": "self.version",
  3449. "drupal/ban": "self.version",
  3450. "drupal/bartik": "self.version",
  3451. "drupal/basic_auth": "self.version",
  3452. "drupal/big_pipe": "self.version",
  3453. "drupal/block": "self.version",
  3454. "drupal/block_content": "self.version",
  3455. "drupal/block_place": "self.version",
  3456. "drupal/book": "self.version",
  3457. "drupal/breakpoint": "self.version",
  3458. "drupal/ckeditor": "self.version",
  3459. "drupal/classy": "self.version",
  3460. "drupal/color": "self.version",
  3461. "drupal/comment": "self.version",
  3462. "drupal/config": "self.version",
  3463. "drupal/config_translation": "self.version",
  3464. "drupal/contact": "self.version",
  3465. "drupal/content_moderation": "self.version",
  3466. "drupal/content_translation": "self.version",
  3467. "drupal/contextual": "self.version",
  3468. "drupal/core-annotation": "self.version",
  3469. "drupal/core-assertion": "self.version",
  3470. "drupal/core-bridge": "self.version",
  3471. "drupal/core-class-finder": "self.version",
  3472. "drupal/core-datetime": "self.version",
  3473. "drupal/core-dependency-injection": "self.version",
  3474. "drupal/core-diff": "self.version",
  3475. "drupal/core-discovery": "self.version",
  3476. "drupal/core-event-dispatcher": "self.version",
  3477. "drupal/core-file-cache": "self.version",
  3478. "drupal/core-filesystem": "self.version",
  3479. "drupal/core-gettext": "self.version",
  3480. "drupal/core-graph": "self.version",
  3481. "drupal/core-http-foundation": "self.version",
  3482. "drupal/core-php-storage": "self.version",
  3483. "drupal/core-plugin": "self.version",
  3484. "drupal/core-proxy-builder": "self.version",
  3485. "drupal/core-render": "self.version",
  3486. "drupal/core-serialization": "self.version",
  3487. "drupal/core-transliteration": "self.version",
  3488. "drupal/core-utility": "self.version",
  3489. "drupal/core-uuid": "self.version",
  3490. "drupal/datetime": "self.version",
  3491. "drupal/datetime_range": "self.version",
  3492. "drupal/dblog": "self.version",
  3493. "drupal/dynamic_page_cache": "self.version",
  3494. "drupal/editor": "self.version",
  3495. "drupal/entity_reference": "self.version",
  3496. "drupal/field": "self.version",
  3497. "drupal/field_layout": "self.version",
  3498. "drupal/field_ui": "self.version",
  3499. "drupal/file": "self.version",
  3500. "drupal/filter": "self.version",
  3501. "drupal/forum": "self.version",
  3502. "drupal/hal": "self.version",
  3503. "drupal/help": "self.version",
  3504. "drupal/history": "self.version",
  3505. "drupal/image": "self.version",
  3506. "drupal/inline_form_errors": "self.version",
  3507. "drupal/language": "self.version",
  3508. "drupal/layout_builder": "self.version",
  3509. "drupal/layout_discovery": "self.version",
  3510. "drupal/link": "self.version",
  3511. "drupal/locale": "self.version",
  3512. "drupal/media": "self.version",
  3513. "drupal/media_library": "self.version",
  3514. "drupal/menu_link_content": "self.version",
  3515. "drupal/menu_ui": "self.version",
  3516. "drupal/migrate": "self.version",
  3517. "drupal/migrate_drupal": "self.version",
  3518. "drupal/migrate_drupal_multilingual": "self.version",
  3519. "drupal/migrate_drupal_ui": "self.version",
  3520. "drupal/minimal": "self.version",
  3521. "drupal/node": "self.version",
  3522. "drupal/options": "self.version",
  3523. "drupal/page_cache": "self.version",
  3524. "drupal/path": "self.version",
  3525. "drupal/quickedit": "self.version",
  3526. "drupal/rdf": "self.version",
  3527. "drupal/responsive_image": "self.version",
  3528. "drupal/rest": "self.version",
  3529. "drupal/search": "self.version",
  3530. "drupal/serialization": "self.version",
  3531. "drupal/settings_tray": "self.version",
  3532. "drupal/seven": "self.version",
  3533. "drupal/shortcut": "self.version",
  3534. "drupal/simpletest": "self.version",
  3535. "drupal/standard": "self.version",
  3536. "drupal/stark": "self.version",
  3537. "drupal/statistics": "self.version",
  3538. "drupal/syslog": "self.version",
  3539. "drupal/system": "self.version",
  3540. "drupal/taxonomy": "self.version",
  3541. "drupal/telephone": "self.version",
  3542. "drupal/text": "self.version",
  3543. "drupal/toolbar": "self.version",
  3544. "drupal/tour": "self.version",
  3545. "drupal/tracker": "self.version",
  3546. "drupal/update": "self.version",
  3547. "drupal/user": "self.version",
  3548. "drupal/views": "self.version",
  3549. "drupal/views_ui": "self.version",
  3550. "drupal/workflows": "self.version",
  3551. "drupal/workspaces": "self.version"
  3552. },
  3553. "require-dev": {
  3554. "behat/mink": "1.7.x-dev",
  3555. "behat/mink-goutte-driver": "^1.2",
  3556. "behat/mink-selenium2-driver": "1.3.x-dev",
  3557. "drupal/coder": "^8.2.12",
  3558. "jcalderonzumba/gastonjs": "^1.0.2",
  3559. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3560. "mikey179/vfsstream": "^1.2",
  3561. "phpspec/prophecy": "^1.7",
  3562. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3563. "symfony/css-selector": "^3.4.0",
  3564. "symfony/debug": "^3.4.0",
  3565. "symfony/phpunit-bridge": "^3.4.3"
  3566. },
  3567. "type": "drupal-core",
  3568. "extra": {
  3569. "merge-plugin": {
  3570. "require": [
  3571. "core/lib/Drupal/Component/Annotation/composer.json",
  3572. "core/lib/Drupal/Component/Assertion/composer.json",
  3573. "core/lib/Drupal/Component/Bridge/composer.json",
  3574. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3575. "core/lib/Drupal/Component/Datetime/composer.json",
  3576. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3577. "core/lib/Drupal/Component/Diff/composer.json",
  3578. "core/lib/Drupal/Component/Discovery/composer.json",
  3579. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3580. "core/lib/Drupal/Component/FileCache/composer.json",
  3581. "core/lib/Drupal/Component/FileSystem/composer.json",
  3582. "core/lib/Drupal/Component/Gettext/composer.json",
  3583. "core/lib/Drupal/Component/Graph/composer.json",
  3584. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3585. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3586. "core/lib/Drupal/Component/Plugin/composer.json",
  3587. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3588. "core/lib/Drupal/Component/Render/composer.json",
  3589. "core/lib/Drupal/Component/Serialization/composer.json",
  3590. "core/lib/Drupal/Component/Transliteration/composer.json",
  3591. "core/lib/Drupal/Component/Utility/composer.json",
  3592. "core/lib/Drupal/Component/Uuid/composer.json"
  3593. ],
  3594. "recurse": false,
  3595. "replace": false,
  3596. "merge-extra": false
  3597. }
  3598. },
  3599. "autoload": {
  3600. "psr-4": {
  3601. "Drupal\\Core\\": "lib/Drupal/Core",
  3602. "Drupal\\Component\\": "lib/Drupal/Component",
  3603. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3604. },
  3605. "classmap": [
  3606. "lib/Drupal.php",
  3607. "lib/Drupal/Component/Utility/Timer.php",
  3608. "lib/Drupal/Component/Utility/Unicode.php",
  3609. "lib/Drupal/Core/Database/Database.php",
  3610. "lib/Drupal/Core/DrupalKernel.php",
  3611. "lib/Drupal/Core/DrupalKernelInterface.php",
  3612. "lib/Drupal/Core/Site/Settings.php"
  3613. ]
  3614. },
  3615. "notification-url": "https://packagist.org/downloads/",
  3616. "license": [
  3617. "GPL-2.0-or-later"
  3618. ],
  3619. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3620. "time": "2019-06-17T07:26:03+00:00"
  3621. },
  3622. {
  3623. "name": "drupal/ctools",
  3624. "version": "3.2.0",
  3625. "source": {
  3626. "type": "git",
  3627. "url": "https://git.drupalcode.org/project/ctools.git",
  3628. "reference": "8.x-3.2"
  3629. },
  3630. "dist": {
  3631. "type": "zip",
  3632. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip",
  3633. "reference": "8.x-3.2",
  3634. "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091"
  3635. },
  3636. "require": {
  3637. "drupal/core": "^8.5"
  3638. },
  3639. "type": "drupal-module",
  3640. "extra": {
  3641. "branch-alias": {
  3642. "dev-3.x": "3.x-dev"
  3643. },
  3644. "drupal": {
  3645. "version": "8.x-3.2",
  3646. "datestamp": "1550728386",
  3647. "security-coverage": {
  3648. "status": "covered",
  3649. "message": "Covered by Drupal's security advisory policy"
  3650. }
  3651. }
  3652. },
  3653. "notification-url": "https://packages.drupal.org/8/downloads",
  3654. "license": [
  3655. "GPL-2.0+"
  3656. ],
  3657. "authors": [
  3658. {
  3659. "name": "Kris Vanderwater (EclipseGc)",
  3660. "homepage": "https://www.drupal.org/u/eclipsegc",
  3661. "role": "Maintainer"
  3662. },
  3663. {
  3664. "name": "Jakob Perry (japerry)",
  3665. "homepage": "https://www.drupal.org/u/japerry",
  3666. "role": "Maintainer"
  3667. },
  3668. {
  3669. "name": "Tim Plunkett (tim.plunkett)",
  3670. "homepage": "https://www.drupal.org/u/timplunkett",
  3671. "role": "Maintainer"
  3672. },
  3673. {
  3674. "name": "James Gilliland (neclimdul)",
  3675. "homepage": "https://www.drupal.org/u/neclimdul",
  3676. "role": "Maintainer"
  3677. },
  3678. {
  3679. "name": "Daniel Wehner (dawehner)",
  3680. "homepage": "https://www.drupal.org/u/dawehner",
  3681. "role": "Maintainer"
  3682. },
  3683. {
  3684. "name": "joelpittet",
  3685. "homepage": "https://www.drupal.org/user/160302"
  3686. },
  3687. {
  3688. "name": "merlinofchaos",
  3689. "homepage": "https://www.drupal.org/user/26979"
  3690. },
  3691. {
  3692. "name": "neclimdul",
  3693. "homepage": "https://www.drupal.org/user/48673"
  3694. },
  3695. {
  3696. "name": "sdboyer",
  3697. "homepage": "https://www.drupal.org/user/146719"
  3698. },
  3699. {
  3700. "name": "sun",
  3701. "homepage": "https://www.drupal.org/user/54136"
  3702. },
  3703. {
  3704. "name": "tim.plunkett",
  3705. "homepage": "https://www.drupal.org/user/241634"
  3706. }
  3707. ],
  3708. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3709. "homepage": "https://www.drupal.org/project/ctools",
  3710. "support": {
  3711. "source": "http://cgit.drupalcode.org/ctools",
  3712. "issues": "https://www.drupal.org/project/issues/ctools"
  3713. }
  3714. },
  3715. {
  3716. "name": "drupal/date_range_formatter",
  3717. "version": "3.1.0",
  3718. "source": {
  3719. "type": "git",
  3720. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3721. "reference": "8.x-3.1"
  3722. },
  3723. "dist": {
  3724. "type": "zip",
  3725. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3726. "reference": "8.x-3.1",
  3727. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3728. },
  3729. "require": {
  3730. "drupal/core": "*"
  3731. },
  3732. "type": "drupal-module",
  3733. "extra": {
  3734. "branch-alias": {
  3735. "dev-3.x": "3.x-dev"
  3736. },
  3737. "drupal": {
  3738. "version": "8.x-3.1",
  3739. "datestamp": "1502454544",
  3740. "security-coverage": {
  3741. "status": "covered",
  3742. "message": "Covered by Drupal's security advisory policy"
  3743. }
  3744. }
  3745. },
  3746. "notification-url": "https://packages.drupal.org/8/downloads",
  3747. "license": [
  3748. "GPL-2.0-or-later"
  3749. ],
  3750. "authors": [
  3751. {
  3752. "name": "maximpodorov",
  3753. "homepage": "https://www.drupal.org/user/515310"
  3754. },
  3755. {
  3756. "name": "sudishth",
  3757. "homepage": "https://www.drupal.org/user/1440562"
  3758. }
  3759. ],
  3760. "description": "Formats date ranges.",
  3761. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3762. "support": {
  3763. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3764. }
  3765. },
  3766. {
  3767. "name": "drupal/devel",
  3768. "version": "2.1.0",
  3769. "source": {
  3770. "type": "git",
  3771. "url": "https://git.drupalcode.org/project/devel.git",
  3772. "reference": "8.x-2.1"
  3773. },
  3774. "dist": {
  3775. "type": "zip",
  3776. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3777. "reference": "8.x-2.1",
  3778. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3779. },
  3780. "require": {
  3781. "drupal/core": "~8.0",
  3782. "symfony/var-dumper": "~2.7|^3|^4"
  3783. },
  3784. "type": "drupal-module",
  3785. "extra": {
  3786. "branch-alias": {
  3787. "dev-2.x": "2.x-dev"
  3788. },
  3789. "drupal": {
  3790. "version": "8.x-2.1",
  3791. "datestamp": "1556799496",
  3792. "security-coverage": {
  3793. "status": "covered",
  3794. "message": "Covered by Drupal's security advisory policy"
  3795. }
  3796. },
  3797. "drush": {
  3798. "services": {
  3799. "drush.services.yml": "^9"
  3800. }
  3801. }
  3802. },
  3803. "notification-url": "https://packages.drupal.org/8/downloads",
  3804. "license": [
  3805. "GPL-2.0+"
  3806. ],
  3807. "authors": [
  3808. {
  3809. "name": "Moshe Weitzman",
  3810. "homepage": "https://github.com/weitzman",
  3811. "email": "weitzman@tejasa.com",
  3812. "role": "Maintainer"
  3813. },
  3814. {
  3815. "name": "Hans Salvisberg",
  3816. "homepage": "https://www.drupal.org/u/salvis",
  3817. "email": "drupal@salvisberg.com",
  3818. "role": "Maintainer"
  3819. },
  3820. {
  3821. "name": "Luca Lusso",
  3822. "homepage": "https://www.drupal.org/u/lussoluca",
  3823. "role": "Maintainer"
  3824. },
  3825. {
  3826. "name": "Marco (willzyx)",
  3827. "homepage": "https://www.drupal.org/u/willzyx",
  3828. "role": "Maintainer"
  3829. },
  3830. {
  3831. "name": "See contributors",
  3832. "homepage": "https://www.drupal.org/node/3236/committers"
  3833. },
  3834. {
  3835. "name": "salvis",
  3836. "homepage": "https://www.drupal.org/user/82964"
  3837. },
  3838. {
  3839. "name": "willzyx",
  3840. "homepage": "https://www.drupal.org/user/1043862"
  3841. }
  3842. ],
  3843. "description": "Various blocks, pages, and functions for developers.",
  3844. "homepage": "http://drupal.org/project/devel",
  3845. "support": {
  3846. "source": "http://cgit.drupalcode.org/devel",
  3847. "issues": "http://drupal.org/project/devel",
  3848. "irc": "irc://irc.freenode.org/drupal-contribute"
  3849. }
  3850. },
  3851. {
  3852. "name": "drupal/domain",
  3853. "version": "1.0.0-alpha15",
  3854. "source": {
  3855. "type": "git",
  3856. "url": "https://git.drupalcode.org/project/domain.git",
  3857. "reference": "8.x-1.0-alpha15"
  3858. },
  3859. "dist": {
  3860. "type": "zip",
  3861. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha15.zip",
  3862. "reference": "8.x-1.0-alpha15",
  3863. "shasum": "e981d5224bd7883776c6729135b876141f0437d3"
  3864. },
  3865. "require": {
  3866. "drupal/core": "^8.5"
  3867. },
  3868. "require-dev": {
  3869. "drupal/domain_access": "*"
  3870. },
  3871. "type": "drupal-module",
  3872. "extra": {
  3873. "branch-alias": {
  3874. "dev-1.x": "1.x-dev"
  3875. },
  3876. "drupal": {
  3877. "version": "8.x-1.0-alpha15",
  3878. "datestamp": "1550763184",
  3879. "security-coverage": {
  3880. "status": "not-covered",
  3881. "message": "Alpha releases are not covered by Drupal security advisories."
  3882. }
  3883. }
  3884. },
  3885. "notification-url": "https://packages.drupal.org/8/downloads",
  3886. "license": [
  3887. "GPL-2.0-or-later"
  3888. ],
  3889. "authors": [
  3890. {
  3891. "name": "agentrickard",
  3892. "homepage": "https://www.drupal.org/user/20975"
  3893. },
  3894. {
  3895. "name": "nonsie",
  3896. "homepage": "https://www.drupal.org/user/29899"
  3897. }
  3898. ],
  3899. "description": "Creates domain records within a Drupal installation.",
  3900. "homepage": "https://www.drupal.org/project/domain",
  3901. "support": {
  3902. "source": "https://git.drupalcode.org/project/domain"
  3903. }
  3904. },
  3905. {
  3906. "name": "drupal/domain_access",
  3907. "version": "1.0.0-alpha15",
  3908. "require": {
  3909. "drupal/core": "*",
  3910. "drupal/domain": "self.version"
  3911. },
  3912. "type": "metapackage",
  3913. "extra": {
  3914. "branch-alias": {
  3915. "dev-1.x": "1.x-dev"
  3916. },
  3917. "drupal": {
  3918. "version": "8.x-1.0-alpha15",
  3919. "datestamp": "1550763184",
  3920. "security-coverage": {
  3921. "status": "not-covered",
  3922. "message": "Alpha releases are not covered by Drupal security advisories."
  3923. }
  3924. }
  3925. },
  3926. "notification-url": "https://packages.drupal.org/8/downloads",
  3927. "license": [
  3928. "GPL-2.0-or-later"
  3929. ],
  3930. "authors": [
  3931. {
  3932. "name": "agentrickard",
  3933. "homepage": "https://www.drupal.org/user/20975"
  3934. },
  3935. {
  3936. "name": "nonsie",
  3937. "homepage": "https://www.drupal.org/user/29899"
  3938. }
  3939. ],
  3940. "description": "Domain-based access control for content.",
  3941. "homepage": "https://www.drupal.org/project/domain",
  3942. "support": {
  3943. "source": "https://git.drupalcode.org/project/domain"
  3944. }
  3945. },
  3946. {
  3947. "name": "drupal/domain_config",
  3948. "version": "1.0.0-alpha15",
  3949. "require": {
  3950. "drupal/core": "~8.0",
  3951. "drupal/domain": "self.version"
  3952. },
  3953. "type": "metapackage",
  3954. "extra": {
  3955. "branch-alias": {
  3956. "dev-1.x": "1.x-dev"
  3957. },
  3958. "drupal": {
  3959. "version": "8.x-1.0-alpha15",
  3960. "datestamp": "1550763184",
  3961. "security-coverage": {
  3962. "status": "not-covered",
  3963. "message": "Alpha releases are not covered by Drupal security advisories."
  3964. }
  3965. }
  3966. },
  3967. "notification-url": "https://packages.drupal.org/8/downloads",
  3968. "license": [
  3969. "GPL-2.0-or-later"
  3970. ],
  3971. "authors": [
  3972. {
  3973. "name": "agentrickard",
  3974. "homepage": "https://www.drupal.org/user/20975"
  3975. },
  3976. {
  3977. "name": "nonsie",
  3978. "homepage": "https://www.drupal.org/user/29899"
  3979. }
  3980. ],
  3981. "description": "Allows domain specific configuration.",
  3982. "homepage": "https://www.drupal.org/project/domain",
  3983. "support": {
  3984. "source": "https://git.drupalcode.org/project/domain"
  3985. }
  3986. },
  3987. {
  3988. "name": "drupal/domain_menu_access",
  3989. "version": "dev-1.x",
  3990. "source": {
  3991. "type": "git",
  3992. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3993. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  3994. },
  3995. "require": {
  3996. "drupal/core": "~8.0",
  3997. "drupal/domain": "^1",
  3998. "drupal/domain_access": "^1"
  3999. },
  4000. "type": "drupal-module",
  4001. "extra": {
  4002. "branch-alias": {
  4003. "dev-1.x": "1.x-dev"
  4004. },
  4005. "drupal": {
  4006. "version": "8.x-1.0-alpha2+3-dev",
  4007. "datestamp": "1551553085",
  4008. "security-coverage": {
  4009. "status": "not-covered",
  4010. "message": "Dev releases are not covered by Drupal security advisories."
  4011. }
  4012. }
  4013. },
  4014. "notification-url": "https://packages.drupal.org/8/downloads",
  4015. "license": [
  4016. "GPL-2.0+"
  4017. ],
  4018. "authors": [
  4019. {
  4020. "name": "Sebastien @Actualys",
  4021. "homepage": "https://www.drupal.org/user/380104"
  4022. },
  4023. {
  4024. "name": "maciej.zgadzaj",
  4025. "homepage": "https://www.drupal.org/user/271491"
  4026. },
  4027. {
  4028. "name": "pifagor",
  4029. "homepage": "https://www.drupal.org/user/2375692"
  4030. }
  4031. ],
  4032. "description": "Domain-based access control for menu link.",
  4033. "homepage": "https://www.drupal.org/project/domain_menu_access",
  4034. "support": {
  4035. "source": "https://git.drupalcode.org/project/domain_menu_access"
  4036. },
  4037. "time": "2019-04-11T06:07:16+00:00"
  4038. },
  4039. {
  4040. "name": "drupal/domain_site_settings",
  4041. "version": "1.3.0",
  4042. "source": {
  4043. "type": "git",
  4044. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4045. "reference": "8.x-1.3"
  4046. },
  4047. "dist": {
  4048. "type": "zip",
  4049. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  4050. "reference": "8.x-1.3",
  4051. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  4052. },
  4053. "require": {
  4054. "drupal/core": "~8.0",
  4055. "drupal/domain": "*",
  4056. "drupal/domain_config": "*"
  4057. },
  4058. "type": "drupal-module",
  4059. "extra": {
  4060. "branch-alias": {
  4061. "dev-1.x": "1.x-dev"
  4062. },
  4063. "drupal": {
  4064. "version": "8.x-1.3",
  4065. "datestamp": "1537684980",
  4066. "security-coverage": {
  4067. "status": "covered",
  4068. "message": "Covered by Drupal's security advisory policy"
  4069. }
  4070. },
  4071. "patches_applied": {
  4072. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  4073. }
  4074. },
  4075. "notification-url": "https://packages.drupal.org/8/downloads",
  4076. "license": [
  4077. "GPL-2.0+"
  4078. ],
  4079. "authors": [
  4080. {
  4081. "name": "aloknarwaria",
  4082. "homepage": "https://www.drupal.org/user/906640"
  4083. }
  4084. ],
  4085. "description": "Basic Site Setting for Domains.",
  4086. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4087. "keywords": [
  4088. "Drupal"
  4089. ],
  4090. "support": {
  4091. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4092. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4093. }
  4094. },
  4095. {
  4096. "name": "drupal/email_registration",
  4097. "version": "1.0.0-rc6",
  4098. "source": {
  4099. "type": "git",
  4100. "url": "https://git.drupalcode.org/project/email_registration.git",
  4101. "reference": "8.x-1.0-rc6"
  4102. },
  4103. "dist": {
  4104. "type": "zip",
  4105. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc6.zip",
  4106. "reference": "8.x-1.0-rc6",
  4107. "shasum": "b004bc24b79faaa9e8b2fe59a04eaab02f44c363"
  4108. },
  4109. "require": {
  4110. "drupal/core": "*"
  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.0-rc6",
  4119. "datestamp": "1545350880",
  4120. "security-coverage": {
  4121. "status": "not-covered",
  4122. "message": "RC releases are not covered by Drupal security advisories."
  4123. }
  4124. }
  4125. },
  4126. "notification-url": "https://packages.drupal.org/8/downloads",
  4127. "license": [
  4128. "GPL-2.0+"
  4129. ],
  4130. "authors": [
  4131. {
  4132. "name": "Greg Knaddison (greggles)",
  4133. "homepage": "https://www.drupal.org/u/greggles",
  4134. "role": "Maintainer"
  4135. },
  4136. {
  4137. "name": "Andrey Postnikov (andypost)",
  4138. "homepage": "https://www.drupal.org/u/andypost",
  4139. "role": "Maintainer"
  4140. },
  4141. {
  4142. "name": "Chris Herberte",
  4143. "homepage": "https://www.drupal.org/u/chris-herberte",
  4144. "role": "Maintainer"
  4145. },
  4146. {
  4147. "name": "Moshe Weitzman (moshe weitzman)",
  4148. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4149. "role": "Maintainer"
  4150. }
  4151. ],
  4152. "description": "Allows users to register with an email address as their username.",
  4153. "homepage": "https://www.drupal.org/project/email_registration",
  4154. "support": {
  4155. "source": "http://cgit.drupalcode.org/email_registration",
  4156. "issues": "http://drupal.org/project/issues/email_registration"
  4157. }
  4158. },
  4159. {
  4160. "name": "drupal/entity",
  4161. "version": "1.0.0-rc2",
  4162. "source": {
  4163. "type": "git",
  4164. "url": "https://git.drupalcode.org/project/entity.git",
  4165. "reference": "8.x-1.0-rc2"
  4166. },
  4167. "dist": {
  4168. "type": "zip",
  4169. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc2.zip",
  4170. "reference": "8.x-1.0-rc2",
  4171. "shasum": "616b4c095dc8cf67f318f2d5504aed1c4d6dd363"
  4172. },
  4173. "require": {
  4174. "drupal/core": "^8.6"
  4175. },
  4176. "type": "drupal-module",
  4177. "extra": {
  4178. "branch-alias": {
  4179. "dev-1.x": "1.x-dev"
  4180. },
  4181. "drupal": {
  4182. "version": "8.x-1.0-rc2",
  4183. "datestamp": "1553254684",
  4184. "security-coverage": {
  4185. "status": "not-covered",
  4186. "message": "RC releases are not covered by Drupal security advisories."
  4187. }
  4188. }
  4189. },
  4190. "notification-url": "https://packages.drupal.org/8/downloads",
  4191. "license": [
  4192. "GPL-2.0+"
  4193. ],
  4194. "authors": [
  4195. {
  4196. "name": "Berdir",
  4197. "homepage": "https://www.drupal.org/user/214652"
  4198. },
  4199. {
  4200. "name": "bojanz",
  4201. "homepage": "https://www.drupal.org/user/86106"
  4202. },
  4203. {
  4204. "name": "dawehner",
  4205. "homepage": "https://www.drupal.org/user/99340"
  4206. },
  4207. {
  4208. "name": "dixon_",
  4209. "homepage": "https://www.drupal.org/user/239911"
  4210. },
  4211. {
  4212. "name": "fago",
  4213. "homepage": "https://www.drupal.org/user/16747"
  4214. }
  4215. ],
  4216. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4217. "homepage": "http://drupal.org/project/entity",
  4218. "support": {
  4219. "source": "https://git.drupalcode.org/project/entity"
  4220. }
  4221. },
  4222. {
  4223. "name": "drupal/features",
  4224. "version": "3.8.0",
  4225. "source": {
  4226. "type": "git",
  4227. "url": "https://git.drupalcode.org/project/features.git",
  4228. "reference": "8.x-3.8"
  4229. },
  4230. "dist": {
  4231. "type": "zip",
  4232. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
  4233. "reference": "8.x-3.8",
  4234. "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
  4235. },
  4236. "require": {
  4237. "drupal/config_update": "^1.4",
  4238. "drupal/core": "*"
  4239. },
  4240. "type": "drupal-module",
  4241. "extra": {
  4242. "branch-alias": {
  4243. "dev-3.x": "3.x-dev"
  4244. },
  4245. "drupal": {
  4246. "version": "8.x-3.8",
  4247. "datestamp": "1536512284",
  4248. "security-coverage": {
  4249. "status": "covered",
  4250. "message": "Covered by Drupal's security advisory policy"
  4251. }
  4252. },
  4253. "drush": {
  4254. "services": {
  4255. "drush.services.yml": "^9"
  4256. }
  4257. }
  4258. },
  4259. "notification-url": "https://packages.drupal.org/8/downloads",
  4260. "license": [
  4261. "GPL-2.0+"
  4262. ],
  4263. "authors": [
  4264. {
  4265. "name": "dawehner",
  4266. "homepage": "https://www.drupal.org/user/99340"
  4267. },
  4268. {
  4269. "name": "e2thex",
  4270. "homepage": "https://www.drupal.org/user/189123"
  4271. },
  4272. {
  4273. "name": "febbraro",
  4274. "homepage": "https://www.drupal.org/user/43670"
  4275. },
  4276. {
  4277. "name": "jmiccolis",
  4278. "homepage": "https://www.drupal.org/user/31731"
  4279. },
  4280. {
  4281. "name": "joseph.olstad",
  4282. "homepage": "https://www.drupal.org/user/1321830"
  4283. },
  4284. {
  4285. "name": "mpotter",
  4286. "homepage": "https://www.drupal.org/user/616192"
  4287. },
  4288. {
  4289. "name": "nedjo",
  4290. "homepage": "https://www.drupal.org/user/4481"
  4291. },
  4292. {
  4293. "name": "tim.plunkett",
  4294. "homepage": "https://www.drupal.org/user/241634"
  4295. }
  4296. ],
  4297. "description": "Enables administrators to package configuration into modules",
  4298. "homepage": "https://www.drupal.org/project/features",
  4299. "support": {
  4300. "source": "https://git.drupalcode.org/project/features"
  4301. }
  4302. },
  4303. {
  4304. "name": "drupal/field_group",
  4305. "version": "3.0.0-beta1",
  4306. "source": {
  4307. "type": "git",
  4308. "url": "https://git.drupalcode.org/project/field_group.git",
  4309. "reference": "8.x-3.0-beta1"
  4310. },
  4311. "dist": {
  4312. "type": "zip",
  4313. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0-beta1.zip",
  4314. "reference": "8.x-3.0-beta1",
  4315. "shasum": "a5dfb66385be7a1b3db232e49779d5bc530a048e"
  4316. },
  4317. "require": {
  4318. "drupal/core": "*"
  4319. },
  4320. "type": "drupal-module",
  4321. "extra": {
  4322. "branch-alias": {
  4323. "dev-3.x": "3.x-dev"
  4324. },
  4325. "drupal": {
  4326. "version": "8.x-3.0-beta1",
  4327. "datestamp": "1510352338",
  4328. "security-coverage": {
  4329. "status": "not-covered",
  4330. "message": "Beta releases are not covered by Drupal security advisories."
  4331. }
  4332. }
  4333. },
  4334. "notification-url": "https://packages.drupal.org/8/downloads",
  4335. "license": [
  4336. "GPL-2.0+"
  4337. ],
  4338. "authors": [
  4339. {
  4340. "name": "Hydra",
  4341. "homepage": "https://www.drupal.org/user/647364"
  4342. },
  4343. {
  4344. "name": "Stalski",
  4345. "homepage": "https://www.drupal.org/user/322618"
  4346. },
  4347. {
  4348. "name": "jyve",
  4349. "homepage": "https://www.drupal.org/user/591438"
  4350. },
  4351. {
  4352. "name": "swentel",
  4353. "homepage": "https://www.drupal.org/user/107403"
  4354. },
  4355. {
  4356. "name": "zuuperman",
  4357. "homepage": "https://www.drupal.org/user/361625"
  4358. }
  4359. ],
  4360. "description": "Provides the field_group module.",
  4361. "homepage": "https://www.drupal.org/project/field_group",
  4362. "support": {
  4363. "source": "https://git.drupalcode.org/project/field_group"
  4364. }
  4365. },
  4366. {
  4367. "name": "drupal/filefield_sources",
  4368. "version": "dev-1.x",
  4369. "source": {
  4370. "type": "git",
  4371. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4372. "reference": "0de87103ee52f3e4965106a6587b4b5e43d6dab5"
  4373. },
  4374. "require": {
  4375. "drupal/core": "*"
  4376. },
  4377. "type": "drupal-module",
  4378. "extra": {
  4379. "branch-alias": {
  4380. "dev-1.x": "1.x-dev"
  4381. },
  4382. "drupal": {
  4383. "version": "8.x-1.0-alpha1+1-dev",
  4384. "datestamp": "1553883485",
  4385. "security-coverage": {
  4386. "status": "not-covered",
  4387. "message": "Dev releases are not covered by Drupal security advisories."
  4388. }
  4389. }
  4390. },
  4391. "notification-url": "https://packages.drupal.org/8/downloads",
  4392. "license": [
  4393. "GPL-2.0-or-later"
  4394. ],
  4395. "authors": [
  4396. {
  4397. "name": "Nate Lampton (quicksketch)",
  4398. "homepage": "https://www.drupal.org/u/quicksketch",
  4399. "role": "Maintainer"
  4400. },
  4401. {
  4402. "name": "Andrey Khromyshev (profak)",
  4403. "homepage": "https://www.drupal.org/u/profak",
  4404. "role": "Maintainer"
  4405. },
  4406. {
  4407. "name": "David Valdez (gnuget)",
  4408. "homepage": "https://www.drupal.org/u/gnuget",
  4409. "role": "Maintainer"
  4410. }
  4411. ],
  4412. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4413. "homepage": "https://www.drupal.org/project/filefield_sources",
  4414. "support": {
  4415. "source": "https://git.drupalcode.org/project/filefield_sources",
  4416. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4417. "irc": "irc://irc.freenode.org/drupal-contribute"
  4418. },
  4419. "time": "2019-04-26T18:53:07+00:00"
  4420. },
  4421. {
  4422. "name": "drupal/filter_perms",
  4423. "version": "dev-1.x",
  4424. "source": {
  4425. "type": "git",
  4426. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4427. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4428. },
  4429. "require": {
  4430. "drupal/core": "*"
  4431. },
  4432. "type": "drupal-module",
  4433. "extra": {
  4434. "branch-alias": {
  4435. "dev-1.x": "1.x-dev"
  4436. },
  4437. "drupal": {
  4438. "version": "8.x-1.x-dev",
  4439. "datestamp": "1469645939",
  4440. "security-coverage": {
  4441. "status": "not-covered",
  4442. "message": "Dev releases are not covered by Drupal security advisories."
  4443. }
  4444. }
  4445. },
  4446. "notification-url": "https://packages.drupal.org/8/downloads",
  4447. "license": [
  4448. "GPL-2.0-or-later"
  4449. ],
  4450. "authors": [
  4451. {
  4452. "name": "cYu",
  4453. "homepage": "https://www.drupal.org/user/202205"
  4454. },
  4455. {
  4456. "name": "deekayen",
  4457. "homepage": "https://www.drupal.org/user/972"
  4458. },
  4459. {
  4460. "name": "willzyx",
  4461. "homepage": "https://www.drupal.org/user/1043862"
  4462. }
  4463. ],
  4464. "description": "Provides role and module filters to simplify the user permissions page.",
  4465. "homepage": "https://www.drupal.org/project/filter_perms",
  4466. "support": {
  4467. "source": "https://git.drupalcode.org/project/filter_perms"
  4468. },
  4469. "time": "2016-07-27T19:01:11+00:00"
  4470. },
  4471. {
  4472. "name": "drupal/honeypot",
  4473. "version": "1.29.0",
  4474. "source": {
  4475. "type": "git",
  4476. "url": "https://git.drupalcode.org/project/honeypot.git",
  4477. "reference": "8.x-1.29"
  4478. },
  4479. "dist": {
  4480. "type": "zip",
  4481. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4482. "reference": "8.x-1.29",
  4483. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4484. },
  4485. "require": {
  4486. "drupal/core": "~8.0"
  4487. },
  4488. "type": "drupal-module",
  4489. "extra": {
  4490. "branch-alias": {
  4491. "dev-1.x": "1.x-dev"
  4492. },
  4493. "drupal": {
  4494. "version": "8.x-1.29",
  4495. "datestamp": "1536179280",
  4496. "security-coverage": {
  4497. "status": "covered",
  4498. "message": "Covered by Drupal's security advisory policy"
  4499. }
  4500. }
  4501. },
  4502. "notification-url": "https://packages.drupal.org/8/downloads",
  4503. "license": [
  4504. "GPL-2.0+"
  4505. ],
  4506. "authors": [
  4507. {
  4508. "name": "Jeff Geerling",
  4509. "homepage": "https://www.drupal.org/user/213194",
  4510. "email": "geerlingguy@mac.com"
  4511. },
  4512. {
  4513. "name": "geerlingguy",
  4514. "homepage": "https://www.drupal.org/user/389011"
  4515. },
  4516. {
  4517. "name": "vijaycs85",
  4518. "homepage": "https://www.drupal.org/user/93488"
  4519. }
  4520. ],
  4521. "description": "Mitigates spam form submissions using the honeypot method.",
  4522. "homepage": "https://www.drupal.org/project/honeypot",
  4523. "keywords": [
  4524. "deterrent",
  4525. "form",
  4526. "honeypot",
  4527. "honeytrap",
  4528. "php",
  4529. "spam"
  4530. ],
  4531. "support": {
  4532. "source": "https://git.drupalcode.org/project/honeypot"
  4533. }
  4534. },
  4535. {
  4536. "name": "drupal/linkit",
  4537. "version": "5.0.0-beta8",
  4538. "source": {
  4539. "type": "git",
  4540. "url": "https://git.drupalcode.org/project/linkit.git",
  4541. "reference": "8.x-5.0-beta8"
  4542. },
  4543. "dist": {
  4544. "type": "zip",
  4545. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta8.zip",
  4546. "reference": "8.x-5.0-beta8",
  4547. "shasum": "677be19d6128f1d5c6d239132e98b1817ad91acb"
  4548. },
  4549. "require": {
  4550. "drupal/core": "~8.0"
  4551. },
  4552. "require-dev": {
  4553. "drupal/imce": "*"
  4554. },
  4555. "type": "drupal-module",
  4556. "extra": {
  4557. "branch-alias": {
  4558. "dev-5.x": "5.x-dev"
  4559. },
  4560. "drupal": {
  4561. "version": "8.x-5.0-beta8",
  4562. "datestamp": "1545966784",
  4563. "security-coverage": {
  4564. "status": "not-covered",
  4565. "message": "Beta releases are not covered by Drupal security advisories."
  4566. }
  4567. }
  4568. },
  4569. "notification-url": "https://packages.drupal.org/8/downloads",
  4570. "license": [
  4571. "GPL-2.0+"
  4572. ],
  4573. "authors": [
  4574. {
  4575. "name": "Emil Stjerneman",
  4576. "homepage": "https://stjerneman.com",
  4577. "email": "emil@stjerneman.com",
  4578. "role": "Maintainer"
  4579. }
  4580. ],
  4581. "description": "Linkit - Enriched linking experience",
  4582. "homepage": "http://drupal.org/project/linkit",
  4583. "support": {
  4584. "source": "http://cgit.drupalcode.org/linkit",
  4585. "issues": "http://drupal.org/project/linkit"
  4586. }
  4587. },
  4588. {
  4589. "name": "drupal/maillog",
  4590. "version": "dev-1.x",
  4591. "source": {
  4592. "type": "git",
  4593. "url": "https://git.drupalcode.org/project/maillog.git",
  4594. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4595. },
  4596. "require": {
  4597. "drupal/core": "*"
  4598. },
  4599. "type": "drupal-module",
  4600. "extra": {
  4601. "branch-alias": {
  4602. "dev-1.x": "1.x-dev"
  4603. },
  4604. "drupal": {
  4605. "version": "8.x-1.x-dev",
  4606. "datestamp": "1470431939",
  4607. "security-coverage": {
  4608. "status": "not-covered",
  4609. "message": "Project has not opted into security advisory coverage!"
  4610. }
  4611. }
  4612. },
  4613. "notification-url": "https://packages.drupal.org/8/downloads",
  4614. "license": [
  4615. "GPL-2.0-or-later"
  4616. ],
  4617. "authors": [
  4618. {
  4619. "name": "Berdir",
  4620. "homepage": "https://www.drupal.org/user/214652"
  4621. },
  4622. {
  4623. "name": "DamienMcKenna",
  4624. "homepage": "https://www.drupal.org/user/108450"
  4625. },
  4626. {
  4627. "name": "miro_dietiker",
  4628. "homepage": "https://www.drupal.org/user/227761"
  4629. },
  4630. {
  4631. "name": "pluess",
  4632. "homepage": "https://www.drupal.org/user/84659"
  4633. }
  4634. ],
  4635. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4636. "homepage": "https://www.drupal.org/project/maillog",
  4637. "support": {
  4638. "source": "https://git.drupalcode.org/project/maillog"
  4639. },
  4640. "time": "2016-08-05T21:18:07+00:00"
  4641. },
  4642. {
  4643. "name": "drupal/matomo",
  4644. "version": "1.9.0",
  4645. "source": {
  4646. "type": "git",
  4647. "url": "https://git.drupalcode.org/project/matomo.git",
  4648. "reference": "8.x-1.9"
  4649. },
  4650. "dist": {
  4651. "type": "zip",
  4652. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4653. "reference": "8.x-1.9",
  4654. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4655. },
  4656. "require": {
  4657. "drupal/core": "~8.5"
  4658. },
  4659. "require-dev": {
  4660. "drupal/php": "*",
  4661. "drupal/token": "*"
  4662. },
  4663. "type": "drupal-module",
  4664. "extra": {
  4665. "branch-alias": {
  4666. "dev-1.x": "1.x-dev"
  4667. },
  4668. "drupal": {
  4669. "version": "8.x-1.9",
  4670. "datestamp": "1549615080",
  4671. "security-coverage": {
  4672. "status": "covered",
  4673. "message": "Covered by Drupal's security advisory policy"
  4674. }
  4675. }
  4676. },
  4677. "notification-url": "https://packages.drupal.org/8/downloads",
  4678. "license": [
  4679. "GPL-2.0+"
  4680. ],
  4681. "authors": [
  4682. {
  4683. "name": "hass",
  4684. "homepage": "https://www.drupal.org/u/hass"
  4685. },
  4686. {
  4687. "name": "See other contributors",
  4688. "homepage": "https://www.drupal.org/node/247808/committers"
  4689. }
  4690. ],
  4691. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4692. "homepage": "https://www.drupal.org/project/matomo",
  4693. "support": {
  4694. "source": "https://git.drupal.org/project/matomo.git",
  4695. "issues": "https://www.drupal.org/project/issues/matomo"
  4696. }
  4697. },
  4698. {
  4699. "name": "drupal/menu_admin_per_menu",
  4700. "version": "1.0.0",
  4701. "source": {
  4702. "type": "git",
  4703. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4704. "reference": "8.x-1.0"
  4705. },
  4706. "dist": {
  4707. "type": "zip",
  4708. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4709. "reference": "8.x-1.0",
  4710. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4711. },
  4712. "require": {
  4713. "drupal/core": "*"
  4714. },
  4715. "type": "drupal-module",
  4716. "extra": {
  4717. "branch-alias": {
  4718. "dev-1.x": "1.x-dev"
  4719. },
  4720. "drupal": {
  4721. "version": "8.x-1.0",
  4722. "datestamp": "1507184944",
  4723. "security-coverage": {
  4724. "status": "covered",
  4725. "message": "Covered by Drupal's security advisory policy"
  4726. }
  4727. }
  4728. },
  4729. "notification-url": "https://packages.drupal.org/8/downloads",
  4730. "license": [
  4731. "GPL-2.0-or-later"
  4732. ],
  4733. "authors": [
  4734. {
  4735. "name": "anrikun",
  4736. "homepage": "https://www.drupal.org/user/410199"
  4737. },
  4738. {
  4739. "name": "mkdok",
  4740. "homepage": "https://www.drupal.org/user/3308753"
  4741. }
  4742. ],
  4743. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4744. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4745. "support": {
  4746. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4747. }
  4748. },
  4749. {
  4750. "name": "drupal/metatag",
  4751. "version": "1.10.0",
  4752. "source": {
  4753. "type": "git",
  4754. "url": "https://git.drupalcode.org/project/metatag.git",
  4755. "reference": "8.x-1.10"
  4756. },
  4757. "dist": {
  4758. "type": "zip",
  4759. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.10.zip",
  4760. "reference": "8.x-1.10",
  4761. "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc"
  4762. },
  4763. "require": {
  4764. "drupal/core": "*",
  4765. "drupal/token": "^1.0"
  4766. },
  4767. "require-dev": {
  4768. "drupal/devel": "^2.0",
  4769. "drupal/metatag_dc": "*",
  4770. "drupal/metatag_open_graph": "*",
  4771. "drupal/page_manager": "^4.0",
  4772. "drupal/redirect": "^1.0",
  4773. "drupal/restui": "^1.0",
  4774. "drupal/schema_metatag": "^1.0",
  4775. "drupal/schema_web_page": "*"
  4776. },
  4777. "type": "drupal-module",
  4778. "extra": {
  4779. "branch-alias": {
  4780. "dev-1.x": "1.x-dev"
  4781. },
  4782. "drupal": {
  4783. "version": "8.x-1.10",
  4784. "datestamp": "1567099985",
  4785. "security-coverage": {
  4786. "status": "covered",
  4787. "message": "Covered by Drupal's security advisory policy"
  4788. }
  4789. }
  4790. },
  4791. "notification-url": "https://packages.drupal.org/8/downloads",
  4792. "license": [
  4793. "GPL-2.0+"
  4794. ],
  4795. "authors": [
  4796. {
  4797. "name": "See contributors",
  4798. "homepage": "https://www.drupal.org/node/640498/committers",
  4799. "role": "Developer"
  4800. },
  4801. {
  4802. "name": "Dave Reid",
  4803. "homepage": "https://www.drupal.org/user/53892"
  4804. }
  4805. ],
  4806. "description": "Manage meta tags for all entities.",
  4807. "homepage": "https://www.drupal.org/project/metatag",
  4808. "keywords": [
  4809. "Drupal",
  4810. "seo"
  4811. ],
  4812. "support": {
  4813. "source": "http://cgit.drupalcode.org/metatag",
  4814. "issues": "http://drupal.org/project/issues/metatag"
  4815. }
  4816. },
  4817. {
  4818. "name": "drupal/migrate_plus",
  4819. "version": "4.2.0",
  4820. "source": {
  4821. "type": "git",
  4822. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4823. "reference": "8.x-4.2"
  4824. },
  4825. "dist": {
  4826. "type": "zip",
  4827. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.2.zip",
  4828. "reference": "8.x-4.2",
  4829. "shasum": "5736a43e39cc5c091d54ceef2849ea35ba979af3"
  4830. },
  4831. "require": {
  4832. "drupal/core": "^8.3"
  4833. },
  4834. "require-dev": {
  4835. "drupal/entity": "*",
  4836. "drupal/migrate_example_advanced_setup": "*",
  4837. "drupal/migrate_example_setup": "*",
  4838. "drupal/migrate_tools": "*",
  4839. "drupal/profile": "*"
  4840. },
  4841. "suggest": {
  4842. "ext-soap": "*",
  4843. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4844. },
  4845. "type": "drupal-module",
  4846. "extra": {
  4847. "branch-alias": {
  4848. "dev-4.x": "4.x-dev"
  4849. },
  4850. "drupal": {
  4851. "version": "8.x-4.2",
  4852. "datestamp": "1555683487",
  4853. "security-coverage": {
  4854. "status": "covered",
  4855. "message": "Covered by Drupal's security advisory policy"
  4856. }
  4857. }
  4858. },
  4859. "notification-url": "https://packages.drupal.org/8/downloads",
  4860. "license": [
  4861. "GPL-2.0+"
  4862. ],
  4863. "authors": [
  4864. {
  4865. "name": "Mike Ryan",
  4866. "homepage": "https://www.drupal.org/u/mikeryan",
  4867. "role": "Maintainer"
  4868. },
  4869. {
  4870. "name": "mikeryan",
  4871. "homepage": "https://www.drupal.org/user/4420"
  4872. }
  4873. ],
  4874. "description": "Enhancements to core migration support.",
  4875. "homepage": "https://www.drupal.org/project/migrate_plus",
  4876. "support": {
  4877. "source": "https://cgit.drupalcode.org/migrate_plus",
  4878. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4879. "irc": "irc://irc.freenode.org/drupal-migrate"
  4880. }
  4881. },
  4882. {
  4883. "name": "drupal/migrate_tools",
  4884. "version": "4.1.0",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4888. "reference": "8.x-4.1"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.1.zip",
  4893. "reference": "8.x-4.1",
  4894. "shasum": "0355d5309fbb738759332779d0ecf5f19a1da0a4"
  4895. },
  4896. "require": {
  4897. "drupal/core": "^8.3",
  4898. "drupal/migrate_plus": "^4"
  4899. },
  4900. "require-dev": {
  4901. "drupal/migrate_plus": "4.x-dev",
  4902. "drupal/migrate_source_csv": "^2.2",
  4903. "drush/drush": "^9"
  4904. },
  4905. "type": "drupal-module",
  4906. "extra": {
  4907. "branch-alias": {
  4908. "dev-4.x": "4.x-dev"
  4909. },
  4910. "drupal": {
  4911. "version": "8.x-4.1",
  4912. "datestamp": "1546879080",
  4913. "security-coverage": {
  4914. "status": "covered",
  4915. "message": "Covered by Drupal's security advisory policy"
  4916. }
  4917. },
  4918. "drush": {
  4919. "services": {
  4920. "drush.services.yml": "^9"
  4921. }
  4922. }
  4923. },
  4924. "notification-url": "https://packages.drupal.org/8/downloads",
  4925. "license": [
  4926. "GPL-2.0-or-later"
  4927. ],
  4928. "authors": [
  4929. {
  4930. "name": "heddn",
  4931. "homepage": "https://www.drupal.org/user/1463982"
  4932. },
  4933. {
  4934. "name": "mikeryan",
  4935. "homepage": "https://www.drupal.org/user/4420"
  4936. },
  4937. {
  4938. "name": "moshe weitzman",
  4939. "homepage": "https://www.drupal.org/user/23"
  4940. }
  4941. ],
  4942. "description": "Tools to assist in developing and running migrations.",
  4943. "homepage": "http://drupal.org/project/migrate_tools",
  4944. "support": {
  4945. "source": "http://cgit.drupalcode.org/migrate_tools",
  4946. "issues": "http://drupal.org/project/migrate_tools",
  4947. "irc": "irc://irc.freenode.org/drupal-migrate"
  4948. }
  4949. },
  4950. {
  4951. "name": "drupal/path_alias_xt",
  4952. "version": "dev-1.x",
  4953. "source": {
  4954. "type": "git",
  4955. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4956. "reference": "2a79ac72191dc59ef656d1edd85e651538c6a389"
  4957. },
  4958. "require": {
  4959. "drupal/core": "*"
  4960. },
  4961. "type": "drupal-module",
  4962. "extra": {
  4963. "branch-alias": {
  4964. "dev-1.x": "1.x-dev"
  4965. },
  4966. "drupal": {
  4967. "version": "8.x-1.x-dev",
  4968. "datestamp": "1548876480",
  4969. "security-coverage": {
  4970. "status": "not-covered",
  4971. "message": "Dev releases are not covered by Drupal security advisories."
  4972. }
  4973. }
  4974. },
  4975. "notification-url": "https://packages.drupal.org/8/downloads",
  4976. "license": [
  4977. "GPL-2.0-or-later"
  4978. ],
  4979. "authors": [
  4980. {
  4981. "name": "RdeBoer",
  4982. "homepage": "https://www.drupal.org/user/404007"
  4983. },
  4984. {
  4985. "name": "adriancid",
  4986. "homepage": "https://www.drupal.org/user/1962106"
  4987. },
  4988. {
  4989. "name": "sdstyles",
  4990. "homepage": "https://www.drupal.org/user/1420228"
  4991. }
  4992. ],
  4993. "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.",
  4994. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4995. "support": {
  4996. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4997. },
  4998. "time": "2019-01-30T19:27:58+00:00"
  4999. },
  5000. {
  5001. "name": "drupal/pathauto",
  5002. "version": "1.4.0",
  5003. "source": {
  5004. "type": "git",
  5005. "url": "https://git.drupalcode.org/project/pathauto.git",
  5006. "reference": "8.x-1.4"
  5007. },
  5008. "dist": {
  5009. "type": "zip",
  5010. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.4.zip",
  5011. "reference": "8.x-1.4",
  5012. "shasum": "ddfb047ae04ca2ddf475d65f6c09bceb44169e25"
  5013. },
  5014. "require": {
  5015. "drupal/core": "^8.5",
  5016. "drupal/ctools": "*",
  5017. "drupal/token": "*"
  5018. },
  5019. "type": "drupal-module",
  5020. "extra": {
  5021. "branch-alias": {
  5022. "dev-1.x": "1.x-dev"
  5023. },
  5024. "drupal": {
  5025. "version": "8.x-1.4",
  5026. "datestamp": "1554239887",
  5027. "security-coverage": {
  5028. "status": "covered",
  5029. "message": "Covered by Drupal's security advisory policy"
  5030. }
  5031. }
  5032. },
  5033. "notification-url": "https://packages.drupal.org/8/downloads",
  5034. "license": [
  5035. "GPL-2.0-or-later"
  5036. ],
  5037. "authors": [
  5038. {
  5039. "name": "Berdir",
  5040. "homepage": "https://www.drupal.org/user/214652"
  5041. },
  5042. {
  5043. "name": "Dave Reid",
  5044. "homepage": "https://www.drupal.org/user/53892"
  5045. },
  5046. {
  5047. "name": "Freso",
  5048. "homepage": "https://www.drupal.org/user/27504"
  5049. },
  5050. {
  5051. "name": "greggles",
  5052. "homepage": "https://www.drupal.org/user/36762"
  5053. }
  5054. ],
  5055. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5056. "homepage": "https://www.drupal.org/project/pathauto",
  5057. "support": {
  5058. "source": "https://git.drupalcode.org/project/pathauto"
  5059. }
  5060. },
  5061. {
  5062. "name": "drupal/piwik",
  5063. "version": "1.4.0",
  5064. "source": {
  5065. "type": "git",
  5066. "url": "https://git.drupalcode.org/project/piwik.git",
  5067. "reference": "8.x-1.4"
  5068. },
  5069. "dist": {
  5070. "type": "zip",
  5071. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  5072. "reference": "8.x-1.4",
  5073. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  5074. },
  5075. "require": {
  5076. "drupal/core": "~8.0",
  5077. "drupal/matomo": "^1.0"
  5078. },
  5079. "require-dev": {
  5080. "drupal/php": "*",
  5081. "drupal/token": "*"
  5082. },
  5083. "type": "drupal-module",
  5084. "extra": {
  5085. "branch-alias": {
  5086. "dev-1.x": "1.x-dev"
  5087. },
  5088. "drupal": {
  5089. "version": "8.x-1.4",
  5090. "datestamp": "1530437786",
  5091. "security-coverage": {
  5092. "status": "covered",
  5093. "message": "Covered by Drupal's security advisory policy"
  5094. }
  5095. }
  5096. },
  5097. "notification-url": "https://packages.drupal.org/8/downloads",
  5098. "license": [
  5099. "GPL-2.0+"
  5100. ],
  5101. "authors": [
  5102. {
  5103. "name": "hass",
  5104. "homepage": "https://www.drupal.org/u/hass"
  5105. },
  5106. {
  5107. "name": "See other contributors",
  5108. "homepage": "https://www.drupal.org/node/247808/committers"
  5109. }
  5110. ],
  5111. "description": "Adds Piwik javascript tracking code to all your site's pages",
  5112. "homepage": "https://www.drupal.org/project/piwik",
  5113. "support": {
  5114. "source": "http://git.drupal.org/project/piwik.git",
  5115. "issues": "https://www.drupal.org/project/issues/piwik"
  5116. }
  5117. },
  5118. {
  5119. "name": "drupal/profile",
  5120. "version": "1.0.0-rc4",
  5121. "source": {
  5122. "type": "git",
  5123. "url": "https://git.drupalcode.org/project/profile.git",
  5124. "reference": "8.x-1.0-rc4"
  5125. },
  5126. "dist": {
  5127. "type": "zip",
  5128. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0-rc4.zip",
  5129. "reference": "8.x-1.0-rc4",
  5130. "shasum": "0dffde8100312f33bec9f1e999797a1b4c995c17"
  5131. },
  5132. "require": {
  5133. "drupal/core": "^8.5",
  5134. "drupal/entity": "^1.0-rc1"
  5135. },
  5136. "require-dev": {
  5137. "drupal/token": "1.0"
  5138. },
  5139. "type": "drupal-module",
  5140. "extra": {
  5141. "branch-alias": {
  5142. "dev-1.x": "1.x-dev"
  5143. },
  5144. "drupal": {
  5145. "version": "8.x-1.0-rc4",
  5146. "datestamp": "1552407486",
  5147. "security-coverage": {
  5148. "status": "not-covered",
  5149. "message": "RC releases are not covered by Drupal security advisories."
  5150. }
  5151. }
  5152. },
  5153. "notification-url": "https://packages.drupal.org/8/downloads",
  5154. "license": [
  5155. "GPL-2.0+"
  5156. ],
  5157. "authors": [
  5158. {
  5159. "name": "bojanz",
  5160. "homepage": "https://www.drupal.org/user/86106"
  5161. },
  5162. {
  5163. "name": "daggerhart",
  5164. "homepage": "https://www.drupal.org/user/167806"
  5165. },
  5166. {
  5167. "name": "fago",
  5168. "homepage": "https://www.drupal.org/user/16747"
  5169. },
  5170. {
  5171. "name": "mglaman",
  5172. "homepage": "https://www.drupal.org/user/2416470"
  5173. },
  5174. {
  5175. "name": "pcambra",
  5176. "homepage": "https://www.drupal.org/user/122101"
  5177. }
  5178. ],
  5179. "description": "Provides configurable user profiles.",
  5180. "homepage": "http://drupal.org/project/profile",
  5181. "support": {
  5182. "source": "https://git.drupalcode.org/project/profile"
  5183. }
  5184. },
  5185. {
  5186. "name": "drupal/redirect",
  5187. "version": "1.3.0",
  5188. "source": {
  5189. "type": "git",
  5190. "url": "https://git.drupalcode.org/project/redirect.git",
  5191. "reference": "8.x-1.3"
  5192. },
  5193. "dist": {
  5194. "type": "zip",
  5195. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.3.zip",
  5196. "reference": "8.x-1.3",
  5197. "shasum": "3f9620d186e25f36ac56755979932b8ea965b8c7"
  5198. },
  5199. "require": {
  5200. "drupal/core": "~8"
  5201. },
  5202. "type": "drupal-module",
  5203. "extra": {
  5204. "branch-alias": {
  5205. "dev-1.x": "1.x-dev"
  5206. },
  5207. "drupal": {
  5208. "version": "8.x-1.3",
  5209. "datestamp": "1539682684",
  5210. "security-coverage": {
  5211. "status": "covered",
  5212. "message": "Covered by Drupal's security advisory policy"
  5213. }
  5214. }
  5215. },
  5216. "notification-url": "https://packages.drupal.org/8/downloads",
  5217. "license": [
  5218. "GPL-2.0+"
  5219. ],
  5220. "authors": [
  5221. {
  5222. "name": "Berdir",
  5223. "homepage": "https://www.drupal.org/user/214652"
  5224. },
  5225. {
  5226. "name": "Dave Reid",
  5227. "homepage": "https://www.drupal.org/user/53892"
  5228. },
  5229. {
  5230. "name": "pifagor",
  5231. "homepage": "https://www.drupal.org/user/2375692"
  5232. }
  5233. ],
  5234. "description": "Allows users to redirect from old URLs to new URLs.",
  5235. "homepage": "https://www.drupal.org/project/redirect",
  5236. "support": {
  5237. "source": "https://git.drupalcode.org/project/redirect"
  5238. }
  5239. },
  5240. {
  5241. "name": "drupal/redis",
  5242. "version": "1.1.0",
  5243. "source": {
  5244. "type": "git",
  5245. "url": "https://git.drupalcode.org/project/redis.git",
  5246. "reference": "8.x-1.1"
  5247. },
  5248. "dist": {
  5249. "type": "zip",
  5250. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.1.zip",
  5251. "reference": "8.x-1.1",
  5252. "shasum": "33337fe1cbd2824797e87533b30e4886b48ecd77"
  5253. },
  5254. "require": {
  5255. "drupal/core": "~8.0"
  5256. },
  5257. "suggest": {
  5258. "predis/predis": "^1.1.1"
  5259. },
  5260. "type": "drupal-module",
  5261. "extra": {
  5262. "branch-alias": {
  5263. "dev-1.x": "1.x-dev"
  5264. },
  5265. "drupal": {
  5266. "version": "8.x-1.1",
  5267. "datestamp": "1541600580",
  5268. "security-coverage": {
  5269. "status": "covered",
  5270. "message": "Covered by Drupal's security advisory policy"
  5271. }
  5272. }
  5273. },
  5274. "autoload": {
  5275. "psr-4": {
  5276. "Drupal\\redis\\": "src"
  5277. }
  5278. },
  5279. "notification-url": "https://packages.drupal.org/8/downloads",
  5280. "license": [
  5281. "GPL-2.0"
  5282. ],
  5283. "authors": [
  5284. {
  5285. "name": "Berdir",
  5286. "homepage": "https://www.drupal.org/user/214652"
  5287. },
  5288. {
  5289. "name": "pounard",
  5290. "homepage": "https://www.drupal.org/user/240164"
  5291. }
  5292. ],
  5293. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5294. "homepage": "https://www.drupal.org/project/redis",
  5295. "support": {
  5296. "source": "https://git.drupalcode.org/project/redis"
  5297. }
  5298. },
  5299. {
  5300. "name": "drupal/search_api",
  5301. "version": "1.12.0",
  5302. "source": {
  5303. "type": "git",
  5304. "url": "https://git.drupalcode.org/project/search_api.git",
  5305. "reference": "8.x-1.12"
  5306. },
  5307. "dist": {
  5308. "type": "zip",
  5309. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.12.zip",
  5310. "reference": "8.x-1.12",
  5311. "shasum": "db203e2fdd669d6e9ff2c99688c0816d248a1fff"
  5312. },
  5313. "require": {
  5314. "drupal/core": "^8.5"
  5315. },
  5316. "require-dev": {
  5317. "drupal/search_api_autocomplete": "@dev",
  5318. "drupal/search_api_db": "*"
  5319. },
  5320. "suggest": {
  5321. "drupal/facets": "Adds the ability to create faceted searches.",
  5322. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5323. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5324. },
  5325. "type": "drupal-module",
  5326. "extra": {
  5327. "branch-alias": {
  5328. "dev-1.x": "1.x-dev"
  5329. },
  5330. "drupal": {
  5331. "version": "8.x-1.12",
  5332. "datestamp": "1552334285",
  5333. "security-coverage": {
  5334. "status": "covered",
  5335. "message": "Covered by Drupal's security advisory policy"
  5336. }
  5337. },
  5338. "drush": {
  5339. "services": {
  5340. "drush.services.yml": "^9"
  5341. }
  5342. }
  5343. },
  5344. "notification-url": "https://packages.drupal.org/8/downloads",
  5345. "license": [
  5346. "GPL-2.0+"
  5347. ],
  5348. "authors": [
  5349. {
  5350. "name": "Thomas Seidl",
  5351. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5352. },
  5353. {
  5354. "name": "Nick Veenhof",
  5355. "homepage": "https://www.drupal.org/u/nick_vh"
  5356. },
  5357. {
  5358. "name": "See other contributors",
  5359. "homepage": "https://www.drupal.org/node/790418/committers"
  5360. }
  5361. ],
  5362. "description": "Provides a generic framework for modules offering search capabilities.",
  5363. "homepage": "https://www.drupal.org/project/search_api",
  5364. "support": {
  5365. "source": "http://git.drupal.org/project/search_api.git",
  5366. "issues": "https://www.drupal.org/project/issues/search_api",
  5367. "irc": "irc://irc.freenode.org/drupal-search-api"
  5368. }
  5369. },
  5370. {
  5371. "name": "drupal/simple_sitemap",
  5372. "version": "3.1.0",
  5373. "source": {
  5374. "type": "git",
  5375. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5376. "reference": "8.x-3.1"
  5377. },
  5378. "dist": {
  5379. "type": "zip",
  5380. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.1.zip",
  5381. "reference": "8.x-3.1",
  5382. "shasum": "7194caf8482c4a80a5b7eddf28d94e798bb4786d"
  5383. },
  5384. "require": {
  5385. "drupal/core": "~8.0",
  5386. "ext-xmlwriter": "*"
  5387. },
  5388. "type": "drupal-module",
  5389. "extra": {
  5390. "branch-alias": {
  5391. "dev-3.x": "3.x-dev"
  5392. },
  5393. "drupal": {
  5394. "version": "8.x-3.1",
  5395. "datestamp": "1555534615",
  5396. "security-coverage": {
  5397. "status": "covered",
  5398. "message": "Covered by Drupal's security advisory policy"
  5399. }
  5400. },
  5401. "drush": {
  5402. "services": {
  5403. "drush.services.yml": "^9"
  5404. }
  5405. }
  5406. },
  5407. "notification-url": "https://packages.drupal.org/8/downloads",
  5408. "license": [
  5409. "GPL-2.0+"
  5410. ],
  5411. "authors": [
  5412. {
  5413. "name": "Pawel Ginalski (gbyte.co)",
  5414. "homepage": "https://www.drupal.org/u/gbyte.co",
  5415. "email": "contact@gbyte.co",
  5416. "role": "Maintainer"
  5417. },
  5418. {
  5419. "name": "gbyte.co",
  5420. "homepage": "https://www.drupal.org/user/2381352"
  5421. }
  5422. ],
  5423. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5424. "homepage": "https://drupal.org/project/simple_sitemap",
  5425. "support": {
  5426. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5427. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5428. "irc": "irc://irc.freenode.org/drupal-contribute"
  5429. }
  5430. },
  5431. {
  5432. "name": "drupal/synonyms",
  5433. "version": "dev-1.x",
  5434. "source": {
  5435. "type": "git",
  5436. "url": "https://git.drupalcode.org/project/synonyms.git",
  5437. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5438. },
  5439. "require": {
  5440. "drupal/core": "^8.2"
  5441. },
  5442. "type": "drupal-module",
  5443. "extra": {
  5444. "branch-alias": {
  5445. "dev-1.x": "1.x-dev"
  5446. },
  5447. "drupal": {
  5448. "version": "8.x-1.0-alpha1+5-dev",
  5449. "datestamp": "1540141681",
  5450. "security-coverage": {
  5451. "status": "not-covered",
  5452. "message": "Dev releases are not covered by Drupal security advisories."
  5453. }
  5454. }
  5455. },
  5456. "notification-url": "https://packages.drupal.org/8/downloads",
  5457. "license": [
  5458. "GPL-2.0-or-later"
  5459. ],
  5460. "authors": [
  5461. {
  5462. "name": "Zen",
  5463. "homepage": "https://www.drupal.org/user/21209"
  5464. },
  5465. {
  5466. "name": "bojanz",
  5467. "homepage": "https://www.drupal.org/user/86106"
  5468. },
  5469. {
  5470. "name": "bucefal91",
  5471. "homepage": "https://www.drupal.org/user/504128"
  5472. }
  5473. ],
  5474. "description": "Provides synonyms feature for content entities.",
  5475. "homepage": "https://www.drupal.org/project/synonyms",
  5476. "support": {
  5477. "source": "https://git.drupalcode.org/project/synonyms"
  5478. },
  5479. "time": "2018-10-21T17:05:25+00:00"
  5480. },
  5481. {
  5482. "name": "drupal/token",
  5483. "version": "1.5.0",
  5484. "source": {
  5485. "type": "git",
  5486. "url": "https://git.drupalcode.org/project/token.git",
  5487. "reference": "8.x-1.5"
  5488. },
  5489. "dist": {
  5490. "type": "zip",
  5491. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  5492. "reference": "8.x-1.5",
  5493. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  5494. },
  5495. "require": {
  5496. "drupal/core": "^8.5"
  5497. },
  5498. "type": "drupal-module",
  5499. "extra": {
  5500. "branch-alias": {
  5501. "dev-1.x": "1.x-dev"
  5502. },
  5503. "drupal": {
  5504. "version": "8.x-1.5",
  5505. "datestamp": "1537557481",
  5506. "security-coverage": {
  5507. "status": "covered",
  5508. "message": "Covered by Drupal's security advisory policy"
  5509. }
  5510. }
  5511. },
  5512. "notification-url": "https://packages.drupal.org/8/downloads",
  5513. "license": [
  5514. "GPL-2.0-or-later"
  5515. ],
  5516. "authors": [
  5517. {
  5518. "name": "Berdir",
  5519. "homepage": "https://www.drupal.org/user/214652"
  5520. },
  5521. {
  5522. "name": "Dave Reid",
  5523. "homepage": "https://www.drupal.org/user/53892"
  5524. },
  5525. {
  5526. "name": "eaton",
  5527. "homepage": "https://www.drupal.org/user/16496"
  5528. },
  5529. {
  5530. "name": "fago",
  5531. "homepage": "https://www.drupal.org/user/16747"
  5532. },
  5533. {
  5534. "name": "greggles",
  5535. "homepage": "https://www.drupal.org/user/36762"
  5536. },
  5537. {
  5538. "name": "mikeryan",
  5539. "homepage": "https://www.drupal.org/user/4420"
  5540. }
  5541. ],
  5542. "description": "Provides a user interface for the Token API and some missing core tokens.",
  5543. "homepage": "https://www.drupal.org/project/token",
  5544. "support": {
  5545. "source": "https://git.drupalcode.org/project/token"
  5546. }
  5547. },
  5548. {
  5549. "name": "drupal/toolbar_themes",
  5550. "version": "dev-1.x",
  5551. "source": {
  5552. "type": "git",
  5553. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5554. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5555. },
  5556. "require": {
  5557. "drupal/core": "*"
  5558. },
  5559. "type": "drupal-module",
  5560. "extra": {
  5561. "branch-alias": {
  5562. "dev-1.x": "1.x-dev"
  5563. },
  5564. "drupal": {
  5565. "version": "8.x-1.0-alpha4+10-dev",
  5566. "datestamp": "1510689485",
  5567. "security-coverage": {
  5568. "status": "not-covered",
  5569. "message": "Project has not opted into security advisory coverage!"
  5570. }
  5571. }
  5572. },
  5573. "notification-url": "https://packages.drupal.org/8/downloads",
  5574. "license": [
  5575. "GPL-2.0-or-later"
  5576. ],
  5577. "authors": [
  5578. {
  5579. "name": "Jeff Burnz",
  5580. "homepage": "https://www.drupal.org/user/61393"
  5581. }
  5582. ],
  5583. "description": "Apply themes to the toolbar.",
  5584. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5585. "support": {
  5586. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5587. },
  5588. "time": "2017-11-14T19:57:02+00:00"
  5589. },
  5590. {
  5591. "name": "drupal/translation_views",
  5592. "version": "1.0.0-alpha5",
  5593. "source": {
  5594. "type": "git",
  5595. "url": "https://git.drupalcode.org/project/translation_views.git",
  5596. "reference": "8.x-1.0-alpha5"
  5597. },
  5598. "dist": {
  5599. "type": "zip",
  5600. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha5.zip",
  5601. "reference": "8.x-1.0-alpha5",
  5602. "shasum": "f1fc54c4648bca5194c0bdcb6df02dae1e8fefd9"
  5603. },
  5604. "require": {
  5605. "drupal/core": "*"
  5606. },
  5607. "require-dev": {
  5608. "drupal/local_translation": "*"
  5609. },
  5610. "type": "drupal-module",
  5611. "extra": {
  5612. "branch-alias": {
  5613. "dev-1.x": "1.x-dev"
  5614. },
  5615. "drupal": {
  5616. "version": "8.x-1.0-alpha5",
  5617. "datestamp": "1551353287",
  5618. "security-coverage": {
  5619. "status": "not-covered",
  5620. "message": "Project has not opted into security advisory coverage!"
  5621. }
  5622. }
  5623. },
  5624. "notification-url": "https://packages.drupal.org/8/downloads",
  5625. "license": [
  5626. "GPL-2.0-or-later"
  5627. ],
  5628. "authors": [
  5629. {
  5630. "name": "matsbla",
  5631. "homepage": "https://www.drupal.org/user/2325394"
  5632. },
  5633. {
  5634. "name": "vlad.dancer",
  5635. "homepage": "https://www.drupal.org/user/903844"
  5636. }
  5637. ],
  5638. "description": "Create customized lists and queries of translations from your database.",
  5639. "homepage": "https://www.drupal.org/project/translation_views",
  5640. "support": {
  5641. "source": "https://git.drupalcode.org/project/translation_views"
  5642. }
  5643. },
  5644. {
  5645. "name": "drupal/url_to_video_filter",
  5646. "version": "1.3.0",
  5647. "source": {
  5648. "type": "git",
  5649. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5650. "reference": "8.x-1.3"
  5651. },
  5652. "dist": {
  5653. "type": "zip",
  5654. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  5655. "reference": "8.x-1.3",
  5656. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  5657. },
  5658. "require": {
  5659. "drupal/core": "~8.0"
  5660. },
  5661. "type": "drupal-module",
  5662. "extra": {
  5663. "branch-alias": {
  5664. "dev-1.x": "1.x-dev"
  5665. },
  5666. "drupal": {
  5667. "version": "8.x-1.3",
  5668. "datestamp": "1532695981",
  5669. "security-coverage": {
  5670. "status": "covered",
  5671. "message": "Covered by Drupal's security advisory policy"
  5672. }
  5673. }
  5674. },
  5675. "notification-url": "https://packages.drupal.org/8/downloads",
  5676. "license": [
  5677. "GPL-2.0-or-later"
  5678. ],
  5679. "authors": [
  5680. {
  5681. "name": "Jaypan",
  5682. "homepage": "https://www.drupal.org/user/324696"
  5683. }
  5684. ],
  5685. "description": "Text filter to convert URLs to embedded videos",
  5686. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5687. "support": {
  5688. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5689. }
  5690. },
  5691. {
  5692. "name": "drupal/views_bulk_edit",
  5693. "version": "2.2.0",
  5694. "source": {
  5695. "type": "git",
  5696. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5697. "reference": "8.x-2.2"
  5698. },
  5699. "dist": {
  5700. "type": "zip",
  5701. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.2.zip",
  5702. "reference": "8.x-2.2",
  5703. "shasum": "6a096dc73fab842c1b000d8788241ed9d3a17427"
  5704. },
  5705. "require": {
  5706. "drupal/core": "*",
  5707. "drupal/views_bulk_operations": "~1.0 | ~2.0"
  5708. },
  5709. "type": "drupal-module",
  5710. "extra": {
  5711. "branch-alias": {
  5712. "dev-2.x": "2.x-dev"
  5713. },
  5714. "drupal": {
  5715. "version": "8.x-2.2",
  5716. "datestamp": "1532689085",
  5717. "security-coverage": {
  5718. "status": "covered",
  5719. "message": "Covered by Drupal's security advisory policy"
  5720. }
  5721. }
  5722. },
  5723. "notification-url": "https://packages.drupal.org/8/downloads",
  5724. "license": [
  5725. "GPL-2.0+"
  5726. ],
  5727. "authors": [
  5728. {
  5729. "name": "Marcin Grabias",
  5730. "homepage": "https://www.drupal.org/u/graber"
  5731. },
  5732. {
  5733. "name": "benjy",
  5734. "homepage": "https://www.drupal.org/user/1852732"
  5735. }
  5736. ],
  5737. "description": "Allows bulk edition of entity field values.",
  5738. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5739. "support": {
  5740. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5741. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5742. }
  5743. },
  5744. {
  5745. "name": "drupal/views_bulk_operations",
  5746. "version": "2.5.0",
  5747. "source": {
  5748. "type": "git",
  5749. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5750. "reference": "8.x-2.5"
  5751. },
  5752. "dist": {
  5753. "type": "zip",
  5754. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-2.5.zip",
  5755. "reference": "8.x-2.5",
  5756. "shasum": "3ec848b4f235720d05cb9713ea80a86415b6909f"
  5757. },
  5758. "require": {
  5759. "drupal/core": "^8.4"
  5760. },
  5761. "type": "drupal-module",
  5762. "extra": {
  5763. "branch-alias": {
  5764. "dev-2.x": "2.x-dev"
  5765. },
  5766. "drupal": {
  5767. "version": "8.x-2.5",
  5768. "datestamp": "1550740384",
  5769. "security-coverage": {
  5770. "status": "covered",
  5771. "message": "Covered by Drupal's security advisory policy"
  5772. }
  5773. },
  5774. "drush": {
  5775. "services": {
  5776. "drush.services.yml": "^9"
  5777. }
  5778. }
  5779. },
  5780. "notification-url": "https://packages.drupal.org/8/downloads",
  5781. "license": [
  5782. "GPL-2.0+"
  5783. ],
  5784. "authors": [
  5785. {
  5786. "name": "Marcin Grabias",
  5787. "homepage": "https://www.drupal.org/u/graber"
  5788. },
  5789. {
  5790. "name": "Jon Pugh",
  5791. "homepage": "https://www.drupal.org/user/17028"
  5792. },
  5793. {
  5794. "name": "bojanz",
  5795. "homepage": "https://www.drupal.org/user/86106"
  5796. },
  5797. {
  5798. "name": "infojunkie",
  5799. "homepage": "https://www.drupal.org/user/48424"
  5800. },
  5801. {
  5802. "name": "joelpittet",
  5803. "homepage": "https://www.drupal.org/user/160302"
  5804. }
  5805. ],
  5806. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5807. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5808. "support": {
  5809. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5810. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5811. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5812. }
  5813. },
  5814. {
  5815. "name": "drupal/workflow",
  5816. "version": "dev-1.x",
  5817. "source": {
  5818. "type": "git",
  5819. "url": "https://git.drupalcode.org/project/workflow.git",
  5820. "reference": "19030d5b4dd9523153a7af6e2df44cd9a03109b2"
  5821. },
  5822. "require": {
  5823. "drupal/core": "*"
  5824. },
  5825. "type": "drupal-module",
  5826. "extra": {
  5827. "branch-alias": {
  5828. "dev-1.x": "1.x-dev"
  5829. },
  5830. "drupal": {
  5831. "version": "8.x-1.1+35-dev",
  5832. "datestamp": "1548801480",
  5833. "security-coverage": {
  5834. "status": "not-covered",
  5835. "message": "Dev releases are not covered by Drupal security advisories."
  5836. }
  5837. }
  5838. },
  5839. "notification-url": "https://packages.drupal.org/8/downloads",
  5840. "license": [
  5841. "GPL-2.0-or-later"
  5842. ],
  5843. "authors": [
  5844. {
  5845. "name": "Bastlynn",
  5846. "homepage": "https://www.drupal.org/user/275249"
  5847. },
  5848. {
  5849. "name": "Heine",
  5850. "homepage": "https://www.drupal.org/user/17943"
  5851. },
  5852. {
  5853. "name": "JacobSingh",
  5854. "homepage": "https://www.drupal.org/user/68912"
  5855. },
  5856. {
  5857. "name": "NancyDru",
  5858. "homepage": "https://www.drupal.org/user/101412"
  5859. },
  5860. {
  5861. "name": "eaton",
  5862. "homepage": "https://www.drupal.org/user/16496"
  5863. },
  5864. {
  5865. "name": "johnv",
  5866. "homepage": "https://www.drupal.org/user/591042"
  5867. },
  5868. {
  5869. "name": "jvandyk",
  5870. "homepage": "https://www.drupal.org/user/2375"
  5871. },
  5872. {
  5873. "name": "mfredrickson",
  5874. "homepage": "https://www.drupal.org/user/31994"
  5875. },
  5876. {
  5877. "name": "q0rban",
  5878. "homepage": "https://www.drupal.org/user/31022"
  5879. }
  5880. ],
  5881. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5882. "homepage": "https://www.drupal.org/project/workflow",
  5883. "support": {
  5884. "source": "https://git.drupalcode.org/project/workflow"
  5885. },
  5886. "time": "2019-01-29T22:35:30+00:00"
  5887. },
  5888. {
  5889. "name": "drush/drush",
  5890. "version": "9.6.2",
  5891. "source": {
  5892. "type": "git",
  5893. "url": "https://github.com/drush-ops/drush.git",
  5894. "reference": "65d36cf542308d0b88f77c80f818a978d2844b80"
  5895. },
  5896. "dist": {
  5897. "type": "zip",
  5898. "url": "https://api.github.com/repos/drush-ops/drush/zipball/65d36cf542308d0b88f77c80f818a978d2844b80",
  5899. "reference": "65d36cf542308d0b88f77c80f818a978d2844b80",
  5900. "shasum": ""
  5901. },
  5902. "require": {
  5903. "chi-teck/drupal-code-generator": "^1.28.1",
  5904. "composer/semver": "^1.4",
  5905. "consolidation/annotated-command": "^2.12",
  5906. "consolidation/config": "^1.2",
  5907. "consolidation/filter-via-dot-access-data": "^1",
  5908. "consolidation/output-formatters": "^3.3.1",
  5909. "consolidation/robo": "^1.4.6",
  5910. "consolidation/site-alias": "^3.0.0@stable",
  5911. "consolidation/site-process": "^2.0.1",
  5912. "ext-dom": "*",
  5913. "grasmash/yaml-expander": "^1.1.1",
  5914. "league/container": "~2",
  5915. "php": ">=5.6.0",
  5916. "psr/log": "~1.0",
  5917. "psy/psysh": "~0.6",
  5918. "symfony/console": "^3.4",
  5919. "symfony/event-dispatcher": "^3.4",
  5920. "symfony/finder": "^3.4 || ^4.0",
  5921. "symfony/process": "^3.4",
  5922. "symfony/var-dumper": "^3.4 || ^4.0",
  5923. "symfony/yaml": "^3.4",
  5924. "webflo/drupal-finder": "^1.1",
  5925. "webmozart/path-util": "^2.1.0"
  5926. },
  5927. "require-dev": {
  5928. "composer/installers": "^1.2",
  5929. "cweagans/composer-patches": "~1.0",
  5930. "drupal/alinks": "1.0.0",
  5931. "drupal/devel": "^2",
  5932. "drupal/empty_theme": "1.0",
  5933. "g1a/composer-test-scenarios": "^3",
  5934. "lox/xhprof": "dev-master",
  5935. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5936. "squizlabs/php_codesniffer": "^2.7",
  5937. "vlucas/phpdotenv": "^2.4",
  5938. "webflo/drupal-core-strict": "8.6.x-dev"
  5939. },
  5940. "bin": [
  5941. "drush"
  5942. ],
  5943. "type": "library",
  5944. "extra": {
  5945. "installer-paths": {
  5946. "sut/core": [
  5947. "type:drupal-core"
  5948. ],
  5949. "sut/libraries/{$name}": [
  5950. "type:drupal-library"
  5951. ],
  5952. "sut/modules/unish/{$name}": [
  5953. "drupal/devel"
  5954. ],
  5955. "sut/themes/unish/{$name}": [
  5956. "drupal/empty_theme"
  5957. ],
  5958. "sut/modules/contrib/{$name}": [
  5959. "type:drupal-module"
  5960. ],
  5961. "sut/profiles/contrib/{$name}": [
  5962. "type:drupal-profile"
  5963. ],
  5964. "sut/themes/contrib/{$name}": [
  5965. "type:drupal-theme"
  5966. ],
  5967. "sut/drush/contrib/{$name}": [
  5968. "type:drupal-drush"
  5969. ]
  5970. },
  5971. "scenarios": {
  5972. "php5": {
  5973. "config": {
  5974. "platform": {
  5975. "php": "5.6.38"
  5976. }
  5977. }
  5978. }
  5979. },
  5980. "branch-alias": {
  5981. "dev-master": "9.x-dev"
  5982. }
  5983. },
  5984. "autoload": {
  5985. "psr-4": {
  5986. "Drush\\": "src/",
  5987. "Drush\\Internal\\": "src/internal-forks"
  5988. }
  5989. },
  5990. "notification-url": "https://packagist.org/downloads/",
  5991. "license": [
  5992. "GPL-2.0-or-later"
  5993. ],
  5994. "authors": [
  5995. {
  5996. "name": "Moshe Weitzman",
  5997. "email": "weitzman@tejasa.com"
  5998. },
  5999. {
  6000. "name": "Owen Barton",
  6001. "email": "drupal@owenbarton.com"
  6002. },
  6003. {
  6004. "name": "Greg Anderson",
  6005. "email": "greg.1.anderson@greenknowe.org"
  6006. },
  6007. {
  6008. "name": "Jonathan Araña Cruz",
  6009. "email": "jonhattan@faita.net"
  6010. },
  6011. {
  6012. "name": "Jonathan Hedstrom",
  6013. "email": "jhedstrom@gmail.com"
  6014. },
  6015. {
  6016. "name": "Christopher Gervais",
  6017. "email": "chris@ergonlogic.com"
  6018. },
  6019. {
  6020. "name": "Dave Reid",
  6021. "email": "dave@davereid.net"
  6022. },
  6023. {
  6024. "name": "Damian Lee",
  6025. "email": "damiankloip@googlemail.com"
  6026. }
  6027. ],
  6028. "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.",
  6029. "homepage": "http://www.drush.org",
  6030. "time": "2019-04-03T11:17:00+00:00"
  6031. },
  6032. {
  6033. "name": "easyrdf/easyrdf",
  6034. "version": "0.9.1",
  6035. "source": {
  6036. "type": "git",
  6037. "url": "https://github.com/njh/easyrdf.git",
  6038. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6039. },
  6040. "dist": {
  6041. "type": "zip",
  6042. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6043. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6044. "shasum": ""
  6045. },
  6046. "require": {
  6047. "ext-mbstring": "*",
  6048. "ext-pcre": "*",
  6049. "php": ">=5.2.8"
  6050. },
  6051. "require-dev": {
  6052. "phpunit/phpunit": "~3.5",
  6053. "sami/sami": "~1.4",
  6054. "squizlabs/php_codesniffer": "~1.4.3"
  6055. },
  6056. "suggest": {
  6057. "ml/json-ld": "~1.0"
  6058. },
  6059. "type": "library",
  6060. "autoload": {
  6061. "psr-0": {
  6062. "EasyRdf_": "lib/"
  6063. }
  6064. },
  6065. "notification-url": "https://packagist.org/downloads/",
  6066. "license": [
  6067. "BSD-3-Clause"
  6068. ],
  6069. "authors": [
  6070. {
  6071. "name": "Nicholas Humfrey",
  6072. "email": "njh@aelius.com",
  6073. "homepage": "http://www.aelius.com/njh/",
  6074. "role": "Developer"
  6075. },
  6076. {
  6077. "name": "Alexey Zakhlestin",
  6078. "email": "indeyets@gmail.com",
  6079. "role": "Developer"
  6080. }
  6081. ],
  6082. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  6083. "homepage": "http://www.easyrdf.org/",
  6084. "keywords": [
  6085. "Linked Data",
  6086. "RDF",
  6087. "Semantic Web",
  6088. "Turtle",
  6089. "rdfa",
  6090. "sparql"
  6091. ],
  6092. "time": "2015-02-27T09:45:49+00:00"
  6093. },
  6094. {
  6095. "name": "egulias/email-validator",
  6096. "version": "1.2.15",
  6097. "source": {
  6098. "type": "git",
  6099. "url": "https://github.com/egulias/EmailValidator.git",
  6100. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e"
  6101. },
  6102. "dist": {
  6103. "type": "zip",
  6104. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  6105. "reference": "758a77525bdaabd6c0f5669176bd4361cb2dda9e",
  6106. "shasum": ""
  6107. },
  6108. "require": {
  6109. "doctrine/lexer": "^1.0.1",
  6110. "php": ">= 5.3.3"
  6111. },
  6112. "require-dev": {
  6113. "phpunit/phpunit": "^4.8.24"
  6114. },
  6115. "type": "library",
  6116. "extra": {
  6117. "branch-alias": {
  6118. "dev-master": "2.0.x-dev"
  6119. }
  6120. },
  6121. "autoload": {
  6122. "psr-0": {
  6123. "Egulias\\": "src/"
  6124. }
  6125. },
  6126. "notification-url": "https://packagist.org/downloads/",
  6127. "license": [
  6128. "MIT"
  6129. ],
  6130. "authors": [
  6131. {
  6132. "name": "Eduardo Gulias Davis"
  6133. }
  6134. ],
  6135. "description": "A library for validating emails",
  6136. "homepage": "https://github.com/egulias/EmailValidator",
  6137. "keywords": [
  6138. "email",
  6139. "emailvalidation",
  6140. "emailvalidator",
  6141. "validation",
  6142. "validator"
  6143. ],
  6144. "time": "2018-09-25T20:59:41+00:00"
  6145. },
  6146. {
  6147. "name": "fabpot/goutte",
  6148. "version": "v3.2.3",
  6149. "source": {
  6150. "type": "git",
  6151. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  6152. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  6153. },
  6154. "dist": {
  6155. "type": "zip",
  6156. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6157. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6158. "shasum": ""
  6159. },
  6160. "require": {
  6161. "guzzlehttp/guzzle": "^6.0",
  6162. "php": ">=5.5.0",
  6163. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  6164. "symfony/css-selector": "~2.1|~3.0|~4.0",
  6165. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  6166. },
  6167. "require-dev": {
  6168. "symfony/phpunit-bridge": "^3.3 || ^4"
  6169. },
  6170. "type": "application",
  6171. "extra": {
  6172. "branch-alias": {
  6173. "dev-master": "3.2-dev"
  6174. }
  6175. },
  6176. "autoload": {
  6177. "psr-4": {
  6178. "Goutte\\": "Goutte"
  6179. },
  6180. "exclude-from-classmap": [
  6181. "Goutte/Tests"
  6182. ]
  6183. },
  6184. "notification-url": "https://packagist.org/downloads/",
  6185. "license": [
  6186. "MIT"
  6187. ],
  6188. "authors": [
  6189. {
  6190. "name": "Fabien Potencier",
  6191. "email": "fabien@symfony.com"
  6192. }
  6193. ],
  6194. "description": "A simple PHP Web Scraper",
  6195. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  6196. "keywords": [
  6197. "scraper"
  6198. ],
  6199. "time": "2018-06-29T15:13:57+00:00"
  6200. },
  6201. {
  6202. "name": "grasmash/expander",
  6203. "version": "1.0.0",
  6204. "source": {
  6205. "type": "git",
  6206. "url": "https://github.com/grasmash/expander.git",
  6207. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  6208. },
  6209. "dist": {
  6210. "type": "zip",
  6211. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6212. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6213. "shasum": ""
  6214. },
  6215. "require": {
  6216. "dflydev/dot-access-data": "^1.1.0",
  6217. "php": ">=5.4"
  6218. },
  6219. "require-dev": {
  6220. "greg-1-anderson/composer-test-scenarios": "^1",
  6221. "phpunit/phpunit": "^4|^5.5.4",
  6222. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6223. "squizlabs/php_codesniffer": "^2.7"
  6224. },
  6225. "type": "library",
  6226. "extra": {
  6227. "branch-alias": {
  6228. "dev-master": "1.x-dev"
  6229. }
  6230. },
  6231. "autoload": {
  6232. "psr-4": {
  6233. "Grasmash\\Expander\\": "src/"
  6234. }
  6235. },
  6236. "notification-url": "https://packagist.org/downloads/",
  6237. "license": [
  6238. "MIT"
  6239. ],
  6240. "authors": [
  6241. {
  6242. "name": "Matthew Grasmick"
  6243. }
  6244. ],
  6245. "description": "Expands internal property references in PHP arrays file.",
  6246. "time": "2017-12-21T22:14:55+00:00"
  6247. },
  6248. {
  6249. "name": "grasmash/yaml-expander",
  6250. "version": "1.4.0",
  6251. "source": {
  6252. "type": "git",
  6253. "url": "https://github.com/grasmash/yaml-expander.git",
  6254. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6255. },
  6256. "dist": {
  6257. "type": "zip",
  6258. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6259. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6260. "shasum": ""
  6261. },
  6262. "require": {
  6263. "dflydev/dot-access-data": "^1.1.0",
  6264. "php": ">=5.4",
  6265. "symfony/yaml": "^2.8.11|^3|^4"
  6266. },
  6267. "require-dev": {
  6268. "greg-1-anderson/composer-test-scenarios": "^1",
  6269. "phpunit/phpunit": "^4.8|^5.5.4",
  6270. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6271. "squizlabs/php_codesniffer": "^2.7"
  6272. },
  6273. "type": "library",
  6274. "extra": {
  6275. "branch-alias": {
  6276. "dev-master": "1.x-dev"
  6277. }
  6278. },
  6279. "autoload": {
  6280. "psr-4": {
  6281. "Grasmash\\YamlExpander\\": "src/"
  6282. }
  6283. },
  6284. "notification-url": "https://packagist.org/downloads/",
  6285. "license": [
  6286. "MIT"
  6287. ],
  6288. "authors": [
  6289. {
  6290. "name": "Matthew Grasmick"
  6291. }
  6292. ],
  6293. "description": "Expands internal property references in a yaml file.",
  6294. "time": "2017-12-16T16:06:03+00:00"
  6295. },
  6296. {
  6297. "name": "guzzlehttp/guzzle",
  6298. "version": "6.4.1",
  6299. "source": {
  6300. "type": "git",
  6301. "url": "https://github.com/guzzle/guzzle.git",
  6302. "reference": "0895c932405407fd3a7368b6910c09a24d26db11"
  6303. },
  6304. "dist": {
  6305. "type": "zip",
  6306. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0895c932405407fd3a7368b6910c09a24d26db11",
  6307. "reference": "0895c932405407fd3a7368b6910c09a24d26db11",
  6308. "shasum": ""
  6309. },
  6310. "require": {
  6311. "ext-json": "*",
  6312. "guzzlehttp/promises": "^1.0",
  6313. "guzzlehttp/psr7": "^1.6.1",
  6314. "php": ">=5.5"
  6315. },
  6316. "require-dev": {
  6317. "ext-curl": "*",
  6318. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6319. "psr/log": "^1.1"
  6320. },
  6321. "suggest": {
  6322. "psr/log": "Required for using the Log middleware"
  6323. },
  6324. "type": "library",
  6325. "extra": {
  6326. "branch-alias": {
  6327. "dev-master": "6.3-dev"
  6328. }
  6329. },
  6330. "autoload": {
  6331. "psr-4": {
  6332. "GuzzleHttp\\": "src/"
  6333. },
  6334. "files": [
  6335. "src/functions_include.php"
  6336. ]
  6337. },
  6338. "notification-url": "https://packagist.org/downloads/",
  6339. "license": [
  6340. "MIT"
  6341. ],
  6342. "authors": [
  6343. {
  6344. "name": "Michael Dowling",
  6345. "email": "mtdowling@gmail.com",
  6346. "homepage": "https://github.com/mtdowling"
  6347. }
  6348. ],
  6349. "description": "Guzzle is a PHP HTTP client library",
  6350. "homepage": "http://guzzlephp.org/",
  6351. "keywords": [
  6352. "client",
  6353. "curl",
  6354. "framework",
  6355. "http",
  6356. "http client",
  6357. "rest",
  6358. "web service"
  6359. ],
  6360. "time": "2019-10-23T15:58:00+00:00"
  6361. },
  6362. {
  6363. "name": "guzzlehttp/promises",
  6364. "version": "v1.3.1",
  6365. "source": {
  6366. "type": "git",
  6367. "url": "https://github.com/guzzle/promises.git",
  6368. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6369. },
  6370. "dist": {
  6371. "type": "zip",
  6372. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6373. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6374. "shasum": ""
  6375. },
  6376. "require": {
  6377. "php": ">=5.5.0"
  6378. },
  6379. "require-dev": {
  6380. "phpunit/phpunit": "^4.0"
  6381. },
  6382. "type": "library",
  6383. "extra": {
  6384. "branch-alias": {
  6385. "dev-master": "1.4-dev"
  6386. }
  6387. },
  6388. "autoload": {
  6389. "psr-4": {
  6390. "GuzzleHttp\\Promise\\": "src/"
  6391. },
  6392. "files": [
  6393. "src/functions_include.php"
  6394. ]
  6395. },
  6396. "notification-url": "https://packagist.org/downloads/",
  6397. "license": [
  6398. "MIT"
  6399. ],
  6400. "authors": [
  6401. {
  6402. "name": "Michael Dowling",
  6403. "email": "mtdowling@gmail.com",
  6404. "homepage": "https://github.com/mtdowling"
  6405. }
  6406. ],
  6407. "description": "Guzzle promises library",
  6408. "keywords": [
  6409. "promise"
  6410. ],
  6411. "time": "2016-12-20T10:07:11+00:00"
  6412. },
  6413. {
  6414. "name": "guzzlehttp/psr7",
  6415. "version": "1.6.1",
  6416. "source": {
  6417. "type": "git",
  6418. "url": "https://github.com/guzzle/psr7.git",
  6419. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6420. },
  6421. "dist": {
  6422. "type": "zip",
  6423. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6424. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6425. "shasum": ""
  6426. },
  6427. "require": {
  6428. "php": ">=5.4.0",
  6429. "psr/http-message": "~1.0",
  6430. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6431. },
  6432. "provide": {
  6433. "psr/http-message-implementation": "1.0"
  6434. },
  6435. "require-dev": {
  6436. "ext-zlib": "*",
  6437. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6438. },
  6439. "suggest": {
  6440. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6441. },
  6442. "type": "library",
  6443. "extra": {
  6444. "branch-alias": {
  6445. "dev-master": "1.6-dev"
  6446. }
  6447. },
  6448. "autoload": {
  6449. "psr-4": {
  6450. "GuzzleHttp\\Psr7\\": "src/"
  6451. },
  6452. "files": [
  6453. "src/functions_include.php"
  6454. ]
  6455. },
  6456. "notification-url": "https://packagist.org/downloads/",
  6457. "license": [
  6458. "MIT"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "Michael Dowling",
  6463. "email": "mtdowling@gmail.com",
  6464. "homepage": "https://github.com/mtdowling"
  6465. },
  6466. {
  6467. "name": "Tobias Schultze",
  6468. "homepage": "https://github.com/Tobion"
  6469. }
  6470. ],
  6471. "description": "PSR-7 message implementation that also provides common utility methods",
  6472. "keywords": [
  6473. "http",
  6474. "message",
  6475. "psr-7",
  6476. "request",
  6477. "response",
  6478. "stream",
  6479. "uri",
  6480. "url"
  6481. ],
  6482. "time": "2019-07-01T23:21:34+00:00"
  6483. },
  6484. {
  6485. "name": "instaclick/php-webdriver",
  6486. "version": "1.4.6",
  6487. "source": {
  6488. "type": "git",
  6489. "url": "https://github.com/instaclick/php-webdriver.git",
  6490. "reference": "bd9405077ca04129a73059a06873bedb5e138402"
  6491. },
  6492. "dist": {
  6493. "type": "zip",
  6494. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/bd9405077ca04129a73059a06873bedb5e138402",
  6495. "reference": "bd9405077ca04129a73059a06873bedb5e138402",
  6496. "shasum": ""
  6497. },
  6498. "require": {
  6499. "ext-curl": "*",
  6500. "php": ">=5.3.2"
  6501. },
  6502. "require-dev": {
  6503. "phpunit/phpunit": "^4.8",
  6504. "satooshi/php-coveralls": "^1.0||^2.0"
  6505. },
  6506. "type": "library",
  6507. "extra": {
  6508. "branch-alias": {
  6509. "dev-master": "1.4.x-dev"
  6510. }
  6511. },
  6512. "autoload": {
  6513. "psr-0": {
  6514. "WebDriver": "lib/"
  6515. }
  6516. },
  6517. "notification-url": "https://packagist.org/downloads/",
  6518. "license": [
  6519. "Apache-2.0"
  6520. ],
  6521. "authors": [
  6522. {
  6523. "name": "Justin Bishop",
  6524. "email": "jubishop@gmail.com",
  6525. "role": "Developer"
  6526. },
  6527. {
  6528. "name": "Anthon Pang",
  6529. "email": "apang@softwaredevelopment.ca",
  6530. "role": "Fork Maintainer"
  6531. }
  6532. ],
  6533. "description": "PHP WebDriver for Selenium 2",
  6534. "homepage": "http://instaclick.com/",
  6535. "keywords": [
  6536. "browser",
  6537. "selenium",
  6538. "webdriver",
  6539. "webtest"
  6540. ],
  6541. "time": "2019-09-23T15:50:44+00:00"
  6542. },
  6543. {
  6544. "name": "jakub-onderka/php-console-color",
  6545. "version": "v0.2",
  6546. "source": {
  6547. "type": "git",
  6548. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6549. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6550. },
  6551. "dist": {
  6552. "type": "zip",
  6553. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6554. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6555. "shasum": ""
  6556. },
  6557. "require": {
  6558. "php": ">=5.4.0"
  6559. },
  6560. "require-dev": {
  6561. "jakub-onderka/php-code-style": "1.0",
  6562. "jakub-onderka/php-parallel-lint": "1.0",
  6563. "jakub-onderka/php-var-dump-check": "0.*",
  6564. "phpunit/phpunit": "~4.3",
  6565. "squizlabs/php_codesniffer": "1.*"
  6566. },
  6567. "type": "library",
  6568. "autoload": {
  6569. "psr-4": {
  6570. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6571. }
  6572. },
  6573. "notification-url": "https://packagist.org/downloads/",
  6574. "license": [
  6575. "BSD-2-Clause"
  6576. ],
  6577. "authors": [
  6578. {
  6579. "name": "Jakub Onderka",
  6580. "email": "jakub.onderka@gmail.com"
  6581. }
  6582. ],
  6583. "time": "2018-09-29T17:23:10+00:00"
  6584. },
  6585. {
  6586. "name": "jakub-onderka/php-console-highlighter",
  6587. "version": "v0.4",
  6588. "source": {
  6589. "type": "git",
  6590. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6591. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6592. },
  6593. "dist": {
  6594. "type": "zip",
  6595. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6596. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6597. "shasum": ""
  6598. },
  6599. "require": {
  6600. "ext-tokenizer": "*",
  6601. "jakub-onderka/php-console-color": "~0.2",
  6602. "php": ">=5.4.0"
  6603. },
  6604. "require-dev": {
  6605. "jakub-onderka/php-code-style": "~1.0",
  6606. "jakub-onderka/php-parallel-lint": "~1.0",
  6607. "jakub-onderka/php-var-dump-check": "~0.1",
  6608. "phpunit/phpunit": "~4.0",
  6609. "squizlabs/php_codesniffer": "~1.5"
  6610. },
  6611. "type": "library",
  6612. "autoload": {
  6613. "psr-4": {
  6614. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6615. }
  6616. },
  6617. "notification-url": "https://packagist.org/downloads/",
  6618. "license": [
  6619. "MIT"
  6620. ],
  6621. "authors": [
  6622. {
  6623. "name": "Jakub Onderka",
  6624. "email": "acci@acci.cz",
  6625. "homepage": "http://www.acci.cz/"
  6626. }
  6627. ],
  6628. "description": "Highlight PHP code in terminal",
  6629. "time": "2018-09-29T18:48:56+00:00"
  6630. },
  6631. {
  6632. "name": "jcalderonzumba/gastonjs",
  6633. "version": "v1.2.0",
  6634. "source": {
  6635. "type": "git",
  6636. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  6637. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  6638. },
  6639. "dist": {
  6640. "type": "zip",
  6641. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6642. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6643. "shasum": ""
  6644. },
  6645. "require": {
  6646. "guzzlehttp/guzzle": "~5.0|~6.0",
  6647. "php": ">=5.4"
  6648. },
  6649. "require-dev": {
  6650. "phpunit/phpunit": "~4.6",
  6651. "silex/silex": "~1.2",
  6652. "symfony/phpunit-bridge": "~2.7",
  6653. "symfony/process": "~2.1"
  6654. },
  6655. "type": "phantomjs-api",
  6656. "extra": {
  6657. "branch-alias": {
  6658. "dev-master": "1.1.x-dev"
  6659. }
  6660. },
  6661. "autoload": {
  6662. "psr-4": {
  6663. "Zumba\\GastonJS\\": "src"
  6664. }
  6665. },
  6666. "notification-url": "https://packagist.org/downloads/",
  6667. "license": [
  6668. "MIT"
  6669. ],
  6670. "authors": [
  6671. {
  6672. "name": "Juan Francisco Calderón Zumba",
  6673. "email": "juanfcz@gmail.com",
  6674. "homepage": "http://github.com/jcalderonzumba"
  6675. }
  6676. ],
  6677. "description": "PhantomJS API based server for webpage automation",
  6678. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  6679. "keywords": [
  6680. "api",
  6681. "automation",
  6682. "browser",
  6683. "headless",
  6684. "phantomjs"
  6685. ],
  6686. "time": "2017-03-31T07:31:47+00:00"
  6687. },
  6688. {
  6689. "name": "jcalderonzumba/mink-phantomjs-driver",
  6690. "version": "v0.3.3",
  6691. "source": {
  6692. "type": "git",
  6693. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  6694. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  6695. },
  6696. "dist": {
  6697. "type": "zip",
  6698. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  6699. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  6700. "shasum": ""
  6701. },
  6702. "require": {
  6703. "behat/mink": "~1.7",
  6704. "jcalderonzumba/gastonjs": "~1.0",
  6705. "php": ">=5.4",
  6706. "twig/twig": "~1.20|~2.0"
  6707. },
  6708. "require-dev": {
  6709. "mink/driver-testsuite": "dev-master",
  6710. "phpunit/phpunit": "~4.6"
  6711. },
  6712. "type": "mink-driver",
  6713. "extra": {
  6714. "branch-alias": {
  6715. "dev-master": "0.4.x-dev"
  6716. }
  6717. },
  6718. "autoload": {
  6719. "psr-4": {
  6720. "Zumba\\Mink\\Driver\\": "src"
  6721. }
  6722. },
  6723. "notification-url": "https://packagist.org/downloads/",
  6724. "license": [
  6725. "MIT"
  6726. ],
  6727. "authors": [
  6728. {
  6729. "name": "Juan Francisco Calderón Zumba",
  6730. "email": "juanfcz@gmail.com",
  6731. "homepage": "http://github.com/jcalderonzumba"
  6732. }
  6733. ],
  6734. "description": "PhantomJS driver for Mink framework",
  6735. "homepage": "http://mink.behat.org/",
  6736. "keywords": [
  6737. "ajax",
  6738. "browser",
  6739. "headless",
  6740. "javascript",
  6741. "phantomjs",
  6742. "testing"
  6743. ],
  6744. "time": "2016-12-01T10:57:30+00:00"
  6745. },
  6746. {
  6747. "name": "league/container",
  6748. "version": "2.4.1",
  6749. "source": {
  6750. "type": "git",
  6751. "url": "https://github.com/thephpleague/container.git",
  6752. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6753. },
  6754. "dist": {
  6755. "type": "zip",
  6756. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6757. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6758. "shasum": ""
  6759. },
  6760. "require": {
  6761. "container-interop/container-interop": "^1.2",
  6762. "php": "^5.4.0 || ^7.0"
  6763. },
  6764. "provide": {
  6765. "container-interop/container-interop-implementation": "^1.2",
  6766. "psr/container-implementation": "^1.0"
  6767. },
  6768. "replace": {
  6769. "orno/di": "~2.0"
  6770. },
  6771. "require-dev": {
  6772. "phpunit/phpunit": "4.*"
  6773. },
  6774. "type": "library",
  6775. "extra": {
  6776. "branch-alias": {
  6777. "dev-2.x": "2.x-dev",
  6778. "dev-1.x": "1.x-dev"
  6779. }
  6780. },
  6781. "autoload": {
  6782. "psr-4": {
  6783. "League\\Container\\": "src"
  6784. }
  6785. },
  6786. "notification-url": "https://packagist.org/downloads/",
  6787. "license": [
  6788. "MIT"
  6789. ],
  6790. "authors": [
  6791. {
  6792. "name": "Phil Bennett",
  6793. "email": "philipobenito@gmail.com",
  6794. "homepage": "http://www.philipobenito.com",
  6795. "role": "Developer"
  6796. }
  6797. ],
  6798. "description": "A fast and intuitive dependency injection container.",
  6799. "homepage": "https://github.com/thephpleague/container",
  6800. "keywords": [
  6801. "container",
  6802. "dependency",
  6803. "di",
  6804. "injection",
  6805. "league",
  6806. "provider",
  6807. "service"
  6808. ],
  6809. "time": "2017-05-10T09:20:27+00:00"
  6810. },
  6811. {
  6812. "name": "masterminds/html5",
  6813. "version": "2.7.0",
  6814. "source": {
  6815. "type": "git",
  6816. "url": "https://github.com/Masterminds/html5-php.git",
  6817. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2"
  6818. },
  6819. "dist": {
  6820. "type": "zip",
  6821. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/104443ad663d15981225f99532ba73c2f1d6b6f2",
  6822. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2",
  6823. "shasum": ""
  6824. },
  6825. "require": {
  6826. "ext-ctype": "*",
  6827. "ext-dom": "*",
  6828. "ext-libxml": "*",
  6829. "php": ">=5.3.0"
  6830. },
  6831. "require-dev": {
  6832. "phpunit/phpunit": "^4.8.35",
  6833. "sami/sami": "~2.0",
  6834. "satooshi/php-coveralls": "1.0.*"
  6835. },
  6836. "type": "library",
  6837. "extra": {
  6838. "branch-alias": {
  6839. "dev-master": "2.7-dev"
  6840. }
  6841. },
  6842. "autoload": {
  6843. "psr-4": {
  6844. "Masterminds\\": "src"
  6845. }
  6846. },
  6847. "notification-url": "https://packagist.org/downloads/",
  6848. "license": [
  6849. "MIT"
  6850. ],
  6851. "authors": [
  6852. {
  6853. "name": "Matt Butcher",
  6854. "email": "technosophos@gmail.com"
  6855. },
  6856. {
  6857. "name": "Matt Farina",
  6858. "email": "matt@mattfarina.com"
  6859. },
  6860. {
  6861. "name": "Asmir Mustafic",
  6862. "email": "goetas@gmail.com"
  6863. }
  6864. ],
  6865. "description": "An HTML5 parser and serializer.",
  6866. "homepage": "http://masterminds.github.io/html5-php",
  6867. "keywords": [
  6868. "HTML5",
  6869. "dom",
  6870. "html",
  6871. "parser",
  6872. "querypath",
  6873. "serializer",
  6874. "xml"
  6875. ],
  6876. "time": "2019-07-25T07:03:26+00:00"
  6877. },
  6878. {
  6879. "name": "mikey179/vfsstream",
  6880. "version": "v1.6.8",
  6881. "source": {
  6882. "type": "git",
  6883. "url": "https://github.com/bovigo/vfsStream.git",
  6884. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe"
  6885. },
  6886. "dist": {
  6887. "type": "zip",
  6888. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  6889. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  6890. "shasum": ""
  6891. },
  6892. "require": {
  6893. "php": ">=5.3.0"
  6894. },
  6895. "require-dev": {
  6896. "phpunit/phpunit": "^4.5|^5.0"
  6897. },
  6898. "type": "library",
  6899. "extra": {
  6900. "branch-alias": {
  6901. "dev-master": "1.6.x-dev"
  6902. }
  6903. },
  6904. "autoload": {
  6905. "psr-0": {
  6906. "org\\bovigo\\vfs\\": "src/main/php"
  6907. }
  6908. },
  6909. "notification-url": "https://packagist.org/downloads/",
  6910. "license": [
  6911. "BSD-3-Clause"
  6912. ],
  6913. "authors": [
  6914. {
  6915. "name": "Frank Kleine",
  6916. "homepage": "http://frankkleine.de/",
  6917. "role": "Developer"
  6918. }
  6919. ],
  6920. "description": "Virtual file system to mock the real file system in unit tests.",
  6921. "homepage": "http://vfs.bovigo.org/",
  6922. "time": "2019-10-30T15:31:00+00:00"
  6923. },
  6924. {
  6925. "name": "myclabs/deep-copy",
  6926. "version": "1.7.0",
  6927. "source": {
  6928. "type": "git",
  6929. "url": "https://github.com/myclabs/DeepCopy.git",
  6930. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  6931. },
  6932. "dist": {
  6933. "type": "zip",
  6934. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  6935. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  6936. "shasum": ""
  6937. },
  6938. "require": {
  6939. "php": "^5.6 || ^7.0"
  6940. },
  6941. "require-dev": {
  6942. "doctrine/collections": "^1.0",
  6943. "doctrine/common": "^2.6",
  6944. "phpunit/phpunit": "^4.1"
  6945. },
  6946. "type": "library",
  6947. "autoload": {
  6948. "psr-4": {
  6949. "DeepCopy\\": "src/DeepCopy/"
  6950. },
  6951. "files": [
  6952. "src/DeepCopy/deep_copy.php"
  6953. ]
  6954. },
  6955. "notification-url": "https://packagist.org/downloads/",
  6956. "license": [
  6957. "MIT"
  6958. ],
  6959. "description": "Create deep copies (clones) of your objects",
  6960. "keywords": [
  6961. "clone",
  6962. "copy",
  6963. "duplicate",
  6964. "object",
  6965. "object graph"
  6966. ],
  6967. "time": "2017-10-19T19:58:43+00:00"
  6968. },
  6969. {
  6970. "name": "nikic/php-parser",
  6971. "version": "v4.2.1",
  6972. "source": {
  6973. "type": "git",
  6974. "url": "https://github.com/nikic/PHP-Parser.git",
  6975. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0"
  6976. },
  6977. "dist": {
  6978. "type": "zip",
  6979. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0",
  6980. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0",
  6981. "shasum": ""
  6982. },
  6983. "require": {
  6984. "ext-tokenizer": "*",
  6985. "php": ">=7.0"
  6986. },
  6987. "require-dev": {
  6988. "phpunit/phpunit": "^6.5 || ^7.0"
  6989. },
  6990. "bin": [
  6991. "bin/php-parse"
  6992. ],
  6993. "type": "library",
  6994. "extra": {
  6995. "branch-alias": {
  6996. "dev-master": "4.2-dev"
  6997. }
  6998. },
  6999. "autoload": {
  7000. "psr-4": {
  7001. "PhpParser\\": "lib/PhpParser"
  7002. }
  7003. },
  7004. "notification-url": "https://packagist.org/downloads/",
  7005. "license": [
  7006. "BSD-3-Clause"
  7007. ],
  7008. "authors": [
  7009. {
  7010. "name": "Nikita Popov"
  7011. }
  7012. ],
  7013. "description": "A PHP parser written in PHP",
  7014. "keywords": [
  7015. "parser",
  7016. "php"
  7017. ],
  7018. "time": "2019-02-16T20:54:15+00:00"
  7019. },
  7020. {
  7021. "name": "oomphinc/composer-installers-extender",
  7022. "version": "v1.1.2",
  7023. "source": {
  7024. "type": "git",
  7025. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  7026. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  7027. },
  7028. "dist": {
  7029. "type": "zip",
  7030. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7031. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7032. "shasum": ""
  7033. },
  7034. "require": {
  7035. "composer-plugin-api": "^1.0",
  7036. "composer/installers": "^1.0"
  7037. },
  7038. "type": "composer-plugin",
  7039. "extra": {
  7040. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  7041. },
  7042. "autoload": {
  7043. "psr-4": {
  7044. "OomphInc\\ComposerInstallersExtender\\": "src/"
  7045. }
  7046. },
  7047. "notification-url": "https://packagist.org/downloads/",
  7048. "license": [
  7049. "MIT"
  7050. ],
  7051. "authors": [
  7052. {
  7053. "name": "Stephen Beemsterboer",
  7054. "email": "stephen@oomphinc.com",
  7055. "homepage": "https://github.com/balbuf"
  7056. }
  7057. ],
  7058. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  7059. "homepage": "http://www.oomphinc.com/",
  7060. "time": "2017-03-31T16:57:39+00:00"
  7061. },
  7062. {
  7063. "name": "paragonie/random_compat",
  7064. "version": "v2.0.18",
  7065. "source": {
  7066. "type": "git",
  7067. "url": "https://github.com/paragonie/random_compat.git",
  7068. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db"
  7069. },
  7070. "dist": {
  7071. "type": "zip",
  7072. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  7073. "reference": "0a58ef6e3146256cc3dc7cc393927bcc7d1b72db",
  7074. "shasum": ""
  7075. },
  7076. "require": {
  7077. "php": ">=5.2.0"
  7078. },
  7079. "require-dev": {
  7080. "phpunit/phpunit": "4.*|5.*"
  7081. },
  7082. "suggest": {
  7083. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7084. },
  7085. "type": "library",
  7086. "autoload": {
  7087. "files": [
  7088. "lib/random.php"
  7089. ]
  7090. },
  7091. "notification-url": "https://packagist.org/downloads/",
  7092. "license": [
  7093. "MIT"
  7094. ],
  7095. "authors": [
  7096. {
  7097. "name": "Paragon Initiative Enterprises",
  7098. "email": "security@paragonie.com",
  7099. "homepage": "https://paragonie.com"
  7100. }
  7101. ],
  7102. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7103. "keywords": [
  7104. "csprng",
  7105. "polyfill",
  7106. "pseudorandom",
  7107. "random"
  7108. ],
  7109. "time": "2019-01-03T20:59:08+00:00"
  7110. },
  7111. {
  7112. "name": "phar-io/manifest",
  7113. "version": "1.0.1",
  7114. "source": {
  7115. "type": "git",
  7116. "url": "https://github.com/phar-io/manifest.git",
  7117. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  7118. },
  7119. "dist": {
  7120. "type": "zip",
  7121. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7122. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7123. "shasum": ""
  7124. },
  7125. "require": {
  7126. "ext-dom": "*",
  7127. "ext-phar": "*",
  7128. "phar-io/version": "^1.0.1",
  7129. "php": "^5.6 || ^7.0"
  7130. },
  7131. "type": "library",
  7132. "extra": {
  7133. "branch-alias": {
  7134. "dev-master": "1.0.x-dev"
  7135. }
  7136. },
  7137. "autoload": {
  7138. "classmap": [
  7139. "src/"
  7140. ]
  7141. },
  7142. "notification-url": "https://packagist.org/downloads/",
  7143. "license": [
  7144. "BSD-3-Clause"
  7145. ],
  7146. "authors": [
  7147. {
  7148. "name": "Arne Blankerts",
  7149. "email": "arne@blankerts.de",
  7150. "role": "Developer"
  7151. },
  7152. {
  7153. "name": "Sebastian Heuer",
  7154. "email": "sebastian@phpeople.de",
  7155. "role": "Developer"
  7156. },
  7157. {
  7158. "name": "Sebastian Bergmann",
  7159. "email": "sebastian@phpunit.de",
  7160. "role": "Developer"
  7161. }
  7162. ],
  7163. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7164. "time": "2017-03-05T18:14:27+00:00"
  7165. },
  7166. {
  7167. "name": "phar-io/version",
  7168. "version": "1.0.1",
  7169. "source": {
  7170. "type": "git",
  7171. "url": "https://github.com/phar-io/version.git",
  7172. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  7173. },
  7174. "dist": {
  7175. "type": "zip",
  7176. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  7177. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  7178. "shasum": ""
  7179. },
  7180. "require": {
  7181. "php": "^5.6 || ^7.0"
  7182. },
  7183. "type": "library",
  7184. "autoload": {
  7185. "classmap": [
  7186. "src/"
  7187. ]
  7188. },
  7189. "notification-url": "https://packagist.org/downloads/",
  7190. "license": [
  7191. "BSD-3-Clause"
  7192. ],
  7193. "authors": [
  7194. {
  7195. "name": "Arne Blankerts",
  7196. "email": "arne@blankerts.de",
  7197. "role": "Developer"
  7198. },
  7199. {
  7200. "name": "Sebastian Heuer",
  7201. "email": "sebastian@phpeople.de",
  7202. "role": "Developer"
  7203. },
  7204. {
  7205. "name": "Sebastian Bergmann",
  7206. "email": "sebastian@phpunit.de",
  7207. "role": "Developer"
  7208. }
  7209. ],
  7210. "description": "Library for handling version information and constraints",
  7211. "time": "2017-03-05T17:38:23+00:00"
  7212. },
  7213. {
  7214. "name": "phpdocumentor/reflection-common",
  7215. "version": "1.0.1",
  7216. "source": {
  7217. "type": "git",
  7218. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  7219. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  7220. },
  7221. "dist": {
  7222. "type": "zip",
  7223. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7224. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7225. "shasum": ""
  7226. },
  7227. "require": {
  7228. "php": ">=5.5"
  7229. },
  7230. "require-dev": {
  7231. "phpunit/phpunit": "^4.6"
  7232. },
  7233. "type": "library",
  7234. "extra": {
  7235. "branch-alias": {
  7236. "dev-master": "1.0.x-dev"
  7237. }
  7238. },
  7239. "autoload": {
  7240. "psr-4": {
  7241. "phpDocumentor\\Reflection\\": [
  7242. "src"
  7243. ]
  7244. }
  7245. },
  7246. "notification-url": "https://packagist.org/downloads/",
  7247. "license": [
  7248. "MIT"
  7249. ],
  7250. "authors": [
  7251. {
  7252. "name": "Jaap van Otterdijk",
  7253. "email": "opensource@ijaap.nl"
  7254. }
  7255. ],
  7256. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  7257. "homepage": "http://www.phpdoc.org",
  7258. "keywords": [
  7259. "FQSEN",
  7260. "phpDocumentor",
  7261. "phpdoc",
  7262. "reflection",
  7263. "static analysis"
  7264. ],
  7265. "time": "2017-09-11T18:02:19+00:00"
  7266. },
  7267. {
  7268. "name": "phpdocumentor/reflection-docblock",
  7269. "version": "4.3.2",
  7270. "source": {
  7271. "type": "git",
  7272. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  7273. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e"
  7274. },
  7275. "dist": {
  7276. "type": "zip",
  7277. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  7278. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  7279. "shasum": ""
  7280. },
  7281. "require": {
  7282. "php": "^7.0",
  7283. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  7284. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  7285. "webmozart/assert": "^1.0"
  7286. },
  7287. "require-dev": {
  7288. "doctrine/instantiator": "^1.0.5",
  7289. "mockery/mockery": "^1.0",
  7290. "phpunit/phpunit": "^6.4"
  7291. },
  7292. "type": "library",
  7293. "extra": {
  7294. "branch-alias": {
  7295. "dev-master": "4.x-dev"
  7296. }
  7297. },
  7298. "autoload": {
  7299. "psr-4": {
  7300. "phpDocumentor\\Reflection\\": [
  7301. "src/"
  7302. ]
  7303. }
  7304. },
  7305. "notification-url": "https://packagist.org/downloads/",
  7306. "license": [
  7307. "MIT"
  7308. ],
  7309. "authors": [
  7310. {
  7311. "name": "Mike van Riel",
  7312. "email": "me@mikevanriel.com"
  7313. }
  7314. ],
  7315. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  7316. "time": "2019-09-12T14:27:41+00:00"
  7317. },
  7318. {
  7319. "name": "phpdocumentor/type-resolver",
  7320. "version": "0.5.1",
  7321. "source": {
  7322. "type": "git",
  7323. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  7324. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae"
  7325. },
  7326. "dist": {
  7327. "type": "zip",
  7328. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/cf842904952e64e703800d094cdf34e715a8a3ae",
  7329. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae",
  7330. "shasum": ""
  7331. },
  7332. "require": {
  7333. "php": "^7.0",
  7334. "phpdocumentor/reflection-common": "^1.0"
  7335. },
  7336. "require-dev": {
  7337. "mockery/mockery": "^1.0",
  7338. "phpunit/phpunit": "^6.4"
  7339. },
  7340. "type": "library",
  7341. "extra": {
  7342. "branch-alias": {
  7343. "dev-master": "1.0.x-dev"
  7344. }
  7345. },
  7346. "autoload": {
  7347. "psr-4": {
  7348. "phpDocumentor\\Reflection\\": "src"
  7349. }
  7350. },
  7351. "notification-url": "https://packagist.org/downloads/",
  7352. "license": [
  7353. "MIT"
  7354. ],
  7355. "authors": [
  7356. {
  7357. "name": "Mike van Riel",
  7358. "email": "me@mikevanriel.com"
  7359. }
  7360. ],
  7361. "time": "2017-12-30T13:23:38+00:00"
  7362. },
  7363. {
  7364. "name": "phpspec/prophecy",
  7365. "version": "1.9.0",
  7366. "source": {
  7367. "type": "git",
  7368. "url": "https://github.com/phpspec/prophecy.git",
  7369. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203"
  7370. },
  7371. "dist": {
  7372. "type": "zip",
  7373. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203",
  7374. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203",
  7375. "shasum": ""
  7376. },
  7377. "require": {
  7378. "doctrine/instantiator": "^1.0.2",
  7379. "php": "^5.3|^7.0",
  7380. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  7381. "sebastian/comparator": "^1.1|^2.0|^3.0",
  7382. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  7383. },
  7384. "require-dev": {
  7385. "phpspec/phpspec": "^2.5|^3.2",
  7386. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  7387. },
  7388. "type": "library",
  7389. "extra": {
  7390. "branch-alias": {
  7391. "dev-master": "1.8.x-dev"
  7392. }
  7393. },
  7394. "autoload": {
  7395. "psr-4": {
  7396. "Prophecy\\": "src/Prophecy"
  7397. }
  7398. },
  7399. "notification-url": "https://packagist.org/downloads/",
  7400. "license": [
  7401. "MIT"
  7402. ],
  7403. "authors": [
  7404. {
  7405. "name": "Konstantin Kudryashov",
  7406. "email": "ever.zet@gmail.com",
  7407. "homepage": "http://everzet.com"
  7408. },
  7409. {
  7410. "name": "Marcello Duarte",
  7411. "email": "marcello.duarte@gmail.com"
  7412. }
  7413. ],
  7414. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7415. "homepage": "https://github.com/phpspec/prophecy",
  7416. "keywords": [
  7417. "Double",
  7418. "Dummy",
  7419. "fake",
  7420. "mock",
  7421. "spy",
  7422. "stub"
  7423. ],
  7424. "time": "2019-10-03T11:07:50+00:00"
  7425. },
  7426. {
  7427. "name": "phpunit/php-code-coverage",
  7428. "version": "5.3.2",
  7429. "source": {
  7430. "type": "git",
  7431. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7432. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  7433. },
  7434. "dist": {
  7435. "type": "zip",
  7436. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  7437. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  7438. "shasum": ""
  7439. },
  7440. "require": {
  7441. "ext-dom": "*",
  7442. "ext-xmlwriter": "*",
  7443. "php": "^7.0",
  7444. "phpunit/php-file-iterator": "^1.4.2",
  7445. "phpunit/php-text-template": "^1.2.1",
  7446. "phpunit/php-token-stream": "^2.0.1",
  7447. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7448. "sebastian/environment": "^3.0",
  7449. "sebastian/version": "^2.0.1",
  7450. "theseer/tokenizer": "^1.1"
  7451. },
  7452. "require-dev": {
  7453. "phpunit/phpunit": "^6.0"
  7454. },
  7455. "suggest": {
  7456. "ext-xdebug": "^2.5.5"
  7457. },
  7458. "type": "library",
  7459. "extra": {
  7460. "branch-alias": {
  7461. "dev-master": "5.3.x-dev"
  7462. }
  7463. },
  7464. "autoload": {
  7465. "classmap": [
  7466. "src/"
  7467. ]
  7468. },
  7469. "notification-url": "https://packagist.org/downloads/",
  7470. "license": [
  7471. "BSD-3-Clause"
  7472. ],
  7473. "authors": [
  7474. {
  7475. "name": "Sebastian Bergmann",
  7476. "email": "sebastian@phpunit.de",
  7477. "role": "lead"
  7478. }
  7479. ],
  7480. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7481. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7482. "keywords": [
  7483. "coverage",
  7484. "testing",
  7485. "xunit"
  7486. ],
  7487. "time": "2018-04-06T15:36:58+00:00"
  7488. },
  7489. {
  7490. "name": "phpunit/php-file-iterator",
  7491. "version": "1.4.5",
  7492. "source": {
  7493. "type": "git",
  7494. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7495. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  7496. },
  7497. "dist": {
  7498. "type": "zip",
  7499. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7500. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7501. "shasum": ""
  7502. },
  7503. "require": {
  7504. "php": ">=5.3.3"
  7505. },
  7506. "type": "library",
  7507. "extra": {
  7508. "branch-alias": {
  7509. "dev-master": "1.4.x-dev"
  7510. }
  7511. },
  7512. "autoload": {
  7513. "classmap": [
  7514. "src/"
  7515. ]
  7516. },
  7517. "notification-url": "https://packagist.org/downloads/",
  7518. "license": [
  7519. "BSD-3-Clause"
  7520. ],
  7521. "authors": [
  7522. {
  7523. "name": "Sebastian Bergmann",
  7524. "email": "sb@sebastian-bergmann.de",
  7525. "role": "lead"
  7526. }
  7527. ],
  7528. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7529. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7530. "keywords": [
  7531. "filesystem",
  7532. "iterator"
  7533. ],
  7534. "time": "2017-11-27T13:52:08+00:00"
  7535. },
  7536. {
  7537. "name": "phpunit/php-text-template",
  7538. "version": "1.2.1",
  7539. "source": {
  7540. "type": "git",
  7541. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7542. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7543. },
  7544. "dist": {
  7545. "type": "zip",
  7546. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7547. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7548. "shasum": ""
  7549. },
  7550. "require": {
  7551. "php": ">=5.3.3"
  7552. },
  7553. "type": "library",
  7554. "autoload": {
  7555. "classmap": [
  7556. "src/"
  7557. ]
  7558. },
  7559. "notification-url": "https://packagist.org/downloads/",
  7560. "license": [
  7561. "BSD-3-Clause"
  7562. ],
  7563. "authors": [
  7564. {
  7565. "name": "Sebastian Bergmann",
  7566. "email": "sebastian@phpunit.de",
  7567. "role": "lead"
  7568. }
  7569. ],
  7570. "description": "Simple template engine.",
  7571. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7572. "keywords": [
  7573. "template"
  7574. ],
  7575. "time": "2015-06-21T13:50:34+00:00"
  7576. },
  7577. {
  7578. "name": "phpunit/php-timer",
  7579. "version": "1.0.9",
  7580. "source": {
  7581. "type": "git",
  7582. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7583. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  7584. },
  7585. "dist": {
  7586. "type": "zip",
  7587. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7588. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  7589. "shasum": ""
  7590. },
  7591. "require": {
  7592. "php": "^5.3.3 || ^7.0"
  7593. },
  7594. "require-dev": {
  7595. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  7596. },
  7597. "type": "library",
  7598. "extra": {
  7599. "branch-alias": {
  7600. "dev-master": "1.0-dev"
  7601. }
  7602. },
  7603. "autoload": {
  7604. "classmap": [
  7605. "src/"
  7606. ]
  7607. },
  7608. "notification-url": "https://packagist.org/downloads/",
  7609. "license": [
  7610. "BSD-3-Clause"
  7611. ],
  7612. "authors": [
  7613. {
  7614. "name": "Sebastian Bergmann",
  7615. "email": "sb@sebastian-bergmann.de",
  7616. "role": "lead"
  7617. }
  7618. ],
  7619. "description": "Utility class for timing",
  7620. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7621. "keywords": [
  7622. "timer"
  7623. ],
  7624. "time": "2017-02-26T11:10:40+00:00"
  7625. },
  7626. {
  7627. "name": "phpunit/php-token-stream",
  7628. "version": "2.0.2",
  7629. "source": {
  7630. "type": "git",
  7631. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  7632. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  7633. },
  7634. "dist": {
  7635. "type": "zip",
  7636. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  7637. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  7638. "shasum": ""
  7639. },
  7640. "require": {
  7641. "ext-tokenizer": "*",
  7642. "php": "^7.0"
  7643. },
  7644. "require-dev": {
  7645. "phpunit/phpunit": "^6.2.4"
  7646. },
  7647. "type": "library",
  7648. "extra": {
  7649. "branch-alias": {
  7650. "dev-master": "2.0-dev"
  7651. }
  7652. },
  7653. "autoload": {
  7654. "classmap": [
  7655. "src/"
  7656. ]
  7657. },
  7658. "notification-url": "https://packagist.org/downloads/",
  7659. "license": [
  7660. "BSD-3-Clause"
  7661. ],
  7662. "authors": [
  7663. {
  7664. "name": "Sebastian Bergmann",
  7665. "email": "sebastian@phpunit.de"
  7666. }
  7667. ],
  7668. "description": "Wrapper around PHP's tokenizer extension.",
  7669. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  7670. "keywords": [
  7671. "tokenizer"
  7672. ],
  7673. "time": "2017-11-27T05:48:46+00:00"
  7674. },
  7675. {
  7676. "name": "phpunit/phpunit",
  7677. "version": "6.5.14",
  7678. "source": {
  7679. "type": "git",
  7680. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7681. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  7682. },
  7683. "dist": {
  7684. "type": "zip",
  7685. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  7686. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  7687. "shasum": ""
  7688. },
  7689. "require": {
  7690. "ext-dom": "*",
  7691. "ext-json": "*",
  7692. "ext-libxml": "*",
  7693. "ext-mbstring": "*",
  7694. "ext-xml": "*",
  7695. "myclabs/deep-copy": "^1.6.1",
  7696. "phar-io/manifest": "^1.0.1",
  7697. "phar-io/version": "^1.0",
  7698. "php": "^7.0",
  7699. "phpspec/prophecy": "^1.7",
  7700. "phpunit/php-code-coverage": "^5.3",
  7701. "phpunit/php-file-iterator": "^1.4.3",
  7702. "phpunit/php-text-template": "^1.2.1",
  7703. "phpunit/php-timer": "^1.0.9",
  7704. "phpunit/phpunit-mock-objects": "^5.0.9",
  7705. "sebastian/comparator": "^2.1",
  7706. "sebastian/diff": "^2.0",
  7707. "sebastian/environment": "^3.1",
  7708. "sebastian/exporter": "^3.1",
  7709. "sebastian/global-state": "^2.0",
  7710. "sebastian/object-enumerator": "^3.0.3",
  7711. "sebastian/resource-operations": "^1.0",
  7712. "sebastian/version": "^2.0.1"
  7713. },
  7714. "conflict": {
  7715. "phpdocumentor/reflection-docblock": "3.0.2",
  7716. "phpunit/dbunit": "<3.0"
  7717. },
  7718. "require-dev": {
  7719. "ext-pdo": "*"
  7720. },
  7721. "suggest": {
  7722. "ext-xdebug": "*",
  7723. "phpunit/php-invoker": "^1.1"
  7724. },
  7725. "bin": [
  7726. "phpunit"
  7727. ],
  7728. "type": "library",
  7729. "extra": {
  7730. "branch-alias": {
  7731. "dev-master": "6.5.x-dev"
  7732. }
  7733. },
  7734. "autoload": {
  7735. "classmap": [
  7736. "src/"
  7737. ]
  7738. },
  7739. "notification-url": "https://packagist.org/downloads/",
  7740. "license": [
  7741. "BSD-3-Clause"
  7742. ],
  7743. "authors": [
  7744. {
  7745. "name": "Sebastian Bergmann",
  7746. "email": "sebastian@phpunit.de",
  7747. "role": "lead"
  7748. }
  7749. ],
  7750. "description": "The PHP Unit Testing framework.",
  7751. "homepage": "https://phpunit.de/",
  7752. "keywords": [
  7753. "phpunit",
  7754. "testing",
  7755. "xunit"
  7756. ],
  7757. "time": "2019-02-01T05:22:47+00:00"
  7758. },
  7759. {
  7760. "name": "phpunit/phpunit-mock-objects",
  7761. "version": "5.0.10",
  7762. "source": {
  7763. "type": "git",
  7764. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  7765. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  7766. },
  7767. "dist": {
  7768. "type": "zip",
  7769. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  7770. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  7771. "shasum": ""
  7772. },
  7773. "require": {
  7774. "doctrine/instantiator": "^1.0.5",
  7775. "php": "^7.0",
  7776. "phpunit/php-text-template": "^1.2.1",
  7777. "sebastian/exporter": "^3.1"
  7778. },
  7779. "conflict": {
  7780. "phpunit/phpunit": "<6.0"
  7781. },
  7782. "require-dev": {
  7783. "phpunit/phpunit": "^6.5.11"
  7784. },
  7785. "suggest": {
  7786. "ext-soap": "*"
  7787. },
  7788. "type": "library",
  7789. "extra": {
  7790. "branch-alias": {
  7791. "dev-master": "5.0.x-dev"
  7792. }
  7793. },
  7794. "autoload": {
  7795. "classmap": [
  7796. "src/"
  7797. ]
  7798. },
  7799. "notification-url": "https://packagist.org/downloads/",
  7800. "license": [
  7801. "BSD-3-Clause"
  7802. ],
  7803. "authors": [
  7804. {
  7805. "name": "Sebastian Bergmann",
  7806. "email": "sebastian@phpunit.de",
  7807. "role": "lead"
  7808. }
  7809. ],
  7810. "description": "Mock Object library for PHPUnit",
  7811. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  7812. "keywords": [
  7813. "mock",
  7814. "xunit"
  7815. ],
  7816. "abandoned": true,
  7817. "time": "2018-08-09T05:50:03+00:00"
  7818. },
  7819. {
  7820. "name": "psr/container",
  7821. "version": "1.0.0",
  7822. "source": {
  7823. "type": "git",
  7824. "url": "https://github.com/php-fig/container.git",
  7825. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7826. },
  7827. "dist": {
  7828. "type": "zip",
  7829. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7830. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7831. "shasum": ""
  7832. },
  7833. "require": {
  7834. "php": ">=5.3.0"
  7835. },
  7836. "type": "library",
  7837. "extra": {
  7838. "branch-alias": {
  7839. "dev-master": "1.0.x-dev"
  7840. }
  7841. },
  7842. "autoload": {
  7843. "psr-4": {
  7844. "Psr\\Container\\": "src/"
  7845. }
  7846. },
  7847. "notification-url": "https://packagist.org/downloads/",
  7848. "license": [
  7849. "MIT"
  7850. ],
  7851. "authors": [
  7852. {
  7853. "name": "PHP-FIG",
  7854. "homepage": "http://www.php-fig.org/"
  7855. }
  7856. ],
  7857. "description": "Common Container Interface (PHP FIG PSR-11)",
  7858. "homepage": "https://github.com/php-fig/container",
  7859. "keywords": [
  7860. "PSR-11",
  7861. "container",
  7862. "container-interface",
  7863. "container-interop",
  7864. "psr"
  7865. ],
  7866. "time": "2017-02-14T16:28:37+00:00"
  7867. },
  7868. {
  7869. "name": "psr/http-message",
  7870. "version": "1.0.1",
  7871. "source": {
  7872. "type": "git",
  7873. "url": "https://github.com/php-fig/http-message.git",
  7874. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7875. },
  7876. "dist": {
  7877. "type": "zip",
  7878. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7879. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7880. "shasum": ""
  7881. },
  7882. "require": {
  7883. "php": ">=5.3.0"
  7884. },
  7885. "type": "library",
  7886. "extra": {
  7887. "branch-alias": {
  7888. "dev-master": "1.0.x-dev"
  7889. }
  7890. },
  7891. "autoload": {
  7892. "psr-4": {
  7893. "Psr\\Http\\Message\\": "src/"
  7894. }
  7895. },
  7896. "notification-url": "https://packagist.org/downloads/",
  7897. "license": [
  7898. "MIT"
  7899. ],
  7900. "authors": [
  7901. {
  7902. "name": "PHP-FIG",
  7903. "homepage": "http://www.php-fig.org/"
  7904. }
  7905. ],
  7906. "description": "Common interface for HTTP messages",
  7907. "homepage": "https://github.com/php-fig/http-message",
  7908. "keywords": [
  7909. "http",
  7910. "http-message",
  7911. "psr",
  7912. "psr-7",
  7913. "request",
  7914. "response"
  7915. ],
  7916. "time": "2016-08-06T14:39:51+00:00"
  7917. },
  7918. {
  7919. "name": "psr/log",
  7920. "version": "1.1.2",
  7921. "source": {
  7922. "type": "git",
  7923. "url": "https://github.com/php-fig/log.git",
  7924. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  7925. },
  7926. "dist": {
  7927. "type": "zip",
  7928. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  7929. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  7930. "shasum": ""
  7931. },
  7932. "require": {
  7933. "php": ">=5.3.0"
  7934. },
  7935. "type": "library",
  7936. "extra": {
  7937. "branch-alias": {
  7938. "dev-master": "1.1.x-dev"
  7939. }
  7940. },
  7941. "autoload": {
  7942. "psr-4": {
  7943. "Psr\\Log\\": "Psr/Log/"
  7944. }
  7945. },
  7946. "notification-url": "https://packagist.org/downloads/",
  7947. "license": [
  7948. "MIT"
  7949. ],
  7950. "authors": [
  7951. {
  7952. "name": "PHP-FIG",
  7953. "homepage": "http://www.php-fig.org/"
  7954. }
  7955. ],
  7956. "description": "Common interface for logging libraries",
  7957. "homepage": "https://github.com/php-fig/log",
  7958. "keywords": [
  7959. "log",
  7960. "psr",
  7961. "psr-3"
  7962. ],
  7963. "time": "2019-11-01T11:05:21+00:00"
  7964. },
  7965. {
  7966. "name": "psy/psysh",
  7967. "version": "v0.9.9",
  7968. "source": {
  7969. "type": "git",
  7970. "url": "https://github.com/bobthecow/psysh.git",
  7971. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  7972. },
  7973. "dist": {
  7974. "type": "zip",
  7975. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  7976. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  7977. "shasum": ""
  7978. },
  7979. "require": {
  7980. "dnoegel/php-xdg-base-dir": "0.1",
  7981. "ext-json": "*",
  7982. "ext-tokenizer": "*",
  7983. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  7984. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  7985. "php": ">=5.4.0",
  7986. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  7987. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  7988. },
  7989. "require-dev": {
  7990. "bamarni/composer-bin-plugin": "^1.2",
  7991. "hoa/console": "~2.15|~3.16",
  7992. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  7993. },
  7994. "suggest": {
  7995. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7996. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7997. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7998. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7999. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8000. },
  8001. "bin": [
  8002. "bin/psysh"
  8003. ],
  8004. "type": "library",
  8005. "extra": {
  8006. "branch-alias": {
  8007. "dev-develop": "0.9.x-dev"
  8008. }
  8009. },
  8010. "autoload": {
  8011. "files": [
  8012. "src/functions.php"
  8013. ],
  8014. "psr-4": {
  8015. "Psy\\": "src/"
  8016. }
  8017. },
  8018. "notification-url": "https://packagist.org/downloads/",
  8019. "license": [
  8020. "MIT"
  8021. ],
  8022. "authors": [
  8023. {
  8024. "name": "Justin Hileman",
  8025. "email": "justin@justinhileman.info",
  8026. "homepage": "http://justinhileman.com"
  8027. }
  8028. ],
  8029. "description": "An interactive shell for modern PHP.",
  8030. "homepage": "http://psysh.org",
  8031. "keywords": [
  8032. "REPL",
  8033. "console",
  8034. "interactive",
  8035. "shell"
  8036. ],
  8037. "time": "2018-10-13T15:16:03+00:00"
  8038. },
  8039. {
  8040. "name": "ralouphie/getallheaders",
  8041. "version": "3.0.3",
  8042. "source": {
  8043. "type": "git",
  8044. "url": "https://github.com/ralouphie/getallheaders.git",
  8045. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  8046. },
  8047. "dist": {
  8048. "type": "zip",
  8049. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  8050. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  8051. "shasum": ""
  8052. },
  8053. "require": {
  8054. "php": ">=5.6"
  8055. },
  8056. "require-dev": {
  8057. "php-coveralls/php-coveralls": "^2.1",
  8058. "phpunit/phpunit": "^5 || ^6.5"
  8059. },
  8060. "type": "library",
  8061. "autoload": {
  8062. "files": [
  8063. "src/getallheaders.php"
  8064. ]
  8065. },
  8066. "notification-url": "https://packagist.org/downloads/",
  8067. "license": [
  8068. "MIT"
  8069. ],
  8070. "authors": [
  8071. {
  8072. "name": "Ralph Khattar",
  8073. "email": "ralph.khattar@gmail.com"
  8074. }
  8075. ],
  8076. "description": "A polyfill for getallheaders.",
  8077. "time": "2019-03-08T08:55:37+00:00"
  8078. },
  8079. {
  8080. "name": "sebastian/code-unit-reverse-lookup",
  8081. "version": "1.0.1",
  8082. "source": {
  8083. "type": "git",
  8084. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8085. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  8086. },
  8087. "dist": {
  8088. "type": "zip",
  8089. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8090. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8091. "shasum": ""
  8092. },
  8093. "require": {
  8094. "php": "^5.6 || ^7.0"
  8095. },
  8096. "require-dev": {
  8097. "phpunit/phpunit": "^5.7 || ^6.0"
  8098. },
  8099. "type": "library",
  8100. "extra": {
  8101. "branch-alias": {
  8102. "dev-master": "1.0.x-dev"
  8103. }
  8104. },
  8105. "autoload": {
  8106. "classmap": [
  8107. "src/"
  8108. ]
  8109. },
  8110. "notification-url": "https://packagist.org/downloads/",
  8111. "license": [
  8112. "BSD-3-Clause"
  8113. ],
  8114. "authors": [
  8115. {
  8116. "name": "Sebastian Bergmann",
  8117. "email": "sebastian@phpunit.de"
  8118. }
  8119. ],
  8120. "description": "Looks up which function or method a line of code belongs to",
  8121. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8122. "time": "2017-03-04T06:30:41+00:00"
  8123. },
  8124. {
  8125. "name": "sebastian/comparator",
  8126. "version": "2.1.3",
  8127. "source": {
  8128. "type": "git",
  8129. "url": "https://github.com/sebastianbergmann/comparator.git",
  8130. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  8131. },
  8132. "dist": {
  8133. "type": "zip",
  8134. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  8135. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  8136. "shasum": ""
  8137. },
  8138. "require": {
  8139. "php": "^7.0",
  8140. "sebastian/diff": "^2.0 || ^3.0",
  8141. "sebastian/exporter": "^3.1"
  8142. },
  8143. "require-dev": {
  8144. "phpunit/phpunit": "^6.4"
  8145. },
  8146. "type": "library",
  8147. "extra": {
  8148. "branch-alias": {
  8149. "dev-master": "2.1.x-dev"
  8150. }
  8151. },
  8152. "autoload": {
  8153. "classmap": [
  8154. "src/"
  8155. ]
  8156. },
  8157. "notification-url": "https://packagist.org/downloads/",
  8158. "license": [
  8159. "BSD-3-Clause"
  8160. ],
  8161. "authors": [
  8162. {
  8163. "name": "Jeff Welch",
  8164. "email": "whatthejeff@gmail.com"
  8165. },
  8166. {
  8167. "name": "Volker Dusch",
  8168. "email": "github@wallbash.com"
  8169. },
  8170. {
  8171. "name": "Bernhard Schussek",
  8172. "email": "bschussek@2bepublished.at"
  8173. },
  8174. {
  8175. "name": "Sebastian Bergmann",
  8176. "email": "sebastian@phpunit.de"
  8177. }
  8178. ],
  8179. "description": "Provides the functionality to compare PHP values for equality",
  8180. "homepage": "https://github.com/sebastianbergmann/comparator",
  8181. "keywords": [
  8182. "comparator",
  8183. "compare",
  8184. "equality"
  8185. ],
  8186. "time": "2018-02-01T13:46:46+00:00"
  8187. },
  8188. {
  8189. "name": "sebastian/diff",
  8190. "version": "2.0.1",
  8191. "source": {
  8192. "type": "git",
  8193. "url": "https://github.com/sebastianbergmann/diff.git",
  8194. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  8195. },
  8196. "dist": {
  8197. "type": "zip",
  8198. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8199. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8200. "shasum": ""
  8201. },
  8202. "require": {
  8203. "php": "^7.0"
  8204. },
  8205. "require-dev": {
  8206. "phpunit/phpunit": "^6.2"
  8207. },
  8208. "type": "library",
  8209. "extra": {
  8210. "branch-alias": {
  8211. "dev-master": "2.0-dev"
  8212. }
  8213. },
  8214. "autoload": {
  8215. "classmap": [
  8216. "src/"
  8217. ]
  8218. },
  8219. "notification-url": "https://packagist.org/downloads/",
  8220. "license": [
  8221. "BSD-3-Clause"
  8222. ],
  8223. "authors": [
  8224. {
  8225. "name": "Kore Nordmann",
  8226. "email": "mail@kore-nordmann.de"
  8227. },
  8228. {
  8229. "name": "Sebastian Bergmann",
  8230. "email": "sebastian@phpunit.de"
  8231. }
  8232. ],
  8233. "description": "Diff implementation",
  8234. "homepage": "https://github.com/sebastianbergmann/diff",
  8235. "keywords": [
  8236. "diff"
  8237. ],
  8238. "time": "2017-08-03T08:09:46+00:00"
  8239. },
  8240. {
  8241. "name": "sebastian/environment",
  8242. "version": "3.1.0",
  8243. "source": {
  8244. "type": "git",
  8245. "url": "https://github.com/sebastianbergmann/environment.git",
  8246. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  8247. },
  8248. "dist": {
  8249. "type": "zip",
  8250. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8251. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8252. "shasum": ""
  8253. },
  8254. "require": {
  8255. "php": "^7.0"
  8256. },
  8257. "require-dev": {
  8258. "phpunit/phpunit": "^6.1"
  8259. },
  8260. "type": "library",
  8261. "extra": {
  8262. "branch-alias": {
  8263. "dev-master": "3.1.x-dev"
  8264. }
  8265. },
  8266. "autoload": {
  8267. "classmap": [
  8268. "src/"
  8269. ]
  8270. },
  8271. "notification-url": "https://packagist.org/downloads/",
  8272. "license": [
  8273. "BSD-3-Clause"
  8274. ],
  8275. "authors": [
  8276. {
  8277. "name": "Sebastian Bergmann",
  8278. "email": "sebastian@phpunit.de"
  8279. }
  8280. ],
  8281. "description": "Provides functionality to handle HHVM/PHP environments",
  8282. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8283. "keywords": [
  8284. "Xdebug",
  8285. "environment",
  8286. "hhvm"
  8287. ],
  8288. "time": "2017-07-01T08:51:00+00:00"
  8289. },
  8290. {
  8291. "name": "sebastian/exporter",
  8292. "version": "3.1.2",
  8293. "source": {
  8294. "type": "git",
  8295. "url": "https://github.com/sebastianbergmann/exporter.git",
  8296. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  8297. },
  8298. "dist": {
  8299. "type": "zip",
  8300. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8301. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8302. "shasum": ""
  8303. },
  8304. "require": {
  8305. "php": "^7.0",
  8306. "sebastian/recursion-context": "^3.0"
  8307. },
  8308. "require-dev": {
  8309. "ext-mbstring": "*",
  8310. "phpunit/phpunit": "^6.0"
  8311. },
  8312. "type": "library",
  8313. "extra": {
  8314. "branch-alias": {
  8315. "dev-master": "3.1.x-dev"
  8316. }
  8317. },
  8318. "autoload": {
  8319. "classmap": [
  8320. "src/"
  8321. ]
  8322. },
  8323. "notification-url": "https://packagist.org/downloads/",
  8324. "license": [
  8325. "BSD-3-Clause"
  8326. ],
  8327. "authors": [
  8328. {
  8329. "name": "Sebastian Bergmann",
  8330. "email": "sebastian@phpunit.de"
  8331. },
  8332. {
  8333. "name": "Jeff Welch",
  8334. "email": "whatthejeff@gmail.com"
  8335. },
  8336. {
  8337. "name": "Volker Dusch",
  8338. "email": "github@wallbash.com"
  8339. },
  8340. {
  8341. "name": "Adam Harvey",
  8342. "email": "aharvey@php.net"
  8343. },
  8344. {
  8345. "name": "Bernhard Schussek",
  8346. "email": "bschussek@gmail.com"
  8347. }
  8348. ],
  8349. "description": "Provides the functionality to export PHP variables for visualization",
  8350. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8351. "keywords": [
  8352. "export",
  8353. "exporter"
  8354. ],
  8355. "time": "2019-09-14T09:02:43+00:00"
  8356. },
  8357. {
  8358. "name": "sebastian/global-state",
  8359. "version": "2.0.0",
  8360. "source": {
  8361. "type": "git",
  8362. "url": "https://github.com/sebastianbergmann/global-state.git",
  8363. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  8364. },
  8365. "dist": {
  8366. "type": "zip",
  8367. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8368. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8369. "shasum": ""
  8370. },
  8371. "require": {
  8372. "php": "^7.0"
  8373. },
  8374. "require-dev": {
  8375. "phpunit/phpunit": "^6.0"
  8376. },
  8377. "suggest": {
  8378. "ext-uopz": "*"
  8379. },
  8380. "type": "library",
  8381. "extra": {
  8382. "branch-alias": {
  8383. "dev-master": "2.0-dev"
  8384. }
  8385. },
  8386. "autoload": {
  8387. "classmap": [
  8388. "src/"
  8389. ]
  8390. },
  8391. "notification-url": "https://packagist.org/downloads/",
  8392. "license": [
  8393. "BSD-3-Clause"
  8394. ],
  8395. "authors": [
  8396. {
  8397. "name": "Sebastian Bergmann",
  8398. "email": "sebastian@phpunit.de"
  8399. }
  8400. ],
  8401. "description": "Snapshotting of global state",
  8402. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8403. "keywords": [
  8404. "global state"
  8405. ],
  8406. "time": "2017-04-27T15:39:26+00:00"
  8407. },
  8408. {
  8409. "name": "sebastian/object-enumerator",
  8410. "version": "3.0.3",
  8411. "source": {
  8412. "type": "git",
  8413. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8414. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  8415. },
  8416. "dist": {
  8417. "type": "zip",
  8418. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8419. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8420. "shasum": ""
  8421. },
  8422. "require": {
  8423. "php": "^7.0",
  8424. "sebastian/object-reflector": "^1.1.1",
  8425. "sebastian/recursion-context": "^3.0"
  8426. },
  8427. "require-dev": {
  8428. "phpunit/phpunit": "^6.0"
  8429. },
  8430. "type": "library",
  8431. "extra": {
  8432. "branch-alias": {
  8433. "dev-master": "3.0.x-dev"
  8434. }
  8435. },
  8436. "autoload": {
  8437. "classmap": [
  8438. "src/"
  8439. ]
  8440. },
  8441. "notification-url": "https://packagist.org/downloads/",
  8442. "license": [
  8443. "BSD-3-Clause"
  8444. ],
  8445. "authors": [
  8446. {
  8447. "name": "Sebastian Bergmann",
  8448. "email": "sebastian@phpunit.de"
  8449. }
  8450. ],
  8451. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8452. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8453. "time": "2017-08-03T12:35:26+00:00"
  8454. },
  8455. {
  8456. "name": "sebastian/object-reflector",
  8457. "version": "1.1.1",
  8458. "source": {
  8459. "type": "git",
  8460. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8461. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  8462. },
  8463. "dist": {
  8464. "type": "zip",
  8465. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  8466. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  8467. "shasum": ""
  8468. },
  8469. "require": {
  8470. "php": "^7.0"
  8471. },
  8472. "require-dev": {
  8473. "phpunit/phpunit": "^6.0"
  8474. },
  8475. "type": "library",
  8476. "extra": {
  8477. "branch-alias": {
  8478. "dev-master": "1.1-dev"
  8479. }
  8480. },
  8481. "autoload": {
  8482. "classmap": [
  8483. "src/"
  8484. ]
  8485. },
  8486. "notification-url": "https://packagist.org/downloads/",
  8487. "license": [
  8488. "BSD-3-Clause"
  8489. ],
  8490. "authors": [
  8491. {
  8492. "name": "Sebastian Bergmann",
  8493. "email": "sebastian@phpunit.de"
  8494. }
  8495. ],
  8496. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8497. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8498. "time": "2017-03-29T09:07:27+00:00"
  8499. },
  8500. {
  8501. "name": "sebastian/recursion-context",
  8502. "version": "3.0.0",
  8503. "source": {
  8504. "type": "git",
  8505. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8506. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  8507. },
  8508. "dist": {
  8509. "type": "zip",
  8510. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8511. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8512. "shasum": ""
  8513. },
  8514. "require": {
  8515. "php": "^7.0"
  8516. },
  8517. "require-dev": {
  8518. "phpunit/phpunit": "^6.0"
  8519. },
  8520. "type": "library",
  8521. "extra": {
  8522. "branch-alias": {
  8523. "dev-master": "3.0.x-dev"
  8524. }
  8525. },
  8526. "autoload": {
  8527. "classmap": [
  8528. "src/"
  8529. ]
  8530. },
  8531. "notification-url": "https://packagist.org/downloads/",
  8532. "license": [
  8533. "BSD-3-Clause"
  8534. ],
  8535. "authors": [
  8536. {
  8537. "name": "Jeff Welch",
  8538. "email": "whatthejeff@gmail.com"
  8539. },
  8540. {
  8541. "name": "Sebastian Bergmann",
  8542. "email": "sebastian@phpunit.de"
  8543. },
  8544. {
  8545. "name": "Adam Harvey",
  8546. "email": "aharvey@php.net"
  8547. }
  8548. ],
  8549. "description": "Provides functionality to recursively process PHP variables",
  8550. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8551. "time": "2017-03-03T06:23:57+00:00"
  8552. },
  8553. {
  8554. "name": "sebastian/resource-operations",
  8555. "version": "1.0.0",
  8556. "source": {
  8557. "type": "git",
  8558. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8559. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  8560. },
  8561. "dist": {
  8562. "type": "zip",
  8563. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8564. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8565. "shasum": ""
  8566. },
  8567. "require": {
  8568. "php": ">=5.6.0"
  8569. },
  8570. "type": "library",
  8571. "extra": {
  8572. "branch-alias": {
  8573. "dev-master": "1.0.x-dev"
  8574. }
  8575. },
  8576. "autoload": {
  8577. "classmap": [
  8578. "src/"
  8579. ]
  8580. },
  8581. "notification-url": "https://packagist.org/downloads/",
  8582. "license": [
  8583. "BSD-3-Clause"
  8584. ],
  8585. "authors": [
  8586. {
  8587. "name": "Sebastian Bergmann",
  8588. "email": "sebastian@phpunit.de"
  8589. }
  8590. ],
  8591. "description": "Provides a list of PHP built-in functions that operate on resources",
  8592. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8593. "time": "2015-07-28T20:34:47+00:00"
  8594. },
  8595. {
  8596. "name": "sebastian/version",
  8597. "version": "2.0.1",
  8598. "source": {
  8599. "type": "git",
  8600. "url": "https://github.com/sebastianbergmann/version.git",
  8601. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  8602. },
  8603. "dist": {
  8604. "type": "zip",
  8605. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  8606. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  8607. "shasum": ""
  8608. },
  8609. "require": {
  8610. "php": ">=5.6"
  8611. },
  8612. "type": "library",
  8613. "extra": {
  8614. "branch-alias": {
  8615. "dev-master": "2.0.x-dev"
  8616. }
  8617. },
  8618. "autoload": {
  8619. "classmap": [
  8620. "src/"
  8621. ]
  8622. },
  8623. "notification-url": "https://packagist.org/downloads/",
  8624. "license": [
  8625. "BSD-3-Clause"
  8626. ],
  8627. "authors": [
  8628. {
  8629. "name": "Sebastian Bergmann",
  8630. "email": "sebastian@phpunit.de",
  8631. "role": "lead"
  8632. }
  8633. ],
  8634. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8635. "homepage": "https://github.com/sebastianbergmann/version",
  8636. "time": "2016-10-03T07:35:21+00:00"
  8637. },
  8638. {
  8639. "name": "squizlabs/php_codesniffer",
  8640. "version": "3.5.2",
  8641. "source": {
  8642. "type": "git",
  8643. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  8644. "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7"
  8645. },
  8646. "dist": {
  8647. "type": "zip",
  8648. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/65b12cdeaaa6cd276d4c3033a95b9b88b12701e7",
  8649. "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7",
  8650. "shasum": ""
  8651. },
  8652. "require": {
  8653. "ext-simplexml": "*",
  8654. "ext-tokenizer": "*",
  8655. "ext-xmlwriter": "*",
  8656. "php": ">=5.4.0"
  8657. },
  8658. "require-dev": {
  8659. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  8660. },
  8661. "bin": [
  8662. "bin/phpcs",
  8663. "bin/phpcbf"
  8664. ],
  8665. "type": "library",
  8666. "extra": {
  8667. "branch-alias": {
  8668. "dev-master": "3.x-dev"
  8669. }
  8670. },
  8671. "notification-url": "https://packagist.org/downloads/",
  8672. "license": [
  8673. "BSD-3-Clause"
  8674. ],
  8675. "authors": [
  8676. {
  8677. "name": "Greg Sherwood",
  8678. "role": "lead"
  8679. }
  8680. ],
  8681. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  8682. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  8683. "keywords": [
  8684. "phpcs",
  8685. "standards"
  8686. ],
  8687. "time": "2019-10-28T04:36:32+00:00"
  8688. },
  8689. {
  8690. "name": "stack/builder",
  8691. "version": "v1.0.5",
  8692. "source": {
  8693. "type": "git",
  8694. "url": "https://github.com/stackphp/builder.git",
  8695. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  8696. },
  8697. "dist": {
  8698. "type": "zip",
  8699. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8700. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  8701. "shasum": ""
  8702. },
  8703. "require": {
  8704. "php": ">=5.3.0",
  8705. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  8706. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  8707. },
  8708. "require-dev": {
  8709. "silex/silex": "~1.0"
  8710. },
  8711. "type": "library",
  8712. "extra": {
  8713. "branch-alias": {
  8714. "dev-master": "1.0-dev"
  8715. }
  8716. },
  8717. "autoload": {
  8718. "psr-0": {
  8719. "Stack": "src"
  8720. }
  8721. },
  8722. "notification-url": "https://packagist.org/downloads/",
  8723. "license": [
  8724. "MIT"
  8725. ],
  8726. "authors": [
  8727. {
  8728. "name": "Igor Wiedler",
  8729. "email": "igor@wiedler.ch"
  8730. }
  8731. ],
  8732. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  8733. "keywords": [
  8734. "stack"
  8735. ],
  8736. "time": "2017-11-18T14:57:29+00:00"
  8737. },
  8738. {
  8739. "name": "stecman/symfony-console-completion",
  8740. "version": "0.10.0",
  8741. "source": {
  8742. "type": "git",
  8743. "url": "https://github.com/stecman/symfony-console-completion.git",
  8744. "reference": "bc095febf00aa42ace233b344d4561071d7c912b"
  8745. },
  8746. "dist": {
  8747. "type": "zip",
  8748. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/bc095febf00aa42ace233b344d4561071d7c912b",
  8749. "reference": "bc095febf00aa42ace233b344d4561071d7c912b",
  8750. "shasum": ""
  8751. },
  8752. "require": {
  8753. "php": ">=5.3.2",
  8754. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  8755. },
  8756. "require-dev": {
  8757. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  8758. },
  8759. "type": "library",
  8760. "extra": {
  8761. "branch-alias": {
  8762. "dev-master": "0.6.x-dev"
  8763. }
  8764. },
  8765. "autoload": {
  8766. "psr-4": {
  8767. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  8768. }
  8769. },
  8770. "notification-url": "https://packagist.org/downloads/",
  8771. "license": [
  8772. "MIT"
  8773. ],
  8774. "authors": [
  8775. {
  8776. "name": "Stephen Holdaway",
  8777. "email": "stephen@stecman.co.nz"
  8778. }
  8779. ],
  8780. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  8781. "time": "2019-04-26T12:14:26+00:00"
  8782. },
  8783. {
  8784. "name": "symfony-cmf/routing",
  8785. "version": "1.4.1",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/symfony-cmf/routing.git",
  8789. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8794. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  8795. "shasum": ""
  8796. },
  8797. "require": {
  8798. "php": "^5.3.9|^7.0",
  8799. "psr/log": "1.*",
  8800. "symfony/http-kernel": "^2.2|3.*",
  8801. "symfony/routing": "^2.2|3.*"
  8802. },
  8803. "require-dev": {
  8804. "friendsofsymfony/jsrouting-bundle": "^1.1",
  8805. "symfony-cmf/testing": "^1.3",
  8806. "symfony/config": "^2.2|3.*",
  8807. "symfony/dependency-injection": "^2.0.5|3.*",
  8808. "symfony/event-dispatcher": "^2.1|3.*"
  8809. },
  8810. "suggest": {
  8811. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  8812. },
  8813. "type": "library",
  8814. "extra": {
  8815. "branch-alias": {
  8816. "dev-master": "1.4-dev"
  8817. }
  8818. },
  8819. "autoload": {
  8820. "psr-4": {
  8821. "Symfony\\Cmf\\Component\\Routing\\": ""
  8822. }
  8823. },
  8824. "notification-url": "https://packagist.org/downloads/",
  8825. "license": [
  8826. "MIT"
  8827. ],
  8828. "authors": [
  8829. {
  8830. "name": "Symfony CMF Community",
  8831. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  8832. }
  8833. ],
  8834. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  8835. "homepage": "http://cmf.symfony.com",
  8836. "keywords": [
  8837. "database",
  8838. "routing"
  8839. ],
  8840. "time": "2017-05-09T08:10:41+00:00"
  8841. },
  8842. {
  8843. "name": "symfony/browser-kit",
  8844. "version": "v3.4.34",
  8845. "source": {
  8846. "type": "git",
  8847. "url": "https://github.com/symfony/browser-kit.git",
  8848. "reference": "2e4c991e27a97a8c27745720b030ff85a5cebdf6"
  8849. },
  8850. "dist": {
  8851. "type": "zip",
  8852. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/2e4c991e27a97a8c27745720b030ff85a5cebdf6",
  8853. "reference": "2e4c991e27a97a8c27745720b030ff85a5cebdf6",
  8854. "shasum": ""
  8855. },
  8856. "require": {
  8857. "php": "^5.5.9|>=7.0.8",
  8858. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  8859. },
  8860. "require-dev": {
  8861. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8862. "symfony/process": "~2.8|~3.0|~4.0"
  8863. },
  8864. "suggest": {
  8865. "symfony/process": ""
  8866. },
  8867. "type": "library",
  8868. "extra": {
  8869. "branch-alias": {
  8870. "dev-master": "3.4-dev"
  8871. }
  8872. },
  8873. "autoload": {
  8874. "psr-4": {
  8875. "Symfony\\Component\\BrowserKit\\": ""
  8876. },
  8877. "exclude-from-classmap": [
  8878. "/Tests/"
  8879. ]
  8880. },
  8881. "notification-url": "https://packagist.org/downloads/",
  8882. "license": [
  8883. "MIT"
  8884. ],
  8885. "authors": [
  8886. {
  8887. "name": "Fabien Potencier",
  8888. "email": "fabien@symfony.com"
  8889. },
  8890. {
  8891. "name": "Symfony Community",
  8892. "homepage": "https://symfony.com/contributors"
  8893. }
  8894. ],
  8895. "description": "Symfony BrowserKit Component",
  8896. "homepage": "https://symfony.com",
  8897. "time": "2019-10-24T15:33:53+00:00"
  8898. },
  8899. {
  8900. "name": "symfony/class-loader",
  8901. "version": "v3.4.34",
  8902. "source": {
  8903. "type": "git",
  8904. "url": "https://github.com/symfony/class-loader.git",
  8905. "reference": "e212b06996819a2bce026a63da03b7182d05a690"
  8906. },
  8907. "dist": {
  8908. "type": "zip",
  8909. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690",
  8910. "reference": "e212b06996819a2bce026a63da03b7182d05a690",
  8911. "shasum": ""
  8912. },
  8913. "require": {
  8914. "php": "^5.5.9|>=7.0.8"
  8915. },
  8916. "require-dev": {
  8917. "symfony/finder": "~2.8|~3.0|~4.0",
  8918. "symfony/polyfill-apcu": "~1.1"
  8919. },
  8920. "suggest": {
  8921. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  8922. },
  8923. "type": "library",
  8924. "extra": {
  8925. "branch-alias": {
  8926. "dev-master": "3.4-dev"
  8927. }
  8928. },
  8929. "autoload": {
  8930. "psr-4": {
  8931. "Symfony\\Component\\ClassLoader\\": ""
  8932. },
  8933. "exclude-from-classmap": [
  8934. "/Tests/"
  8935. ]
  8936. },
  8937. "notification-url": "https://packagist.org/downloads/",
  8938. "license": [
  8939. "MIT"
  8940. ],
  8941. "authors": [
  8942. {
  8943. "name": "Fabien Potencier",
  8944. "email": "fabien@symfony.com"
  8945. },
  8946. {
  8947. "name": "Symfony Community",
  8948. "homepage": "https://symfony.com/contributors"
  8949. }
  8950. ],
  8951. "description": "Symfony ClassLoader Component",
  8952. "homepage": "https://symfony.com",
  8953. "time": "2019-08-20T13:31:17+00:00"
  8954. },
  8955. {
  8956. "name": "symfony/config",
  8957. "version": "v3.4.26",
  8958. "source": {
  8959. "type": "git",
  8960. "url": "https://github.com/symfony/config.git",
  8961. "reference": "177a276c01575253c95cefe0866e3d1b57637fe0"
  8962. },
  8963. "dist": {
  8964. "type": "zip",
  8965. "url": "https://api.github.com/repos/symfony/config/zipball/177a276c01575253c95cefe0866e3d1b57637fe0",
  8966. "reference": "177a276c01575253c95cefe0866e3d1b57637fe0",
  8967. "shasum": ""
  8968. },
  8969. "require": {
  8970. "php": "^5.5.9|>=7.0.8",
  8971. "symfony/filesystem": "~2.8|~3.0|~4.0",
  8972. "symfony/polyfill-ctype": "~1.8"
  8973. },
  8974. "conflict": {
  8975. "symfony/dependency-injection": "<3.3",
  8976. "symfony/finder": "<3.3"
  8977. },
  8978. "require-dev": {
  8979. "symfony/dependency-injection": "~3.3|~4.0",
  8980. "symfony/event-dispatcher": "~3.3|~4.0",
  8981. "symfony/finder": "~3.3|~4.0",
  8982. "symfony/yaml": "~3.0|~4.0"
  8983. },
  8984. "suggest": {
  8985. "symfony/yaml": "To use the yaml reference dumper"
  8986. },
  8987. "type": "library",
  8988. "extra": {
  8989. "branch-alias": {
  8990. "dev-master": "3.4-dev"
  8991. }
  8992. },
  8993. "autoload": {
  8994. "psr-4": {
  8995. "Symfony\\Component\\Config\\": ""
  8996. },
  8997. "exclude-from-classmap": [
  8998. "/Tests/"
  8999. ]
  9000. },
  9001. "notification-url": "https://packagist.org/downloads/",
  9002. "license": [
  9003. "MIT"
  9004. ],
  9005. "authors": [
  9006. {
  9007. "name": "Fabien Potencier",
  9008. "email": "fabien@symfony.com"
  9009. },
  9010. {
  9011. "name": "Symfony Community",
  9012. "homepage": "https://symfony.com/contributors"
  9013. }
  9014. ],
  9015. "description": "Symfony Config Component",
  9016. "homepage": "https://symfony.com",
  9017. "time": "2019-02-23T15:06:07+00:00"
  9018. },
  9019. {
  9020. "name": "symfony/console",
  9021. "version": "v3.4.34",
  9022. "source": {
  9023. "type": "git",
  9024. "url": "https://github.com/symfony/console.git",
  9025. "reference": "c7edffb26b29cae972ca4afccb610a38ce8d0ccf"
  9026. },
  9027. "dist": {
  9028. "type": "zip",
  9029. "url": "https://api.github.com/repos/symfony/console/zipball/c7edffb26b29cae972ca4afccb610a38ce8d0ccf",
  9030. "reference": "c7edffb26b29cae972ca4afccb610a38ce8d0ccf",
  9031. "shasum": ""
  9032. },
  9033. "require": {
  9034. "php": "^5.5.9|>=7.0.8",
  9035. "symfony/debug": "~2.8|~3.0|~4.0",
  9036. "symfony/polyfill-mbstring": "~1.0"
  9037. },
  9038. "conflict": {
  9039. "symfony/dependency-injection": "<3.4",
  9040. "symfony/process": "<3.3"
  9041. },
  9042. "provide": {
  9043. "psr/log-implementation": "1.0"
  9044. },
  9045. "require-dev": {
  9046. "psr/log": "~1.0",
  9047. "symfony/config": "~3.3|~4.0",
  9048. "symfony/dependency-injection": "~3.4|~4.0",
  9049. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9050. "symfony/lock": "~3.4|~4.0",
  9051. "symfony/process": "~3.3|~4.0"
  9052. },
  9053. "suggest": {
  9054. "psr/log": "For using the console logger",
  9055. "symfony/event-dispatcher": "",
  9056. "symfony/lock": "",
  9057. "symfony/process": ""
  9058. },
  9059. "type": "library",
  9060. "extra": {
  9061. "branch-alias": {
  9062. "dev-master": "3.4-dev"
  9063. }
  9064. },
  9065. "autoload": {
  9066. "psr-4": {
  9067. "Symfony\\Component\\Console\\": ""
  9068. },
  9069. "exclude-from-classmap": [
  9070. "/Tests/"
  9071. ]
  9072. },
  9073. "notification-url": "https://packagist.org/downloads/",
  9074. "license": [
  9075. "MIT"
  9076. ],
  9077. "authors": [
  9078. {
  9079. "name": "Fabien Potencier",
  9080. "email": "fabien@symfony.com"
  9081. },
  9082. {
  9083. "name": "Symfony Community",
  9084. "homepage": "https://symfony.com/contributors"
  9085. }
  9086. ],
  9087. "description": "Symfony Console Component",
  9088. "homepage": "https://symfony.com",
  9089. "time": "2019-10-24T15:33:53+00:00"
  9090. },
  9091. {
  9092. "name": "symfony/css-selector",
  9093. "version": "v3.4.34",
  9094. "source": {
  9095. "type": "git",
  9096. "url": "https://github.com/symfony/css-selector.git",
  9097. "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f"
  9098. },
  9099. "dist": {
  9100. "type": "zip",
  9101. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f819f71ae3ba6f396b4c015bd5895de7d2f1f85f",
  9102. "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f",
  9103. "shasum": ""
  9104. },
  9105. "require": {
  9106. "php": "^5.5.9|>=7.0.8"
  9107. },
  9108. "type": "library",
  9109. "extra": {
  9110. "branch-alias": {
  9111. "dev-master": "3.4-dev"
  9112. }
  9113. },
  9114. "autoload": {
  9115. "psr-4": {
  9116. "Symfony\\Component\\CssSelector\\": ""
  9117. },
  9118. "exclude-from-classmap": [
  9119. "/Tests/"
  9120. ]
  9121. },
  9122. "notification-url": "https://packagist.org/downloads/",
  9123. "license": [
  9124. "MIT"
  9125. ],
  9126. "authors": [
  9127. {
  9128. "name": "Fabien Potencier",
  9129. "email": "fabien@symfony.com"
  9130. },
  9131. {
  9132. "name": "Jean-François Simon",
  9133. "email": "jeanfrancois.simon@sensiolabs.com"
  9134. },
  9135. {
  9136. "name": "Symfony Community",
  9137. "homepage": "https://symfony.com/contributors"
  9138. }
  9139. ],
  9140. "description": "Symfony CssSelector Component",
  9141. "homepage": "https://symfony.com",
  9142. "time": "2019-10-01T11:57:37+00:00"
  9143. },
  9144. {
  9145. "name": "symfony/debug",
  9146. "version": "v3.4.34",
  9147. "source": {
  9148. "type": "git",
  9149. "url": "https://github.com/symfony/debug.git",
  9150. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086"
  9151. },
  9152. "dist": {
  9153. "type": "zip",
  9154. "url": "https://api.github.com/repos/symfony/debug/zipball/f72e33fdb1170b326e72c3157f0cd456351dd086",
  9155. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086",
  9156. "shasum": ""
  9157. },
  9158. "require": {
  9159. "php": "^5.5.9|>=7.0.8",
  9160. "psr/log": "~1.0"
  9161. },
  9162. "conflict": {
  9163. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  9164. },
  9165. "require-dev": {
  9166. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  9167. },
  9168. "type": "library",
  9169. "extra": {
  9170. "branch-alias": {
  9171. "dev-master": "3.4-dev"
  9172. }
  9173. },
  9174. "autoload": {
  9175. "psr-4": {
  9176. "Symfony\\Component\\Debug\\": ""
  9177. },
  9178. "exclude-from-classmap": [
  9179. "/Tests/"
  9180. ]
  9181. },
  9182. "notification-url": "https://packagist.org/downloads/",
  9183. "license": [
  9184. "MIT"
  9185. ],
  9186. "authors": [
  9187. {
  9188. "name": "Fabien Potencier",
  9189. "email": "fabien@symfony.com"
  9190. },
  9191. {
  9192. "name": "Symfony Community",
  9193. "homepage": "https://symfony.com/contributors"
  9194. }
  9195. ],
  9196. "description": "Symfony Debug Component",
  9197. "homepage": "https://symfony.com",
  9198. "time": "2019-10-24T15:33:53+00:00"
  9199. },
  9200. {
  9201. "name": "symfony/dependency-injection",
  9202. "version": "v3.4.34",
  9203. "source": {
  9204. "type": "git",
  9205. "url": "https://github.com/symfony/dependency-injection.git",
  9206. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920"
  9207. },
  9208. "dist": {
  9209. "type": "zip",
  9210. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0ea4d39ca82409a25a43b61ce828048a90000920",
  9211. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920",
  9212. "shasum": ""
  9213. },
  9214. "require": {
  9215. "php": "^5.5.9|>=7.0.8",
  9216. "psr/container": "^1.0"
  9217. },
  9218. "conflict": {
  9219. "symfony/config": "<3.3.7",
  9220. "symfony/finder": "<3.3",
  9221. "symfony/proxy-manager-bridge": "<3.4",
  9222. "symfony/yaml": "<3.4"
  9223. },
  9224. "provide": {
  9225. "psr/container-implementation": "1.0"
  9226. },
  9227. "require-dev": {
  9228. "symfony/config": "~3.3|~4.0",
  9229. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9230. "symfony/yaml": "~3.4|~4.0"
  9231. },
  9232. "suggest": {
  9233. "symfony/config": "",
  9234. "symfony/expression-language": "For using expressions in service container configuration",
  9235. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9236. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9237. "symfony/yaml": ""
  9238. },
  9239. "type": "library",
  9240. "extra": {
  9241. "branch-alias": {
  9242. "dev-master": "3.4-dev"
  9243. }
  9244. },
  9245. "autoload": {
  9246. "psr-4": {
  9247. "Symfony\\Component\\DependencyInjection\\": ""
  9248. },
  9249. "exclude-from-classmap": [
  9250. "/Tests/"
  9251. ]
  9252. },
  9253. "notification-url": "https://packagist.org/downloads/",
  9254. "license": [
  9255. "MIT"
  9256. ],
  9257. "authors": [
  9258. {
  9259. "name": "Fabien Potencier",
  9260. "email": "fabien@symfony.com"
  9261. },
  9262. {
  9263. "name": "Symfony Community",
  9264. "homepage": "https://symfony.com/contributors"
  9265. }
  9266. ],
  9267. "description": "Symfony DependencyInjection Component",
  9268. "homepage": "https://symfony.com",
  9269. "time": "2019-11-08T16:18:30+00:00"
  9270. },
  9271. {
  9272. "name": "symfony/dom-crawler",
  9273. "version": "v3.4.34",
  9274. "source": {
  9275. "type": "git",
  9276. "url": "https://github.com/symfony/dom-crawler.git",
  9277. "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3"
  9278. },
  9279. "dist": {
  9280. "type": "zip",
  9281. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3",
  9282. "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3",
  9283. "shasum": ""
  9284. },
  9285. "require": {
  9286. "php": "^5.5.9|>=7.0.8",
  9287. "symfony/polyfill-ctype": "~1.8",
  9288. "symfony/polyfill-mbstring": "~1.0"
  9289. },
  9290. "require-dev": {
  9291. "symfony/css-selector": "~2.8|~3.0|~4.0"
  9292. },
  9293. "suggest": {
  9294. "symfony/css-selector": ""
  9295. },
  9296. "type": "library",
  9297. "extra": {
  9298. "branch-alias": {
  9299. "dev-master": "3.4-dev"
  9300. }
  9301. },
  9302. "autoload": {
  9303. "psr-4": {
  9304. "Symfony\\Component\\DomCrawler\\": ""
  9305. },
  9306. "exclude-from-classmap": [
  9307. "/Tests/"
  9308. ]
  9309. },
  9310. "notification-url": "https://packagist.org/downloads/",
  9311. "license": [
  9312. "MIT"
  9313. ],
  9314. "authors": [
  9315. {
  9316. "name": "Fabien Potencier",
  9317. "email": "fabien@symfony.com"
  9318. },
  9319. {
  9320. "name": "Symfony Community",
  9321. "homepage": "https://symfony.com/contributors"
  9322. }
  9323. ],
  9324. "description": "Symfony DomCrawler Component",
  9325. "homepage": "https://symfony.com",
  9326. "time": "2019-10-24T15:33:53+00:00"
  9327. },
  9328. {
  9329. "name": "symfony/event-dispatcher",
  9330. "version": "v3.4.34",
  9331. "source": {
  9332. "type": "git",
  9333. "url": "https://github.com/symfony/event-dispatcher.git",
  9334. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177"
  9335. },
  9336. "dist": {
  9337. "type": "zip",
  9338. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177",
  9339. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177",
  9340. "shasum": ""
  9341. },
  9342. "require": {
  9343. "php": "^5.5.9|>=7.0.8"
  9344. },
  9345. "conflict": {
  9346. "symfony/dependency-injection": "<3.3"
  9347. },
  9348. "require-dev": {
  9349. "psr/log": "~1.0",
  9350. "symfony/config": "~2.8|~3.0|~4.0",
  9351. "symfony/dependency-injection": "~3.3|~4.0",
  9352. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9353. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  9354. },
  9355. "suggest": {
  9356. "symfony/dependency-injection": "",
  9357. "symfony/http-kernel": ""
  9358. },
  9359. "type": "library",
  9360. "extra": {
  9361. "branch-alias": {
  9362. "dev-master": "3.4-dev"
  9363. }
  9364. },
  9365. "autoload": {
  9366. "psr-4": {
  9367. "Symfony\\Component\\EventDispatcher\\": ""
  9368. },
  9369. "exclude-from-classmap": [
  9370. "/Tests/"
  9371. ]
  9372. },
  9373. "notification-url": "https://packagist.org/downloads/",
  9374. "license": [
  9375. "MIT"
  9376. ],
  9377. "authors": [
  9378. {
  9379. "name": "Fabien Potencier",
  9380. "email": "fabien@symfony.com"
  9381. },
  9382. {
  9383. "name": "Symfony Community",
  9384. "homepage": "https://symfony.com/contributors"
  9385. }
  9386. ],
  9387. "description": "Symfony EventDispatcher Component",
  9388. "homepage": "https://symfony.com",
  9389. "time": "2019-10-24T15:33:53+00:00"
  9390. },
  9391. {
  9392. "name": "symfony/filesystem",
  9393. "version": "v3.4.26",
  9394. "source": {
  9395. "type": "git",
  9396. "url": "https://github.com/symfony/filesystem.git",
  9397. "reference": "acf99758b1df8e9295e6b85aa69f294565c9fedb"
  9398. },
  9399. "dist": {
  9400. "type": "zip",
  9401. "url": "https://api.github.com/repos/symfony/filesystem/zipball/acf99758b1df8e9295e6b85aa69f294565c9fedb",
  9402. "reference": "acf99758b1df8e9295e6b85aa69f294565c9fedb",
  9403. "shasum": ""
  9404. },
  9405. "require": {
  9406. "php": "^5.5.9|>=7.0.8",
  9407. "symfony/polyfill-ctype": "~1.8"
  9408. },
  9409. "type": "library",
  9410. "extra": {
  9411. "branch-alias": {
  9412. "dev-master": "3.4-dev"
  9413. }
  9414. },
  9415. "autoload": {
  9416. "psr-4": {
  9417. "Symfony\\Component\\Filesystem\\": ""
  9418. },
  9419. "exclude-from-classmap": [
  9420. "/Tests/"
  9421. ]
  9422. },
  9423. "notification-url": "https://packagist.org/downloads/",
  9424. "license": [
  9425. "MIT"
  9426. ],
  9427. "authors": [
  9428. {
  9429. "name": "Fabien Potencier",
  9430. "email": "fabien@symfony.com"
  9431. },
  9432. {
  9433. "name": "Symfony Community",
  9434. "homepage": "https://symfony.com/contributors"
  9435. }
  9436. ],
  9437. "description": "Symfony Filesystem Component",
  9438. "homepage": "https://symfony.com",
  9439. "time": "2019-02-04T21:34:32+00:00"
  9440. },
  9441. {
  9442. "name": "symfony/finder",
  9443. "version": "v3.4.26",
  9444. "source": {
  9445. "type": "git",
  9446. "url": "https://github.com/symfony/finder.git",
  9447. "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98"
  9448. },
  9449. "dist": {
  9450. "type": "zip",
  9451. "url": "https://api.github.com/repos/symfony/finder/zipball/61af5ce0b34b942d414fe8f1b11950d0e9a90e98",
  9452. "reference": "61af5ce0b34b942d414fe8f1b11950d0e9a90e98",
  9453. "shasum": ""
  9454. },
  9455. "require": {
  9456. "php": "^5.5.9|>=7.0.8"
  9457. },
  9458. "type": "library",
  9459. "extra": {
  9460. "branch-alias": {
  9461. "dev-master": "3.4-dev"
  9462. }
  9463. },
  9464. "autoload": {
  9465. "psr-4": {
  9466. "Symfony\\Component\\Finder\\": ""
  9467. },
  9468. "exclude-from-classmap": [
  9469. "/Tests/"
  9470. ]
  9471. },
  9472. "notification-url": "https://packagist.org/downloads/",
  9473. "license": [
  9474. "MIT"
  9475. ],
  9476. "authors": [
  9477. {
  9478. "name": "Fabien Potencier",
  9479. "email": "fabien@symfony.com"
  9480. },
  9481. {
  9482. "name": "Symfony Community",
  9483. "homepage": "https://symfony.com/contributors"
  9484. }
  9485. ],
  9486. "description": "Symfony Finder Component",
  9487. "homepage": "https://symfony.com",
  9488. "time": "2019-04-02T19:54:57+00:00"
  9489. },
  9490. {
  9491. "name": "symfony/http-foundation",
  9492. "version": "v3.4.34",
  9493. "source": {
  9494. "type": "git",
  9495. "url": "https://github.com/symfony/http-foundation.git",
  9496. "reference": "a5d46a33e8649ba802cebe520d188b04385572a2"
  9497. },
  9498. "dist": {
  9499. "type": "zip",
  9500. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a5d46a33e8649ba802cebe520d188b04385572a2",
  9501. "reference": "a5d46a33e8649ba802cebe520d188b04385572a2",
  9502. "shasum": ""
  9503. },
  9504. "require": {
  9505. "php": "^5.5.9|>=7.0.8",
  9506. "symfony/polyfill-mbstring": "~1.1",
  9507. "symfony/polyfill-php70": "~1.6"
  9508. },
  9509. "require-dev": {
  9510. "symfony/expression-language": "~2.8|~3.0|~4.0"
  9511. },
  9512. "type": "library",
  9513. "extra": {
  9514. "branch-alias": {
  9515. "dev-master": "3.4-dev"
  9516. }
  9517. },
  9518. "autoload": {
  9519. "psr-4": {
  9520. "Symfony\\Component\\HttpFoundation\\": ""
  9521. },
  9522. "exclude-from-classmap": [
  9523. "/Tests/"
  9524. ]
  9525. },
  9526. "notification-url": "https://packagist.org/downloads/",
  9527. "license": [
  9528. "MIT"
  9529. ],
  9530. "authors": [
  9531. {
  9532. "name": "Fabien Potencier",
  9533. "email": "fabien@symfony.com"
  9534. },
  9535. {
  9536. "name": "Symfony Community",
  9537. "homepage": "https://symfony.com/contributors"
  9538. }
  9539. ],
  9540. "description": "Symfony HttpFoundation Component",
  9541. "homepage": "https://symfony.com",
  9542. "time": "2019-11-03T02:12:45+00:00"
  9543. },
  9544. {
  9545. "name": "symfony/http-kernel",
  9546. "version": "v3.4.34",
  9547. "source": {
  9548. "type": "git",
  9549. "url": "https://github.com/symfony/http-kernel.git",
  9550. "reference": "6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2"
  9551. },
  9552. "dist": {
  9553. "type": "zip",
  9554. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2",
  9555. "reference": "6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2",
  9556. "shasum": ""
  9557. },
  9558. "require": {
  9559. "php": "^5.5.9|>=7.0.8",
  9560. "psr/log": "~1.0",
  9561. "symfony/debug": "^3.3.3|~4.0",
  9562. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9563. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  9564. "symfony/polyfill-ctype": "~1.8"
  9565. },
  9566. "conflict": {
  9567. "symfony/config": "<2.8",
  9568. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  9569. "symfony/var-dumper": "<3.3",
  9570. "twig/twig": "<1.34|<2.4,>=2"
  9571. },
  9572. "provide": {
  9573. "psr/log-implementation": "1.0"
  9574. },
  9575. "require-dev": {
  9576. "psr/cache": "~1.0",
  9577. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  9578. "symfony/class-loader": "~2.8|~3.0",
  9579. "symfony/config": "~2.8|~3.0|~4.0",
  9580. "symfony/console": "~2.8|~3.0|~4.0",
  9581. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9582. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  9583. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  9584. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9585. "symfony/finder": "~2.8|~3.0|~4.0",
  9586. "symfony/process": "~2.8|~3.0|~4.0",
  9587. "symfony/routing": "~3.4|~4.0",
  9588. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  9589. "symfony/templating": "~2.8|~3.0|~4.0",
  9590. "symfony/translation": "~2.8|~3.0|~4.0",
  9591. "symfony/var-dumper": "~3.3|~4.0"
  9592. },
  9593. "suggest": {
  9594. "symfony/browser-kit": "",
  9595. "symfony/config": "",
  9596. "symfony/console": "",
  9597. "symfony/dependency-injection": "",
  9598. "symfony/finder": "",
  9599. "symfony/var-dumper": ""
  9600. },
  9601. "type": "library",
  9602. "extra": {
  9603. "branch-alias": {
  9604. "dev-master": "3.4-dev"
  9605. }
  9606. },
  9607. "autoload": {
  9608. "psr-4": {
  9609. "Symfony\\Component\\HttpKernel\\": ""
  9610. },
  9611. "exclude-from-classmap": [
  9612. "/Tests/"
  9613. ]
  9614. },
  9615. "notification-url": "https://packagist.org/downloads/",
  9616. "license": [
  9617. "MIT"
  9618. ],
  9619. "authors": [
  9620. {
  9621. "name": "Fabien Potencier",
  9622. "email": "fabien@symfony.com"
  9623. },
  9624. {
  9625. "name": "Symfony Community",
  9626. "homepage": "https://symfony.com/contributors"
  9627. }
  9628. ],
  9629. "description": "Symfony HttpKernel Component",
  9630. "homepage": "https://symfony.com",
  9631. "time": "2019-11-11T16:11:23+00:00"
  9632. },
  9633. {
  9634. "name": "symfony/phpunit-bridge",
  9635. "version": "v3.4.34",
  9636. "source": {
  9637. "type": "git",
  9638. "url": "https://github.com/symfony/phpunit-bridge.git",
  9639. "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7"
  9640. },
  9641. "dist": {
  9642. "type": "zip",
  9643. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7",
  9644. "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7",
  9645. "shasum": ""
  9646. },
  9647. "require": {
  9648. "php": ">=5.3.3"
  9649. },
  9650. "conflict": {
  9651. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  9652. },
  9653. "suggest": {
  9654. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  9655. },
  9656. "bin": [
  9657. "bin/simple-phpunit"
  9658. ],
  9659. "type": "symfony-bridge",
  9660. "extra": {
  9661. "branch-alias": {
  9662. "dev-master": "3.4-dev"
  9663. },
  9664. "thanks": {
  9665. "name": "phpunit/phpunit",
  9666. "url": "https://github.com/sebastianbergmann/phpunit"
  9667. }
  9668. },
  9669. "autoload": {
  9670. "files": [
  9671. "bootstrap.php"
  9672. ],
  9673. "psr-4": {
  9674. "Symfony\\Bridge\\PhpUnit\\": ""
  9675. },
  9676. "exclude-from-classmap": [
  9677. "/Tests/"
  9678. ]
  9679. },
  9680. "notification-url": "https://packagist.org/downloads/",
  9681. "license": [
  9682. "MIT"
  9683. ],
  9684. "authors": [
  9685. {
  9686. "name": "Nicolas Grekas",
  9687. "email": "p@tchwork.com"
  9688. },
  9689. {
  9690. "name": "Symfony Community",
  9691. "homepage": "https://symfony.com/contributors"
  9692. }
  9693. ],
  9694. "description": "Symfony PHPUnit Bridge",
  9695. "homepage": "https://symfony.com",
  9696. "time": "2019-09-30T20:33:19+00:00"
  9697. },
  9698. {
  9699. "name": "symfony/polyfill-ctype",
  9700. "version": "v1.12.0",
  9701. "source": {
  9702. "type": "git",
  9703. "url": "https://github.com/symfony/polyfill-ctype.git",
  9704. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  9705. },
  9706. "dist": {
  9707. "type": "zip",
  9708. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  9709. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  9710. "shasum": ""
  9711. },
  9712. "require": {
  9713. "php": ">=5.3.3"
  9714. },
  9715. "suggest": {
  9716. "ext-ctype": "For best performance"
  9717. },
  9718. "type": "library",
  9719. "extra": {
  9720. "branch-alias": {
  9721. "dev-master": "1.12-dev"
  9722. }
  9723. },
  9724. "autoload": {
  9725. "psr-4": {
  9726. "Symfony\\Polyfill\\Ctype\\": ""
  9727. },
  9728. "files": [
  9729. "bootstrap.php"
  9730. ]
  9731. },
  9732. "notification-url": "https://packagist.org/downloads/",
  9733. "license": [
  9734. "MIT"
  9735. ],
  9736. "authors": [
  9737. {
  9738. "name": "Gert de Pagter",
  9739. "email": "BackEndTea@gmail.com"
  9740. },
  9741. {
  9742. "name": "Symfony Community",
  9743. "homepage": "https://symfony.com/contributors"
  9744. }
  9745. ],
  9746. "description": "Symfony polyfill for ctype functions",
  9747. "homepage": "https://symfony.com",
  9748. "keywords": [
  9749. "compatibility",
  9750. "ctype",
  9751. "polyfill",
  9752. "portable"
  9753. ],
  9754. "time": "2019-08-06T08:03:45+00:00"
  9755. },
  9756. {
  9757. "name": "symfony/polyfill-iconv",
  9758. "version": "v1.12.0",
  9759. "source": {
  9760. "type": "git",
  9761. "url": "https://github.com/symfony/polyfill-iconv.git",
  9762. "reference": "685968b11e61a347c18bf25db32effa478be610f"
  9763. },
  9764. "dist": {
  9765. "type": "zip",
  9766. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f",
  9767. "reference": "685968b11e61a347c18bf25db32effa478be610f",
  9768. "shasum": ""
  9769. },
  9770. "require": {
  9771. "php": ">=5.3.3"
  9772. },
  9773. "suggest": {
  9774. "ext-iconv": "For best performance"
  9775. },
  9776. "type": "library",
  9777. "extra": {
  9778. "branch-alias": {
  9779. "dev-master": "1.12-dev"
  9780. }
  9781. },
  9782. "autoload": {
  9783. "psr-4": {
  9784. "Symfony\\Polyfill\\Iconv\\": ""
  9785. },
  9786. "files": [
  9787. "bootstrap.php"
  9788. ]
  9789. },
  9790. "notification-url": "https://packagist.org/downloads/",
  9791. "license": [
  9792. "MIT"
  9793. ],
  9794. "authors": [
  9795. {
  9796. "name": "Nicolas Grekas",
  9797. "email": "p@tchwork.com"
  9798. },
  9799. {
  9800. "name": "Symfony Community",
  9801. "homepage": "https://symfony.com/contributors"
  9802. }
  9803. ],
  9804. "description": "Symfony polyfill for the Iconv extension",
  9805. "homepage": "https://symfony.com",
  9806. "keywords": [
  9807. "compatibility",
  9808. "iconv",
  9809. "polyfill",
  9810. "portable",
  9811. "shim"
  9812. ],
  9813. "time": "2019-08-06T08:03:45+00:00"
  9814. },
  9815. {
  9816. "name": "symfony/polyfill-mbstring",
  9817. "version": "v1.12.0",
  9818. "source": {
  9819. "type": "git",
  9820. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9821. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
  9822. },
  9823. "dist": {
  9824. "type": "zip",
  9825. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  9826. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  9827. "shasum": ""
  9828. },
  9829. "require": {
  9830. "php": ">=5.3.3"
  9831. },
  9832. "suggest": {
  9833. "ext-mbstring": "For best performance"
  9834. },
  9835. "type": "library",
  9836. "extra": {
  9837. "branch-alias": {
  9838. "dev-master": "1.12-dev"
  9839. }
  9840. },
  9841. "autoload": {
  9842. "psr-4": {
  9843. "Symfony\\Polyfill\\Mbstring\\": ""
  9844. },
  9845. "files": [
  9846. "bootstrap.php"
  9847. ]
  9848. },
  9849. "notification-url": "https://packagist.org/downloads/",
  9850. "license": [
  9851. "MIT"
  9852. ],
  9853. "authors": [
  9854. {
  9855. "name": "Nicolas Grekas",
  9856. "email": "p@tchwork.com"
  9857. },
  9858. {
  9859. "name": "Symfony Community",
  9860. "homepage": "https://symfony.com/contributors"
  9861. }
  9862. ],
  9863. "description": "Symfony polyfill for the Mbstring extension",
  9864. "homepage": "https://symfony.com",
  9865. "keywords": [
  9866. "compatibility",
  9867. "mbstring",
  9868. "polyfill",
  9869. "portable",
  9870. "shim"
  9871. ],
  9872. "time": "2019-08-06T08:03:45+00:00"
  9873. },
  9874. {
  9875. "name": "symfony/polyfill-php70",
  9876. "version": "v1.12.0",
  9877. "source": {
  9878. "type": "git",
  9879. "url": "https://github.com/symfony/polyfill-php70.git",
  9880. "reference": "54b4c428a0054e254223797d2713c31e08610831"
  9881. },
  9882. "dist": {
  9883. "type": "zip",
  9884. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831",
  9885. "reference": "54b4c428a0054e254223797d2713c31e08610831",
  9886. "shasum": ""
  9887. },
  9888. "require": {
  9889. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  9890. "php": ">=5.3.3"
  9891. },
  9892. "type": "library",
  9893. "extra": {
  9894. "branch-alias": {
  9895. "dev-master": "1.12-dev"
  9896. }
  9897. },
  9898. "autoload": {
  9899. "psr-4": {
  9900. "Symfony\\Polyfill\\Php70\\": ""
  9901. },
  9902. "files": [
  9903. "bootstrap.php"
  9904. ],
  9905. "classmap": [
  9906. "Resources/stubs"
  9907. ]
  9908. },
  9909. "notification-url": "https://packagist.org/downloads/",
  9910. "license": [
  9911. "MIT"
  9912. ],
  9913. "authors": [
  9914. {
  9915. "name": "Nicolas Grekas",
  9916. "email": "p@tchwork.com"
  9917. },
  9918. {
  9919. "name": "Symfony Community",
  9920. "homepage": "https://symfony.com/contributors"
  9921. }
  9922. ],
  9923. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9924. "homepage": "https://symfony.com",
  9925. "keywords": [
  9926. "compatibility",
  9927. "polyfill",
  9928. "portable",
  9929. "shim"
  9930. ],
  9931. "time": "2019-08-06T08:03:45+00:00"
  9932. },
  9933. {
  9934. "name": "symfony/process",
  9935. "version": "v3.4.34",
  9936. "source": {
  9937. "type": "git",
  9938. "url": "https://github.com/symfony/process.git",
  9939. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e"
  9940. },
  9941. "dist": {
  9942. "type": "zip",
  9943. "url": "https://api.github.com/repos/symfony/process/zipball/c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  9944. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  9945. "shasum": ""
  9946. },
  9947. "require": {
  9948. "php": "^5.5.9|>=7.0.8"
  9949. },
  9950. "type": "library",
  9951. "extra": {
  9952. "branch-alias": {
  9953. "dev-master": "3.4-dev"
  9954. }
  9955. },
  9956. "autoload": {
  9957. "psr-4": {
  9958. "Symfony\\Component\\Process\\": ""
  9959. },
  9960. "exclude-from-classmap": [
  9961. "/Tests/"
  9962. ]
  9963. },
  9964. "notification-url": "https://packagist.org/downloads/",
  9965. "license": [
  9966. "MIT"
  9967. ],
  9968. "authors": [
  9969. {
  9970. "name": "Fabien Potencier",
  9971. "email": "fabien@symfony.com"
  9972. },
  9973. {
  9974. "name": "Symfony Community",
  9975. "homepage": "https://symfony.com/contributors"
  9976. }
  9977. ],
  9978. "description": "Symfony Process Component",
  9979. "homepage": "https://symfony.com",
  9980. "time": "2019-10-24T15:33:53+00:00"
  9981. },
  9982. {
  9983. "name": "symfony/psr-http-message-bridge",
  9984. "version": "v1.1.2",
  9985. "source": {
  9986. "type": "git",
  9987. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9988. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  9989. },
  9990. "dist": {
  9991. "type": "zip",
  9992. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  9993. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  9994. "shasum": ""
  9995. },
  9996. "require": {
  9997. "php": "^5.3.3 || ^7.0",
  9998. "psr/http-message": "^1.0",
  9999. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  10000. },
  10001. "require-dev": {
  10002. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  10003. },
  10004. "suggest": {
  10005. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  10006. },
  10007. "type": "symfony-bridge",
  10008. "extra": {
  10009. "branch-alias": {
  10010. "dev-master": "1.1-dev"
  10011. }
  10012. },
  10013. "autoload": {
  10014. "psr-4": {
  10015. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  10016. },
  10017. "exclude-from-classmap": [
  10018. "/Tests/"
  10019. ]
  10020. },
  10021. "notification-url": "https://packagist.org/downloads/",
  10022. "license": [
  10023. "MIT"
  10024. ],
  10025. "authors": [
  10026. {
  10027. "name": "Symfony Community",
  10028. "homepage": "http://symfony.com/contributors"
  10029. },
  10030. {
  10031. "name": "Fabien Potencier",
  10032. "email": "fabien@symfony.com"
  10033. }
  10034. ],
  10035. "description": "PSR HTTP message bridge",
  10036. "homepage": "http://symfony.com",
  10037. "keywords": [
  10038. "http",
  10039. "http-message",
  10040. "psr-17",
  10041. "psr-7"
  10042. ],
  10043. "time": "2019-04-03T17:09:40+00:00"
  10044. },
  10045. {
  10046. "name": "symfony/routing",
  10047. "version": "v3.4.34",
  10048. "source": {
  10049. "type": "git",
  10050. "url": "https://github.com/symfony/routing.git",
  10051. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5"
  10052. },
  10053. "dist": {
  10054. "type": "zip",
  10055. "url": "https://api.github.com/repos/symfony/routing/zipball/afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  10056. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  10057. "shasum": ""
  10058. },
  10059. "require": {
  10060. "php": "^5.5.9|>=7.0.8"
  10061. },
  10062. "conflict": {
  10063. "symfony/config": "<3.3.1",
  10064. "symfony/dependency-injection": "<3.3",
  10065. "symfony/yaml": "<3.4"
  10066. },
  10067. "require-dev": {
  10068. "doctrine/annotations": "~1.0",
  10069. "psr/log": "~1.0",
  10070. "symfony/config": "^3.3.1|~4.0",
  10071. "symfony/dependency-injection": "~3.3|~4.0",
  10072. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10073. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10074. "symfony/yaml": "~3.4|~4.0"
  10075. },
  10076. "suggest": {
  10077. "doctrine/annotations": "For using the annotation loader",
  10078. "symfony/config": "For using the all-in-one router or any loader",
  10079. "symfony/expression-language": "For using expression matching",
  10080. "symfony/http-foundation": "For using a Symfony Request object",
  10081. "symfony/yaml": "For using the YAML loader"
  10082. },
  10083. "type": "library",
  10084. "extra": {
  10085. "branch-alias": {
  10086. "dev-master": "3.4-dev"
  10087. }
  10088. },
  10089. "autoload": {
  10090. "psr-4": {
  10091. "Symfony\\Component\\Routing\\": ""
  10092. },
  10093. "exclude-from-classmap": [
  10094. "/Tests/"
  10095. ]
  10096. },
  10097. "notification-url": "https://packagist.org/downloads/",
  10098. "license": [
  10099. "MIT"
  10100. ],
  10101. "authors": [
  10102. {
  10103. "name": "Fabien Potencier",
  10104. "email": "fabien@symfony.com"
  10105. },
  10106. {
  10107. "name": "Symfony Community",
  10108. "homepage": "https://symfony.com/contributors"
  10109. }
  10110. ],
  10111. "description": "Symfony Routing Component",
  10112. "homepage": "https://symfony.com",
  10113. "keywords": [
  10114. "router",
  10115. "routing",
  10116. "uri",
  10117. "url"
  10118. ],
  10119. "time": "2019-11-08T17:25:00+00:00"
  10120. },
  10121. {
  10122. "name": "symfony/serializer",
  10123. "version": "v3.4.34",
  10124. "source": {
  10125. "type": "git",
  10126. "url": "https://github.com/symfony/serializer.git",
  10127. "reference": "a9b988899604cf3ecb144834ffbd11134c6f7773"
  10128. },
  10129. "dist": {
  10130. "type": "zip",
  10131. "url": "https://api.github.com/repos/symfony/serializer/zipball/a9b988899604cf3ecb144834ffbd11134c6f7773",
  10132. "reference": "a9b988899604cf3ecb144834ffbd11134c6f7773",
  10133. "shasum": ""
  10134. },
  10135. "require": {
  10136. "php": "^5.5.9|>=7.0.8",
  10137. "symfony/polyfill-ctype": "~1.8"
  10138. },
  10139. "conflict": {
  10140. "phpdocumentor/type-resolver": "<0.2.1",
  10141. "symfony/dependency-injection": "<3.2",
  10142. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  10143. "symfony/property-info": "<3.1",
  10144. "symfony/yaml": "<3.4"
  10145. },
  10146. "require-dev": {
  10147. "doctrine/annotations": "~1.0",
  10148. "doctrine/cache": "~1.0",
  10149. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  10150. "symfony/cache": "~3.1|~4.0",
  10151. "symfony/config": "~2.8|~3.0|~4.0",
  10152. "symfony/dependency-injection": "~3.2|~4.0",
  10153. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10154. "symfony/property-access": "~2.8|~3.0|~4.0",
  10155. "symfony/property-info": "^3.4.13|~4.0",
  10156. "symfony/yaml": "~3.4|~4.0"
  10157. },
  10158. "suggest": {
  10159. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10160. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10161. "psr/cache-implementation": "For using the metadata cache.",
  10162. "symfony/config": "For using the XML mapping loader.",
  10163. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  10164. "symfony/property-access": "For using the ObjectNormalizer.",
  10165. "symfony/property-info": "To deserialize relations.",
  10166. "symfony/yaml": "For using the default YAML mapping loader."
  10167. },
  10168. "type": "library",
  10169. "extra": {
  10170. "branch-alias": {
  10171. "dev-master": "3.4-dev"
  10172. }
  10173. },
  10174. "autoload": {
  10175. "psr-4": {
  10176. "Symfony\\Component\\Serializer\\": ""
  10177. },
  10178. "exclude-from-classmap": [
  10179. "/Tests/"
  10180. ]
  10181. },
  10182. "notification-url": "https://packagist.org/downloads/",
  10183. "license": [
  10184. "MIT"
  10185. ],
  10186. "authors": [
  10187. {
  10188. "name": "Fabien Potencier",
  10189. "email": "fabien@symfony.com"
  10190. },
  10191. {
  10192. "name": "Symfony Community",
  10193. "homepage": "https://symfony.com/contributors"
  10194. }
  10195. ],
  10196. "description": "Symfony Serializer Component",
  10197. "homepage": "https://symfony.com",
  10198. "time": "2019-10-29T11:09:57+00:00"
  10199. },
  10200. {
  10201. "name": "symfony/translation",
  10202. "version": "v3.4.34",
  10203. "source": {
  10204. "type": "git",
  10205. "url": "https://github.com/symfony/translation.git",
  10206. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772"
  10207. },
  10208. "dist": {
  10209. "type": "zip",
  10210. "url": "https://api.github.com/repos/symfony/translation/zipball/2031c895bc97ac1787d418d90bd1ed7d299f2772",
  10211. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772",
  10212. "shasum": ""
  10213. },
  10214. "require": {
  10215. "php": "^5.5.9|>=7.0.8",
  10216. "symfony/polyfill-mbstring": "~1.0"
  10217. },
  10218. "conflict": {
  10219. "symfony/config": "<2.8",
  10220. "symfony/dependency-injection": "<3.4",
  10221. "symfony/yaml": "<3.4"
  10222. },
  10223. "require-dev": {
  10224. "psr/log": "~1.0",
  10225. "symfony/config": "~2.8|~3.0|~4.0",
  10226. "symfony/dependency-injection": "~3.4|~4.0",
  10227. "symfony/finder": "~2.8|~3.0|~4.0",
  10228. "symfony/http-kernel": "~3.4|~4.0",
  10229. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10230. "symfony/var-dumper": "~3.4|~4.0",
  10231. "symfony/yaml": "~3.4|~4.0"
  10232. },
  10233. "suggest": {
  10234. "psr/log-implementation": "To use logging capability in translator",
  10235. "symfony/config": "",
  10236. "symfony/yaml": ""
  10237. },
  10238. "type": "library",
  10239. "extra": {
  10240. "branch-alias": {
  10241. "dev-master": "3.4-dev"
  10242. }
  10243. },
  10244. "autoload": {
  10245. "psr-4": {
  10246. "Symfony\\Component\\Translation\\": ""
  10247. },
  10248. "exclude-from-classmap": [
  10249. "/Tests/"
  10250. ]
  10251. },
  10252. "notification-url": "https://packagist.org/downloads/",
  10253. "license": [
  10254. "MIT"
  10255. ],
  10256. "authors": [
  10257. {
  10258. "name": "Fabien Potencier",
  10259. "email": "fabien@symfony.com"
  10260. },
  10261. {
  10262. "name": "Symfony Community",
  10263. "homepage": "https://symfony.com/contributors"
  10264. }
  10265. ],
  10266. "description": "Symfony Translation Component",
  10267. "homepage": "https://symfony.com",
  10268. "time": "2019-10-30T12:43:22+00:00"
  10269. },
  10270. {
  10271. "name": "symfony/validator",
  10272. "version": "v3.4.34",
  10273. "source": {
  10274. "type": "git",
  10275. "url": "https://github.com/symfony/validator.git",
  10276. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80"
  10277. },
  10278. "dist": {
  10279. "type": "zip",
  10280. "url": "https://api.github.com/repos/symfony/validator/zipball/b11f45742c5c9a228cedc46b70c6317780a1ac80",
  10281. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80",
  10282. "shasum": ""
  10283. },
  10284. "require": {
  10285. "php": "^5.5.9|>=7.0.8",
  10286. "symfony/polyfill-ctype": "~1.8",
  10287. "symfony/polyfill-mbstring": "~1.0",
  10288. "symfony/translation": "~2.8|~3.0|~4.0"
  10289. },
  10290. "conflict": {
  10291. "doctrine/lexer": "<1.0.2",
  10292. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10293. "symfony/dependency-injection": "<3.3",
  10294. "symfony/http-kernel": "<3.3.5",
  10295. "symfony/yaml": "<3.4"
  10296. },
  10297. "require-dev": {
  10298. "doctrine/annotations": "~1.7",
  10299. "doctrine/cache": "~1.0",
  10300. "egulias/email-validator": "^2.1.10",
  10301. "symfony/cache": "~3.1|~4.0",
  10302. "symfony/config": "~2.8|~3.0|~4.0",
  10303. "symfony/dependency-injection": "~3.3|~4.0",
  10304. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10305. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10306. "symfony/http-kernel": "^3.3.5|~4.0",
  10307. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10308. "symfony/property-access": "~2.8|~3.0|~4.0",
  10309. "symfony/var-dumper": "~3.3|~4.0",
  10310. "symfony/yaml": "~3.4|~4.0"
  10311. },
  10312. "suggest": {
  10313. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10314. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10315. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10316. "psr/cache-implementation": "For using the metadata cache.",
  10317. "symfony/config": "",
  10318. "symfony/expression-language": "For using the Expression validator",
  10319. "symfony/http-foundation": "",
  10320. "symfony/intl": "",
  10321. "symfony/property-access": "For accessing properties within comparison constraints",
  10322. "symfony/yaml": ""
  10323. },
  10324. "type": "library",
  10325. "extra": {
  10326. "branch-alias": {
  10327. "dev-master": "3.4-dev"
  10328. }
  10329. },
  10330. "autoload": {
  10331. "psr-4": {
  10332. "Symfony\\Component\\Validator\\": ""
  10333. },
  10334. "exclude-from-classmap": [
  10335. "/Tests/"
  10336. ]
  10337. },
  10338. "notification-url": "https://packagist.org/downloads/",
  10339. "license": [
  10340. "MIT"
  10341. ],
  10342. "authors": [
  10343. {
  10344. "name": "Fabien Potencier",
  10345. "email": "fabien@symfony.com"
  10346. },
  10347. {
  10348. "name": "Symfony Community",
  10349. "homepage": "https://symfony.com/contributors"
  10350. }
  10351. ],
  10352. "description": "Symfony Validator Component",
  10353. "homepage": "https://symfony.com",
  10354. "time": "2019-11-05T22:03:38+00:00"
  10355. },
  10356. {
  10357. "name": "symfony/var-dumper",
  10358. "version": "v3.4.26",
  10359. "source": {
  10360. "type": "git",
  10361. "url": "https://github.com/symfony/var-dumper.git",
  10362. "reference": "f0883812642a6d6583a9e2ae6aec4ba134436f40"
  10363. },
  10364. "dist": {
  10365. "type": "zip",
  10366. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f0883812642a6d6583a9e2ae6aec4ba134436f40",
  10367. "reference": "f0883812642a6d6583a9e2ae6aec4ba134436f40",
  10368. "shasum": ""
  10369. },
  10370. "require": {
  10371. "php": "^5.5.9|>=7.0.8",
  10372. "symfony/polyfill-mbstring": "~1.0"
  10373. },
  10374. "conflict": {
  10375. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  10376. },
  10377. "require-dev": {
  10378. "ext-iconv": "*",
  10379. "twig/twig": "~1.34|~2.4"
  10380. },
  10381. "suggest": {
  10382. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10383. "ext-intl": "To show region name in time zone dump",
  10384. "ext-symfony_debug": ""
  10385. },
  10386. "type": "library",
  10387. "extra": {
  10388. "branch-alias": {
  10389. "dev-master": "3.4-dev"
  10390. }
  10391. },
  10392. "autoload": {
  10393. "files": [
  10394. "Resources/functions/dump.php"
  10395. ],
  10396. "psr-4": {
  10397. "Symfony\\Component\\VarDumper\\": ""
  10398. },
  10399. "exclude-from-classmap": [
  10400. "/Tests/"
  10401. ]
  10402. },
  10403. "notification-url": "https://packagist.org/downloads/",
  10404. "license": [
  10405. "MIT"
  10406. ],
  10407. "authors": [
  10408. {
  10409. "name": "Nicolas Grekas",
  10410. "email": "p@tchwork.com"
  10411. },
  10412. {
  10413. "name": "Symfony Community",
  10414. "homepage": "https://symfony.com/contributors"
  10415. }
  10416. ],
  10417. "description": "Symfony mechanism for exploring and dumping PHP variables",
  10418. "homepage": "https://symfony.com",
  10419. "keywords": [
  10420. "debug",
  10421. "dump"
  10422. ],
  10423. "time": "2019-04-16T13:58:17+00:00"
  10424. },
  10425. {
  10426. "name": "symfony/yaml",
  10427. "version": "v3.4.34",
  10428. "source": {
  10429. "type": "git",
  10430. "url": "https://github.com/symfony/yaml.git",
  10431. "reference": "dab657db15207879217fc81df4f875947bf68804"
  10432. },
  10433. "dist": {
  10434. "type": "zip",
  10435. "url": "https://api.github.com/repos/symfony/yaml/zipball/dab657db15207879217fc81df4f875947bf68804",
  10436. "reference": "dab657db15207879217fc81df4f875947bf68804",
  10437. "shasum": ""
  10438. },
  10439. "require": {
  10440. "php": "^5.5.9|>=7.0.8",
  10441. "symfony/polyfill-ctype": "~1.8"
  10442. },
  10443. "conflict": {
  10444. "symfony/console": "<3.4"
  10445. },
  10446. "require-dev": {
  10447. "symfony/console": "~3.4|~4.0"
  10448. },
  10449. "suggest": {
  10450. "symfony/console": "For validating YAML files using the lint command"
  10451. },
  10452. "type": "library",
  10453. "extra": {
  10454. "branch-alias": {
  10455. "dev-master": "3.4-dev"
  10456. }
  10457. },
  10458. "autoload": {
  10459. "psr-4": {
  10460. "Symfony\\Component\\Yaml\\": ""
  10461. },
  10462. "exclude-from-classmap": [
  10463. "/Tests/"
  10464. ]
  10465. },
  10466. "notification-url": "https://packagist.org/downloads/",
  10467. "license": [
  10468. "MIT"
  10469. ],
  10470. "authors": [
  10471. {
  10472. "name": "Fabien Potencier",
  10473. "email": "fabien@symfony.com"
  10474. },
  10475. {
  10476. "name": "Symfony Community",
  10477. "homepage": "https://symfony.com/contributors"
  10478. }
  10479. ],
  10480. "description": "Symfony Yaml Component",
  10481. "homepage": "https://symfony.com",
  10482. "time": "2019-10-24T15:33:53+00:00"
  10483. },
  10484. {
  10485. "name": "theseer/tokenizer",
  10486. "version": "1.1.3",
  10487. "source": {
  10488. "type": "git",
  10489. "url": "https://github.com/theseer/tokenizer.git",
  10490. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  10491. },
  10492. "dist": {
  10493. "type": "zip",
  10494. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10495. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10496. "shasum": ""
  10497. },
  10498. "require": {
  10499. "ext-dom": "*",
  10500. "ext-tokenizer": "*",
  10501. "ext-xmlwriter": "*",
  10502. "php": "^7.0"
  10503. },
  10504. "type": "library",
  10505. "autoload": {
  10506. "classmap": [
  10507. "src/"
  10508. ]
  10509. },
  10510. "notification-url": "https://packagist.org/downloads/",
  10511. "license": [
  10512. "BSD-3-Clause"
  10513. ],
  10514. "authors": [
  10515. {
  10516. "name": "Arne Blankerts",
  10517. "email": "arne@blankerts.de",
  10518. "role": "Developer"
  10519. }
  10520. ],
  10521. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10522. "time": "2019-06-13T22:48:21+00:00"
  10523. },
  10524. {
  10525. "name": "twig/twig",
  10526. "version": "v1.42.4",
  10527. "source": {
  10528. "type": "git",
  10529. "url": "https://github.com/twigphp/Twig.git",
  10530. "reference": "e587180584c3d2d6cb864a0454e777bb6dcb6152"
  10531. },
  10532. "dist": {
  10533. "type": "zip",
  10534. "url": "https://api.github.com/repos/twigphp/Twig/zipball/e587180584c3d2d6cb864a0454e777bb6dcb6152",
  10535. "reference": "e587180584c3d2d6cb864a0454e777bb6dcb6152",
  10536. "shasum": ""
  10537. },
  10538. "require": {
  10539. "php": ">=5.5.0",
  10540. "symfony/polyfill-ctype": "^1.8"
  10541. },
  10542. "require-dev": {
  10543. "psr/container": "^1.0",
  10544. "symfony/debug": "^3.4|^4.2",
  10545. "symfony/phpunit-bridge": "^4.4@dev|^5.0"
  10546. },
  10547. "type": "library",
  10548. "extra": {
  10549. "branch-alias": {
  10550. "dev-master": "1.42-dev"
  10551. }
  10552. },
  10553. "autoload": {
  10554. "psr-0": {
  10555. "Twig_": "lib/"
  10556. },
  10557. "psr-4": {
  10558. "Twig\\": "src/"
  10559. }
  10560. },
  10561. "notification-url": "https://packagist.org/downloads/",
  10562. "license": [
  10563. "BSD-3-Clause"
  10564. ],
  10565. "authors": [
  10566. {
  10567. "name": "Fabien Potencier",
  10568. "email": "fabien@symfony.com",
  10569. "homepage": "http://fabien.potencier.org",
  10570. "role": "Lead Developer"
  10571. },
  10572. {
  10573. "name": "Twig Team",
  10574. "homepage": "https://twig.symfony.com/contributors",
  10575. "role": "Contributors"
  10576. },
  10577. {
  10578. "name": "Armin Ronacher",
  10579. "email": "armin.ronacher@active-4.com",
  10580. "role": "Project Founder"
  10581. }
  10582. ],
  10583. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10584. "homepage": "https://twig.symfony.com",
  10585. "keywords": [
  10586. "templating"
  10587. ],
  10588. "time": "2019-11-11T16:49:32+00:00"
  10589. },
  10590. {
  10591. "name": "typo3/phar-stream-wrapper",
  10592. "version": "v2.1.3",
  10593. "source": {
  10594. "type": "git",
  10595. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10596. "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb"
  10597. },
  10598. "dist": {
  10599. "type": "zip",
  10600. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e8a656d72028b97ab9f61ed993734f3cded02eeb",
  10601. "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb",
  10602. "shasum": ""
  10603. },
  10604. "require": {
  10605. "brumann/polyfill-unserialize": "^1.0",
  10606. "ext-json": "*",
  10607. "php": "^5.3.3|^7.0"
  10608. },
  10609. "require-dev": {
  10610. "ext-xdebug": "*",
  10611. "phpunit/phpunit": "^4.8.36"
  10612. },
  10613. "suggest": {
  10614. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10615. },
  10616. "type": "library",
  10617. "autoload": {
  10618. "psr-4": {
  10619. "TYPO3\\PharStreamWrapper\\": "src/"
  10620. }
  10621. },
  10622. "notification-url": "https://packagist.org/downloads/",
  10623. "license": [
  10624. "MIT"
  10625. ],
  10626. "description": "Interceptors for PHP's native phar:// stream handling",
  10627. "homepage": "https://typo3.org/",
  10628. "keywords": [
  10629. "phar",
  10630. "php",
  10631. "security",
  10632. "stream-wrapper"
  10633. ],
  10634. "time": "2019-10-18T11:59:10+00:00"
  10635. },
  10636. {
  10637. "name": "vlucas/phpdotenv",
  10638. "version": "v2.6.1",
  10639. "source": {
  10640. "type": "git",
  10641. "url": "https://github.com/vlucas/phpdotenv.git",
  10642. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  10643. },
  10644. "dist": {
  10645. "type": "zip",
  10646. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10647. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  10648. "shasum": ""
  10649. },
  10650. "require": {
  10651. "php": ">=5.3.9",
  10652. "symfony/polyfill-ctype": "^1.9"
  10653. },
  10654. "require-dev": {
  10655. "phpunit/phpunit": "^4.8.35 || ^5.0"
  10656. },
  10657. "type": "library",
  10658. "extra": {
  10659. "branch-alias": {
  10660. "dev-master": "2.6-dev"
  10661. }
  10662. },
  10663. "autoload": {
  10664. "psr-4": {
  10665. "Dotenv\\": "src/"
  10666. }
  10667. },
  10668. "notification-url": "https://packagist.org/downloads/",
  10669. "license": [
  10670. "BSD-3-Clause"
  10671. ],
  10672. "authors": [
  10673. {
  10674. "name": "Vance Lucas",
  10675. "email": "vance@vancelucas.com",
  10676. "homepage": "http://www.vancelucas.com"
  10677. }
  10678. ],
  10679. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10680. "keywords": [
  10681. "dotenv",
  10682. "env",
  10683. "environment"
  10684. ],
  10685. "time": "2019-01-29T11:11:52+00:00"
  10686. },
  10687. {
  10688. "name": "webflo/drupal-core-require-dev",
  10689. "version": "8.6.17",
  10690. "source": {
  10691. "type": "git",
  10692. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  10693. "reference": "8a903ea6bde393937dc129c9721bd97ccb57c661"
  10694. },
  10695. "dist": {
  10696. "type": "zip",
  10697. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/8a903ea6bde393937dc129c9721bd97ccb57c661",
  10698. "reference": "8a903ea6bde393937dc129c9721bd97ccb57c661",
  10699. "shasum": ""
  10700. },
  10701. "require": {
  10702. "behat/mink": "1.7.x-dev",
  10703. "behat/mink-goutte-driver": "^1.2",
  10704. "behat/mink-selenium2-driver": "1.3.x-dev",
  10705. "drupal/coder": "^8.2.12",
  10706. "drupal/core": "8.6.17",
  10707. "jcalderonzumba/gastonjs": "^1.0.2",
  10708. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  10709. "mikey179/vfsstream": "^1.2",
  10710. "phpspec/prophecy": "^1.7",
  10711. "phpunit/phpunit": "^4.8.35 || ^6.5",
  10712. "symfony/css-selector": "^3.4.0",
  10713. "symfony/debug": "^3.4.0",
  10714. "symfony/phpunit-bridge": "^3.4.3"
  10715. },
  10716. "type": "metapackage",
  10717. "notification-url": "https://packagist.org/downloads/",
  10718. "license": [
  10719. "GPL-2.0-or-later"
  10720. ],
  10721. "description": "require-dev dependencies from drupal/core",
  10722. "time": "2019-06-17T07:31:39+00:00"
  10723. },
  10724. {
  10725. "name": "webflo/drupal-core-strict",
  10726. "version": "8.0.0-beta15",
  10727. "source": {
  10728. "type": "git",
  10729. "url": "https://github.com/webflo/drupal-core-strict.git",
  10730. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057"
  10731. },
  10732. "dist": {
  10733. "type": "zip",
  10734. "url": "https://api.github.com/repos/webflo/drupal-core-strict/zipball/1eb044b722ebe44bc6af86a03888415d7f31c057",
  10735. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057",
  10736. "shasum": ""
  10737. },
  10738. "type": "metapackage",
  10739. "notification-url": "https://packagist.org/downloads/",
  10740. "license": [
  10741. "GPL-2.0-or-later"
  10742. ],
  10743. "description": "Locked core dependencies",
  10744. "time": "2018-01-30T18:48:19+00:00"
  10745. },
  10746. {
  10747. "name": "webflo/drupal-finder",
  10748. "version": "1.1.0",
  10749. "source": {
  10750. "type": "git",
  10751. "url": "https://github.com/webflo/drupal-finder.git",
  10752. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637"
  10753. },
  10754. "dist": {
  10755. "type": "zip",
  10756. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/8a7886c575d6eaa67a425dceccc84e735c0b9637",
  10757. "reference": "8a7886c575d6eaa67a425dceccc84e735c0b9637",
  10758. "shasum": ""
  10759. },
  10760. "require-dev": {
  10761. "mikey179/vfsstream": "^1.6",
  10762. "phpunit/phpunit": "^4.8"
  10763. },
  10764. "type": "library",
  10765. "autoload": {
  10766. "classmap": [
  10767. "src/DrupalFinder.php"
  10768. ]
  10769. },
  10770. "notification-url": "https://packagist.org/downloads/",
  10771. "license": [
  10772. "GPL-2.0+"
  10773. ],
  10774. "authors": [
  10775. {
  10776. "name": "Florian Weber",
  10777. "email": "florian@webflo.org"
  10778. }
  10779. ],
  10780. "description": "Helper class to locate a Drupal installation from a given path.",
  10781. "time": "2017-10-24T08:12:11+00:00"
  10782. },
  10783. {
  10784. "name": "webmozart/assert",
  10785. "version": "1.5.0",
  10786. "source": {
  10787. "type": "git",
  10788. "url": "https://github.com/webmozart/assert.git",
  10789. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4"
  10790. },
  10791. "dist": {
  10792. "type": "zip",
  10793. "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4",
  10794. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4",
  10795. "shasum": ""
  10796. },
  10797. "require": {
  10798. "php": "^5.3.3 || ^7.0",
  10799. "symfony/polyfill-ctype": "^1.8"
  10800. },
  10801. "require-dev": {
  10802. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  10803. },
  10804. "type": "library",
  10805. "extra": {
  10806. "branch-alias": {
  10807. "dev-master": "1.3-dev"
  10808. }
  10809. },
  10810. "autoload": {
  10811. "psr-4": {
  10812. "Webmozart\\Assert\\": "src/"
  10813. }
  10814. },
  10815. "notification-url": "https://packagist.org/downloads/",
  10816. "license": [
  10817. "MIT"
  10818. ],
  10819. "authors": [
  10820. {
  10821. "name": "Bernhard Schussek",
  10822. "email": "bschussek@gmail.com"
  10823. }
  10824. ],
  10825. "description": "Assertions to validate method input/output with nice error messages.",
  10826. "keywords": [
  10827. "assert",
  10828. "check",
  10829. "validate"
  10830. ],
  10831. "time": "2019-08-24T08:43:50+00:00"
  10832. },
  10833. {
  10834. "name": "webmozart/path-util",
  10835. "version": "2.3.0",
  10836. "source": {
  10837. "type": "git",
  10838. "url": "https://github.com/webmozart/path-util.git",
  10839. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10840. },
  10841. "dist": {
  10842. "type": "zip",
  10843. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10844. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10845. "shasum": ""
  10846. },
  10847. "require": {
  10848. "php": ">=5.3.3",
  10849. "webmozart/assert": "~1.0"
  10850. },
  10851. "require-dev": {
  10852. "phpunit/phpunit": "^4.6",
  10853. "sebastian/version": "^1.0.1"
  10854. },
  10855. "type": "library",
  10856. "extra": {
  10857. "branch-alias": {
  10858. "dev-master": "2.3-dev"
  10859. }
  10860. },
  10861. "autoload": {
  10862. "psr-4": {
  10863. "Webmozart\\PathUtil\\": "src/"
  10864. }
  10865. },
  10866. "notification-url": "https://packagist.org/downloads/",
  10867. "license": [
  10868. "MIT"
  10869. ],
  10870. "authors": [
  10871. {
  10872. "name": "Bernhard Schussek",
  10873. "email": "bschussek@gmail.com"
  10874. }
  10875. ],
  10876. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10877. "time": "2015-12-17T08:42:14+00:00"
  10878. },
  10879. {
  10880. "name": "zaporylie/composer-drupal-optimizations",
  10881. "version": "1.1.0",
  10882. "source": {
  10883. "type": "git",
  10884. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  10885. "reference": "173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8"
  10886. },
  10887. "dist": {
  10888. "type": "zip",
  10889. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8",
  10890. "reference": "173c198fd7c9aefa5e5b68cd755ee63eb0abf7e8",
  10891. "shasum": ""
  10892. },
  10893. "require": {
  10894. "composer-plugin-api": "^1.1"
  10895. },
  10896. "require-dev": {
  10897. "composer/composer": "^1.6",
  10898. "phpunit/phpunit": "^6"
  10899. },
  10900. "type": "composer-plugin",
  10901. "extra": {
  10902. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  10903. },
  10904. "autoload": {
  10905. "psr-4": {
  10906. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  10907. }
  10908. },
  10909. "notification-url": "https://packagist.org/downloads/",
  10910. "license": [
  10911. "GPL-2.0-or-later"
  10912. ],
  10913. "authors": [
  10914. {
  10915. "name": "Jakub Piasecki",
  10916. "email": "jakub@piaseccy.pl"
  10917. }
  10918. ],
  10919. "description": "Composer plugin to improve composer performance for Drupal projects",
  10920. "time": "2019-02-20T10:00:17+00:00"
  10921. },
  10922. {
  10923. "name": "zendframework/zend-diactoros",
  10924. "version": "1.8.7",
  10925. "source": {
  10926. "type": "git",
  10927. "url": "https://github.com/zendframework/zend-diactoros.git",
  10928. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b"
  10929. },
  10930. "dist": {
  10931. "type": "zip",
  10932. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  10933. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  10934. "shasum": ""
  10935. },
  10936. "require": {
  10937. "php": "^5.6 || ^7.0",
  10938. "psr/http-message": "^1.0"
  10939. },
  10940. "provide": {
  10941. "psr/http-message-implementation": "1.0"
  10942. },
  10943. "require-dev": {
  10944. "ext-dom": "*",
  10945. "ext-libxml": "*",
  10946. "php-http/psr7-integration-tests": "dev-master",
  10947. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  10948. "zendframework/zend-coding-standard": "~1.0"
  10949. },
  10950. "type": "library",
  10951. "extra": {
  10952. "branch-alias": {
  10953. "dev-release-1.8": "1.8.x-dev"
  10954. }
  10955. },
  10956. "autoload": {
  10957. "files": [
  10958. "src/functions/create_uploaded_file.php",
  10959. "src/functions/marshal_headers_from_sapi.php",
  10960. "src/functions/marshal_method_from_sapi.php",
  10961. "src/functions/marshal_protocol_version_from_sapi.php",
  10962. "src/functions/marshal_uri_from_sapi.php",
  10963. "src/functions/normalize_server.php",
  10964. "src/functions/normalize_uploaded_files.php",
  10965. "src/functions/parse_cookie_header.php"
  10966. ],
  10967. "psr-4": {
  10968. "Zend\\Diactoros\\": "src/"
  10969. }
  10970. },
  10971. "notification-url": "https://packagist.org/downloads/",
  10972. "license": [
  10973. "BSD-2-Clause"
  10974. ],
  10975. "description": "PSR HTTP Message implementations",
  10976. "homepage": "https://github.com/zendframework/zend-diactoros",
  10977. "keywords": [
  10978. "http",
  10979. "psr",
  10980. "psr-7"
  10981. ],
  10982. "time": "2019-08-06T17:53:53+00:00"
  10983. },
  10984. {
  10985. "name": "zendframework/zend-escaper",
  10986. "version": "2.6.1",
  10987. "source": {
  10988. "type": "git",
  10989. "url": "https://github.com/zendframework/zend-escaper.git",
  10990. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  10991. },
  10992. "dist": {
  10993. "type": "zip",
  10994. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  10995. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  10996. "shasum": ""
  10997. },
  10998. "require": {
  10999. "php": "^5.6 || ^7.0"
  11000. },
  11001. "require-dev": {
  11002. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11003. "zendframework/zend-coding-standard": "~1.0.0"
  11004. },
  11005. "type": "library",
  11006. "extra": {
  11007. "branch-alias": {
  11008. "dev-master": "2.6.x-dev",
  11009. "dev-develop": "2.7.x-dev"
  11010. }
  11011. },
  11012. "autoload": {
  11013. "psr-4": {
  11014. "Zend\\Escaper\\": "src/"
  11015. }
  11016. },
  11017. "notification-url": "https://packagist.org/downloads/",
  11018. "license": [
  11019. "BSD-3-Clause"
  11020. ],
  11021. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  11022. "keywords": [
  11023. "ZendFramework",
  11024. "escaper",
  11025. "zf"
  11026. ],
  11027. "time": "2019-09-05T20:03:20+00:00"
  11028. },
  11029. {
  11030. "name": "zendframework/zend-feed",
  11031. "version": "2.12.0",
  11032. "source": {
  11033. "type": "git",
  11034. "url": "https://github.com/zendframework/zend-feed.git",
  11035. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  11036. },
  11037. "dist": {
  11038. "type": "zip",
  11039. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  11040. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  11041. "shasum": ""
  11042. },
  11043. "require": {
  11044. "ext-dom": "*",
  11045. "ext-libxml": "*",
  11046. "php": "^5.6 || ^7.0",
  11047. "zendframework/zend-escaper": "^2.5.2",
  11048. "zendframework/zend-stdlib": "^3.2.1"
  11049. },
  11050. "require-dev": {
  11051. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  11052. "psr/http-message": "^1.0.1",
  11053. "zendframework/zend-cache": "^2.7.2",
  11054. "zendframework/zend-coding-standard": "~1.0.0",
  11055. "zendframework/zend-db": "^2.8.2",
  11056. "zendframework/zend-http": "^2.7",
  11057. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  11058. "zendframework/zend-validator": "^2.10.1"
  11059. },
  11060. "suggest": {
  11061. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  11062. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  11063. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  11064. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  11065. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  11066. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  11067. },
  11068. "type": "library",
  11069. "extra": {
  11070. "branch-alias": {
  11071. "dev-master": "2.12.x-dev",
  11072. "dev-develop": "2.13.x-dev"
  11073. }
  11074. },
  11075. "autoload": {
  11076. "psr-4": {
  11077. "Zend\\Feed\\": "src/"
  11078. }
  11079. },
  11080. "notification-url": "https://packagist.org/downloads/",
  11081. "license": [
  11082. "BSD-3-Clause"
  11083. ],
  11084. "description": "provides functionality for consuming RSS and Atom feeds",
  11085. "keywords": [
  11086. "ZendFramework",
  11087. "feed",
  11088. "zf"
  11089. ],
  11090. "time": "2019-03-05T20:08:49+00:00"
  11091. },
  11092. {
  11093. "name": "zendframework/zend-stdlib",
  11094. "version": "3.2.1",
  11095. "source": {
  11096. "type": "git",
  11097. "url": "https://github.com/zendframework/zend-stdlib.git",
  11098. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  11099. },
  11100. "dist": {
  11101. "type": "zip",
  11102. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  11103. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  11104. "shasum": ""
  11105. },
  11106. "require": {
  11107. "php": "^5.6 || ^7.0"
  11108. },
  11109. "require-dev": {
  11110. "phpbench/phpbench": "^0.13",
  11111. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11112. "zendframework/zend-coding-standard": "~1.0.0"
  11113. },
  11114. "type": "library",
  11115. "extra": {
  11116. "branch-alias": {
  11117. "dev-master": "3.2.x-dev",
  11118. "dev-develop": "3.3.x-dev"
  11119. }
  11120. },
  11121. "autoload": {
  11122. "psr-4": {
  11123. "Zend\\Stdlib\\": "src/"
  11124. }
  11125. },
  11126. "notification-url": "https://packagist.org/downloads/",
  11127. "license": [
  11128. "BSD-3-Clause"
  11129. ],
  11130. "description": "SPL extensions, array utilities, error handlers, and more",
  11131. "keywords": [
  11132. "ZendFramework",
  11133. "stdlib",
  11134. "zf"
  11135. ],
  11136. "time": "2018-08-28T21:34:05+00:00"
  11137. }
  11138. ],
  11139. "packages-dev": [],
  11140. "aliases": [],
  11141. "minimum-stability": "dev",
  11142. "stability-flags": {
  11143. "drupal/bulkdelete": 20,
  11144. "drupal/domain_menu_access": 20,
  11145. "drupal/filefield_sources": 20,
  11146. "drupal/filter_perms": 20,
  11147. "drupal/maillog": 20,
  11148. "drupal/path_alias_xt": 20,
  11149. "drupal/synonyms": 20,
  11150. "drupal/toolbar_themes": 20,
  11151. "drupal/workflow": 20
  11152. },
  11153. "prefer-stable": true,
  11154. "prefer-lowest": false,
  11155. "platform": {
  11156. "php": ">=5.6"
  11157. },
  11158. "platform-dev": []
  11159. }