Skip to content

Commit e004e0f

Browse files
committedSep 1, 2016
Added info how to configure the HTTP client
1 parent 99c9ea0 commit e004e0f

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,7 @@ Cookbook
527527
We have a small cookbook where you can find examples on common use cases:
528528

529529
* [Caching responses](/docs/cookbook/cache.md)
530+
* [Configuring the HTTP client](/docs/cookbook/http-client.md)
530531

531532

532533
Contributing

‎docs/cookbook/http-client.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Configuring the HTTP client
2+
3+
The Geocoder is decoupled from the HTTP client that sends the HTTP messages. This means
4+
that you are responsible for configuring the HTTP client. Usually the default configuration
5+
is good enough but sometime you may want to do something differently.
6+
7+
How you configure the client differs between different clients below are two examples,
8+
one with [Guzzle6 client](https://github.com/guzzle/guzzle) and one with the
9+
[cURL client](https://github.com/php-http/curl-client).
10+
11+
## Guzzle6
12+
13+
```php
14+
use GuzzleHttp\Client as GuzzleClient;
15+
use Http\Adapter\Guzzle6\Client;
16+
use Geocoder\Provider\GoogleMaps;
17+
18+
$config = [
19+
'timeout' => 2.0,
20+
'verify' => false,
21+
];
22+
$guzzle = new GuzzleClient($config);
23+
24+
$adapter = new Client($guzzle);
25+
$geocoder = new GoogleMaps($adapter);
26+
27+
$geocoder->geocode(...);
28+
```
29+
30+
31+
## cURL
32+
33+
```php
34+
use Http\Client\Curl\Client;
35+
use Geocoder\Provider\GoogleMaps;
36+
37+
$options = [
38+
CURLOPT_CONNECTTIMEOUT => 2,
39+
CURLOPT_SSL_VERIFYPEER => false,
40+
];
41+
42+
$adapter = new Client(null, null, $options);
43+
$geocoder = new GoogleMaps($adapter);
44+
45+
$geocoder->geocode(...);
46+
```
47+

0 commit comments

Comments
 (0)
Please sign in to comment.