Skip to content

Commit

Permalink
Merge pull request #77 from parkourben99/master
Browse files Browse the repository at this point in the history
Support laravel 7
  • Loading branch information
alexpechkarev authored Mar 13, 2020
2 parents d49f155 + c35f920 commit bb3872f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 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 6
## Collection of Google Maps API Web Services for Laravel 7
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 @@ -45,15 +45,17 @@ Installation

Issue following command in console:

For laravel 6 use `6.0`.

```php
composer require "alexpechkarev/google-maps":"6.0"
composer require "alexpechkarev/google-maps":"7.0"
```

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

},
```
Expand Down
6 changes: 3 additions & 3 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",
"version": "6.0.0",
"version": "7.0.0",
"keywords": [
"google maps api",
"google maps api for laravel",
Expand All @@ -26,8 +26,8 @@
],
"minimum-stability": "stable",
"require": {
"illuminate/support": "^6.0",
"illuminate/config": "^6.0",
"illuminate/support": "^7.0",
"illuminate/config": "^7.0",
"alexpechkarev/geometry-library" : "1.0.1",
"jbroadway/urlify": "^1.1",
"ext-json": "*",
Expand Down

0 comments on commit bb3872f

Please sign in to comment.