From b74ad6ebbf9b6ec877b8beb2a49d475fa4d8ed06 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 5 Jan 2018 09:50:53 +0100 Subject: v3.1.0 --- composer.json | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) (limited to 'composer.json') 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" } } -- cgit