Download the PHP package coolblue/http-client-middleware without Composer
On this page you can find all versions of the php package coolblue/http-client-middleware. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download coolblue/http-client-middleware
More information about coolblue/http-client-middleware
Files in coolblue/http-client-middleware
Package http-client-middleware
Short Description A middleware solution for PSR-18 compliant http clients.
License MIT
Informations about the package http-client-middleware
HTTP Client middleware
HTTP Client middleware is a middleware solution for PSR-18 (HTTP Client).
This package contains both a middleware interface as well as a ready to use HTTP Client that is capable of handling middleware.
NB This package does not contain any middleware implementations.
Rationale
The interface offered by PSR-18 (HTTP Client) does not offer any (configuration) options offered by known HTTP abstractions - for example Guzzle and Symfony HttpClient. This makes implementations of this interface exchangeable, but does require you to write these configurations yourself. This can mean additional code that is repeated in multiple locations. Something that might be undesirable.
This might be solved by using a solution similar to the middleware defined in PSR-15 (HTTP Server Request Handlers). Using middleware will allow centralization of functionality without the necessity of extending or wrapping a client. It also enables you to perform actions both before performing the actual request and after the actual request.
Installation
Usage
Middleware needs to comply to the interface \Coolblue\Http\Client\MiddlewareInterface
:
To create a middleware enabled client: