Skip to content

Commit

Permalink
Adding support for Laravel 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpechkarev committed Sep 21, 2019
1 parent 53a0fde commit 21f834d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Collection of Google Maps API Web Services for Laravel 5.2
## Collection of Google Maps API Web Services for Laravel 5.3
Provides convenient way of setting up and making requests to Maps API from [Laravel](http://laravel.com/) application.
For services documentation, API key and Usage Limits visit [Google Maps API Web Services](https://developers.google.com/maps/documentation/webservices/) and [Maps API for Terms of Service License Restrictions](https://developers.google.com/maps/terms#section_10_12).

Expand Down Expand Up @@ -46,14 +46,14 @@ Installation
Issue following command in console:

```php
composer require "alexpechkarev/google-maps":"5.2"
composer require "alexpechkarev/google-maps":"5.3"
```

Alternatively edit composer.json by adding following line and run **`composer update`**
```php
"require": {
....,
"alexpechkarev/google-maps":"5.2",
"alexpechkarev/google-maps":"5.3",

},
```
Expand All @@ -76,7 +76,7 @@ Register package service provider and facade in 'config/app.php'
```


Publish configuration file using **`php artisan vendor:publish --tag=googlemaps --force`** or simply copy package configuration file and paste into **`config/googlemaps.php`**
Publish configuration file using **`php artisan vendor:publish --tag=googlemaps`** or simply copy package configuration file and paste into **`config/googlemaps.php`**

Open configuration file **`config/googlemaps.php`** and add your service key
```php
Expand Down Expand Up @@ -358,6 +358,6 @@ Support
License
-------

Collection of Google Maps API Web Services for Laravel 5 is released under the MIT License. See the bundled
Collection of Google Maps API Web Services for Laravel is released under the MIT License. See the bundled
[LICENSE](https://github.com/alexpechkarev/google-maps/blob/master/LICENSE)
file for details.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "alexpechkarev/google-maps",
"description": "Collection of Google Maps API Web Services for Laravel 5.2",
"version": "5.2",
"description": "Collection of Google Maps API Web Services for Laravel 5.3",
"version": "5.3",
"keywords": [
"google maps api",
"google maps api for laravel",
Expand All @@ -26,8 +26,8 @@
],
"minimum-stability": "stable",
"require": {
"illuminate/support": "5.2.*",
"illuminate/config": "5.2.*",
"illuminate/support": "5.3.*",
"illuminate/config": "5.3.*",
"alexpechkarev/geometry-library" : "1.0.0",
"jbroadway/urlify": "^1.1",
"ext-json": "*",
Expand Down

0 comments on commit 21f834d

Please sign in to comment.