Add composer.json
authorgggeek <giunta.gaetano@gmail.com>
Sun, 15 Dec 2013 12:28:20 +0000 (13:28 +0100)
committergggeek <giunta.gaetano@gmail.com>
Sun, 15 Dec 2013 12:28:20 +0000 (13:28 +0100)
NEWS
composer.json [new file with mode: 0644]

diff --git a/NEWS b/NEWS
index 266d879..a7cbac8 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,10 @@
-XML-RPC for PHP version 3.0.0 - 2010/xx/yy\r
+XML-RPC for PHP version 3.0.0 - 2013/xx/yy\r
+\r
+This release corrects all bugs that have been reported and successfully reproduced since\r
+version 3.0.0 beta.\r
+\r
+It also is the first release to be installable via composer.\r
 \r
 \r
-This release corrects all bugs that have been reported and sucesfully reproduced since\r
-version 3.0.0 beta\r
 \r
 XML-RPC for PHP version 3.0.0 beta - 2009/09/05\r
 \r
 \r
 XML-RPC for PHP version 3.0.0 beta - 2009/09/05\r
 \r
@@ -50,7 +53,7 @@ XML-RPC for PHP version 2.2.1 - 2008/03/06
 This release corrects all bugs that have been reported and sucesfully reproduced.\r
 It is the last release of the library that will support PHP 4.\r
 \r
 This release corrects all bugs that have been reported and sucesfully reproduced.\r
 It is the last release of the library that will support PHP 4.\r
 \r
-* fixed: work aroung bug in php 5.2.2 which broke support of HTTP_RAW_POST_DATA\r
+* fixed: work around bug in php 5.2.2 which broke support of HTTP_RAW_POST_DATA\r
 * fixed: is_dir parameter of setCaCertificate() method is reversed\r
 * fixed: a php warning in xmlrpc_client creator method\r
 * fixed: parsing of '1e+1' as valid float\r
 * fixed: is_dir parameter of setCaCertificate() method is reversed\r
 * fixed: a php warning in xmlrpc_client creator method\r
 * fixed: parsing of '1e+1' as valid float\r
diff --git a/composer.json b/composer.json
new file mode 100644 (file)
index 0000000..819d668
--- /dev/null
@@ -0,0 +1,10 @@
+{
+    "name": "phpxmlrpc/phpxmlrpc",
+    "description": "A php library for building xmlrpc clients and servers",
+    "license": "BSD-3-Clause",
+    "homepage": "http://phpxmlrpc.sourceforge.net/",
+    "keywords": [ "xmlrpc", "webservices" ],
+    "autoload": {
+        "classmap": [ "lib/xmlrpc.inc", "lib/xmlrpcs.inc" ]
+    }
+}
\ No newline at end of file