Skip to content

Releases: graze/guzzle-jsonrpc

Add subscribers in Client Constructur

02 Jan 11:13
1d908f0
Compare
Choose a tag to compare

Register subscribers with the underlying guzzle client.

$client = new Client(
    'https://example.com/jsonrpc',
    ['subscribers' => [new ErrorSubscriber()]]
);

Support for PHP 7

16 Feb 15:19
Compare
Choose a tag to compare

Fixed

  • #28 Fix PHP 7 json parsing on an empty string

Thanks @adlawson 👯.