diff options
author | Joas Schilling <coding@schilljs.com> | 2024-09-30 23:53:53 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-09-30 23:57:15 +0200 |
commit | 95bafb49804ba893e40f3f367c55ef9b0fa9e963 (patch) | |
tree | 2869c40977db2229b6d3e697d46d5a230efee1f0 /composer.json | |
parent | 99d507c2593c6c60081ff16586ba3b68237ca0b0 (diff) | |
download | nextcloud-server-95bafb49804ba893e40f3f367c55ef9b0fa9e963.tar.gz nextcloud-server-95bafb49804ba893e40f3f367c55ef9b0fa9e963.zip |
ci: Improve usability of running different psalm modes locally
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/composer.json b/composer.json index d54807e9c8e..86908c10c88 100644 --- a/composer.json +++ b/composer.json @@ -59,7 +59,8 @@ "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 --no-cache --threads=$(nproc)", - "psalm:ci": "psalm --no-cache --threads=1", + "psalm:ocp": "psalm --no-cache --threads=$(nproc) -c psalm-ocp.xml", + "psalm:security": "psalm --no-cache --threads=$(nproc) --taint-analysis --ignore-baseline", "psalm:update-baseline": "psalm --no-cache --threads=$(nproc) --update-baseline", "serve": [ "Composer\\Config::disableProcessTimeout", |