From e1a48058a9d0fa69aee2eb1317f2bca7be4d0c3b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 8 Jan 2020 16:32:54 +0100 Subject: switch to Laminas --- composer.json | 84 +++++++++++++++++++++++++++++++---------------------------- 1 file changed, 44 insertions(+), 40 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index d662ed4..ca36824 100644 --- a/composer.json +++ b/composer.json @@ -1,41 +1,58 @@ { - "name": "zendframework/zend-cache", + "name": "laminas/laminas-cache", "description": "Caching implementation with a variety of storage options, as well as codified caching strategies for callbacks, classes, and output", "license": "BSD-3-Clause", "keywords": [ - "zendframework", - "zf", + "laminas", "cache", "psr-6", "psr-16" ], + "homepage": "https://laminas.dev", "support": { - "docs": "https://docs.zendframework.com/zend-cache/", - "issues": "https://github.com/zendframework/zend-cache/issues", - "source": "https://github.com/zendframework/zend-cache", - "rss": "https://github.com/zendframework/zend-cache/releases.atom", - "chat": "https://zendframework-slack.herokuapp.com", - "forum": "https://discourse.zendframework.com/c/questions/components" + "docs": "https://docs.laminas.dev/laminas-cache/", + "issues": "https://github.com/laminas/laminas-cache/issues", + "source": "https://github.com/laminas/laminas-cache", + "rss": "https://github.com/laminas/laminas-cache/releases.atom", + "chat": "https://laminas.dev/chat", + "forum": "https://discourse.laminas.dev" + }, + "config": { + "process-timeout": 600, + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "2.9.x-dev", + "dev-develop": "2.10.x-dev" + }, + "laminas": { + "component": "Laminas\\Cache", + "config-provider": "Laminas\\Cache\\ConfigProvider" + } }, "require": { "php": "^5.6 || ^7.0", + "laminas/laminas-eventmanager": "^2.6.3 || ^3.2", + "laminas/laminas-servicemanager": "^2.7.8 || ^3.3", + "laminas/laminas-stdlib": "^3.2.1", + "laminas/laminas-zendframework-bridge": "^1.0", "psr/cache": "^1.0", - "psr/simple-cache": "^1.0", - "zendframework/zend-eventmanager": "^2.6.3 || ^3.2", - "zendframework/zend-servicemanager": "^2.7.8 || ^3.3", - "zendframework/zend-stdlib": "^3.2.1" + "psr/simple-cache": "^1.0" }, "require-dev": { "cache/integration-tests": "^0.16", + "laminas/laminas-coding-standard": "~1.0.0", + "laminas/laminas-serializer": "^2.6", + "laminas/laminas-session": "^2.7.4", "phpbench/phpbench": "^0.13", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2", - "zendframework/zend-coding-standard": "~1.0.0", - "zendframework/zend-serializer": "^2.6", - "zendframework/zend-session": "^2.7.4" + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + }, + "provide": { + "psr/cache-implementation": "1.0", + "psr/simple-cache-implementation": "1.0" }, "suggest": { - "zendframework/zend-serializer": "Zend\\Serializer component", - "zendframework/zend-session": "Zend\\Session component", "ext-apc": "APC or compatible extension, to use the APC storage adapter", "ext-apcu": "APCU >= 5.1.0, to use the APCu storage adapter", "ext-dba": "DBA, to use the DBA storage adapter", @@ -46,6 +63,8 @@ "ext-redis": "Redis, to use Redis storage adapter", "ext-wincache": "WinCache, to use the WinCache storage adapter", "ext-xcache": "XCache, to use the XCache storage adapter", + "laminas/laminas-serializer": "Laminas\\Serializer component", + "laminas/laminas-session": "Laminas\\Session component", "mongodb/mongodb": "Required for use with the ext-mongodb adapter", "mongofill/mongofill": "Alternative to ext-mongo - a pure PHP implementation designed as a drop in replacement" }, @@ -54,36 +73,18 @@ "autoload/patternPluginManagerPolyfill.php" ], "psr-4": { - "Zend\\Cache\\": "src/" + "Laminas\\Cache\\": "src/" } }, "autoload-dev": { "psr-4": { - "ZendTest\\Cache\\": "test/", - "ZendBench\\Cache\\": "benchmark/" + "LaminasTest\\Cache\\": "test/", + "LaminasBench\\Cache\\": "benchmark/" }, "files": [ "test/autoload.php" ] }, - "config": { - "process-timeout": 600, - "sort-packages": true - }, - "provide": { - "psr/cache-implementation": "1.0", - "psr/simple-cache-implementation": "1.0" - }, - "extra": { - "branch-alias": { - "dev-master": "2.9.x-dev", - "dev-develop": "2.10.x-dev" - }, - "zf": { - "component": "Zend\\Cache", - "config-provider": "Zend\\Cache\\ConfigProvider" - } - }, "scripts": { "check": [ "@cs-check", @@ -93,5 +94,8 @@ "cs-fix": "phpcbf", "test": "phpunit --colors=always", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + }, + "replace": { + "zendframework/zend-cache": "self.version" } } -- cgit