summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-01-06 14:19:06 +0100
committerCarl Schwan <carl@carlschwan.eu>2022-01-27 17:20:00 +0100
commitd69531ac8ecabfaa2c915d5266d09971c0129a77 (patch)
tree876d8e19059e7b424cc29ef49167cdf9bf47db69 /composer.json
parent0c631830bba9ff49e5f281699cf2514ea2e4d54d (diff)
downloadnextcloud-server-d69531ac8ecabfaa2c915d5266d09971c0129a77.tar.gz
nextcloud-server-d69531ac8ecabfaa2c915d5266d09971c0129a77.zip
Fix psalm not running
The issue was that we were using psalm/phar instead of vimeo/psalm. This caused issue with the custom psalm plugin in buildd/psalm. This is using the opportunity to also update the psalm version from 3.8 to 3.17 and the php-cs-fixer too. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/composer.json b/composer.json
index b17734c8591..4e191745592 100644
--- a/composer.json
+++ b/composer.json
@@ -42,7 +42,7 @@
"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",
- "psalm": "psalm",
- "psalm:update-baseline": "psalm --update-baseline --set-baseline=build/psalm-baseline.xml"
+ "psalm": "psalm --threads=1",
+ "psalm:update-baseline": "psalm --threads=1 --update-baseline --set-baseline=build/psalm-baseline.xml"
}
}