File tree 2 files changed +48
-0
lines changed
2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change @@ -527,6 +527,7 @@ Cookbook
527
527
We have a small cookbook where you can find examples on common use cases:
528
528
529
529
* [ Caching responses] ( /docs/cookbook/cache.md )
530
+ * [ Configuring the HTTP client] ( /docs/cookbook/http-client.md )
530
531
531
532
532
533
Contributing
Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments