We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4de3ea0 commit aab1ff9Copy full SHA for aab1ff9
composer.json
@@ -22,10 +22,11 @@
22
},
23
"files": [ "cache-command.php" ]
24
25
- "require": {},
+ "require": {
26
+ "wp-cli/wp-cli": "^2"
27
+ },
28
"require-dev": {
- "behat/behat": "~2.5",
- "wp-cli/wp-cli": "*"
29
+ "wp-cli/wp-cli-tests": "^0"
30
31
"extra": {
32
"branch-alias": {
@@ -49,5 +50,18 @@
49
50
"transient set",
51
"transient type"
52
]
53
54
+ "scripts": {
55
+ "lint": "run-linter-tests",
56
+ "phpcs": "run-phpcs-tests",
57
+ "phpunit": "run-php-unit-tests",
58
+ "behat": "run-behat-tests",
59
+ "prepare-tests": "install-package-tests",
60
+ "test": [
61
+ "@lint",
62
+ "@phpcs",
63
+ "@phpunit",
64
+ "@behat"
65
+ ]
66
}
67
0 commit comments