From 3362867b8044f7b685e6280151fce5519d7207ca Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 11 Dec 2023 08:35:56 +0100 Subject: update to 1.6.7 --- composer.json | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 68c1a44..f23d2de 100644 --- a/composer.json +++ b/composer.json @@ -50,9 +50,7 @@ }, "require-dev": { "phpunit/phpunit": "^8.5 || ^9.6.10", - "psalm/plugin-phpunit": "^0.18.4", - "symplify/easy-coding-standard": "^11.5.0", - "vimeo/psalm": "^4.30" + "symplify/easy-coding-standard": "^12.0.8" }, "conflict": { "phpunit/phpunit": "<8.0" @@ -62,8 +60,8 @@ "Mockery\\": "library/Mockery" }, "files": [ - "library/helpers.php", - "library/Mockery.php" + "library/helpers.php", + "library/Mockery.php" ] }, "autoload-dev": { @@ -98,20 +96,22 @@ ], "ecs:check": "ecs check --clear-cache || true", "ecs:fix": "ecs check --clear-cache --fix", - "phpunit": "vendor/bin/phpunit --colors=always --testdox --stop-on-failure", - "phpunit:coverage": "vendor/bin/phpunit --colors=always --testdox --stop-on-failure --coverage-clover=coverage.xml", - "psalm": [ - "@psalm:shepherd", - "@psalm:security", - "@psalm:dry-run" + "phive": [ + ".phive/tools/phive update --force-accept-unsigned", + ".phive/tools/phive purge" ], - "psalm:baseline": "vendor/bin/psalm --no-diff --no-cache --set-baseline=psalm-baseline.xml", - "psalm:dry-run": "vendor/bin/psalm --no-cache --alter --issues=all --dry-run", - "psalm:security": "vendor/bin/psalm --no-diff --no-cache --taint-analysis", - "psalm:shepherd": "vendor/bin/psalm --no-diff --no-cache --shepherd --stats --output-format=github", + "phpunit": "vendor/bin/phpunit --do-not-cache-result --colors=always", + "phpunit:coverage": "@phpunit --coverage-clover=coverage.xml", + "psalm": ".phive/tools/psalm --no-diff --no-cache", + "psalm:baseline": "@psalm --set-baseline=psalm-baseline.xml", + "psalm:dry-run": "@psalm --alter --issues=all --dry-run", + "psalm:security": "@psalm --taint-analysis", + "psalm:shepherd": "@psalm --stats --shepherd --output-format=github", "test": [ - "@phpunit", - "@psalm" + "@phpunit --stop-on-defect", + "@psalm", + "@psalm:security", + "@psalm:dry-run" ] } } -- cgit