summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-05-03 13:42:05 +0200
committerRemi Collet <remi@remirepo.net>2018-05-03 13:42:05 +0200
commitc56c8615623d00d85fc383cb1e5c6ae7e56b4430 (patch)
treec93715928754129b0dfa6d515fcbaed4b67934b1 /composer.json
parent85b3d023ee4d2dced35392e3b13b9624989a3e0b (diff)
update to 1.1.0
use range dependencies on F27+ switch to phpunit6 or phpunit7
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json61
1 files changed, 36 insertions, 25 deletions
diff --git a/composer.json b/composer.json
index 352c559..bc6be02 100644
--- a/composer.json
+++ b/composer.json
@@ -1,19 +1,33 @@
{
"name": "zendframework/zend-mvc-plugin-identity",
- "description": " ",
+ "description": "Plugin for retrieving the current authenticated identity within zend-mvc controllers",
"license": "BSD-3-Clause",
"keywords": [
- "zf2",
+ "zf",
+ "zendframework",
"mvc"
],
- "homepage": "https://github.com/zendframework/zend-mvc-plugin-identity",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0-dev"
- },
- "zf": {
- "component": "Zend\\Mvc\\Plugin\\Identity"
- }
+ "support": {
+ "docs": "https://docs.zendframework.com/zend-mvc-plugin-identity/",
+ "issues": "https://github.com/zendframework/zend-mvc-plugin-identity/issues",
+ "source": "https://github.com/zendframework/zend-mvc-plugin-identity",
+ "rss": "https://github.com/zendframework/zend-mvc-plugin-identity/releases.atom",
+ "chat": "https://zendframework-slack.herokuapp.com",
+ "forum": "https://discourse.zendframework.com/c/questions/components"
+ },
+ "require": {
+ "php": "^5.6 || ^7.0",
+ "container-interop/container-interop": "^1.1",
+ "zendframework/zend-authentication": "^2.5.3",
+ "zendframework/zend-mvc": "^3.0",
+ "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
+ "zendframework/zend-coding-standard": "~1.0.0"
+ },
+ "conflict": {
+ "zendframework/zend-mvc": "<3.0.0"
},
"autoload": {
"psr-4": {
@@ -25,29 +39,26 @@
"ZendTest\\Mvc\\Plugin\\Identity\\": "test/"
}
},
- "require": {
- "php": "^5.6 || ^7.0",
- "container-interop/container-interop": "^1.1",
- "zendframework/zend-mvc": "^3.0",
- "zendframework/zend-authentication": "^2.5.3",
- "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3"
- },
- "require-dev": {
- "phpunit/PHPUnit": "^4.5",
- "squizlabs/php_codesniffer": "^2.3.1"
+ "config": {
+ "sort-packages": true
},
- "conflict": {
- "zendframework/zend-mvc": "< 3.0.0"
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1.x-dev",
+ "dev-develop": "1.2.x-dev"
+ },
+ "zf": {
+ "component": "Zend\\Mvc\\Plugin\\Identity"
+ }
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
- "upload-coverage": "coveralls",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
- "test": "phpunit",
- "test-coverage": "phpunit --coverage-clover clover.xml"
+ "test": "phpunit --colors=always",
+ "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}