diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-10-13 08:20:10 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-10-13 17:55:37 +0200 |
commit | 081e9ac47f591c3bea2bb0b8f98938757e8d71c7 (patch) | |
tree | 803a9060fb0aae940b194d27b64a62245f4c8423 /composer.json | |
parent | a70f283734ab0611589221bb3f9188e9fce24327 (diff) | |
download | nextcloud-server-081e9ac47f591c3bea2bb0b8f98938757e8d71c7.tar.gz nextcloud-server-081e9ac47f591c3bea2bb0b8f98938757e8d71c7.zip |
Use own psalm instead of a global one
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/composer.json b/composer.json index 64e4f3d835a..702b739306e 100644 --- a/composer.json +++ b/composer.json @@ -17,11 +17,12 @@ }, "require-dev": { "nextcloud/coding-standard": "^0.3.0", - "psalm/phar": "^3.12" + "vimeo/psalm": "3.15" }, "scripts": { "cs:fix": "php-cs-fixer fix", "cs:check": "php-cs-fixer fix --dry-run --diff", - "lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/stubs/*' -print0 | xargs -0 -n1 php -l" + "lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/stubs/*' -print0 | xargs -0 -n1 php -l", + "psalm": "psalm" } } |