From b007912edc0f62565a46ed313edd8620f08e9b25 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 17 Jan 2020 16:21:45 +0100 Subject: switch to Laminas --- composer.json | 129 ++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 75 insertions(+), 54 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index b56db26..99d6a48 100644 --- a/composer.json +++ b/composer.json @@ -1,57 +1,78 @@ { - "name": "zendframework/zend-stratigility", - "description": "Middleware for PHP", - "type": "library", - "license": "BSD-3-Clause", - "keywords": [ - "http", - "psr-7", - "middleware" - ], - "homepage": "https://github.com/zendframework/zend-stratigility", - "support": { - "issues": "https://github.com/zendframework/zend-stratigility/issues", - "source": "https://github.com/zendframework/zend-stratigility" - }, - "extra": { - "branch-alias": { - "dev-master": "1.3.0-dev", - "dev-develop": "2.0.0-dev" - } - }, - "require": { - "php": "^5.6 || ^7.0", - "psr/http-message": "^1.0", - "zendframework/zend-escaper": "^2.3", - "http-interop/http-middleware": "^0.2.0" - }, - "require-dev": { - "zendframework/zend-diactoros": "^1.0", - "phpunit/phpunit": "^5.6", - "zendframework/zend-coding-standard": "~1.0.0" - }, - "suggest": { - "psr/http-message-implementation": "Please install a psr/http-message-implementation to consume Stratigility; e.g., zendframework/zend-diactoros" - }, - "autoload": { - "psr-4": { - "Zend\\Stratigility\\": "src/" - } - }, - "autoload-dev": { - "psr-4": { - "ZendTest\\Stratigility\\": "test/" - } - }, - "scripts": { - "check": [ - "@cs-check", - "@test" + "name": "laminas/laminas-stratigility", + "description": "Middleware for PHP", + "license": "BSD-3-Clause", + "keywords": [ + "laminas", + "http", + "psr-7", + "middleware" ], - "upload-coverage": "coveralls -v", - "cs-check": "phpcs --colors", - "cs-fix": "phpcbf --colors", - "test": "phpunit --colors=always", - "test-coverage": "phpunit --coverage-clover clover.xml" - } + "homepage": "https://laminas.dev", + "support": { + "docs": "https://docs.laminas.dev/laminas-stratigility/", + "issues": "https://github.com/laminas/laminas-stratigility/issues", + "source": "https://github.com/laminas/laminas-stratigility", + "rss": "https://github.com/laminas/laminas-stratigility/releases.atom", + "chat": "https://laminas.dev/chat", + "forum": "https://discourse.laminas.dev" + }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "2.2.x-dev", + "dev-develop": "3.0.x-dev" + } + }, + "require": { + "php": "^5.6 || ^7.0", + "laminas/laminas-escaper": "^2.3", + "laminas/laminas-zendframework-bridge": "^1.0", + "psr/http-message": "^1.0", + "webimpress/http-middleware-compatibility": "^0.1.4" + }, + "require-dev": { + "laminas/laminas-coding-standard": "~1.0.0", + "laminas/laminas-diactoros": "^1.0", + "malukenho/docheader": "^0.1.5", + "phpunit/phpunit": "^5.7.22 || ^6.4.1" + }, + "suggest": { + "psr/http-message-implementation": "Please install a psr/http-message-implementation to consume Stratigility; e.g., laminas/laminas-diactoros" + }, + "autoload": { + "files": [ + "src/functions/double-pass-middleware.php", + "src/functions/middleware.php", + "src/functions/path.php", + "src/functions/double-pass-middleware.legacy.php", + "src/functions/middleware.legacy.php", + "src/functions/path.legacy.php" + ], + "psr-4": { + "Laminas\\Stratigility\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "LaminasTest\\Stratigility\\": "test/" + } + }, + "scripts": { + "check": [ + "@license-check", + "@cs-check", + "@test" + ], + "cs-check": "phpcs", + "cs-fix": "phpcbf", + "license-check": "docheader check src/ test/", + "test": "phpunit --colors=always", + "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + }, + "replace": { + "zendframework/zend-stratigility": "self.version" + } } -- cgit