From 6a49887c24fd204c4c5b7bc902b364b2bddd6e6e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 25 Aug 2020 14:17:19 +0200 Subject: update to 3.3.0 raise dependency on PHP 7.3 switch to phpunit 8.5 --- composer.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 6b25731..795b15a 100644 --- a/composer.json +++ b/composer.json @@ -22,23 +22,23 @@ }, "extra": { "branch-alias": { - "dev-master": "3.2-dev", - "dev-develop": "3.3-dev" + "dev-master": "3.3.x-dev", + "dev-develop": "3.4.x-dev" } }, "require": { - "php": "^5.6 || ^7.0", + "php": "^7.3 || ^8.0", "laminas/laminas-zendframework-bridge": "^1.0" }, "require-dev": { - "athletic/athletic": "^0.1", - "container-interop/container-interop": "^1.1.0", + "container-interop/container-interop": "^1.1", "laminas/laminas-coding-standard": "~1.0.0", "laminas/laminas-stdlib": "^2.7.3 || ^3.0", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "^8.5.8" }, "suggest": { - "container-interop/container-interop": "^1.1.0, to use the lazy listeners feature", + "container-interop/container-interop": "^1.1, to use the lazy listeners feature", "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature" }, "autoload": { @@ -66,6 +66,6 @@ "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" }, "replace": { - "zendframework/zend-eventmanager": "self.version" + "zendframework/zend-eventmanager": "^3.2.1" } } -- cgit