php-extended / php-http-client-gzip
A psr-18 compliant middleware client that handles gz compression and decompression
Requires
- php: >=7.2
- ext-zip: *
- php-extended/polyfill-php80-stringable: ^1
- psr/http-client: ^1
- psr/http-factory: ^1
Requires (Dev)
README
A psr-18 compliant middleware client that handles gz compression and decompression.
Installation
The installation of this library is made via composer.
Download composer.phar
from their website.
Then add to your composer.json :
"require": {
...
"php-extended/php-http-client-gzip": "^3",
...
}
Then run php composer.phar update
to install this library.
The autoloading of all classes of this library is made through composer's autoloader.
Basic Usage
This library is to make a man in the middle for http requests and responses and logs the events when requests passes. It may be used the following way :
/* @var $client Psr\Http\Message\ProcessorInterface */ // psr-18
/* @var $request Psr\Http\Message\RequestInterface */ // psr-7
$client = new GzipClient($client);
$response = $client->sendRequest($request);
/* @var $response Psr\Http\Message\ResponseInterface */
This library handles the adding of Accept-Header
on the requests and the
decoding according to the Content-Encoding
header on the responses.
License
MIT (See license file).