forked from pantheon-systems/terminus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 2.6 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
{
"name": "pantheon-systems/terminus",
"description": "A command line interface for Pantheon",
"keywords": [ "cli", "pantheon", "terminus", "drupal", "wordpress" ],
"homepage": "https://pantheon.io",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=5.5.38",
"composer/semver": "^1.4",
"consolidation/output-formatters": "^3.2",
"consolidation/robo": "^1.4.4",
"guzzlehttp/guzzle": "^6.2",
"psy/psysh": "^0.8",
"symfony/console": "^3.3",
"symfony/finder": "~2.7|^3.2",
"symfony/process": "~2.7|^3.2",
"symfony/yaml": "~2.1|^3.2"
},
"autoload": {
"psr-4": {
"Pantheon\\Terminus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pantheon\\Terminus\\UnitTests\\": "tests/unit_tests/",
"Pantheon\\Terminus\\FeatureTests\\": "tests/features/bootstrap/"
},
"classmap": ["scripts/UpdateClassLists.php"]
},
"bin": [
"bin/terminus"
],
"scripts": {
"phar:install-tools": [
"gem install mime-types -v 2.6.2",
"curl -LSs https://box-project.github.io/box2/installer.php | php",
"mkdir -p tools",
"mv -f box.phar tools/box"
],
"phar:build": "env PATH=tools:$PATH box build",
"update-class-lists": ["\\Terminus\\UpdateClassLists::update"],
"behat": "SHELL_INTERACTIVE=true behat --colors --config tests/config/behat.yml --suite=default",
"cbf": "phpcbf --standard=PSR2 -n tests/unit_tests/* bin/terminus src/*",
"clover": "phpunit -c tests/config/phpunit.xml.dist --coverage-clover tests/logs/clover.xml",
"coveralls": "php vendor/bin/php-coveralls -v -c tests/config/coveralls.yml",
"cs": "phpcs --standard=PSR2 --severity=1 -n tests/unit_tests bin/terminus src",
"docs": "php scripts/make-docs.php",
"lint": "@cs",
"phpunit": "SHELL_INTERACTIVE=true phpunit --colors=always -c tests/config/phpunit.xml.dist --debug",
"functional": "phpunit --colors=always -c tests/config/functional.phpunit.xml.dist --debug",
"test": "set -ex ; composer cs ; composer phpunit ; composer behat ; composer functional"
},
"require-dev": {
"behat/behat": "^3.2.2",
"php-vcr/php-vcr": "^1.4",
"phpunit/phpunit": "^4.8.36",
"php-coveralls/php-coveralls": "^2.1",
"sebastian/phpcpd": "^2.0",
"squizlabs/php_codesniffer": "^2.7"
},
"config": {
"process-timeout": 3600,
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "5.5.38"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}