An implementation of GuzzleHttp\Handler\CurlFactoryInterface that plays nicely with React.
public function newClient(
LoopInterface $eventLoop,
array $config = [],
CurlFactory $curlFactory = null,
LoggerInterface $logger = null) : Client
{
$clientFactory = new ReactAwareGuzzleClientFactory();
return $clientFactory->createGuzzleClient($eventLoop, $config, $curlFactory, $logger);
}