php-extended / php-http-client-logger
A psr-18 compliant middleware client that logs psr-7 http messages.
Package info
gitlab.com/php-extended/php-http-client-logger
pkg:composer/php-extended/php-http-client-logger
9.0.7
2026-05-20 01:18 UTC
Requires
- php: >=8.2
- psr/http-client: ^1
- psr/log: ^3
Requires (Dev)
This package is auto-updated.
Last update: 2026-05-19 23:22:14 UTC
README
A psr-18 compliant middleware client that logs psr-7 http messages.
Installation
The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.
- Download
composer.pharfrom their website. - Then run the following command to install this library as dependency :
php composer.phar php-extended/php-http-client-logger ^9
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 Psr\Log\LoggerInterface $logger */ // psr-3
/** @var Psr\Http\Client\ClientInterface $client */ // psr-18
/** @var Psr\Http\Message\RequestInterface $request */ // psr-7
$client = new LoggerClient($logger, $client);
$response = $client->sendRequest($request);
/** @var Psr\Http\Message\ResponseInterface $response */
License
MIT (See license file).