Download the PHP package bhuvidya/laravel-geocoder without Composer
On this page you can find all versions of the php package bhuvidya/laravel-geocoder. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bhuvidya/laravel-geocoder
More information about bhuvidya/laravel-geocoder
Files in bhuvidya/laravel-geocoder
Package laravel-geocoder
Short Description A Laravel 5 package to make geocoding a breeze.
License MIT
Homepage https://github.com/bhuvidya/laravel-geocoder
Informations about the package laravel-geocoder
Laravel Geocoder
Note I have now switched the semver versioning for my Laravel packages to "match" the latest supported Laravel version.
A Laravel 5 package to make geocoding a breeze.
Please note that this package was tested on Laravel 5.5 - I cannot guarantee it will work on earlier versions. Sorry.
Installation
Add bhuvidya/laravel-geocoder
to your app:
$ composer require "bhuvidya/laravel-geocoder"
If you're using Laravel 5.5, you don't have to edit app/config/app.php
.
Otherwise, edit app/config/app.php
and add the service provider:
'providers' => [
'Bhuvidya\Geocoder\GeocoderServiceProvider',
]
Configuration
You can elect to manage your own configuration. This is an optional step, but only if you define
your Google Maps API Key in your .env
file via GOOGLE_MAPS_API_KEY
.
Otherwise run the following command
$ php artisan vendor:publish --provider='Bhuvidya\Geocoder\GeocoderServiceProvider' --tag=config
The config file can then be found at config/geocoder.php
.
Configuration Options
TODO
Service Class
TODO
All versions of laravel-geocoder with dependencies
laravel/framework Version ^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
php Version >=7.0.0