summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json15
1 files changed, 10 insertions, 5 deletions
diff --git a/composer.json b/composer.json
index c53d965..e70c509 100644
--- a/composer.json
+++ b/composer.json
@@ -16,11 +16,14 @@
"forum": "https://discourse.laminas.dev"
},
"config": {
- "sort-packages": true
+ "sort-packages": true,
+ "platform": {
+ "php": "8.0.99"
+ }
},
"require": {
- "php": "^7.3 || ~8.0.0 || ~8.1.0",
- "laminas/laminas-stdlib": "^2.7.7 || ^3.1"
+ "php": "~8.0.0 || ~8.1.0 || ~8.2.0",
+ "laminas/laminas-stdlib": "^2.7.7 || ^3.15.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~1.0.0",
@@ -54,8 +57,10 @@
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
- "test": "phpunit --colors=always",
- "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
+ "test": "phpunit --colors=always --testsuite \"unit test\"",
+ "test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
+ "test-integration": "phpunit --colors=always --testsuite \"integration test\"",
+ "upload-coverage": "coveralls -v"
},
"conflict": {
"zendframework/zend-file": "*"