From 3a82b5b5ffd7f0a4b1e2563a82d111c2efac5cec Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 29 Apr 2021 10:54:58 +0200 Subject: update to 2.10.2 update laminas-cache-storage-adapter-filesystem to 1.1.1 update laminas-cache-storage-adapter-memcached to 1.1.0 update laminas-cache-storage-adapter-memory to 1.1.0 update laminas-cache-storage-adapter-test to 1.1.1 --- composer-test.json | 100 +++++++++++++++++++++++++++++------------------------ 1 file changed, 54 insertions(+), 46 deletions(-) (limited to 'composer-test.json') diff --git a/composer-test.json b/composer-test.json index 854ba36..e9d9452 100644 --- a/composer-test.json +++ b/composer-test.json @@ -1,49 +1,57 @@ { - "name": "laminas/laminas-cache-storage-adapter-test", - "description": "Laminas cache storage adapter shared test dependency", - "keywords": [ - "laminas", - "cache", - "test" - ], - "license": "BSD-3-Clause", - "require": { - "php": "^5.6 || ^7.0", - "cache/integration-tests": "^0.16", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" - }, - "conflict": { - "laminas/laminas-cache": "<2.10" - }, - "require-dev": { - "laminas/laminas-cache": "^2.10", - "squizlabs/php_codesniffer": "^3.5" - }, - "config": { - "sort-packages": true - }, - "extra": {}, - "autoload": { - "psr-4": { - "LaminasTest\\Cache\\Storage\\Adapter\\": "src/" + "name": "laminas/laminas-cache-storage-adapter-test", + "description": "Laminas cache storage adapter shared test dependency", + "keywords": [ + "laminas", + "cache", + "test" + ], + "license": "BSD-3-Clause", + "require": { + "php": "^7.3 || ~8.0.0", + "cache/integration-tests": "^0.17", + "phpunit/phpunit": "^9.5" }, - "files": [ - "autoload/phpunit-backward-compatibility.php" - ] - }, - "minimum-stability": "dev", - "prefer-stable": true, - "scripts": { - "cs-check": "phpcs", - "cs-fix": "phpcbf", - "test": "phpunit --colors=always", - "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" - }, - "support": { - "issues": "https://github.com/laminas/laminas-cache-storage-adapter-test/issues", - "forum": "https://discourse.laminas.dev/", - "source": "https://github.com/laminas/laminas-cache-storage-adapter-test", - "docs": "https://docs.laminas.dev/laminas-cache-storage-adapter-test/", - "rss": "https://github.com/laminas/laminas-cache-storage-adapter-test/releases.atom" - } + "conflict": { + "laminas/laminas-cache": "<2.10" + }, + "require-dev": { + "laminas/laminas-cache": "^2.10", + "laminas/laminas-coding-standard": "^2.1", + "psalm/plugin-phpunit": "^0.15.1", + "vimeo/psalm": "^4.7" + }, + "config": { + "sort-packages": true + }, + "extra": {}, + "autoload": { + "psr-4": { + "LaminasTest\\Cache\\Storage\\Adapter\\": "src/" + }, + "files": [ + "autoload/phpunit-backward-compatibility.php" + ] + }, + "autoload-dev": { + "psr-4": { + "LaminasTestTest\\Cache\\Storage\\Adapter\\": "test/" + } + }, + "minimum-stability": "dev", + "prefer-stable": true, + "scripts": { + "cs-check": "phpcs", + "cs-fix": "phpcbf", + "static-analysis": "psalm --shepherd --stats", + "test": "phpunit --colors=always", + "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + }, + "support": { + "issues": "https://github.com/laminas/laminas-cache-storage-adapter-test/issues", + "forum": "https://discourse.laminas.dev/", + "source": "https://github.com/laminas/laminas-cache-storage-adapter-test", + "docs": "https://docs.laminas.dev/laminas-cache-storage-adapter-test/", + "rss": "https://github.com/laminas/laminas-cache-storage-adapter-test/releases.atom" + } } -- cgit