We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 247dfd2 commit cc76481Copy full SHA for cc76481
2 files changed
.gitignore
@@ -2,6 +2,7 @@
2
wp-cli.local.yml
3
node_modules/
4
vendor/
5
+build/
6
*.zip
7
*.tar.gz
8
composer.lock
composer.json
@@ -23,7 +23,8 @@
23
"sort-packages": true,
24
"allow-plugins": {
25
"dealerdirect/phpcodesniffer-composer-installer": true,
26
- "johnpbloch/wordpress-core-installer": true
+ "johnpbloch/wordpress-core-installer": true,
27
+ "phpstan/extension-installer": true
28
},
29
"lock": false
30
@@ -54,12 +55,14 @@
54
55
"behat-rerun": "rerun-behat-tests",
56
"lint": "run-linter-tests",
57
"phpcs": "run-phpcs-tests",
58
+ "phpstan": "run-phpstan-tests",
59
"phpcbf": "run-phpcbf-cleanup",
60
"phpunit": "run-php-unit-tests",
61
"prepare-tests": "install-package-tests",
62
"test": [
63
"@lint",
64
"@phpcs",
65
+ "@phpstan",
66
"@phpunit",
67
"@behat"
68
]
0 commit comments