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 withCommandandResultobjects instead of
RequestandResponseobjects - The command middleware is in a separate
HandlerStackinstance than the
HTTP middleware.
- Middleware at the command layer work the same as middleware from the
Resultobjects are the result of executing aCommandand are used to hold
the parsed response data.- Asynchronous code now uses the
guzzlehttp/promisespackage instead of
guzzlehttp/ringphp, which means that asynchronous results are implemented
as Promises/A+ compliantPromiseobjects, instead of futures. - The existing
Subscribers were removed. - The
ServiceClientInterfaceandServiceClientclass now provide the basic
foundation of a web service client.