Lines Matching refs:GuzzleHttp

47 * Improvement: Added `GuzzleHttp\Exception\InvalidArgumentException` [#2163](https://github.com/guz…
48 * Improvement: Added `GuzzleHttp\_current_time()` to use `hrtime()` if that function exists. [#2242…
93 * Improvement: Use `\GuzzleHttp\Promise\rejection_for` function instead of object init [#1827](ht…
121 * Feature: added `GuzzleHttp\json_encode` and `GuzzleHttp\json_decode`.
231 * Added `GuzzleHttp\RequestOptions` to allow request options to be applied
243 * Marked `GuzzleHttp\Client::getDefaultUserAgent` as deprecated.
254 are available in the `guzzlehttp/psr7` package under the `GuzzleHttp\Psr7`
260 * Retry logic is now encapsulated in `GuzzleHttp\Middleware::retry`, which
262 * Mocking responses is now handled using `GuzzleHttp\Handler\MockHandler`.
267 * Utilizing `GuzzleHttp\Promise` instead of React's promise library to avoid
276 * Removed the `GuzzleHttp\Post` namespace.
288 * Removed `GuzzleHttp\Collection`.
289 * Removed `GuzzleHttp\BatchResults`. Batched pool results are now returned as
291 * Removed `GuzzleHttp\Query`. Query string handling is now handled using an
295 * `GuzzleHttp\QueryParser` has been replaced with the
296 `GuzzleHttp\Psr7\parse_query`.
346 * Added a `GuzzleHttp\Pool::send()` convenience method to match the docs.
386 * Added `GuzzleHttp\Pool` which implements FutureInterface and transfers
389 * Removed `GuzzleHttp\ClientInterface::sendAll` and marked
390 `GuzzleHttp\Client::sendAll` as deprecated (it's still there, just not the
400 responses, `GuzzleHttp\Collection`, `GuzzleHttp\Url`,
401 `GuzzleHttp\Query`, `GuzzleHttp\Post\PostBody`, and
402 `GuzzleHttp\Cookie\SetCookie`. This blog post provides a good outline of
408 implemented in `GuzzleHttp\Utils` using camelCase. `GuzzleHttp\json_decode`
409 moved to `GuzzleHttp\Utils::jsonDecode`. `GuzzleHttp\get_path` moved to
410 `GuzzleHttp\Utils::getPath`. `GuzzleHttp\set_path` moved to
411 `GuzzleHttp\Utils::setPath`. `GuzzleHttp\batch` should now be
412 `GuzzleHttp\Pool::batch`, which returns an `objectStorage`. Using functions.php
417 * Removing all classes from `GuzzleHttp\Adapter`, these are now
418 implemented as callables that are stored in `GuzzleHttp\Ring\Client`.
421 * Moved `GuzzleHttp\Adapter\Transaction` to `GuzzleHttp\Transaction`. The
432 `GuzzleHttp\Message\MessageInterface::getHeader`. If you want to get a header
436 * `GuzzleHttp\Message\MessageFactory` no longer allows subclasses to add
445 * Updated to "GuzzleHttp\Streams" 3.0.
446 * `GuzzleHttp\Stream\StreamInterface::getContents()` no longer accepts a
449 * `GuzzleHttp\Stream\Stream::__construct`,
450 `GuzzleHttp\Stream\Stream::factory`, and
451 `GuzzleHttp\Stream\Utils::create` no longer accept a size in the second
557 * Added `ToArrayInterface` to `GuzzleHttp\Cookie\CookieJar`
562 * Added a `GuzzleHttp\json_decode()` wrapper to safely parse JSON.
563 * Added `setPort()` and `getPort()` to `GuzzleHttp\Message\RequestInterface`.
593 * Added `GuzzleHttp\batch()` as a convenience function for sending requests in
595 * Restructured how events are added to `GuzzleHttp\ClientInterface::sendAll()`.