Skip to content

Commit e65a069

Browse files
authored
Update dev tools (#1053)
1 parent 0774fab commit e65a069

File tree

4 files changed

+25
-21
lines changed

4 files changed

+25
-21
lines changed

.dev-tools/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"shipmonk/phpstan-rules": "^4.1.4",
1717
"squizlabs/php_codesniffer": "^3.13.2",
1818
"tomasvotruba/type-coverage": "^2.0.2",
19-
"vimeo/psalm": "^6.12"
19+
"vimeo/psalm": "^6.12.1"
2020
},
2121
"autoload": {
2222
"psr-4": {
@@ -54,7 +54,7 @@
5454
"phpcbf || exit 0"
5555
],
5656
"infection": [
57-
"infection run --min-msi=100 --logger-github --no-progress --threads=16"
57+
"infection run"
5858
]
5959
}
6060
}

.dev-tools/composer.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.dev-tools/infection.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
]
77
},
88
"timeout": 10,
9+
"threads": "max",
910
"logs": {
1011
"text": "php://stdout",
1112
"github": true,
@@ -194,5 +195,6 @@
194195
"While_": true,
195196
"YieldValue": true,
196197
"Yield_": true
197-
}
198+
},
199+
"minMsi": 100
198200
}

.dev-tools/src/InfectionConfigBuilder.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ public function build(): array
4343
'$schema' => './vendor/infection/infection/resources/schema.json',
4444
'source' => ['directories' => ['../src']],
4545
'timeout' => 10,
46+
'threads' => 'max',
4647
'logs' => [
4748
'text' => 'php://stdout',
4849
'github' => true,
@@ -53,6 +54,7 @@ public function build(): array
5354
'customPath' => '../vendor/phpunit/phpunit/phpunit',
5455
],
5556
'mutators' => [],
57+
'minMsi' => 100,
5658
];
5759

5860
$mutators = \array_keys(ProfileList::ALL_MUTATORS);

0 commit comments

Comments
 (0)