Add tests for the demo files not to have fatal errors
[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         "ext-curl": "*"
16     },
17     "suggest": {
18         "ext-curl": "Needed for HTTPS and HTTP 1.1 support, NTLM Auth etc...",
19         "ext-zlib": "Needed for sending compressed requests and receiving compressed responses, if cURL is not available"
20     },
21     "autoload": {
22         "psr-4": {"PhpXmlRpc\\": "src/"}
23     }
24 }