Skip to content

Commit a1c559c

Browse files
authored
Adding docs for Guzzle7 (#279)
1 parent e5c1d9a commit a1c559c

File tree

3 files changed

+81
-2
lines changed

3 files changed

+81
-2
lines changed

clients.rst

+9
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ interface and forwarding the calls to an HTTP client not implementing the interf
2222
clients/cakephp-adapter
2323
clients/guzzle5-adapter
2424
clients/guzzle6-adapter
25+
clients/guzzle7-adapter
2526
clients/react-adapter
2627
clients/zend-adapter
2728

@@ -38,6 +39,7 @@ interface and forwarding the calls to an HTTP client not implementing the interf
3839
"``php-http/cakephp-adapter``", "Adapter", ":doc:`Docs </clients/cakephp-adapter>`, `Repo <https://github.com/php-http/cakephp-adapter>`__", "|cakephp_version| |cakephp_downloads| "
3940
"``php-http/guzzle5-adapter``", "Adapter", ":doc:`Docs </clients/guzzle5-adapter>`, `Repo <https://github.com/php-http/guzzle5-adapter>`__", "|guzzle5_version| |guzzle5_downloads| "
4041
"``php-http/guzzle6-adapter``", "Adapter", ":doc:`Docs </clients/guzzle6-adapter>`, `Repo <https://github.com/php-http/guzzle6-adapter>`__", "|guzzle6_version| |guzzle6_downloads| "
42+
"``php-http/guzzle7-adapter``", "Adapter", ":doc:`Docs </clients/guzzle7-adapter>`, `Repo <https://github.com/php-http/guzzle7-adapter>`__", "|guzzle7_version| |guzzle7_downloads| "
4143
"``php-http/react-adapter``", "Adapter", ":doc:`Docs </clients/react-adapter>`, `Repo <https://github.com/php-http/react-adapter>`__", "|react_version| |react_downloads| "
4244
"``php-http/zend-adapter``", "Adapter", ":doc:`Docs </clients/zend-adapter>`, `Repo <https://github.com/php-http/zend-adapter>`__", "|zend_version| |zend_downloads| "
4345

@@ -120,6 +122,13 @@ HTTPlug use the ``provide`` section to tell composer that they do provide the cl
120122
:target: https://github.com/php-http/guzzle6-adapter/releases
121123
:alt: Latest Version
122124

125+
.. |guzzle7_downloads| image:: https://img.shields.io/packagist/dt/php-http/guzzle7-adapter.svg?style=flat-square
126+
:target: https://packagist.org/packages/php-http/guzzle7-adapter
127+
:alt: Total Downloads
128+
.. |guzzle7_version| image:: https://img.shields.io/github/release/php-http/guzzle7-adapter.svg?style=flat-square
129+
:target: https://github.com/php-http/guzzle7-adapter/releases
130+
:alt: Latest Version
131+
123132
.. |react_downloads| image:: https://img.shields.io/packagist/dt/php-http/react-adapter.svg?style=flat-square
124133
:target: https://packagist.org/packages/php-http/react-adapter
125134
:alt: Total Downloads

clients/guzzle6-adapter.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ to the client::
4141
$guzzle = new GuzzleClient($config);
4242
// ...
4343
$adapter = new GuzzleAdapter($guzzle);
44-
44+
4545
If you pass a Guzzle instance to the adapter, make sure to configure Guzzle to not throw exceptions on HTTP error status codes, or this adapter will violate PSR-18.
4646

4747
And use it to send synchronous requests::
@@ -65,4 +65,4 @@ Or send asynchronous ones::
6565

6666
.. include:: includes/further-reading-async.inc
6767

68-
.. _Guzzle 6 HTTP client: http://docs.guzzlephp.org/
68+
.. _Guzzle 6 HTTP client: http://docs.guzzlephp.org/en/6.5/

clients/guzzle7-adapter.rst

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
Guzzle 7 Adapter
2+
================
3+
4+
An HTTPlug adapter for the `Guzzle 7 HTTP client`_. Guzzle 7 supports PSR-18
5+
out of the box. This adapter makes sense if you want to use HTTPlug async interface or to use
6+
Guzzle 7 with a library that did not upgrade to PSR-18 yet and depends on ``php-http/client-implementation``.
7+
8+
Installation
9+
------------
10+
11+
To install the Guzzle adapter, which will also install Guzzle itself (if it was
12+
not yet included in your project), run:
13+
14+
.. code-block:: bash
15+
16+
$ composer require php-http/guzzle7-adapter
17+
18+
Usage
19+
-----
20+
21+
To create a Guzzle7 adapter you should use the `createWithConfig()` function. It will let you to pass Guzzle configuration
22+
to the client::
23+
24+
use Http\Adapter\Guzzle7\Client as GuzzleAdapter;
25+
26+
$config = [
27+
'timeout' => 2,
28+
'handler' => //...
29+
// ...
30+
];
31+
$adapter = GuzzleAdapter::createWithConfig($config);
32+
33+
.. note::
34+
35+
If you want even more control over your Guzzle object, you may give a Guzzle client as first argument to the adapter's
36+
constructor::
37+
38+
use GuzzleHttp\Client as GuzzleClient;
39+
use Http\Adapter\Guzzle7\Client as GuzzleAdapter;
40+
41+
$config = ['timeout' => 5];
42+
// ...
43+
$guzzle = new GuzzleClient($config);
44+
// ...
45+
$adapter = new GuzzleAdapter($guzzle);
46+
47+
If you pass a Guzzle instance to the adapter, make sure to configure Guzzle to not throw exceptions on HTTP error status codes, or this adapter will violate PSR-18.
48+
49+
And use it to send synchronous requests::
50+
51+
use GuzzleHttp\Psr7\Request;
52+
53+
$request = new Request('GET', 'http://httpbin.org');
54+
55+
// Returns a Psr\Http\Message\ResponseInterface
56+
$response = $adapter->sendRequest($request);
57+
58+
Or send asynchronous ones::
59+
60+
use GuzzleHttp\Psr7\Request;
61+
62+
$request = new Request('GET', 'http://httpbin.org');
63+
64+
// Returns a Http\Promise\Promise
65+
$promise = $adapter->sendAsyncRequest(request);
66+
67+
68+
.. include:: includes/further-reading-async.inc
69+
70+
.. _Guzzle 7 HTTP client: http://docs.guzzlephp.org/en/7.0/

0 commit comments

Comments
 (0)