summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-01-05 09:50:53 +0100
committerRemi Collet <remi@remirepo.net>2018-01-05 09:50:53 +0100
commitb74ad6ebbf9b6ec877b8beb2a49d475fa4d8ed06 (patch)
treec927e19c49576e0bdc9e20093d13634617a910de /composer.json
parent85bac060ce28e20aabd4b100e5fbef3be6d581f9 (diff)
v3.1.0
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json40
1 files changed, 25 insertions, 15 deletions
diff --git a/composer.json b/composer.json
index 15d1962..c2a582b 100644
--- a/composer.json
+++ b/composer.json
@@ -3,23 +3,25 @@
"description": "provides convenience methods for serializing native PHP to JSON and decoding JSON to native PHP",
"license": "BSD-3-Clause",
"keywords": [
- "zf2",
+ "zf",
+ "zendframework",
"json"
],
- "homepage": "https://github.com/zendframework/zend-json",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev",
- "dev-develop": "3.1-dev"
- }
+ "support": {
+ "docs": "https://docs.zendframework.com/zend-json/",
+ "issues": "https://github.com/zendframework/zend-json/issues",
+ "source": "https://github.com/zendframework/zend-json",
+ "rss": "https://github.com/zendframework/zend-json/releases.atom",
+ "slack": "https://zendframework-slack.herokuapp.com",
+ "forum": "https://discourse.zendframework.com/c/questions/components"
},
"require": {
- "php": "^5.5 || ^7.0"
+ "php": "^5.6 || ^7.0"
},
"require-dev": {
- "zendframework/zend-stdlib": "^2.7 || ^3.0",
- "squizlabs/php_codesniffer": "^2.3",
- "phpunit/PHPUnit": "~4.0"
+ "phpunit/phpunit": "^5.7.23 || ^6.4.3",
+ "zendframework/zend-coding-standard": "~1.0.0",
+ "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
},
"suggest": {
"zendframework/zend-json-server": "For implementing JSON-RPC servers",
@@ -35,15 +37,23 @@
"ZendTest\\Json\\": "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"
}
}