-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
45 lines (45 loc) · 1.29 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
{
"name": "wp-cli/automated-tests",
"description": "Automated tests across WP-CLI and all bundled packages.",
"keywords": [
"cli",
"wordpress"
],
"homepage": "https://wp-cli.org",
"license": "MIT",
"require": {
"php": "^5.6 | ^7 | ^8",
"wp-cli/wp-cli": "dev-main",
"wp-cli/wp-cli-bundle": "dev-main",
"wp-cli/wp-cli-tests": "^4"
},
"config": {
"process-timeout": 7200,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/bootstrap-test-suite",
"bin/run-test-suite",
"bin/test-phar",
"bin/test-source"
],
"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": "run-test-suite"
},
"support": {
"issues": "https://github.com/wp-cli/automated-tests/issues",
"source": "https://github.com/wp-cli/automated-tests",
"docs": "https://make.wordpress.org/cli/handbook/"
}
}