-
Notifications
You must be signed in to change notification settings - Fork 118
/
composer.json
62 lines (62 loc) · 1.54 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
{
"name": "wp-cli/php-cli-tools",
"type": "library",
"description": "Console utilities for PHP",
"keywords": ["console", "cli"],
"homepage": "http://github.com/wp-cli/php-cli-tools",
"license": "MIT",
"authors": [
{
"name": "Daniel Bachhuber",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "James Logsdon",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">= 5.6.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"wp-cli/wp-cli-tests": "^4"
},
"extra": {
"branch-alias": {
"dev-master": "0.11.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-0": {
"cli": "lib/"
},
"files": [
"lib/cli/cli.php"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"johnpbloch/wordpress-core-installer": true
}
},
"scripts": {
"behat": "run-behat-tests",
"behat-rerun": "rerun-behat-tests",
"lint": "run-linter-tests",
"phpcs": "run-phpcs-tests",
"phpunit": "run-php-unit-tests",
"prepare-tests": "install-package-tests",
"test": [
"@lint",
"@phpcs",
"@phpunit",
"@behat"
]
}
}