From: gggeek Date: Sun, 15 Dec 2013 12:28:20 +0000 (+0100) Subject: Add composer.json X-Git-Tag: 3.0.0~16 X-Git-Url: http://git.onelab.eu/?p=plcapi.git;a=commitdiff_plain;h=503601a870f05302a6f5a99d85630463806de291 Add composer.json --- diff --git a/NEWS b/NEWS index 266d879..a7cbac8 100644 --- a/NEWS +++ b/NEWS @@ -1,7 +1,10 @@ -XML-RPC for PHP version 3.0.0 - 2010/xx/yy +XML-RPC for PHP version 3.0.0 - 2013/xx/yy + +This release corrects all bugs that have been reported and successfully reproduced since +version 3.0.0 beta. + +It also is the first release to be installable via composer. -This release corrects all bugs that have been reported and sucesfully reproduced since -version 3.0.0 beta XML-RPC for PHP version 3.0.0 beta - 2009/09/05 @@ -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. It is the last release of the library that will support PHP 4. -* fixed: work aroung bug in php 5.2.2 which broke support of HTTP_RAW_POST_DATA +* fixed: work around bug in php 5.2.2 which broke support of HTTP_RAW_POST_DATA * fixed: is_dir parameter of setCaCertificate() method is reversed * fixed: a php warning in xmlrpc_client creator method * fixed: parsing of '1e+1' as valid float diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..819d668 --- /dev/null +++ b/composer.json @@ -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