diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-01-06 14:19:06 +0100 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-01-06 14:42:37 +0100 |
commit | 47c9c34cca22602fb609de6c0e1d32ec17a9e7fe (patch) | |
tree | d467879562a4286df5ade88403702038898b4b97 /vendor-bin/psalm/composer.json | |
parent | 63a9bc2aacf829563ac74abe29d4edf6ff31b8b1 (diff) | |
download | nextcloud-server-47c9c34cca22602fb609de6c0e1d32ec17a9e7fe.tar.gz nextcloud-server-47c9c34cca22602fb609de6c0e1d32ec17a9e7fe.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 'vendor-bin/psalm/composer.json')
-rw-r--r-- | vendor-bin/psalm/composer.json | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/vendor-bin/psalm/composer.json b/vendor-bin/psalm/composer.json index f3494d8ac18..c419bf58418 100644 --- a/vendor-bin/psalm/composer.json +++ b/vendor-bin/psalm/composer.json @@ -1,10 +1,11 @@ { - "config": { - "platform": { - "php": "7.3" - } - }, "require": { - "vimeo/psalm": "4.8.1" + "nikic/php-parser": "^4.13", + "vimeo/psalm": "^4.17" + }, + "config": { + "allow-plugins": { + "composer/package-versions-deprecated": true + } } } |