alexpechkarev / google-maps

Collection of Google Maps API Web Services for Laravel
https://alexpechkarev.github.io/google-maps/
MIT License
523 stars 115 forks source link

Update README #45

Closed i-mighty closed 6 years ago

i-mighty commented 6 years ago

Please update README.md file Change 'providers' => [ ... 'GoogleMaps\ServiceProvider\GoogleMapsServiceProvider', ]

'aliases' => [ ... 'GoogleMaps' => 'GoogleMaps\Facade\GoogleMapsFacade', ] To 'providers' => [ ... GoogleMaps\ServiceProvider\GoogleMapsServiceProvider::class,

'aliases' => [ ... GoogleMaps' => GoogleMaps\Facade\GoogleMapsFacade::class, ] This is very misleading for people who would just copy the code and paste in their file. Awesome project.

alexpechkarev commented 6 years ago

Hi @i-mighty,

The README.md file has been updated with your suggestion.

Thanks, Alexander