diff options
author | Remi Collet <remi@remirepo.net> | 2021-09-09 09:08:17 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-09-09 09:08:17 +0200 |
commit | 7bf4e7f23cbb59c37b38cf11fc5737b39f37b5e0 (patch) | |
tree | bbe17396cce6f6d30105f15c470da8ccddb611d4 /composer.json | |
parent | 65c04e165a82c4a6ed3fc38df7d2b46f83d264e7 (diff) |
update to 2.15.0
keep compatibility using laminas-zendframework-bridge
as this is only used using compat autolader
raise dependency on zend-stdlib >= 3.6
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/composer.json b/composer.json index f7da50a..8ead394 100644 --- a/composer.json +++ b/composer.json @@ -25,15 +25,13 @@ } }, "require": { - "php": "^7.3 || ~8.0.0", + "php": "^7.3 || ~8.0.0 || ~8.1.0", "container-interop/container-interop": "^1.1", - "laminas/laminas-stdlib": "^3.3", - "laminas/laminas-zendframework-bridge": "^1.0" + "laminas/laminas-stdlib": "^3.6" }, "require-dev": { "laminas/laminas-cache": "^2.6.1", "laminas/laminas-coding-standard": "~2.2.1", - "laminas/laminas-config": "^2.6", "laminas/laminas-db": "^2.7", "laminas/laminas-filter": "^2.6", "laminas/laminas-http": "^2.14.2", @@ -43,7 +41,7 @@ "laminas/laminas-session": "^2.8", "laminas/laminas-uri": "^2.7", "phpspec/prophecy-phpunit": "^2.0", - "phpunit/phpunit": "^9.3", + "phpunit/phpunit": "^9.5.5", "psalm/plugin-phpunit": "^0.15.0", "psr/http-client": "^1.0", "psr/http-factory": "^1.0", @@ -67,6 +65,9 @@ } }, "autoload-dev": { + "files": [ + "test/autoload.php" + ], "psr-4": { "LaminasTest\\Validator\\": "test/" } @@ -82,7 +83,7 @@ "test-coverage": "phpunit --colors=always --coverage-clover clover.xml", "static-analysis": "psalm --shepherd --stats" }, - "replace": { - "zendframework/zend-validator": "^2.13.0" + "conflict": { + "zendframework/zend-validator": "*" } } |