summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-01-10 15:16:53 +0100
committerRemi Collet <remi@remirepo.net>2020-01-10 15:16:53 +0100
commit4ca84fbb5e56a9063a5afcd0b4b5798fa475aaf7 (patch)
treea55f3e632f27ff5b73ae08bc31cf932927457b28 /composer.json
parent2f418922d4e823adbc368d7af9ec43930f82dcf6 (diff)
switch to Laminas
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json56
1 files changed, 40 insertions, 16 deletions
diff --git a/composer.json b/composer.json
index f7ffa72..75ddb2b 100644
--- a/composer.json
+++ b/composer.json
@@ -1,42 +1,66 @@
{
- "name": "zendframework/zend-psr7bridge",
- "description": "PSR-7 <-> Zend\\Http bridge",
- "type": "library",
+ "name": "laminas/laminas-psr7bridge",
+ "description": "PSR-7 &lt;-&gt; laminas-http message conversions",
"license": "BSD-3-Clause",
"keywords": [
+ "laminas",
"http",
"psr",
"psr-7"
],
- "homepage": "https://github.com/zendframework/zend-psr7bridge",
+ "homepage": "https://laminas.dev",
"support": {
- "issues": "https://github.com/zendframework/zend-psr7bridge/issues",
- "source": "https://github.com/zendframework/zend-psr7bridge"
+ "docs": "https://docs.laminas.dev/laminas-psr7bridge/",
+ "issues": "https://github.com/laminas/laminas-psr7bridge/issues",
+ "source": "https://github.com/laminas/laminas-psr7bridge",
+ "rss": "https://github.com/laminas/laminas-psr7bridge/releases.atom",
+ "chat": "https://laminas.dev/chat",
+ "forum": "https://discourse.laminas.dev"
+ },
+ "config": {
+ "sort-packages": true
},
"extra": {
"branch-alias": {
- "dev-master": "1.0-dev",
- "dev-develop": "1.1-dev"
+ "dev-master": "1.2.x-dev",
+ "dev-develop": "1.3.x-dev"
}
},
"require": {
- "php": ">=5.5",
- "zendframework/zend-http": "^2.5",
- "psr/http-message": "^1.0",
- "zendframework/zend-diactoros": "^1.1"
+ "php": "^5.6 || ^7.0",
+ "laminas/laminas-diactoros": "^1.7 || ^2.0",
+ "laminas/laminas-http": "^2.7",
+ "laminas/laminas-zendframework-bridge": "^1.0",
+ "psr/http-message": "^1.0"
},
"require-dev": {
- "phpunit/phpunit": "^4.7",
- "squizlabs/php_codesniffer": "^2.3"
+ "laminas/laminas-coding-standard": "~1.0.0",
+ "phpunit/phpunit": "^5.7.15 || ^6.5.6"
+ },
+ "conflict": {
+ "laminas/laminas-stdlib": "< 3.2.1"
},
"autoload": {
"psr-4": {
- "Zend\\Psr7Bridge\\": "src/"
+ "Laminas\\Psr7Bridge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
- "ZendTest\\Psr7Bridge\\": "test/"
+ "LaminasTest\\Psr7Bridge\\": "test/"
}
+ },
+ "scripts": {
+ "check": [
+ "@cs-check",
+ "@test"
+ ],
+ "cs-check": "phpcs",
+ "cs-fix": "phpcbf",
+ "test": "phpunit --colors=always",
+ "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
+ },
+ "replace": {
+ "zendframework/zend-psr7bridge": "self.version"
}
}