-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfection.json.dist
More file actions
40 lines (40 loc) · 1.27 KB
/
infection.json.dist
File metadata and controls
40 lines (40 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"source": {
"directories": [
"src"
],
"excludes": [
"Events",
"Exceptions"
]
},
"timeout": 5,
"logs": {
"text": "build/infection/infection.log",
"summary": "build/infection/summary.log",
"perMutator": "build/infection/per-mutator.md"
},
"mutators": {
"global-ignore": [
"Donatorsky\\XmlTemplate\\Reader\\XmlTemplateReader::deinitializeParser"
],
"global-ignoreSourceCodeByRegex": [
"\\$this->deinitializeParser\\(\\).*",
"xml_parse\\(\\$this->xmlParser, '', true\\).*",
"xml_parser_free\\(\\$this->xmlParser\\).*",
"xml_parser_set_option\\(\\$this->xmlParser,.*",
"xml_set_character_data_handler\\(\\$this->xmlParser,.*",
"xml_set_element_handler\\(\\$this->xmlParser,.*",
"xml_set_object\\(\\$this->xmlParser, \\$this\\).*"
],
"@default": true,
"ArrayItemRemoval": {
"ignoreSourceCodeByRegex": [
"'attributesRules'\\s*=>\\s*\\[\\],"
]
}
},
"testFramework": "phpunit",
"testFrameworkOptions": "--do-not-cache-result",
"initialTestsPhpOptions": "-d xdebug.mode=coverage"
}