X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=composer.json;h=62d1129b32cf4022c04e5c8d640b0d78c84ecce8;hb=83bdd39e6807587c07a979b8b7a008322f639710;hp=20c31ec61d0c8dcf5dcb2134b431cf3b6920b5e1;hpb=f9dbab373a5ed33f7246daf2865ea2e2231a362e;p=plcapi.git diff --git a/composer.json b/composer.json index 20c31ec..62d1129 100644 --- a/composer.json +++ b/composer.json @@ -5,9 +5,22 @@ "homepage": "http://gggeek.github.io/phpxmlrpc/", "keywords": [ "xmlrpc", "webservices" ], "require": { - "php": ">=5.1.0" + "php": ">=5.3.0", + "ext-xml": "*" + }, + "require-dev": { + "phpunit/phpunit": ">=4.0.0", + "phpunit/phpunit-selenium": "*", + "codeclimate/php-test-reporter": "dev-master", + "ext-curl": "*", + "ext-mbstring": "*" + }, + "suggest": { + "ext-curl": "Needed for HTTPS and HTTP 1.1 support, NTLM Auth etc...", + "ext-zlib": "Needed for sending compressed requests and receiving compressed responses, if cURL is not available", + "ext-mbstring": "Needed to allow reception of requests/responses in character sets other than ASCII,LATIN-1,UTF-8" }, "autoload": { - "classmap": [ "lib/xmlrpc.inc", "lib/xmlrpcs.inc" ] + "psr-4": {"PhpXmlRpc\\": "src/"} } -} \ No newline at end of file +}