Skip to content

Commit 3ee3b56

Browse files
authored
Merge pull request #16 from ghostwriter/feature/update-composer-dependencies
feature/update composer dependencies
2 parents d38ab46 + 69bd3fe commit 3ee3b56

8 files changed

+104
-152
lines changed

composer.json

+15-11
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
"php": ">=8.0,<8.3"
3434
},
3535
"require-dev": {
36-
"infection/infection": "^0.26.16",
37-
"phpbench/phpbench": "^1.2.7",
38-
"phpunit/phpunit": "^9.5.26",
39-
"psalm/plugin-phpunit": "^0.17.0",
40-
"rector/rector": "^0.14.8",
41-
"symplify/easy-coding-standard": "^11.1.17",
42-
"vimeo/psalm": "^4.30"
36+
"infection/infection": "^0.26",
37+
"phpbench/phpbench": "^1.2",
38+
"phpunit/phpunit": "^9.5",
39+
"psalm/plugin-phpunit": "^0.18",
40+
"rector/rector": "^0.14",
41+
"symplify/easy-coding-standard": "^11.1",
42+
"vimeo/psalm": "^5.0"
4343
},
4444
"minimum-stability": "stable",
4545
"prefer-stable": true,
@@ -75,9 +75,10 @@
7575
"@cs-check",
7676
"@cs-fix",
7777
"@test",
78-
"@psalm",
78+
"@infection",
7979
"@rector:dry-run",
80-
"@psalm:security"
80+
"@psalm:security",
81+
"@psalm"
8182
],
8283
"cs-check": "vendor/bin/ecs check --clear-cache || true",
8384
"cs-fix": "vendor/bin/ecs check --fix --clear-cache",
@@ -89,7 +90,7 @@
8990
],
9091
"infection": [
9192
"@putenv XDEBUG_MODE=coverage",
92-
"vendor/bin/infection"
93+
"vendor/bin/infection --show-mutations"
9394
],
9495
"missing-returntypes": "psalm --alter --issues=MissingReturnType",
9596
"normalizer": "composer normalize --no-check-lock",
@@ -100,7 +101,10 @@
100101
"psalm:dry-run": "psalm --alter --issues=all --dry-run",
101102
"psalm:missing": "psalm --alter --issues=MissingReturnType",
102103
"psalm:security": "psalm --taint-analysis",
103-
"psalm:shepherd": "psalm --shepherd --stats --no-diff --no-cache",
104+
"psalm:shepherd": [
105+
"psalm --clear-global-cache --clear-cache",
106+
"psalm --shepherd --stats --no-diff --no-cache"
107+
],
104108
"rector": "vendor/bin/rector process",
105109
"rector:dry-run": "vendor/bin/rector process --dry-run || true",
106110
"test": [

0 commit comments

Comments
 (0)