From 61a3c4daf16ea1b72ca464676a73309341d62bd0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 16 Jan 2020 11:50:36 +0100 Subject: switch to Laminas --- composer.json | 64 +++++++++++++++++++++++++++++++---------------------------- 1 file changed, 34 insertions(+), 30 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index bc6be02..93ae06e 100644 --- a/composer.json +++ b/composer.json @@ -1,54 +1,55 @@ { - "name": "zendframework/zend-mvc-plugin-identity", - "description": "Plugin for retrieving the current authenticated identity within zend-mvc controllers", + "name": "laminas/laminas-mvc-plugin-identity", + "description": "Plugin for retrieving the current authenticated identity within laminas-mvc controllers", "license": "BSD-3-Clause", "keywords": [ - "zf", - "zendframework", + "laminas", "mvc" ], + "homepage": "https://laminas.dev", "support": { - "docs": "https://docs.zendframework.com/zend-mvc-plugin-identity/", - "issues": "https://github.com/zendframework/zend-mvc-plugin-identity/issues", - "source": "https://github.com/zendframework/zend-mvc-plugin-identity", - "rss": "https://github.com/zendframework/zend-mvc-plugin-identity/releases.atom", - "chat": "https://zendframework-slack.herokuapp.com", - "forum": "https://discourse.zendframework.com/c/questions/components" + "docs": "https://docs.laminas.dev/laminas-mvc-plugin-identity/", + "issues": "https://github.com/laminas/laminas-mvc-plugin-identity/issues", + "source": "https://github.com/laminas/laminas-mvc-plugin-identity", + "rss": "https://github.com/laminas/laminas-mvc-plugin-identity/releases.atom", + "chat": "https://laminas.dev/chat", + "forum": "https://discourse.laminas.dev" + }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev", + "dev-develop": "1.2.x-dev" + }, + "laminas": { + "component": "Laminas\\Mvc\\Plugin\\Identity" + } }, "require": { "php": "^5.6 || ^7.0", "container-interop/container-interop": "^1.1", - "zendframework/zend-authentication": "^2.5.3", - "zendframework/zend-mvc": "^3.0", - "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3" + "laminas/laminas-authentication": "^2.5.3", + "laminas/laminas-mvc": "^3.0", + "laminas/laminas-servicemanager": "^2.7.5 || ^3.0.3", + "laminas/laminas-zendframework-bridge": "^1.0" }, "require-dev": { - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4", - "zendframework/zend-coding-standard": "~1.0.0" + "laminas/laminas-coding-standard": "~1.0.0", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4" }, "conflict": { - "zendframework/zend-mvc": "<3.0.0" + "laminas/laminas-mvc": "<3.0.0" }, "autoload": { "psr-4": { - "Zend\\Mvc\\Plugin\\Identity\\": "src/" + "Laminas\\Mvc\\Plugin\\Identity\\": "src/" } }, "autoload-dev": { "psr-4": { - "ZendTest\\Mvc\\Plugin\\Identity\\": "test/" - } - }, - "config": { - "sort-packages": true - }, - "extra": { - "branch-alias": { - "dev-master": "1.1.x-dev", - "dev-develop": "1.2.x-dev" - }, - "zf": { - "component": "Zend\\Mvc\\Plugin\\Identity" + "LaminasTest\\Mvc\\Plugin\\Identity\\": "test/" } }, "scripts": { @@ -60,5 +61,8 @@ "cs-fix": "phpcbf", "test": "phpunit --colors=always", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + }, + "replace": { + "zendframework/zend-mvc-plugin-identity": "self.version" } } -- cgit