Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-10-13 09:20:10 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-10-16 09:45:07 +0300
commitbe3a46038fe570d815b8124b5d2b3e42e7af699b (patch)
treef19c79caddcbcf286e057b66980065071ad083d6 /composer.json
parent7aeb0501246ed961427c37d5f8a12c3802e1ed43 (diff)
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.json5
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"
}
}