riki137 / amp-client
PHP8.2+ AMPHPv3 adapter for Symfony HttpClient
Requires
- php: >=8.2
- amphp/http-client: ^5.0
- psr/log: ^1|^2|^3
- symfony/http-client: ^7.0
- symfony/http-client-contracts: ^3.4.1
- symfony/service-contracts: ^2.5|^3
Conflicts
- php-http/discovery: <1.15
- symfony/http-foundation: <6.4
README
This package is deprecated and should be replaced by efabrica/revolt-curl-client.
This is a partial fork of @nicolas-grekas 's pull request for SymfonyHttpClient that adds support for using AMPHPv3 (AMPHP HTTPClient v5) with PHP >= 8.2 instead of waiting for PHP 8.4.
This is not a full fork that replaces the original Symfony HttpClient, but a separate package that can be used alongside it.
The code for HTTP client and it's other adapters is removed, only it's AMPHPv3-related and necessary @internal
code is kept.
It solves the problem of the destructor suspension by deferring the destruction.
Usage
composer require riki137/amp-client
use Riki137\AmpClient\AmpHttpClientV5; $client = new AmpHttpClientV5($options, null, $maxHostConnections, $maxPendingPushes); // implements HttpClientInterface, as you're used to $client->request('GET', 'https://example.com');
If you use this client, you should include this piece of code that executes when your application is closing (onShutdown, terminate event, etc.):
\Revolt\EventLoop::run();
This ensures that all pending requests are completed before the application is closed and allows you to avoid PHP <8.4's destructor suspension.