diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2020-07-10 13:48:46 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2020-08-18 08:58:19 +0200 |
commit | 6ba55d78dcc786e7e4fffdb746086d8be4fbef19 (patch) | |
tree | a4396b001990a04d150d27bb1f6543778de2ac30 /composer.json | |
parent | fd6cdbcb042bdee432b41bdca7db59a59f25a3ad (diff) | |
download | nextcloud-server-6ba55d78dcc786e7e4fffdb746086d8be4fbef19.tar.gz nextcloud-server-6ba55d78dcc786e7e4fffdb746086d8be4fbef19.zip |
Add psalm as composer dependency
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
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 27be9530b3b..088ee20e105 100644 --- a/composer.json +++ b/composer.json @@ -16,11 +16,12 @@ "ext-pdo": "*" }, "require-dev": { - "nextcloud/coding-standard": "^0.3.0" + "nextcloud/coding-standard": "^0.3.0", + "psalm/phar": "^3.12" }, "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/.phan/*' -print0 | xargs -0 -n1 php -l" + "lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/.phan/*' -not -path './build/stubs/*' -print0 | xargs -0 -n1 php -l" } } |