This repository has been archived by the owner on Jun 26, 2019. It is now read-only.
forked from drush-ops/drush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.34 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "drush/drush",
"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.",
"homepage": "http://www.drush.org",
"license": "GPL-2.0+",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{ "name": "Moshe Weitzman", "email": "[email protected]" },
{ "name": "Owen Barton", "email": "[email protected]" },
{ "name": "Mark Sonnabaum", "email": "[email protected]" },
{ "name": "Antoine Beaupré", "email": "[email protected]" },
{ "name": "Greg Anderson", "email": "[email protected]" },
{ "name": "Jonathan Araña Cruz", "email": "[email protected]" },
{ "name": "Jonathan Hedstrom", "email": "[email protected]" },
{ "name": "Christopher Gervais", "email": "[email protected]" },
{ "name": "Dave Reid", "email": "[email protected]" },
{ "name": "Damian Lee", "email": "[email protected]" }
],
"support": {
"forum": "http://drupal.stackexchange.com/questions/tagged/drush",
"irc": "irc://irc.freenode.org/drush"
},
"bin": [
"drush",
"drush.launcher",
"drush.php",
"drush.complete.sh"
],
"require": {
"php": ">=5.6.0",
"psr/log": "~1.0",
"psy/psysh": "~0.6",
"league/container": "~2",
"consolidation/robo": "~1",
"symfony/config": "~2.2",
"consolidation/annotated-command": "~2",
"consolidation/output-formatters": "~3",
"symfony/yaml": "~2.3",
"symfony/var-dumper": "~2.7",
"symfony/console": "~2.7",
"symfony/event-dispatcher": "~2.7",
"symfony/finder": "~2.7",
"pear/console_table": "~1.3.0",
"phpdocumentor/reflection-docblock": "^2.0",
"webmozart/path-util": "~2",
"sebastian/version": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"symfony/process": "2.7.*"
},
"suggest": {
"ext-pcntl": "*",
"drush/config-extra": "Provides configuration workflow commands, such as config-merge."
},
"autoload": {
"psr-0": {
"Drush": "lib/"
},
"classmap": [
"lib/Drush.php"
]
},
"autoload-dev": {
"psr-0": {
"Unish": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "9.0.x-dev"
}
}
}