From 1f749943c821866f54c5bb3fada70ad130f12920 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 13 Jan 2021 10:56:43 +0100 Subject: update laminas-cache-storage-adapter-filesystem to 1.1.0 (no change) --- composer-filesystem.json | 96 ++++++++++++++++++++++++------------------------ 1 file changed, 47 insertions(+), 49 deletions(-) (limited to 'composer-filesystem.json') diff --git a/composer-filesystem.json b/composer-filesystem.json index 3c74fa3..90e772f 100644 --- a/composer-filesystem.json +++ b/composer-filesystem.json @@ -1,52 +1,50 @@ { - "name": "laminas/laminas-cache-storage-adapter-filesystem", - "description": "Laminas cache adapter for filesystem", - "keywords": [ - "laminas", - "cache" - ], - "license": "BSD-3-Clause", - "require": { - "php": "^5.6 || ^7.0" - }, - "conflict": { - "laminas/laminas-cache": "<2.10" - }, - "provide": { - "laminas/laminas-cache-storage-implementation": "1.0" - }, - "require-dev": { - "laminas/laminas-cache": "^2.10", - "laminas/laminas-cache-storage-adapter-test": "^1.0@dev", - "laminas/laminas-coding-standard": "~1.0.0", - "squizlabs/php_codesniffer": "^2.7" - }, - "config": { - "sort-packages": true - }, - "extra": {}, - "autoload": { - "psr-4": { - "Laminas\\Cache\\Storage\\Adapter\\": "src/" + "name": "laminas/laminas-cache-storage-adapter-filesystem", + "description": "Laminas cache adapter for filesystem", + "keywords": [ + "laminas", + "cache" + ], + "license": "BSD-3-Clause", + "require": { + "php": "^7.3 || ~8.0.0", + "laminas/laminas-cache": "^2.10@dev" + }, + "provide": { + "laminas/laminas-cache-storage-implementation": "1.0" + }, + "require-dev": { + "laminas/laminas-cache-storage-adapter-test": "^1.0@dev", + "laminas/laminas-coding-standard": "~1.0.0", + "squizlabs/php_codesniffer": "^2.7" + }, + "config": { + "sort-packages": true + }, + "extra": { + }, + "autoload": { + "psr-4": { + "Laminas\\Cache\\Storage\\Adapter\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "LaminasTest\\Cache\\Storage\\Adapter\\": "test/unit", + "LaminasTest\\Cache\\Psr\\": "test/integration/Psr" + } + }, + "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-filesystem/issues", + "forum": "https://discourse.laminas.dev/", + "source": "https://github.com/laminas/laminas-cache-storage-adapter-filesystem", + "docs": "https://docs.laminas.dev/laminas-cache-storage-adapter-filesystem/", + "rss": "https://github.com/laminas/laminas-cache-storage-adapter-filesystem/releases.atom" } - }, - "autoload-dev": { - "psr-4": { - "LaminasTest\\Cache\\Storage\\Adapter\\": "test/unit", - "LaminasTest\\Cache\\Psr\\": "test/integration/Psr" - } - }, - "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-filesystem/issues", - "forum": "https://discourse.laminas.dev/", - "source": "https://github.com/laminas/laminas-cache-storage-adapter-filesystem", - "docs": "https://docs.laminas.dev/laminas-cache-storage-adapter-filesystem/", - "rss": "https://github.com/laminas/laminas-cache-storage-adapter-filesystem/releases.atom" - } } -- cgit