1st attempt at having code-coverage info for tests uploaded to online QA services
[plcapi.git] / composer.json
1 {
2     "name": "phpxmlrpc/phpxmlrpc",
3     "description": "A php library for building xmlrpc clients and servers",
4     "license": "BSD-3-Clause",
5     "homepage": "http://gggeek.github.io/phpxmlrpc/",
6     "keywords": [ "xmlrpc", "webservices" ],
7     "require": {
8         "php": ">=5.3.0",
9         "ext-xml": "*"
10     },
11     "require-dev": {
12         "phpunit/phpunit": ">=4.0.0",
13         "phpunit/phpunit-selenium": "*",
14         "codeclimate/php-test-reporter": "dev-master"
15     },
16     "suggest": {
17         "ext-curl": "Needed for HTTPS and HTTP 1.1 support, NTLM Auth etc...",
18         "ext-zlib": "Needed for sending compressed requests and receiving compressed responses, if cURL is not available"
19     },
20     "autoload": {
21         "psr-4": {"PhpXmlRpc\\": "src/"}
22     }
23 }