From 9f60de5184b690f77f4a27737c6217e3900db29f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Rub=C3=A9l?= Date: Wed, 17 May 2023 21:29:25 +0200 Subject: [PATCH] =?UTF-8?q?Update=20dev=20dependencies=20=F0=9F=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/infection.yml | 2 +- composer.json | 9 ++++----- infection.json5 | 1 + pint.json | 8 +++----- 4 files changed, 9 insertions(+), 11 deletions(-) diff --git a/.github/workflows/infection.yml b/.github/workflows/infection.yml index 56e20de..a79d530 100644 --- a/.github/workflows/infection.yml +++ b/.github/workflows/infection.yml @@ -30,4 +30,4 @@ jobs: run: composer install -n --prefer-dist - name: Run infection - run: ./vendor/bin/infection --test-framework=pest --show-mutations --min-msi=100 --min-covered-msi=100 + run: ./vendor/bin/infection --show-mutations --min-msi=100 --min-covered-msi=100 diff --git a/composer.json b/composer.json index b082268..9e556fb 100644 --- a/composer.json +++ b/composer.json @@ -23,16 +23,15 @@ "spatie/laravel-package-tools": "^1.12" }, "require-dev": { - "brianium/paratest": "^6.3", + "infection/infection": "^0.26.7", "laravel/pint": "^1.2", "mockery/mockery": "^1.4.4", - "nunomaduro/collision": "^6.0", + "nunomaduro/collision": "^6.0|^7.0", "nunomaduro/larastan": "^2.2", "orchestra/testbench": "^7.4|^8.0", "pestphp/pest": "^1.16", - "phpunit/phpunit": "^9.5", - "roave/backward-compatibility-check": "^7.0|^8.0", - "roave/infection-static-analysis-plugin": "^1.25" + "phpunit/phpunit": "^9.5|^10.0", + "roave/backward-compatibility-check": "^7.0|^8.0" }, "autoload": { "psr-4": { diff --git a/infection.json5 b/infection.json5 index 1c1aeda..466d8f9 100644 --- a/infection.json5 +++ b/infection.json5 @@ -5,6 +5,7 @@ "src" ] }, + "testFramework": "pest", "logs": { "text": "php://stderr", "github": true diff --git a/pint.json b/pint.json index c865df0..2d7f075 100644 --- a/pint.json +++ b/pint.json @@ -13,9 +13,7 @@ "binary_operator_spaces": { "default": "single_space", "operators": {"=>": null, "=": "align_single_space_minimal"} - } - }, - "exclude": [ - "src/Overrides" - ] + }, + "no_superfluous_phpdoc_tags": false + } }