Skip to content

Commit 4c3f07a

Browse files
committed
bump
1 parent 683e10d commit 4c3f07a

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
},
1818
"require-dev": {
1919
"phpstan/extension-installer": "^1.2",
20-
"phpstan/phpstan": "^1.10.57",
20+
"phpstan/phpstan": "^1.12",
2121
"phpunit/phpunit": "^10.5",
22-
"rector/rector": "^1.0",
22+
"rector/rector": "^1.2",
2323
"symplify/easy-coding-standard": "^12.1",
2424
"symplify/phpstan-extensions": "^11.2",
25-
"tomasvotruba/unused-public": "^0.2",
25+
"tomasvotruba/unused-public": "^1.0",
2626
"tracy/tracy": "^2.10"
2727
},
2828
"autoload": {

ecs.php

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
return ECSConfig::configure()
88
->withPaths([
9+
__DIR__ . '/bin',
910
__DIR__ . '/src',
1011
__DIR__ . '/tests',
1112
])

rector.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
__DIR__ . '/tests',
1111
])
1212
->withPreparedSets(
13-
deadCode: true, naming: true, privatization: true, earlyReturn: true, codeQuality: true, codingStyle: true, typeDeclarations: true
13+
deadCode: true, naming: true, privatization: true, earlyReturn: true, codeQuality: true, codingStyle: true, typeDeclarations: true, phpunit: true, phpunitCodeQuality: true
1414
)
1515
->withPhpSets()
1616
->withRootFiles()
17-
->withImportNames(removeUnusedImports: true)
17+
->withImportNames()
1818
->withSkip(['*/scoper.php', '*/Source/*', '*/Fixture/*']);

0 commit comments

Comments
 (0)