nopolabs / react-aware-guzzle-client
An implementation of GuzzleHttp\Handler\CurlFactoryInterface that plays nicely with React
dev-master
2019-07-12 18:34 UTC
Requires
- php: >=7.0
- guzzlehttp/guzzle: ^6.2
- psr/log: ^1.0
- react/event-loop: ^0.4.1
Requires (Dev)
- nopolabs/mock-with-expectations: ^1.0
- phpstan/phpstan: ^0.9.2
- phpunit/phpunit: ^6.0
This package is auto-updated.
Last update: 2025-03-13 07:01:01 UTC
README
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); }