From 7e9397f9724de016c769578433b3b52269c7985a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 8 Sep 2021 08:35:18 +0200 Subject: 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 --- composer.json | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'composer.json') 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": "*" } } -- cgit