diff options
author | jld3103 <jld3103yt@gmail.com> | 2023-07-03 11:26:30 +0200 |
---|---|---|
committer | jld3103 <jld3103yt@gmail.com> | 2023-07-03 11:26:30 +0200 |
commit | ab738a5b8144775771ec6f02e8defe2c4752bc1f (patch) | |
tree | 2a55ff97b41182f55e14808ab8f1f205c7e0db3e /composer.json | |
parent | b2f01b72fe402ca3ee8d0059ff266d1893d53d21 (diff) | |
download | nextcloud-server-ab738a5b8144775771ec6f02e8defe2c4752bc1f.tar.gz nextcloud-server-ab738a5b8144775771ec6f02e8defe2c4752bc1f.zip |
psalm: Disable cache
Signed-off-by: jld3103 <jld3103yt@gmail.com>
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/composer.json b/composer.json index 603bf86b7c0..b70cfcb933b 100644 --- a/composer.json +++ b/composer.json @@ -47,8 +47,8 @@ "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 --threads=$(nproc)", - "psalm:ci": "psalm --threads=1", - "psalm:update-baseline": "psalm --threads=$(nproc) --update-baseline" + "psalm": "psalm --no-cache --threads=$(nproc)", + "psalm:ci": "psalm --no-cache --threads=1", + "psalm:update-baseline": "psalm --no-cache --threads=$(nproc) --update-baseline" } } |