diff options
author | purplecode <niespammnie@gmail.com> | 2013-12-08 12:10:48 +0100 |
---|---|---|
committer | purplecode <niespammnie@gmail.com> | 2013-12-08 12:10:48 +0100 |
commit | af7685c682963dd1f9785db9e4f858a62c93206f (patch) | |
tree | b12061cfed99fb5825d57a1a413b31e5bdb2d5a9 | |
parent | 10b3b2afe2dbe6517769f1da3c1995173eba0135 (diff) | |
parent | dbd34a0ccd72fea2101d94da5e5167498185cb2e (diff) | |
download | php.curl-af7685c682963dd1f9785db9e4f858a62c93206f.zip php.curl-af7685c682963dd1f9785db9e4f858a62c93206f.tar.gz php.curl-af7685c682963dd1f9785db9e4f858a62c93206f.tar.bz2 |
Merge branch 'master' of https://github.com/purplecode/php.curl
-rw-r--r-- | README.md | 23 |
1 files changed, 21 insertions, 2 deletions
@@ -1,2 +1,21 @@ -php.curl -======== +# php.curl + +**PCurl** is a PHP client library for [RESTful](http://en.wikipedia.org/wiki/Representational_State_Transfer) +web services. + +PCurl supports GET/POST/PUT/DELETE request methods. Unlike other similar libaries supoprts also HTTPS certificates verification. + +Composer Installation +------------ + +To install PCurl, use the following composer `require` statement: +``` +{ + "require": { + "purplecode/pcurl": "dev-master" + } +} + +``` + +Enjoy! |