Skip to content

Commit 50a909a

Browse files
committed
Added Infection as a dev dependency
1 parent 6bc7438 commit 50a909a

File tree

4 files changed

+28
-11
lines changed

4 files changed

+28
-11
lines changed

.gitattributes

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
/tests export-ignore
2-
/.scrutinizar.yml export-ignore
3-
/.travis.yml export-ignore
4-
/.gitignore export-ignore
5-
/CHANGELOG.md export-ignore
6-
/CONTRIBUTING.md export-ignore
7-
/LICENSE.md export-ignore
8-
/README.md export-ignore
9-
/phpunit.php export-ignore
10-
/phpunit.xml export-ignore
1+
/tests export-ignore
2+
/.scrutinizar.yml export-ignore
3+
/.travis.yml export-ignore
4+
/.gitignore export-ignore
5+
/CHANGELOG.md export-ignore
6+
/CONTRIBUTING.md export-ignore
7+
/LICENSE.md export-ignore
8+
/README.md export-ignore
9+
/phpunit.php export-ignore
10+
/phpunit.xml export-ignore
11+
/infection.json.dist export-ignore

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
composer.phar
22
composer.lock
3+
infection.log
34
/vendor/
45
.idea/
56
*.swp

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"require-dev": {
2222
"phpunit/phpunit": "^7.5.1",
2323
"mockery/mockery": "^1.2",
24-
"php-coveralls/php-coveralls": "^2.1"
24+
"php-coveralls/php-coveralls": "^2.1",
25+
"infection/infection": "^0.13.4"
2526
},
2627
"autoload": {
2728
"psr-4": {

infection.json.dist

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"timeout": 10,
3+
"source": {
4+
"directories": [
5+
"src\/PHPHtmlParser"
6+
]
7+
},
8+
"logs": {
9+
"text": "infection.log"
10+
},
11+
"mutators": {
12+
"@default": true
13+
}
14+
}

0 commit comments

Comments
 (0)