jfalque/http-mock-guzzle

This package is abandoned and no longer maintained. No replacement package was suggested.

Integrates jfalque/http-mock into Guzzle

v1.0.0 2017-02-05 14:52 UTC

This package is not auto-updated.

Last update: 2020-11-28 09:50:56 UTC


README

Build status Latest Stable Version License

This package is archived and not maintained anymore.

Provides a Guzzle handler that integrates HttpMock.

Installation

Run the following Composer command:

$ composer require --dev jfalque/http-mock-guzzle

Usage

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),
]);