This package is archived and not maintained anymore.
Provides a Guzzle handler that integrates HttpMock.
Run the following Composer command:
$ composer require --dev jfalque/http-mock-guzzle
The easiest way to use the HttpMock handler is to create a default stack with the dedicated HttpMockHandler::createStack()
method:
use GuzzleHttp\Client;
use Jfalque\HttpMock\Guzzle\HttpMockHandler;
use Jfalque\HttpMock\Server;
$server = new Server();
$client = new Client([
'handler' => HttpMockHandler::createStack($server),
]);
The handler can be created manually and used with an existing stack:
$server = new Server();
$handler = new HttpMockHandler($server);
$stack->setHandler($handler);
Or injected in a client without using a stack:
$server = new Server();
$client = new Client([
'handler' => new HttpMockHandler($server),
]);