diff options
author | Remi Collet <remi@remirepo.net> | 2018-05-02 15:00:08 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-05-02 15:00:08 +0200 |
commit | aa3a06786a5498c75a6d2185735ad10338f3b53d (patch) | |
tree | ee3ddfb2d99dc85ba4abcb4f4c6c5332487d5549 /composer.json | |
parent | 60c980201d9b9ad6f7d4fdb9a9ab1c99e94b5103 (diff) |
raise dependency on PHP 5.6
add dependency on zend-escaper
use range dependencies on f27+
switch to phpunit6 or phpunit7
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 58 |
1 files changed, 38 insertions, 20 deletions
diff --git a/composer.json b/composer.json index 1cc6250..8ddbc8c 100644 --- a/composer.json +++ b/composer.json @@ -1,40 +1,58 @@ { "name": "zendframework/zend-debug", - "description": " ", + "description": "Safely dump debug information to HTML", "license": "BSD-3-Clause", "keywords": [ - "zf2", + "zf", + "zendframework", "debug" ], - "homepage": "https://github.com/zendframework/zend-debug", - "autoload": { - "psr-4": { - "Zend\\Debug\\": "src/" - } + "support": { + "docs": "https://docs.zendframework.com/zend-debug/", + "issues": "https://github.com/zendframework/zend-debug/issues", + "source": "https://github.com/zendframework/zend-debug", + "rss": "https://github.com/zendframework/zend-debug/releases.atom", + "chat": "https://zendframework-slack.herokuapp.com", + "forum": "https://discourse.zendframework.com/c/questions/components" }, "require": { - "php": ">=5.3.23" + "php": "^5.6 || ^7.0", + "zendframework/zend-escaper": "^2.0" }, "require-dev": { - "zendframework/zend-escaper": "2.*", - "fabpot/php-cs-fixer": "1.7.*", - "phpunit/PHPUnit": "~4.0" + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.5", + "zendframework/zend-coding-standard": "~1.0.0" }, "suggest": { - "ext/xdebug": "XDebug, for better backtrace output", - "zendframework/zend-escaper": "To support escaped output" + "ext-xdebug": "XDebug, for better backtrace output" }, - "minimum-stability": "dev", - "prefer-stable": true, - "extra": { - "branch-alias": { - "dev-master": "2.5-dev", - "dev-develop": "2.6-dev" + "autoload": { + "psr-4": { + "Zend\\Debug\\": "src/" } }, "autoload-dev": { "psr-4": { "ZendTest\\Debug\\": "test/" } + }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "2.6.x-dev", + "dev-develop": "2.7.x-dev" + } + }, + "scripts": { + "check": [ + "@cs-check", + "@test" + ], + "cs-check": "phpcs", + "cs-fix": "phpcbf", + "test": "phpunit --colors=always", + "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" } -}
\ No newline at end of file +} |