Security update to Drupal 8.4.6
[yaffs-website] / vendor / drush / drush / composer.json
1 {
2   "name": "drush/drush",
3   "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.",
4   "homepage": "http://www.drush.org",
5   "license": "GPL-2.0-or-later",
6   "minimum-stability": "stable",
7   "prefer-stable": true,
8   "authors": [
9     { "name": "Moshe Weitzman", "email": "weitzman@tejasa.com" },
10     { "name": "Owen Barton", "email": "drupal@owenbarton.com" },
11     { "name": "Mark Sonnabaum", "email": "marksonnabaum@gmail.com" },
12     { "name": "Antoine Beaupré", "email": "anarcat@koumbit.org" },
13     { "name": "Greg Anderson", "email": "greg.1.anderson@greenknowe.org" },
14     { "name": "Jonathan Araña Cruz", "email": "jonhattan@faita.net" },
15     { "name": "Jonathan Hedstrom", "email": "jhedstrom@gmail.com" },
16     { "name": "Christopher Gervais", "email": "chris@ergonlogic.com" },
17     { "name": "Dave Reid", "email": "dave@davereid.net" },
18     { "name": "Damian Lee", "email": "damiankloip@googlemail.com" }
19   ],
20   "support": {
21     "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
22     "irc": "irc://irc.freenode.org/drush"
23   },
24   "bin": [
25     "drush",
26     "drush.launcher",
27     "drush.php",
28     "drush.complete.sh"
29   ],
30   "config": {
31     "platform": {
32       "php": "5.4.5"
33     }
34   },
35   "require": {
36     "php": ">=5.4.5",
37     "psr/log": "~1.0",
38     "psy/psysh": "~0.6",
39     "consolidation/annotated-command": "^2.8.1",
40     "consolidation/output-formatters": "~3",
41     "symfony/yaml": "~2.3|^3",
42     "symfony/var-dumper": "~2.7|^3",
43     "symfony/console": "~2.7|^3",
44     "symfony/event-dispatcher": "~2.7|^3",
45     "symfony/finder": "~2.7|^3",
46     "pear/console_table": "~1.3.1",
47     "webmozart/path-util": "~2"
48   },
49   "require-dev": {
50     "symfony/var-dumper": "~2.7",
51     "symfony/console": "~2.7",
52     "symfony/event-dispatcher": "~2.7",
53     "symfony/finder": "~2.7",
54     "symfony/yaml": "~2.3",
55     "phpunit/phpunit": "4.*",
56     "symfony/process": "2.7.*"
57   },
58   "suggest": {
59       "ext-pcntl": "*",
60       "drush/config-extra": "Provides configuration workflow commands, such as config-merge."
61   },
62   "autoload": {
63     "psr-0": {
64       "Drush":        "lib/",
65       "Consolidation": "lib/"
66     }
67   },
68   "autoload-dev": {
69     "psr-0": {
70       "Unish":        "tests/"
71     }
72   },
73   "scripts": {
74     "lint": [
75       "find includes -name '*.inc' -print0 | xargs -0 -n1 php -l"
76     ]
77   },
78   "extra": {
79     "branch-alias": {
80         "dev-master": "8.0.x-dev"
81     }
82   }
83 }