We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7d7d28 commit b1cd38aCopy full SHA for b1cd38a
README.md
@@ -77,7 +77,15 @@ The service provider creates the following services:
77
* `geocoder.adapter`: the HTTP adapter used to get data from remotes APIs.
78
79
By default, the `geocoder.provider` service uses FreeGeoIP and the `geocoder.adapter` service uses the cURL adapter.
80
-Override these services to use the adapter/provider you want.
+Override these services to use the adapter/provider you want by editing
81
+`app/config/packages/toin0u/geocoder-laravel/config.php`:
82
+
83
+```php
84
+return array(
85
+ 'provider' => 'Geocoder\Provider\GoogleMapsProvider',
86
+ 'adapter' => 'Geocoder\HttpAdapter\CurlHttpAdapter'
87
+);
88
+```
89
90
See [the Geocoder documentation](http://geocoder-php.org/Geocoder/) for a list of available adapters and providers.
91
0 commit comments