From 738202109425b7d761cb12b9423b715d6f76b412 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 10 Jan 2020 11:17:14 +0100 Subject: switch to Laminas --- composer.json | 59 +++++++++++++++++++++++++++++++---------------------------- 1 file changed, 31 insertions(+), 28 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 9574aab..a82627c 100644 --- a/composer.json +++ b/composer.json @@ -1,54 +1,54 @@ { - "name": "zendframework/zend-http", + "name": "laminas/laminas-http", "description": "Provides an easy interface for performing Hyper-Text Transfer Protocol (HTTP) requests", "license": "BSD-3-Clause", "keywords": [ - "zf", - "zend", - "zendframework", + "laminas", "http", "HTTP client" ], + "homepage": "https://laminas.dev", "support": { - "docs": "https://docs.zendframework.com/zend-http/", - "issues": "https://github.com/zendframework/zend-http/issues", - "source": "https://github.com/zendframework/zend-http", - "rss": "https://github.com/zendframework/zend-http/releases.atom", - "chat": "https://zendframework-slack.herokuapp.com", - "forum": "https://discourse.zendframework.com/c/questions/components" + "docs": "https://docs.laminas.dev/laminas-http/", + "issues": "https://github.com/laminas/laminas-http/issues", + "source": "https://github.com/laminas/laminas-http", + "rss": "https://github.com/laminas/laminas-http/releases.atom", + "chat": "https://laminas.dev/chat", + "forum": "https://discourse.laminas.dev" + }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "2.11.x-dev", + "dev-develop": "2.12.x-dev" + } }, "require": { "php": "^5.6 || ^7.0", - "zendframework/zend-loader": "^2.5.1", - "zendframework/zend-stdlib": "^3.2.1", - "zendframework/zend-uri": "^2.5.2", - "zendframework/zend-validator": "^2.10.1" + "laminas/laminas-loader": "^2.5.1", + "laminas/laminas-stdlib": "^3.2.1", + "laminas/laminas-uri": "^2.5.2", + "laminas/laminas-validator": "^2.10.1", + "laminas/laminas-zendframework-bridge": "^1.0" }, "require-dev": { - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.3", - "zendframework/zend-coding-standard": "~1.0.0", - "zendframework/zend-config": "^3.1 || ^2.6" + "laminas/laminas-coding-standard": "~1.0.0", + "laminas/laminas-config": "^3.1 || ^2.6", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.3" }, "suggest": { "paragonie/certainty": "For automated management of cacert.pem" }, "autoload": { "psr-4": { - "Zend\\Http\\": "src/" + "Laminas\\Http\\": "src/" } }, "autoload-dev": { "psr-4": { - "ZendTest\\Http\\": "test/" - } - }, - "config": { - "sort-packages": true - }, - "extra": { - "branch-alias": { - "dev-master": "2.11.x-dev", - "dev-develop": "2.12.x-dev" + "LaminasTest\\Http\\": "test/" } }, "scripts": { @@ -60,5 +60,8 @@ "cs-fix": "phpcbf", "test": "phpunit --colors=always", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + }, + "replace": { + "zendframework/zend-http": "self.version" } } -- cgit