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/.travis.yml b/.travis.yml index 021cedf..56c4776 100644 --- a/.travis.yml +++ b/.travis.yml @@ -63,7 +63,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: test name: 'ZF2 Integration' diff --git a/composer.json b/composer.json index c872f71..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/humbug && cat humbuglog.txt", + "test:mutations": "vendor/bin/infection && cat infection.txt", "test:units": "vendor/bin/phpunit" } } diff --git a/humbug.json.dist b/infection.json.dist similarity index 78% rename from humbug.json.dist rename to infection.json.dist index 2535633..f799337 100644 --- a/humbug.json.dist +++ b/infection.json.dist @@ -6,6 +6,6 @@ }, "timeout": 10, "logs": { - "text": "humbuglog.txt" + "text": "infection.txt" } }