You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,12 @@
4
4
5
5
# php-rest-client
6
6
7
-
This library provides classes to implement basic REST clients based on PHP's cURL extension. Two client classes are made available:
7
+
This library provides classes implementing basic REST clients based on PHP's cURL extension. Two client classes are made available:
8
8
9
9
-**RestClient** - a class for executing RESTful service calls using a fluent interface.
10
10
-**RestMultiClient** - a class which extends RestClient to provide curl_multi capabilities to allow for multiple REST calls to be made in parallel.
11
+
12
+
Additionally this library provides classes which wrap curl responses within object oriented interface:
11
13
-**CurlHttpResponse** - a class which encapsulates curl response into class wrapper.
12
14
-**CurlMultiHttpResponse** - a class which represents a collection of CurlHttpRepsonse objects as returned from multiple parallel REST calls.
13
15
@@ -31,7 +33,7 @@ This library is developed against PHP 7.1 and tested via Travis CI against:
31
33
Please see Travis CI build status at: https://travis-ci.org/mikecbrant/php-rest-client
32
34
Please see Code Climate code coverage and health informatoin at: https://codeclimate.com/github/mikecbrant/php-rest-client
33
35
34
-
This version represents a total re-factoring from previous versions of this library, which were getting long in the tooth and were out of compliance with more modern PHP development standards (i.e. PSR) and tools (i.e. composer).
36
+
This library is available as as mikecbrant/php-rest-client omposer package at https://packagist.org/packages/mikecbrant/php-rest-client
0 commit comments