Skip to content

Commit fd8b426

Browse files
authored
Update dev-tools (#234)
1 parent 2c789d8 commit fd8b426

File tree

5 files changed

+193
-189
lines changed

5 files changed

+193
-189
lines changed

dev-tools/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
/vendor/
2-
/.php_cs.cache
32
/infection.log

dev-tools/.php_cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ declare(strict_types = 1);
55
return PhpCsFixer\Config::create()
66
->registerCustomFixers(new PhpCsFixerCustomFixers\Fixers())
77
->registerCustomFixers(new PhpCsFixerCustomFixersDev\Fixers())
8+
->setRiskyAllowed(true)
9+
->setUsingCache(false)
810
->setFinder(
911
PhpCsFixer\Finder::create()
1012
->files()
@@ -17,7 +19,6 @@ return PhpCsFixer\Config::create()
1719
__DIR__ . '/readme',
1820
])
1921
)
20-
->setRiskyAllowed(true)
2122
->setRules([
2223
'@PHP71Migration' => true,
2324
'@PHP71Migration:risky' => true,

dev-tools/composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"require": {
3-
"php": "^7.3"
3+
"php": "^7.4"
44
},
55
"require-dev": {
6-
"ergebnis/composer-normalize": "^2.2.2",
7-
"infection/infection": "^0.15.0",
6+
"ergebnis/composer-normalize": "^2.2.4",
7+
"infection/infection": "^0.15.3",
88
"kubawerlos/types-checker": "^1.2.0",
99
"maglnet/composer-require-checker": "^2.1.0",
1010
"mi-schi/phpmd-extension": "^4.3.0",
11-
"phpmd/phpmd": "^2.8.1",
12-
"phpstan/phpstan": "^0.12.8",
11+
"phpmd/phpmd": "^2.8.2",
12+
"phpstan/phpstan": "^0.12.11",
1313
"phpstan/phpstan-strict-rules": "^0.12.2",
1414
"squizlabs/php_codesniffer": "^3.5.4",
15-
"vimeo/psalm": "^3.8.3",
15+
"vimeo/psalm": "^3.9.3",
1616
"wikimedia/composer-merge-plugin": "^1.4.1"
1717
},
1818
"extra": {
@@ -31,8 +31,8 @@
3131
"types-checker ../src ../dev-tools/src ../tests",
3232
"php-cs-fixer fix --ansi --diff --dry-run --verbose",
3333
"phpmd ../src text ./phpmd.xml",
34-
"phpstan analyse --ansi",
35-
"psalm --shepherd"
34+
"phpstan analyse --ansi --no-progress",
35+
"psalm --shepherd --no-progress"
3636
],
3737
"fix": [
3838
"composer normalize ../composer.json",

0 commit comments

Comments
 (0)