From 2585760220f460c1d6662f6607efb67463f5cba6 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 3 May 2018 13:02:33 +0200 Subject: update to 1.1.0 raise dependency on zend-session 2.8.5 add dependency on zend-view use range dependencies on F27+ switch to phpunit6 or phpunit7 --- composer.json | 62 +++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 39 insertions(+), 23 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index ec50175..2329b34 100644 --- a/composer.json +++ b/composer.json @@ -1,19 +1,34 @@ { "name": "zendframework/zend-mvc-plugin-flashmessenger", - "description": " ", + "description": "Plugin for creating and exposing flash messages via zend-mvc controllers", "license": "BSD-3-Clause", "keywords": [ - "zf2", + "zf", + "zendframework", "mvc" ], - "homepage": "https://github.com/zendframework/zend-mvc-plugin-flashmessenger", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - }, - "zf": { - "component": "Zend\\Mvc\\Plugin\\FlashMessenger" - } + "support": { + "docs": "https://docs.zendframework.com/zend-mvc-plugin-flashmessenger/", + "issues": "https://github.com/zendframework/zend-mvc-plugin-flashmessenger/issues", + "source": "https://github.com/zendframework/zend-mvc-plugin-flashmessenger", + "rss": "https://github.com/zendframework/zend-mvc-plugin-flashmessenger/releases.atom", + "chat": "https://zendframework-slack.herokuapp.com", + "forum": "https://discourse.zendframework.com/c/questions/components" + }, + "require": { + "php": "^5.6 || ^7.0", + "zendframework/zend-mvc": "^3.0", + "zendframework/zend-session": "^2.8.5", + "zendframework/zend-stdlib": "^2.7 || ^3.0", + "zendframework/zend-view": "^2.10" + }, + "require-dev": { + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4", + "zendframework/zend-coding-standard": "~1.0.0", + "zendframework/zend-i18n": "^2.8" + }, + "conflict": { + "zendframework/zend-mvc": "<3.0.0" }, "autoload": { "psr-4": { @@ -25,28 +40,29 @@ "ZendTest\\Mvc\\Plugin\\FlashMessenger\\": "test/" } }, - "require": { - "php": "^5.6 || ^7.0", - "zendframework/zend-mvc": "^3.0", - "zendframework/zend-session": "^2.6.2", - "zendframework/zend-stdlib": "^2.7 || ^3.0" + "config": { + "sort-packages": true }, - "require-dev": { - "phpunit/PHPUnit": "^4.5", - "squizlabs/php_codesniffer": "^2.3.1" + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev", + "dev-develop": "1.2.x-dev" + }, + "zf": { + "component": "Zend\\Mvc\\Plugin\\FlashMessenger" + } }, - "conflict": { - "zendframework/zend-mvc": "<3.0.0" + "suggests": { + "zendframework/zend-i18n": "Zend\\I18n component" }, "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" } } -- cgit