summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-05-02 11:18:38 +0200
committerRemi Collet <remi@remirepo.net>2018-05-02 11:18:38 +0200
commitdc35b76c33e36de602609b2e3ee5f58109d4be63 (patch)
tree3b29cf13b41a600f49108d62eb3ad88a86675961 /composer.json
parent5adc127d8d325159ba7567401f67741cab3e0979 (diff)
update to 3.1.1
use range dependencies switch to phpunit7
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json37
1 files changed, 22 insertions, 15 deletions
diff --git a/composer.json b/composer.json
index 350ab8e..c416233 100644
--- a/composer.json
+++ b/composer.json
@@ -3,19 +3,18 @@
"description": "Provides functionality for converting XML to JSON, optionally including XML attributes",
"license": "BSD-3-Clause",
"keywords": [
- "zf2",
+ "zf",
+ "zendframework",
"json",
"xml"
],
- "homepage": "https://github.com/zendframework/zend-xml2json",
- "config": {
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev",
- "dev-develop": "3.1-dev"
- }
+ "support": {
+ "docs": "https://docs.zendframework.com/zend-xml2json/",
+ "issues": "https://github.com/zendframework/zend-xml2json/issues",
+ "source": "https://github.com/zendframework/zend-xml2json",
+ "rss": "https://github.com/zendframework/zend-xml2json/releases.atom",
+ "chat": "https://zendframework-slack.herokuapp.com",
+ "forum": "https://discourse.zendframework.com/c/questions/components"
},
"require": {
"php": "^5.6 || ^7.0",
@@ -23,7 +22,7 @@
"zendframework/zendxml": "^1.0.2"
},
"require-dev": {
- "phpunit/phpunit": "^5.7.22 || ^6.4.1",
+ "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
"zendframework/zend-coding-standard": "~1.0.0"
},
"autoload": {
@@ -36,15 +35,23 @@
"ZendTest\\Xml2Json\\": "test/"
}
},
+ "config": {
+ "sort-packages": true
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.1.x-dev",
+ "dev-develop": "3.2.x-dev"
+ }
+ },
"scripts": {
"check": [
"@cs-check",
"@test"
],
- "upload-coverage": "coveralls",
"cs-check": "phpcs",
- "cs-fix": "phpcbf fix -v",
- "test": "phpunit",
- "test-coverage": "phpunit --coverage-clover clover.xml"
+ "cs-fix": "phpcbf",
+ "test": "phpunit --colors=always",
+ "test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}