Releases: guzzle/command
Releases · guzzle/command
1.3.2
1.3.1
Support PHP 8.3 (#48) * Support PHP 8.3 * Fixed constructor phpdoc * Update CommandException.php
1.3.0
Fixed calls to deprecated promise functions
1.2.3
Bumped min versions
1.2.2
Improved documentation
1.2.1
Support PHP 8.1 (#43)
1.2.0
Create Makefile
1.1.0
1.0.0
0.9.0
- Updated to use Guzzle 6 and PSR-7.
- Event system has been replaced with a middleware system
- Middleware at the command layer work the same as middleware from the
HTTP layer, but work withCommand
andResult
objects instead of
Request
andResponse
objects - The command middleware is in a separate
HandlerStack
instance than the
HTTP middleware.
- Middleware at the command layer work the same as middleware from the
Result
objects are the result of executing aCommand
and are used to hold
the parsed response data.- Asynchronous code now uses the
guzzlehttp/promises
package instead of
guzzlehttp/ringphp
, which means that asynchronous results are implemented
as Promises/A+ compliantPromise
objects, instead of futures. - The existing
Subscriber
s were removed. - The
ServiceClientInterface
andServiceClient
class now provide the basic
foundation of a web service client.