Upgraded drupal core with security updates
[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+",
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",
40     "consolidation/output-formatters": "~3",
41     "symfony/yaml": "~2.3",
42     "symfony/var-dumper": "~2.7",
43     "symfony/console": "~2.7",
44     "symfony/event-dispatcher": "~2.7",
45     "symfony/finder": "~2.7",
46     "pear/console_table": "~1.3.0",
47     "phpdocumentor/reflection-docblock": "^2.0",
48     "webmozart/path-util": "~2"
49   },
50   "require-dev": {
51     "phpunit/phpunit": "4.*",
52     "symfony/process": "2.7.*"
53   },
54   "suggest": {
55       "ext-pcntl": "*",
56       "drush/config-extra": "Provides configuration workflow commands, such as config-merge."
57   },
58   "autoload": {
59     "psr-0": {
60       "Drush":        "lib/",
61       "Consolidation": "lib/"
62     }
63   },
64   "autoload-dev": {
65     "psr-0": {
66       "Unish":        "tests/"
67     }
68   },
69   "extra": {
70     "branch-alias": {
71         "dev-master": "8.0.x-dev"
72     }
73   }
74 }