An HTTPlug implementation from the Symfony HttpClient.
To install the Symfony client, run:
$ composer require symfony/http-clientThis client does not come with a PSR-7 implementation out of the box. If you do
not require one, discovery <../discovery> will install Nyholm PSR-7. If
you do not allow the composer plugin of the php-http/discovery component,
you need to install a PSR-7 implementation manually:
$ composer require nyholm/psr7use Symfony\Component\HttpClient\HttplugClient;
$symfonyClient = new HttplugClient();Note
Check the official Symfony HttpClient documentation for more details.