From cb47b5e58bb8cff299c0dd8047cd8e5e8954ab33 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 9 Jan 2020 11:42:08 +0100 Subject: switch to Laminas --- composer.json | 54 +++++++++++++++++++++++++++++------------------------- 1 file changed, 29 insertions(+), 25 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 36bb385..bd15d21 100644 --- a/composer.json +++ b/composer.json @@ -1,48 +1,49 @@ { - "name": "zendframework/zend-memory", + "name": "laminas/laminas-memory", "description": "Manage data in an environment with limited memory", "license": "BSD-3-Clause", "keywords": [ - "zf", - "zendframework", + "laminas", "memory" ], + "homepage": "https://laminas.dev", "support": { - "docs": "https://docs.zendframework.com/zend-memory/", - "issues": "https://github.com/zendframework/zend-memory/issues", - "source": "https://github.com/zendframework/zend-memory", - "rss": "https://github.com/zendframework/zend-memory/releases.atom", - "chat": "https://zendframework-slack.herokuapp.com", - "forum": "https://discourse.zendframework.com/c/questions/components" + "docs": "https://docs.laminas.dev/laminas-memory/", + "issues": "https://github.com/laminas/laminas-memory/issues", + "source": "https://github.com/laminas/laminas-memory", + "rss": "https://github.com/laminas/laminas-memory/releases.atom", + "chat": "https://laminas.dev/chat", + "forum": "https://discourse.laminas.dev" + }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "2.6.x-dev", + "dev-develop": "2.7.x-dev" + } }, "require": { - "php": "^5.6 || ^7.0" + "php": "^5.6 || ^7.0", + "laminas/laminas-zendframework-bridge": "^1.0" }, "require-dev": { - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4", - "zendframework/zend-cache": "^2.7", - "zendframework/zend-coding-standard": "~1.0.0" + "laminas/laminas-cache": "^2.7", + "laminas/laminas-coding-standard": "~1.0.0", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4" }, "suggest": { - "zendframework/zend-cache": "To support swapping memory objects into and out of non-memory cache storage" + "laminas/laminas-cache": "To support swapping memory objects into and out of non-memory cache storage" }, "autoload": { "psr-4": { - "Zend\\Memory\\": "src/" + "Laminas\\Memory\\": "src/" } }, "autoload-dev": { "psr-4": { - "ZendTest\\Memory\\": "test/" - } - }, - "config": { - "sort-packages": true - }, - "extra": { - "branch-alias": { - "dev-master": "2.6.x-dev", - "dev-develop": "2.7.x-dev" + "LaminasTest\\Memory\\": "test/" } }, "scripts": { @@ -54,5 +55,8 @@ "cs-fix": "phpcbf", "test": "phpunit --colors=always", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + }, + "replace": { + "zendframework/zend-memory": "self.version" } } -- cgit