Specify cache locations for build tools

This commit is contained in:
Ben Ramsey
2020-02-08 13:13:47 -06:00
parent 0bff9e8660
commit f965293da9
7 changed files with 37 additions and 17 deletions
+4 -4
View File
@@ -71,11 +71,11 @@
},
"scripts": {
"lint": "parallel-lint src tests",
"phpcbf": "phpcbf -vpw",
"phpcs": "phpcs",
"phpcbf": "phpcbf -vpw --cache=build/cache/phpcs.cache",
"phpcs": "phpcs --cache=build/cache/phpcs.cache",
"phpstan": [
"phpstan analyse -c tests/phpstan.neon src --level max --no-progress",
"phpstan analyse -c tests/phpstan-tests.neon tests --level max --no-progress"
"phpstan analyse -c tests/phpstan.neon --no-progress",
"phpstan analyse -c tests/phpstan-tests.neon --no-progress"
],
"psalm": "psalm --show-info=false --config=tests/psalm.xml",
"phpunit": "phpunit --verbose --colors=always",