summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2023-12-11 08:35:56 +0100
committerRemi Collet <remi@php.net>2023-12-11 08:35:56 +0100
commit3362867b8044f7b685e6280151fce5519d7207ca (patch)
tree34c386ffa0918237ba28b04c2a222f1e4a8871d0 /composer.json
parentf8540c0186a782011b88d486c4d2e18bf07f616e (diff)
update to 1.6.7
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json34
1 files changed, 17 insertions, 17 deletions
diff --git a/composer.json b/composer.json
index 68c1a44..f23d2de 100644
--- a/composer.json
+++ b/composer.json
@@ -50,9 +50,7 @@
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.6.10",
- "psalm/plugin-phpunit": "^0.18.4",
- "symplify/easy-coding-standard": "^11.5.0",
- "vimeo/psalm": "^4.30"
+ "symplify/easy-coding-standard": "^12.0.8"
},
"conflict": {
"phpunit/phpunit": "<8.0"
@@ -62,8 +60,8 @@
"Mockery\\": "library/Mockery"
},
"files": [
- "library/helpers.php",
- "library/Mockery.php"
+ "library/helpers.php",
+ "library/Mockery.php"
]
},
"autoload-dev": {
@@ -98,20 +96,22 @@
],
"ecs:check": "ecs check --clear-cache || true",
"ecs:fix": "ecs check --clear-cache --fix",
- "phpunit": "vendor/bin/phpunit --colors=always --testdox --stop-on-failure",
- "phpunit:coverage": "vendor/bin/phpunit --colors=always --testdox --stop-on-failure --coverage-clover=coverage.xml",
- "psalm": [
- "@psalm:shepherd",
- "@psalm:security",
- "@psalm:dry-run"
+ "phive": [
+ ".phive/tools/phive update --force-accept-unsigned",
+ ".phive/tools/phive purge"
],
- "psalm:baseline": "vendor/bin/psalm --no-diff --no-cache --set-baseline=psalm-baseline.xml",
- "psalm:dry-run": "vendor/bin/psalm --no-cache --alter --issues=all --dry-run",
- "psalm:security": "vendor/bin/psalm --no-diff --no-cache --taint-analysis",
- "psalm:shepherd": "vendor/bin/psalm --no-diff --no-cache --shepherd --stats --output-format=github",
+ "phpunit": "vendor/bin/phpunit --do-not-cache-result --colors=always",
+ "phpunit:coverage": "@phpunit --coverage-clover=coverage.xml",
+ "psalm": ".phive/tools/psalm --no-diff --no-cache",
+ "psalm:baseline": "@psalm --set-baseline=psalm-baseline.xml",
+ "psalm:dry-run": "@psalm --alter --issues=all --dry-run",
+ "psalm:security": "@psalm --taint-analysis",
+ "psalm:shepherd": "@psalm --stats --shepherd --output-format=github",
"test": [
- "@phpunit",
- "@psalm"
+ "@phpunit --stop-on-defect",
+ "@psalm",
+ "@psalm:security",
+ "@psalm:dry-run"
]
}
}