X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=composer.json;h=3a1f0280ded78c6754649861a7386cc3142b7d4b;hb=640b8c0e60bb8a13dde241ec4d23ca1f58bb5b8a;hp=294d5c6746b0b967aa2bbd02fd2f7fe945ddf360;hpb=fc11f8b24caff6db782867a0061f70a1e35ef5ca;p=plcapi.git diff --git a/composer.json b/composer.json index 294d5c6..3a1f028 100644 --- a/composer.json +++ b/composer.json @@ -5,12 +5,38 @@ "homepage": "http://gggeek.github.io/phpxmlrpc/", "keywords": [ "xmlrpc", "webservices" ], "require": { - "php": ">=5.3.0" + "php": ">=5.3.0", + "ext-xml": "*" }, "require-dev": { - "phpunit/phpunit": "4.3.*" + "phpunit/phpunit": ">=4.0.0", + "phpunit/phpunit-selenium": "*", + "codeclimate/php-test-reporter": "dev-master", + "ext-curl": "*", + "ext-mbstring": "*", + "indeyets/pake": "~1.99", + "sami/sami": "~3.1", + "docbook/docbook-xsl": "~1.78" + }, + "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/" ] - } -} \ No newline at end of file + "psr-4": {"PhpXmlRpc\\": "src/"} + }, + "repositories": [ + { + "type": "package", + "package": { + "name": "docbook/docbook-xsl", + "version": "1.78.1", + "dist": { + "url": "http://sourceforge.net/projects/docbook/files/docbook-xsl/1.78.1/docbook-xsl-1.78.1.zip/download", + "type": "zip" + } + } + } + ] +}