summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-01-16 11:18:11 +0100
committerRemi Collet <remi@remirepo.net>2020-01-16 11:18:11 +0100
commit42b822da5994e194333d919b772e1b8c7d3b3490 (patch)
treeacc19e3e0ee06c92a7c42a92e610a8410048a575 /composer.json
parentc4ec32be532d006abbde58512d2590e0b029354d (diff)
switch to Laminas
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json72
1 files changed, 38 insertions, 34 deletions
diff --git a/composer.json b/composer.json
index 664333b..bb2a145 100644
--- a/composer.json
+++ b/composer.json
@@ -1,57 +1,58 @@
{
- "name": "zendframework/zend-mvc-plugin-fileprg",
- "description": "Post/Redirect/Get plugin with file upload handling for zend-mvc controllers",
+ "name": "laminas/laminas-mvc-plugin-fileprg",
+ "description": "Post/Redirect/Get plugin with file upload handling for 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-fileprg/",
- "issues": "https://github.com/zendframework/zend-mvc-plugin-fileprg/issues",
- "source": "https://github.com/zendframework/zend-mvc-plugin-fileprg",
- "rss": "https://github.com/zendframework/zend-mvc-plugin-fileprg/releases.atom",
- "chat": "https://zendframework-slack.herokuapp.com",
- "forum": "https://discourse.zendframework.com/c/questions/components"
+ "docs": "https://docs.laminas.dev/laminas-mvc-plugin-fileprg/",
+ "issues": "https://github.com/laminas/laminas-mvc-plugin-fileprg/issues",
+ "source": "https://github.com/laminas/laminas-mvc-plugin-fileprg",
+ "rss": "https://github.com/laminas/laminas-mvc-plugin-fileprg/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\\FilePrg"
+ }
},
"require": {
"php": "^5.6 || ^7.0",
- "zendframework/zend-filter": "^2.6.1",
- "zendframework/zend-form": "^2.7",
- "zendframework/zend-inputfilter": "^2.8.1",
- "zendframework/zend-mvc": "^3.0",
- "zendframework/zend-session": "^2.8.5",
- "zendframework/zend-stdlib": "^2.7 || ^3.0",
- "zendframework/zend-validator": "^2.6"
+ "laminas/laminas-filter": "^2.6.1",
+ "laminas/laminas-form": "^2.7",
+ "laminas/laminas-inputfilter": "^2.8.1",
+ "laminas/laminas-mvc": "^3.0",
+ "laminas/laminas-session": "^2.8.5",
+ "laminas/laminas-stdlib": "^2.7 || ^3.0",
+ "laminas/laminas-validator": "^2.6",
+ "laminas/laminas-zendframework-bridge": "^1.0"
},
"require-dev": {
- "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.5",
- "zendframework/zend-coding-standard": "~1.0.0"
+ "laminas/laminas-coding-standard": "~1.0.0",
+ "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.5"
},
"conflict": {
- "zendframework/zend-mvc": "<3.0.0"
+ "laminas/laminas-mvc": "<3.0.0"
},
"autoload": {
"psr-4": {
- "Zend\\Mvc\\Plugin\\FilePrg\\": "src/"
+ "Laminas\\Mvc\\Plugin\\FilePrg\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
- "ZendTest\\Mvc\\Plugin\\FilePrg\\": "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\\FilePrg"
+ "LaminasTest\\Mvc\\Plugin\\FilePrg\\": "test/"
}
},
"scripts": {
@@ -63,5 +64,8 @@
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
+ },
+ "replace": {
+ "zendframework/zend-mvc-plugin-fileprg": "self.version"
}
}