/react-aware-guzzle-client

A GuzzleHttp\Client that plays nicely with React

Primary LanguagePHPMIT LicenseMIT

ReactAwareCurlFactory

Build Status Code Climate Scrutinizer Code Quality License Latest Stable Version

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);
}