forked from drush-ops/drush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
86 lines (86 loc) · 2.82 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
76
77
78
79
80
81
82
83
84
85
86
{
"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": "dev",
"prefer-stable": true,
"authors": [
{ "name": "Moshe Weitzman", "email": "weitzman@tejasa.com" },
{ "name": "Owen Barton", "email": "drupal@owenbarton.com" },
{ "name": "Greg Anderson", "email": "greg.1.anderson@greenknowe.org" },
{ "name": "Jonathan Araña Cruz", "email": "jonhattan@faita.net" },
{ "name": "Jonathan Hedstrom", "email": "jhedstrom@gmail.com" },
{ "name": "Christopher Gervais", "email": "chris@ergonlogic.com" },
{ "name": "Dave Reid", "email": "dave@davereid.net" },
{ "name": "Damian Lee", "email": "damiankloip@googlemail.com" }
],
"support": {
"forum": "http://drupal.stackexchange.com/questions/tagged/drush",
"irc": "irc://irc.freenode.org/drush",
"slack": "https://drupal.slack.com/messages/C62H9CWQM"
},
"bin": [
"drush"
],
"require": {
"php": ">=5.6.0",
"ext-dom": "*",
"chi-teck/drupal-code-generator": "^1.17.3",
"composer/semver": "^1.4",
"consolidation/annotated-command": "^2.8.1",
"consolidation/config": "^1.0.7",
"consolidation/output-formatters": "^3.1.12",
"consolidation/robo": "^1.1.5",
"grasmash/yaml-expander": "^1.1.1",
"league/container": "~2",
"pear/console_table": "~1.3.0",
"psr/log": "~1.0",
"psy/psysh": "~0.6",
"sebastian/version": "^1|^2",
"symfony/config": "~2.2|^3",
"symfony/console": "~2.7|^3",
"symfony/event-dispatcher": "~2.7|^3",
"symfony/finder": "~2.7|^3",
"symfony/process": "~2.7|^3",
"symfony/var-dumper": "~2.7|^3",
"symfony/yaml": "~2.3|^3",
"webflo/drupal-finder": "^1.1",
"webmozart/path-util": "^2.1.0"
},
"require-dev": {
"lox/xhprof": "dev-master",
"phpunit/phpunit": "^4.8|^5.5.4",
"squizlabs/php_codesniffer": "^2.7"
},
"autoload": {
"psr-4": {
"Drush\\": "src/",
"Unish\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "5.6"
}
},
"scripts": {
"cs": "phpcs -n src tests",
"cbf": "phpcbf -n src tests",
"lint": [
"find includes -name '*.inc' -print0 | xargs -0 -n1 php -l",
"find src -name '*.php' -print0 | xargs -0 -n1 php -l",
"find tests -name '*.php' -print0 | xargs -0 -n1 php -l"
],
"isolation": "cd isolation && vendor/bin/phpunit --colors=always",
"post-update-cmd": "cd isolation && composer update"
},
"extra": {
"branch-alias": {
"dev-master": "9.0.x-dev"
}
}
}