From 17104ed9967a697ab43392b0667ef13d88736db7 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 26 Apr 2018 13:32:07 +0200 Subject: update to 2.8.0 raise dependency on zend-math 2.7 raise dependency on zend-stdlib 2.7.7 switch to phpunit6 or phpunit7 use range dependencies on F27+ --- composer.json | 52 ++++++++++++++++++++++++++++++---------------------- 1 file changed, 30 insertions(+), 22 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index 7dcff83..eea87fb 100644 --- a/composer.json +++ b/composer.json @@ -1,29 +1,32 @@ { "name": "zendframework/zend-captcha", - "description": " ", + "description": "Generate and validate CAPTCHAs using Figlets, images, ReCaptcha, and more", "license": "BSD-3-Clause", "keywords": [ - "zf2", + "zf", + "zendframework", "captcha" ], - "homepage": "https://github.com/zendframework/zend-captcha", - "autoload": { - "psr-4": { - "Zend\\Captcha\\": "src/" - } + "support": { + "docs": "https://docs.zendframework.com/zend-captcha/", + "issues": "https://github.com/zendframework/zend-captcha/issues", + "source": "https://github.com/zendframework/zend-captcha", + "rss": "https://github.com/zendframework/zend-captcha/releases.atom", + "chat": "https://zendframework-slack.herokuapp.com", + "forum": "https://discourse.zendframework.com/c/questions/components" }, "require": { "php": "^5.6 || ^7.0", - "zendframework/zend-math": "^2.6 || ^3.0", - "zendframework/zend-stdlib": "^2.7 || ^3.0" + "zendframework/zend-math": "^2.7 || ^3.0", + "zendframework/zend-stdlib": "^2.7.7 || ^3.1" }, "require-dev": { - "zendframework/zend-session": "^2.6", - "zendframework/zend-text": "^2.6", - "zendframework/zend-validator": "^2.6", - "zendframework/zendservice-recaptcha": "^3.0", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2", "zendframework/zend-coding-standard": "~1.0.0", - "phpunit/PHPUnit": "~4.8" + "zendframework/zend-session": "^2.8", + "zendframework/zend-text": "^2.6", + "zendframework/zend-validator": "^2.10.1", + "zendframework/zendservice-recaptcha": "^3.0" }, "suggest": { "zendframework/zend-i18n-resources": "Translations of captcha messages", @@ -32,12 +35,9 @@ "zendframework/zend-validator": "Zend\\Validator component", "zendframework/zendservice-recaptcha": "ZendService\\ReCaptcha component" }, - "minimum-stability": "dev", - "prefer-stable": true, - "extra": { - "branch-alias": { - "dev-master": "2.7-dev", - "dev-develop": "2.8-dev" + "autoload": { + "psr-4": { + "Zend\\Captcha\\": "src/" } }, "autoload-dev": { @@ -45,6 +45,15 @@ "ZendTest\\Captcha\\": "test/" } }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "2.8.x-dev", + "dev-develop": "2.9.x-dev" + } + }, "scripts": { "check": [ "@cs-check", @@ -53,7 +62,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