summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-05-02 15:19:59 +0200
committerRemi Collet <remi@remirepo.net>2018-05-02 15:19:59 +0200
commit782e219c4c31aa51bcb1fa89338b4097c3b41858 (patch)
tree2494a0fc6d4e949c14547d9dae743a6ef8c579e2 /composer.json
parent17f540b00069845066c97f717973d5f960d88936 (diff)
update to 3.2.0
switch to phpunit6 or phpunit7
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json40
1 files changed, 25 insertions, 15 deletions
diff --git a/composer.json b/composer.json
index 679d1f3..8c99009 100644
--- a/composer.json
+++ b/composer.json
@@ -1,29 +1,31 @@
{
"name": "zendframework/zend-stdlib",
- "description": " ",
+ "description": "SPL extensions, array utilities, error handlers, and more",
"license": "BSD-3-Clause",
"keywords": [
- "zf2",
+ "zf",
+ "zendframework",
"stdlib"
],
- "homepage": "https://github.com/zendframework/zend-stdlib",
- "autoload": {
- "psr-4": {
- "Zend\\Stdlib\\": "src/"
- }
+ "support": {
+ "docs": "https://docs.zendframework.com/zend-stdlib/",
+ "issues": "https://github.com/zendframework/zend-stdlib/issues",
+ "source": "https://github.com/zendframework/zend-stdlib",
+ "rss": "https://github.com/zendframework/zend-stdlib/releases.atom",
+ "slack": "https://zendframework-slack.herokuapp.com",
+ "forum": "https://discourse.zendframework.com/c/questions/components"
},
"require": {
"php": "^5.6 || ^7.0"
},
"require-dev": {
- "athletic/athletic": "~0.1",
- "phpunit/PHPUnit": "~4.0",
+ "phpbench/phpbench": "^0.13",
+ "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
"zendframework/zend-coding-standard": "~1.0.0"
},
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev",
- "dev-develop": "3.2-dev"
+ "autoload": {
+ "psr-4": {
+ "Zend\\Stdlib\\": "src/"
}
},
"autoload-dev": {
@@ -32,6 +34,15 @@
"ZendBench\\Stdlib\\": "benchmark/"
}
},
+ "config": {
+ "sort-packages": true
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.2.x-dev",
+ "dev-develop": "3.3.x-dev"
+ }
+ },
"scripts": {
"check": [
"@cs-check",
@@ -40,7 +51,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"
}
}