Home
last modified time | relevance | path

Searched refs:GuzzleHttp (Results 26 – 50 of 185) sorted by path

12345678

/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md121 * Feature: added `GuzzleHttp\json_encode` and `GuzzleHttp\json_decode`.
288 * Removed `GuzzleHttp\Collection`.
296 `GuzzleHttp\Psr7\parse_query`.
400 responses, `GuzzleHttp\Collection`, `GuzzleHttp\Url`,
401 `GuzzleHttp\Query`, `GuzzleHttp\Post\PostBody`, and
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
421 * Moved `GuzzleHttp\Adapter\Transaction` to `GuzzleHttp\Transaction`. The
[all …]
H A DREADME.md23 $client = new \GuzzleHttp\Client();
31 $request = new \GuzzleHttp\Psr7\Request('GET', 'http://httpbin.org');
80 | 4.x | EOL | `guzzlehttp/guzzle` | `GuzzleHttp` | [v4][guzzle-4-repo] | N/A …
81 | 5.x | EOL | `guzzlehttp/guzzle` | `GuzzleHttp` | [v5][guzzle-5-repo] | [v5][guzzle-5-d…
82 | 6.x | Latest | `guzzlehttp/guzzle` | `GuzzleHttp` | [v6][guzzle-6-repo] | [v6][guzzle-6-d…
H A DUPGRADING.md14 `GuzzleHttp\HandlerStack`).
41 - `GuzzleHttp\Query` and `GuzzleHttp\QueryParser` have been removed. Query
79 `GuzzleHttp\Psr7\Uri`) for URI support. `GuzzleHttp\Url` is now gone.
174 - `GuzzleHttp\Url`
175 - `GuzzleHttp\Query`
184 - `GuzzleHttp\json_decode` -> `GuzzleHttp\Utils::jsonDecode`
185 - `GuzzleHttp\get_path` -> `GuzzleHttp\Utils::getPath`
186 - `GuzzleHttp\Utils::setPath` -> `GuzzleHttp\set_path`
187 - `GuzzleHttp\Pool::batch` -> `GuzzleHttp\batch`. This function is, however,
191 `GuzzleHttp\get()`, `GuzzleHttp\post()`, etc.). Use a `GuzzleHttp\Client`
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DClient.php2 namespace GuzzleHttp; namespace
4 use GuzzleHttp\Cookie\CookieJar;
5 use GuzzleHttp\Exception\GuzzleException;
6 use GuzzleHttp\Promise;
7 use GuzzleHttp\Psr7;
397 $options['body'] = \GuzzleHttp\json_encode($options['json']);
H A DClientInterface.php2 namespace GuzzleHttp; namespace
4 use GuzzleHttp\Exception\GuzzleException;
5 use GuzzleHttp\Promise\PromiseInterface;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Cookie/
H A DCookieJar.php2 namespace GuzzleHttp\Cookie;
H A DCookieJarInterface.php2 namespace GuzzleHttp\Cookie;
H A DFileCookieJar.php2 namespace GuzzleHttp\Cookie;
59 $jsonStr = \GuzzleHttp\json_encode($json);
82 $data = \GuzzleHttp\json_decode($json, true);
H A DSessionCookieJar.php2 namespace GuzzleHttp\Cookie;
H A DSetCookie.php2 namespace GuzzleHttp\Cookie;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Exception/
H A DBadResponseException.php2 namespace GuzzleHttp\Exception;
H A DClientException.php2 namespace GuzzleHttp\Exception;
H A DConnectException.php2 namespace GuzzleHttp\Exception;
H A DGuzzleException.php2 namespace GuzzleHttp\Exception;
H A DInvalidArgumentException.php3 namespace GuzzleHttp\Exception;
H A DRequestException.php2 namespace GuzzleHttp\Exception;
4 use GuzzleHttp\Promise\PromiseInterface;
127 return \GuzzleHttp\Psr7\get_message_body_summary($response);
H A DSeekException.php2 namespace GuzzleHttp\Exception;
H A DServerException.php2 namespace GuzzleHttp\Exception;
H A DTooManyRedirectsException.php2 namespace GuzzleHttp\Exception;
H A DTransferException.php2 namespace GuzzleHttp\Exception;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DCurlFactory.php2 namespace GuzzleHttp\Handler;
4 use GuzzleHttp\Exception\ConnectException;
5 use GuzzleHttp\Exception\RequestException;
6 use GuzzleHttp\Promise\FulfilledPromise;
7 use GuzzleHttp\Psr7;
8 use GuzzleHttp\Psr7\LazyOpenStream;
9 use GuzzleHttp\TransferStats;
171 return \GuzzleHttp\Promise\rejection_for(
203 return \GuzzleHttp\Promise\rejection_for($error);
382 $sink = \GuzzleHttp\Psr7\stream_for($sink);
[all …]
H A DCurlFactoryInterface.php2 namespace GuzzleHttp\Handler;
H A DCurlHandler.php2 namespace GuzzleHttp\Handler;
4 use GuzzleHttp\Psr7;
H A DCurlMultiHandler.php2 namespace GuzzleHttp\Handler;
4 use GuzzleHttp\Promise as P;
5 use GuzzleHttp\Promise\Promise;
6 use GuzzleHttp\Utils;
H A DEasyHandle.php2 namespace GuzzleHttp\Handler;
4 use GuzzleHttp\Psr7\Response;
53 $headers = \GuzzleHttp\headers_from_lines($this->headers);
54 $normalizedKeys = \GuzzleHttp\normalize_header_keys($headers);

12345678