From 458b4fd82f5d22bf0a72b813c611818e271ed93e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 26 Apr 2018 16:01:20 +0200 Subject: update to 2.9.0 raise dependency to PHP 5.6 switch to phpunit6 or phpunit7 use range dependencies on F27+ --- composer.json | 70 +++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 39 insertions(+), 31 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 3016210..1df5536 100644 --- a/composer.json +++ b/composer.json @@ -1,60 +1,69 @@ { "name": "zendframework/zend-navigation", - "description": "provides support for managing trees of pointers to web pages", + "description": "Manage trees of pointers to web pages in order to build navigation systems", "license": "BSD-3-Clause", "keywords": [ - "zf2", + "zendframework", + "zf", "navigation" ], - "homepage": "https://github.com/zendframework/zend-navigation", - "autoload": { - "psr-4": { - "Zend\\Navigation\\": "src/" - } + "support": { + "docs": "https://docs.zendframework.com/zend-navigation/", + "issues": "https://github.com/zendframework/zend-navigation/issues", + "source": "https://github.com/zendframework/zend-navigation", + "rss": "https://github.com/zendframework/zend-navigation/releases.atom", + "chat": "https://zendframework-slack.herokuapp.com", + "forum": "https://discourse.zendframework.com/c/questions/components" }, "require": { - "php": "^5.5 || ^7.0", + "php": "^5.6 || ^7.0", "zendframework/zend-stdlib": "^2.7 || ^3.0" }, "require-dev": { - "zendframework/zend-config": "^2.6", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2", + "zendframework/zend-coding-standard": "~1.0.0", + "zendframework/zend-config": "^2.6 || ^3.1", "zendframework/zend-console": "^2.6", - "zendframework/zend-http": "^2.5.4", - "zendframework/zend-i18n": "^2.6", - "zendframework/zend-log": "^2.7.1", - "zendframework/zend-mvc": "^2.7.9 || ^3.0", - "zendframework/zend-router": "^3.0", + "zendframework/zend-http": "^2.6", + "zendframework/zend-i18n": "^2.7.3", + "zendframework/zend-log": "^2.9.1", + "zendframework/zend-mvc": "^2.7.9 || ^3.0.4", "zendframework/zend-permissions-acl": "^2.6", + "zendframework/zend-router": "^3.0.2", "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3", - "zendframework/zend-uri": "^2.5", - "zendframework/zend-view": "^2.6.5", - "phpunit/phpunit": "^4.6", - "zendframework/zend-coding-standard": "~1.0.0" + "zendframework/zend-uri": "^2.5.2", + "zendframework/zend-view": "^2.9" }, "suggest": { - "zendframework/zend-config": "^2.6, to provide page configuration (optional, as arrays and Traversables are also allowed)", + "zendframework/zend-config": "^2.6 || ^3.1, to provide page configuration (optional, as arrays and Traversables are also allowed)", "zendframework/zend-permissions-acl": "^2.6, to provide ACL-based access restrictions to pages", "zendframework/zend-router": "^3.0, to use router-based URI generation with Mvc pages", "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3, to use the navigation factories", - "zendframework/zend-view": "^2.6.5, to use the navigation view helpers" + "zendframework/zend-view": "^2.8.1, to use the navigation view helpers" + }, + "autoload": { + "psr-4": { + "Zend\\Navigation\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "ZendTest\\Navigation\\": "test/" + } + }, + "config": { + "sort-packages": true }, - "minimum-stability": "dev", - "prefer-stable": true, "extra": { "branch-alias": { - "dev-master": "2.8-dev", - "dev-develop": "2.9-dev" + "dev-master": "2.9.x-dev", + "dev-develop": "2.10.x-dev" }, "zf": { "component": "Zend\\Navigation", "config-provider": "Zend\\Navigation\\ConfigProvider" } }, - "autoload-dev": { - "psr-4": { - "ZendTest\\Navigation\\": "test/" - } - }, "scripts": { "check": [ "@cs-check", @@ -63,7 +72,6 @@ "cs-check": "phpcs", "cs-fix": "phpcbf", "test": "phpunit --colors=always", - "test-coverage": "phpunit --colors=always --coverage-clover clover.xml", - "upload-coverage": "coveralls -v" + "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" } } -- cgit