From f9de782c8b3e04e8dca716391aff212db04e1890 Mon Sep 17 00:00:00 2001 From: George Steel Date: Mon, 16 Oct 2023 21:16:27 +0100 Subject: [PATCH] Infection won't work in CI until phpdbg is dropped from the container See https://github.com/laminas/laminas-continuous-integration-action/issues/130 Signed-off-by: George Steel --- .laminas-ci.json | 2 +- composer.json | 2 +- infection.json => mutants.json | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename infection.json => mutants.json (100%) diff --git a/.laminas-ci.json b/.laminas-ci.json index 21a4860..18f2b49 100644 --- a/.laminas-ci.json +++ b/.laminas-ci.json @@ -1,5 +1,5 @@ { - "extensions": ["xdebug"], + "extensions": [], "ignore_php_platform_requirements": { "8.3": true } diff --git a/composer.json b/composer.json index a787eb2..298327b 100644 --- a/composer.json +++ b/composer.json @@ -56,7 +56,7 @@ "cs-fix": "phpcbf", "static-analysis": "psalm --shepherd --stats", "check-deps": "composer-require-checker check", - "infection": "infection", + "infection": "infection --configuration=mutants.json", "test": "phpunit --colors=always" } } diff --git a/infection.json b/mutants.json similarity index 100% rename from infection.json rename to mutants.json