From 2f2249f149ee19fd4dd834795ee5a2c9fe25174a Mon Sep 17 00:00:00 2001 From: Armin Cifuentes Date: Tue, 21 Nov 2017 17:21:31 -0300 Subject: [PATCH] Updated README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 391abfd..0efc256 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,9 @@ - Relentlessly unit- and integration tested - Implements all known XML/RPC extensions +## Changes in this fork + - Adds a fourth optional parameter to the Client instance to disable trimming the respone. + ## Upgrading to 0.12.x Instead of `egeloen/http-adapter`, we now use the PSR-7 compatible `php-http/httplug`. You will have to change your custom HTTP client implementation and pass a `Http\Message\MessageFactory` implementation and a `Http\Client\HttpClient` to the `HttpAdapterTransport`. See below for details. @@ -28,7 +31,7 @@ You must choose three packages for for the business of HTTP: - A PSR-7 compatible HTTP message (request / response) implementation - A compatible HTTP message factory implementation to create HTTP messages - A PSR-7 compatible HTTP client - + Two widespread message implementations are [zend-diactoros](https://github.com/zendframework/zend-diactoros) and [guzzle/psr7](https://github.com/guzzle/psr7). Message factories for both implementations are available in [php-http/message](https://github.com/php-http/message). For HTTP clients you can pick e.g. [php-http/guzzle6-adapter](https://github.com/php-http/guzzle6-adapter), [php-http/guzzle5-adapter](https://github.com/php-http/guzzle5-adapter), [php-http/curl-client](https://github.com/php-http/curl-client) or [php-http/buzz-adapter](https://github.com/php-http/buzz-adapter).