summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json58
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
+}