From ae63a9c810781cea7d600563c9b00aaff8a018e4 Mon Sep 17 00:00:00 2001 From: Benjamin Ayles Date: Fri, 13 Mar 2020 14:20:03 +1030 Subject: [PATCH 1/2] Support laravel 7 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 8ad1d28..9bc3e32 100644 --- a/composer.json +++ b/composer.json @@ -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", @@ -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": "*", From c35f920f05fedfb86f5f1f3a30a0313dedd14459 Mon Sep 17 00:00:00 2001 From: Benjamin Ayles Date: Fri, 13 Mar 2020 14:21:44 +1030 Subject: [PATCH 2/2] Update read me --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0e2b1b5..e03da48 100644 --- a/README.md +++ b/README.md @@ -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). @@ -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", }, ```