summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-01-10 12:52:42 +0100
committerRemi Collet <remi@remirepo.net>2020-01-10 12:52:42 +0100
commit567a4dc77fc2bd0c3f675469e953685cf5026671 (patch)
tree9a09a16cf3c7212624cc349d2b3afcb77ba63a1a /composer.json
parent38ea014023b8e5df6106ecc240b30767fcd75e84 (diff)
switch to Laminas
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json54
1 files changed, 29 insertions, 25 deletions
diff --git a/composer.json b/composer.json
index b1b118b..5b0bb29 100644
--- a/composer.json
+++ b/composer.json
@@ -1,33 +1,43 @@
{
- "name": "zendframework/zend-text",
+ "name": "laminas/laminas-text",
"description": "Create FIGlets and text-based tables",
"license": "BSD-3-Clause",
"keywords": [
- "zf",
- "zendframework",
+ "laminas",
"text"
],
+ "homepage": "https://laminas.dev",
"support": {
- "docs": "https://docs.zendframework.com/zend-text/",
- "issues": "https://github.com/zendframework/zend-text/issues",
- "source": "https://github.com/zendframework/zend-text",
- "rss": "https://github.com/zendframework/zend-text/releases.atom",
- "chat": "https://zendframework-slack.herokuapp.com",
- "forum": "https://discourse.zendframework.com/c/questions/components"
+ "docs": "https://docs.laminas.dev/laminas-text/",
+ "issues": "https://github.com/laminas/laminas-text/issues",
+ "source": "https://github.com/laminas/laminas-text",
+ "rss": "https://github.com/laminas/laminas-text/releases.atom",
+ "chat": "https://laminas.dev/chat",
+ "forum": "https://discourse.laminas.dev"
+ },
+ "config": {
+ "sort-packages": true
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.7.x-dev",
+ "dev-develop": "2.8.x-dev"
+ }
},
"require": {
"php": "^5.6 || ^7.0",
- "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
- "zendframework/zend-stdlib": "^2.7 || ^3.0"
+ "laminas/laminas-servicemanager": "^2.7.5 || ^3.0.3",
+ "laminas/laminas-stdlib": "^2.7 || ^3.0",
+ "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",
- "zendframework/zend-config": "^2.6"
+ "laminas/laminas-coding-standard": "~1.0.0",
+ "laminas/laminas-config": "^2.6",
+ "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4"
},
"autoload": {
"psr-4": {
- "Zend\\Text\\": "src/"
+ "Laminas\\Text\\": "src/"
}
},
"autoload-dev": {
@@ -35,16 +45,7 @@
"test/autoload.php"
],
"psr-4": {
- "ZendTest\\Text\\": "test/"
- }
- },
- "config": {
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "2.7.x-dev",
- "dev-develop": "2.8.x-dev"
+ "LaminasTest\\Text\\": "test/"
}
},
"scripts": {
@@ -56,5 +57,8 @@
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
+ },
+ "replace": {
+ "zendframework/zend-text": "self.version"
}
}