From d1e7b5f101fb51fd21f0e7b4d998395f89da564a Mon Sep 17 00:00:00 2001 From: Timothy Younger Date: Sat, 21 Dec 2019 12:53:11 -0700 Subject: [PATCH 1/2] chore(mutants): replace deprecated humbug with infection --- .travis.yml | 2 +- composer.json | 2 +- humbug.json.dist => infection.json.dist | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename humbug.json.dist => infection.json.dist (100%) diff --git a/.travis.yml b/.travis.yml index e06b9f9..0b78add 100644 --- a/.travis.yml +++ b/.travis.yml @@ -59,7 +59,7 @@ jobs: php: 7.1 script: - composer install --no-interaction --prefer-source - - composer require --dev humbug/humbug:^1.0@dev + - composer require --dev infection/infection - composer test:mutations - stage: big-test php: 5.6 diff --git a/composer.json b/composer.json index c872f71..f6fe0fc 100644 --- a/composer.json +++ b/composer.json @@ -47,7 +47,7 @@ "lint:syntax": "vendor/bin/parallel-lint --exclude vendor --exclude test/ZF2/vendor --exclude test/ZF3/vendor .", "lint:syntax-php53": "vendor/bin/parallel-lint --exclude src/EnliteMonolog/Service/MonologServiceAwareTrait.php config/ src/ test/", "test:coverage": "vendor/bin/phpunit --coverage-text", - "test:mutations": "vendor/bin/humbug && cat humbuglog.txt", + "test:mutations": "vendor/bin/infection && cat humbuglog.txt", "test:units": "vendor/bin/phpunit" } } diff --git a/humbug.json.dist b/infection.json.dist similarity index 100% rename from humbug.json.dist rename to infection.json.dist From 26e9e6caa7bdc4b3af0f6626fa1a778e59a6c34a Mon Sep 17 00:00:00 2001 From: Timothy Younger Date: Sun, 29 Dec 2019 09:00:31 -0700 Subject: [PATCH 2/2] chore(mutation-log): rename mutation log from humbug to infection --- .gitignore | 4 ++-- composer.json | 2 +- infection.json.dist | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 45f4482..abd1ffa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ .idea /composer.lock coverage.xml -humbug.json -humbuglog.txt +infection.json +infection.txt vendor diff --git a/composer.json b/composer.json index f6fe0fc..da057fd 100644 --- a/composer.json +++ b/composer.json @@ -47,7 +47,7 @@ "lint:syntax": "vendor/bin/parallel-lint --exclude vendor --exclude test/ZF2/vendor --exclude test/ZF3/vendor .", "lint:syntax-php53": "vendor/bin/parallel-lint --exclude src/EnliteMonolog/Service/MonologServiceAwareTrait.php config/ src/ test/", "test:coverage": "vendor/bin/phpunit --coverage-text", - "test:mutations": "vendor/bin/infection && cat humbuglog.txt", + "test:mutations": "vendor/bin/infection && cat infection.txt", "test:units": "vendor/bin/phpunit" } } diff --git a/infection.json.dist b/infection.json.dist index 2535633..f799337 100644 --- a/infection.json.dist +++ b/infection.json.dist @@ -6,6 +6,6 @@ }, "timeout": 10, "logs": { - "text": "humbuglog.txt" + "text": "infection.txt" } }