From f4b9d94bd2251ea7ef29e1da9055105339841b9a Mon Sep 17 00:00:00 2001 From: Daniel Opitz Date: Sat, 31 Dec 2022 15:24:03 +0100 Subject: [PATCH] Update phpstan settings --- composer.json | 2 +- phpstan.neon | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index acd612440..7c2c708df 100644 --- a/composer.json +++ b/composer.json @@ -51,7 +51,7 @@ "scripts": { "cs:check": "php-cs-fixer fix --dry-run --format=txt --verbose --diff --config=.cs.php", "cs:fix": "php-cs-fixer fix --config=.cs.php", - "stan": "phpstan analyse -c phpstan.neon --no-progress --ansi", + "stan": "phpstan analyse -c phpstan.neon --no-progress --ansi --xdebug", "sniffer:check": "phpcs --standard=phpcs.xml", "sniffer:fix": "phpcbf --standard=phpcs.xml", "test": "phpunit --configuration phpunit.xml --do-not-cache-result --colors=always", diff --git a/phpstan.neon b/phpstan.neon index e0e574481..73d22396d 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -5,6 +5,6 @@ parameters: - src - tests excludePaths: - - tests/test.php - - tests/phinx.php + - tests/TestCase/test.php + - tests/TestCase/phinx.php - tests/diffs