From 28f83b980cb271f9e57ee244e920b24f61a6f659 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 21 Nov 2022 11:38:23 +0100 Subject: update to 2.12.0 raise dependency on PHP 8.0 raise dependency on zend-stdlib 3.15 --- composer.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index c53d965..e70c509 100644 --- a/composer.json +++ b/composer.json @@ -16,11 +16,14 @@ "forum": "https://discourse.laminas.dev" }, "config": { - "sort-packages": true + "sort-packages": true, + "platform": { + "php": "8.0.99" + } }, "require": { - "php": "^7.3 || ~8.0.0 || ~8.1.0", - "laminas/laminas-stdlib": "^2.7.7 || ^3.1" + "php": "~8.0.0 || ~8.1.0 || ~8.2.0", + "laminas/laminas-stdlib": "^2.7.7 || ^3.15.0" }, "require-dev": { "laminas/laminas-coding-standard": "~1.0.0", @@ -54,8 +57,10 @@ ], "cs-check": "phpcs", "cs-fix": "phpcbf", - "test": "phpunit --colors=always", - "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + "test": "phpunit --colors=always --testsuite \"unit test\"", + "test-coverage": "phpunit --colors=always --coverage-clover clover.xml", + "test-integration": "phpunit --colors=always --testsuite \"integration test\"", + "upload-coverage": "coveralls -v" }, "conflict": { "zendframework/zend-file": "*" -- cgit