php-extended / php-http-client-accept-charset
A psr-18 compliant middleware client that handles accept-charset headers.
4.0.0
2022-05-30 06:51 UTC
Requires
- php: >=7.2
- php-extended/php-charset-object: ^4
- php-extended/polyfill-php80-stringable: ^1
- psr/http-client: ^1
Requires (Dev)
README
A psr-18 compliant middleware client that handles accept-charset headers.
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-accept-charset": "^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\Client\ClientInterface */ // psr-18
/* @var $request Psr\Http\Message\RequestInterface */ // psr-7
$client = new AcceptCharsetClient($client);
$response = $client->sendRequest($request);
/* @var $response Psr\Http\Message\ResponseInterface */
This library handles the adding of Accept-Charset
headers
on the requests.
License
MIT (See license file).