We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b18d5f2 commit 279f21cCopy full SHA for 279f21c
infection.json5.dist
@@ -1,9 +1,17 @@
1
{
2
- "$schema": "vendor/infection/infection/resources/schema.json",
+ "$schema": "https://raw.githubusercontent.com/infection/infection/0.28.1/resources/schema.json",
3
"testFrameworkOptions": "--testsuite=unit",
4
"source": {
5
"directories": [
6
"src"
7
+ ],
8
+ "excludes": [
9
+ // causes errors during loading xml fies
10
+ "Util/Xml/Xml.php",
11
+ // causes syntax errors since invalid PHP code is generated
12
+ "{Framework/MockObject/Generator/.*}",
13
+ // causes issues with saving and reading result cache json files, failing phpunit
14
+ "{Runner/ResultCache/.*}",
15
]
16
},
17
"mutators": {
0 commit comments