Skip to content

Commit 1716a97

Browse files
authored
Update dev tools (#1001)
1 parent b3210c6 commit 1716a97

File tree

4 files changed

+25
-23
lines changed

4 files changed

+25
-23
lines changed

.dev-tools/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"require": {
44
"php": "^8.4",
55
"ergebnis/composer-normalize": "^2.45",
6-
"infection/infection": "^0.29.10",
6+
"infection/infection": "^0.29.11",
77
"kubawerlos/composer-smaller-lock": "^1.1.0",
88
"kubawerlos/php-cs-fixer-config": "^4.3",
99
"mi-schi/phpmd-extension": "^4.3",
1010
"phpmd/phpmd": "^2.15",
1111
"phpstan/extension-installer": "^1.4.3",
12-
"phpstan/phpstan": "^2.1.3",
12+
"phpstan/phpstan": "^2.1.5",
1313
"phpstan/phpstan-phpunit": "^2.0.4",
1414
"phpstan/phpstan-strict-rules": "^2.0.3",
1515
"shipmonk/composer-dependency-analyser": "^1.8.2",

.dev-tools/composer.lock

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

.php-cs-fixer.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
use PhpCsFixer\Config;
1616
use PhpCsFixer\Finder;
1717
use PhpCsFixer\Fixer\DeprecatedFixerInterface;
18+
use PhpCsFixer\Runner\Parallel\ParallelConfigFactory;
1819
use PhpCsFixerConfig\Rules\LibraryRules;
1920
use PhpCsFixerCustomFixers\Fixer\NoSuperfluousConcatenationFixer;
2021
use PhpCsFixerCustomFixers\Fixer\PhpdocOnlyAllowedAnnotationsFixer;
@@ -62,6 +63,7 @@
6263
}
6364

6465
return (new Config())
66+
->setParallelConfig(ParallelConfigFactory::detect())
6567
->registerCustomFixers(new Fixers())
6668
->registerCustomFixers(new PhpCsFixerCustomFixersDev\Fixers())
6769
->setRiskyAllowed(true)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"scripts": {
3333
"analyse": [
3434
"@install-dev-tools",
35-
"php-cs-fixer fix --ansi --show-progress=dots --diff --dry-run --verbose",
35+
"php-cs-fixer check --ansi --show-progress=dots --diff --verbose",
3636
"@composer --no-interaction --working-dir=.dev-tools analyse"
3737
],
3838
"fix": [

0 commit comments

Comments
 (0)