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-memcached.json | 102 +++++++++++++++++++++++++----------------------- 1 file changed, 53 insertions(+), 49 deletions(-) (limited to 'composer-memcached.json') diff --git a/composer-memcached.json b/composer-memcached.json index 57ae91d..e05fe92 100644 --- a/composer-memcached.json +++ b/composer-memcached.json @@ -1,52 +1,56 @@ { - "name": "laminas/laminas-cache-storage-adapter-memcached", - "description": "Laminas cache adapter for memcached", - "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-memcached", + "description": "Laminas cache adapter for memcached", + "keywords": [ + "laminas", + "cache", + "memcached" + ], + "license": "BSD-3-Clause", + "require": { + "php": "^7.3" + }, + "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.2", + "laminas/laminas-coding-standard": "~1.0.0", + "squizlabs/php_codesniffer": "^2.7", + "phpunit/phpunit": "^7.5.20" + }, + "suggest": { + "ext-memcached": "Memcached >= 1.0.0 to use the Memcached storage adapter" + }, + "config": { + "sort-packages": true + }, + "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-memcached/issues", + "forum": "https://discourse.laminas.dev/", + "source": "https://github.com/laminas/laminas-cache-storage-adapter-memcached", + "docs": "https://docs.laminas.dev/laminas-cache-storage-adapter-memcached/", + "rss": "https://github.com/laminas/laminas-cache-storage-adapter-memcached/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-memcached/issues", - "forum": "https://discourse.laminas.dev/", - "source": "https://github.com/laminas/laminas-cache-storage-adapter-memcached", - "docs": "https://docs.laminas.dev/laminas-cache-storage-adapter-memcached/", - "rss": "https://github.com/laminas/laminas-cache-storage-adapter-memcached/releases.atom" - } } -- cgit