Avoid use of return-by-ref for send() calls
[plcapi.git] / composer.json
index 819d668..bae04ba 100644 (file)
@@ -2,9 +2,22 @@
     "name": "phpxmlrpc/phpxmlrpc",
     "description": "A php library for building xmlrpc clients and servers",
     "license": "BSD-3-Clause",
-    "homepage": "http://phpxmlrpc.sourceforge.net/",
+    "homepage": "http://gggeek.github.io/phpxmlrpc/",
     "keywords": [ "xmlrpc", "webservices" ],
+    "require": {
+        "php": ">=5.3.0",
+        "ext-xml": "*"
+    },
+    "require-dev": {
+        "phpunit/phpunit": ">=4.0.0",
+        "phpunit/phpunit-selenium": "*",
+        "codeclimate/php-test-reporter": "dev-master"
+    },
+    "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"
+    },
     "autoload": {
-        "classmap": [ "lib/xmlrpc.inc", "lib/xmlrpcs.inc" ]
+        "psr-4": {"PhpXmlRpc\\": "src/"}
     }
-}
\ No newline at end of file
+}