54ea0ca38b335c2256c37650399773022c63869c
[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": "dev",
7   "prefer-stable": true,
8   "authors": [
9     { "name": "Moshe Weitzman", "email": "weitzman@tejasa.com" },
10     { "name": "Owen Barton", "email": "drupal@owenbarton.com" },
11     { "name": "Greg Anderson", "email": "greg.1.anderson@greenknowe.org" },
12     { "name": "Jonathan AraƱa Cruz", "email": "jonhattan@faita.net" },
13     { "name": "Jonathan Hedstrom", "email": "jhedstrom@gmail.com" },
14     { "name": "Christopher Gervais", "email": "chris@ergonlogic.com" },
15     { "name": "Dave Reid", "email": "dave@davereid.net" },
16     { "name": "Damian Lee", "email": "damiankloip@googlemail.com" }
17   ],
18   "support": {
19     "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
20     "irc": "irc://irc.freenode.org/drush",
21     "slack": "https://drupal.slack.com/messages/C62H9CWQM"
22   },
23   "bin": [
24     "drush"
25   ],
26   "require": {
27     "php": ">=5.6.0",
28     "ext-dom": "*",
29     "chi-teck/drupal-code-generator": "^1.21.0",
30     "composer/semver": "^1.4",
31     "consolidation/annotated-command": "^2.8.1",
32     "consolidation/config": "^1.0.9",
33     "consolidation/output-formatters": "^3.1.12",
34     "consolidation/robo": "^1.1.5",
35     "grasmash/yaml-expander": "^1.1.1",
36     "league/container": "~2",
37     "psr/log": "~1.0",
38     "psy/psysh": "~0.6",
39     "sebastian/version": "^1|^2",
40     "symfony/config": "~2.2|^3",
41     "symfony/console": "~2.7|^3",
42     "symfony/event-dispatcher": "~2.7|^3",
43     "symfony/finder": "~2.7|^3",
44     "symfony/process": "~2.7|^3",
45     "symfony/var-dumper": "~2.7|^3",
46     "symfony/yaml": "~2.3|^3",
47     "webflo/drupal-finder": "^1.1",
48     "webmozart/path-util": "^2.1.0"
49   },
50   "require-dev": {
51     "lox/xhprof": "dev-master",
52     "phpunit/phpunit": "^4.8|^5.5.4",
53     "squizlabs/php_codesniffer": "^2.7"
54   },
55   "autoload": {
56     "psr-4": {
57       "Drush\\":            "src/",
58       "Drush\\Internal\\":  "internal-copy/",
59       "Unish\\":            "tests/"
60     }
61   },
62   "config": {
63     "optimize-autoloader": true,
64     "preferred-install": "dist",
65     "sort-packages": true,
66     "platform": {
67       "php": "5.6"
68     }
69   },
70   "scripts": {
71     "cs": "phpcs -n --standard=PSR2 src tests examples",
72     "cbf": "phpcbf -n --standard=PSR2 src tests examples",
73     "lint": [
74       "find includes -name '*.inc' -print0 | xargs -0 -n1 php -l",
75       "find src -name '*.php' -print0 | xargs -0 -n1 php -l",
76       "find tests -name '*.php' -print0 | xargs -0 -n1 php -l"
77     ],
78     "api": "PATH=$HOME/bin:$PATH sami.phar --ansi update sami-config.php",
79     "sami-install": "mkdir -p $HOME/bin && curl --output $HOME/bin/sami.phar http://get.sensiolabs.org/sami.phar && chmod +x $HOME/bin/sami.phar",
80     "isolation": "cd isolation && vendor/bin/phpunit --colors=always",
81     "post-update-cmd": "cd isolation && composer update"
82   },
83   "extra": {
84     "branch-alias": {
85         "dev-master": "9.0.x-dev"
86     }
87   }
88 }