summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-09-08 08:35:18 +0200
committerRemi Collet <remi@remirepo.net>2021-09-08 08:35:18 +0200
commit7e9397f9724de016c769578433b3b52269c7985a (patch)
treed5f34cc103883ba74bbabfff75c828e724fe801c /composer.json
parent6837efc0e5f3d3a0ca35053f7fd48a3082157d8e (diff)
update to 3.4.0
keep compatibility using laminas-zendframework-bridge as this is only used using compat autolader raise dependency on zend-stdlib >= 3.6 switch to phpunit9
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json17
1 files changed, 9 insertions, 8 deletions
diff --git a/composer.json b/composer.json
index 7f12998..3f9c494 100644
--- a/composer.json
+++ b/composer.json
@@ -23,15 +23,15 @@
"extra": {
},
"require": {
- "php": "^7.3 || ^8.0",
- "laminas/laminas-zendframework-bridge": "^1.0"
+ "php": "^7.3 || ~8.0.0 || ~8.1.0"
},
"require-dev": {
"container-interop/container-interop": "^1.1",
- "laminas/laminas-coding-standard": "~1.0.0",
- "laminas/laminas-stdlib": "^2.7.3 || ^3.0",
- "phpbench/phpbench": "^0.17.1",
- "phpunit/phpunit": "^8.5.8"
+ "laminas/laminas-coding-standard": "~2.2.1",
+ "laminas/laminas-stdlib": "^3.6",
+ "phpbench/phpbench": "^1.1",
+ "phpspec/prophecy-phpunit": "^2.0",
+ "phpunit/phpunit": "^9.5.5"
},
"suggest": {
"container-interop/container-interop": "^1.1, to use the lazy listeners feature",
@@ -52,6 +52,7 @@
]
},
"scripts": {
+ "benchmark": "phpbench run --revs=2 --iterations=2 --report=aggregate",
"check": [
"@cs-check",
"@test"
@@ -61,7 +62,7 @@
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
- "replace": {
- "zendframework/zend-eventmanager": "^3.2.1"
+ "conflict": {
+ "zendframework/zend-eventmanager": "*"
}
}