From 537eb1766e46c61920d3290a25031407d9127632 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 7 Apr 2022 09:08:40 +0200 Subject: update to 3.5.0 raise dependency on PHP 7.4 switch from container-interop/container-interop to psr/container --- composer.json | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 3f9c494..da21e29 100644 --- a/composer.json +++ b/composer.json @@ -18,15 +18,21 @@ "forum": "https://discourse.laminas.dev" }, "config": { - "sort-packages": true + "sort-packages": true, + "platform": { + "php": "7.4.99" + }, + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } }, "extra": { }, "require": { - "php": "^7.3 || ~8.0.0 || ~8.1.0" + "php": "^7.4 || ~8.0.0 || ~8.1.0" }, "require-dev": { - "container-interop/container-interop": "^1.1", + "psr/container": "^1.1.2 || ^2.0.2", "laminas/laminas-coding-standard": "~2.2.1", "laminas/laminas-stdlib": "^3.6", "phpbench/phpbench": "^1.1", @@ -34,7 +40,7 @@ "phpunit/phpunit": "^9.5.5" }, "suggest": { - "container-interop/container-interop": "^1.1, to use the lazy listeners feature", + "psr/container": "^1.1.2 || ^2.0.2, to use the lazy listeners feature", "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature" }, "autoload": { @@ -63,6 +69,7 @@ "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" }, "conflict": { + "container-interop/container-interop": "<1.2", "zendframework/zend-eventmanager": "*" } } -- cgit