Releases: graze/guzzle-jsonrpc
Releases · graze/guzzle-jsonrpc
Add subscribers in Client Constructur
Register subscribers with the underlying guzzle client.
$client = new Client(
'https://example.com/jsonrpc',
['subscribers' => [new ErrorSubscriber()]]
);
Support for PHP 7
Fixed
- #28 Fix PHP 7 json parsing on an empty string
Thanks @adlawson 👯.