Skip to content

Commit

Permalink
Set up Infection
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Apr 4, 2024
1 parent 9a38358 commit e5647e4
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 34 deletions.
25 changes: 13 additions & 12 deletions .gitattributes
@@ -1,14 +1,15 @@
/.github export-ignore
/.phive export-ignore
/.psalm export-ignore
/build export-ignore
/tests export-ignore
/tools export-ignore
/tools/* binary
/.gitattributes export-ignore
/.gitignore export-ignore
/.php-cs-fixer.dist.php export-ignore
/build.xml export-ignore
/phpunit.xml export-ignore
/.github export-ignore
/.phive export-ignore
/.psalm export-ignore
/build export-ignore
/tests export-ignore
/tools export-ignore
/tools/* binary
/.gitattributes export-ignore
/.gitignore export-ignore
/.php-cs-fixer.dist.php export-ignore
/build.xml export-ignore
/infection.json5.dist export-ignore
/phpunit.xml export-ignore

*.php diff=php
22 changes: 0 additions & 22 deletions infection.json

This file was deleted.

16 changes: 16 additions & 0 deletions infection.json5.dist
@@ -0,0 +1,16 @@
{
"$schema": "https://raw.githubusercontent.com/infection/infection/0.28.1/resources/schema.json",
"phpUnit": {
"customPath": "tools/phpunit"
},
"source": {
"directories": [
"src"
]
},
"mutators": {
"@default": true
},
"minMsi": 100,
"minCoveredMsi": 100
}

0 comments on commit e5647e4

Please sign in to comment.