Skip to content
This repository was archived by the owner on Apr 28, 2020. It is now read-only.

Commit aaedcf3

Browse files
committed
Merge pull request #35 from webimpress/hotfix/composer
Updated composer.json and dependencies
2 parents 9c68dbd + 2a84b3b commit aaedcf3

File tree

2 files changed

+138
-132
lines changed

2 files changed

+138
-132
lines changed

composer.json

Lines changed: 30 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,19 @@
11
{
22
"name": "zendframework/zend-xmlrpc",
3-
"description": " ",
3+
"description": "Fully-featured XML-RPC server and client implementations",
44
"license": "BSD-3-Clause",
55
"keywords": [
6-
"zf2",
6+
"zf",
7+
"zendframework",
78
"xmlrpc"
89
],
9-
"homepage": "https://github.com/zendframework/zend-xmlrpc",
10-
"autoload": {
11-
"psr-4": {
12-
"Zend\\XmlRpc\\": "src/"
13-
}
14-
},
15-
"autoload-dev": {
16-
"psr-4": {
17-
"ZendTest\\XmlRpc\\": "test/"
18-
},
19-
"files": [
20-
"test/autoload.php",
21-
"test/TestAsset/functions.php"
22-
]
10+
"support": {
11+
"docs": "https://docs.zendframework.com/zend-xmlrpc/",
12+
"issues": "https://github.com/zendframework/zend-xmlrpc/issues",
13+
"source": "https://github.com/zendframework/zend-xmlrpc",
14+
"rss": "https://github.com/zendframework/zend-xmlrpc/releases.atom",
15+
"chat": "https://zendframework-slack.herokuapp.com",
16+
"forum": "https://discourse.zendframework.com/c/questions/components"
2317
},
2418
"require": {
2519
"php": "^5.6 || ^7.0",
@@ -30,14 +24,29 @@
3024
"zendframework/zendxml": "^1.0.2"
3125
},
3226
"require-dev": {
33-
"phpunit/PHPUnit": "^5.7.25 || ^6.4.4",
27+
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
3428
"zendframework/zend-coding-standard": "~1.0.0"
3529
},
3630
"suggest": {
3731
"zendframework/zend-cache": "To support Zend\\XmlRpc\\Server\\Cache usage"
3832
},
39-
"minimum-stability": "dev",
40-
"prefer-stable": true,
33+
"autoload": {
34+
"psr-4": {
35+
"Zend\\XmlRpc\\": "src/"
36+
}
37+
},
38+
"autoload-dev": {
39+
"psr-4": {
40+
"ZendTest\\XmlRpc\\": "test/"
41+
},
42+
"files": [
43+
"test/autoload.php",
44+
"test/TestAsset/functions.php"
45+
]
46+
},
47+
"config": {
48+
"sort-packages": true
49+
},
4150
"extra": {
4251
"branch-alias": {
4352
"dev-master": "2.6.x-dev",
@@ -51,7 +60,7 @@
5160
],
5261
"cs-check": "phpcs",
5362
"cs-fix": "phpcbf",
54-
"test": "phpunit",
55-
"test-coverage": "phpunit --coverage-clover clover.xml"
63+
"test": "phpunit --colors=always",
64+
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
5665
}
5766
}

0 commit comments

Comments
 (0)