Skip to content

Commit 2551f4c

Browse files
authored
Merge pull request #27 from BackEndTea/update/infection
Replace humbug with infection
2 parents bb9518d + b639507 commit 2551f4c

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
vendor/
22
composer.lock
33
phpunit.xml
4-
humbug.json
5-
humbuglog.json
6-
humbuglog.txt
4+
infection.json
5+
infection-log.txt

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ before_script:
1414

1515
script:
1616
- vendor/bin/phpunit --coverage-text --coverage-clover=clover.xml --colors
17-
- vendor/bin/humbug
17+
- vendor/bin/infection --log-verbosity=none --threads=4
1818

1919
after_script:
2020
- wget https://scrutinizer-ci.com/ocular.phar; php ocular.phar code-coverage:upload --format=php-clover clover.xml

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"cache/integration-tests": "dev-master#ff86c07073a5d6b7a7fe9019dd4f6d8fdaaca5ea",
1212
"cache/tag-interop": "^1.0@dev",
1313
"phpunit/phpunit": "^6.5",
14-
"humbug/humbug": "~1.0@dev"
14+
"infection/infection": "^0.9.2",
15+
"symfony/console": "^3.4"
1516
},
1617
"license": "MIT",
1718
"authors": [

humbug.json.dist renamed to infection.json.dist

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
},
77
"timeout": 10,
88
"logs": {
9-
"text": "humbuglog.txt",
10-
"json": "humbuglog.json"
9+
"text": "infection-log.txt"
1110
}
1211
}

0 commit comments

Comments
 (0)