forked from drush-ops/drush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
122 lines (122 loc) · 4.3 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"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-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{ "name": "Moshe Weitzman", "email": "[email protected]" },
{ "name": "Owen Barton", "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",
"slack": "https://drupal.slack.com/messages/C62H9CWQM"
},
"bin": [
"drush"
],
"repositories": {
"drupal_org": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"php": ">=7.1.3",
"ext-dom": "*",
"chi-teck/drupal-code-generator": "^1.30.5",
"composer/semver": "^1.4",
"consolidation/config": "^1.2",
"consolidation/filter-via-dot-access-data": "^1",
"consolidation/robo": "^1 || ^2",
"consolidation/site-alias": "^3.0.0@stable",
"consolidation/site-process": "^2.1 || ^4",
"grasmash/yaml-expander": "^1.1.1",
"league/container": "~2",
"psr/log": "~1.0",
"psy/psysh": "~0.6",
"symfony/event-dispatcher": "^3.4 || ^4.0",
"symfony/finder": "^3.4 || ^4.0",
"symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
"symfony/yaml": "^3.4 || ^4.0",
"webflo/drupal-finder": "^1.2",
"webmozart/path-util": "^2.1.0"
},
"require-dev": {
"composer/installers": "^1.7",
"cweagans/composer-patches": "~1.0",
"drupal/core-recommended": "^8.8",
"drupal/alinks": "1.0.0",
"g1a/composer-test-scenarios": "^3",
"lox/xhprof": "dev-master",
"phpunit/phpunit": "^4.8.36 || ^6.1",
"squizlabs/php_codesniffer": "^2.7 || ^3",
"vlucas/phpdotenv": "^2.4"
},
"autoload": {
"psr-4": {
"Drush\\": "src/",
"Drush\\Internal\\": "src/internal-forks"
}
},
"autoload-dev": {
"psr-4": {
"Unish\\": "tests/unish"
},
"files": ["tests/load.environment.php"]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"process-timeout": 9600,
"platform": {
"php": "7.1.3"
}
},
"scripts": {
"cs": "phpcs",
"cbf": "phpcbf",
"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"
],
"test": [
"@lint",
"@phpunit",
"@cs"
],
"api": "PATH=$HOME/bin:$PATH sami.phar --ansi update sami-config.php",
"sami-install": "mkdir -p $HOME/bin && curl --output $HOME/bin/sami.phar http://get.sensiolabs.org/sami.phar && chmod +x $HOME/bin/sami.phar",
"sut": "./drush --uri=dev",
"sut:si": "./drush site:install testing --uri=dev --sites-subdir=dev --db-url=${UNISH_DB_URL:-mysql://root:password@mariadb}/unish_dev -v",
"phpunit": "php -d sendmail_path='true' vendor/bin/phpunit --colors=always --configuration tests",
"unit": "composer phpunit -- --testsuite unit",
"integration": "composer phpunit -- --testsuite integration",
"functional": "composer phpunit -- --testsuite functional"
},
"extra": {
"installer-paths": {
"sut/core": ["type:drupal-core"],
"sut/libraries/{$name}": ["type:drupal-library"],
"sut/modules/unish/{$name}": ["drupal/devel"],
"sut/themes/unish/{$name}": ["drupal/empty_theme"],
"sut/modules/contrib/{$name}": ["type:drupal-module"],
"sut/profiles/contrib/{$name}": ["type:drupal-profile"],
"sut/themes/contrib/{$name}": ["type:drupal-theme"],
"sut/drush/contrib/{$name}": ["type:drupal-drush"]
},
"branch-alias": {
"dev-master": "10.x-dev"
}
}
}