From 21f834d314bf5ba1e8a5e6c2a04a0c31cdf2640a Mon Sep 17 00:00:00 2001 From: Alex Petchkarev Date: Sat, 21 Sep 2019 15:39:05 +0100 Subject: [PATCH] Adding support for Laravel 5.3 --- README.md | 10 +++++----- composer.json | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 9aa2c33..63820da 100644 --- a/README.md +++ b/README.md @@ -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). @@ -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", }, ``` @@ -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 @@ -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. diff --git a/composer.json b/composer.json index 7474b99..037bcae 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 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", @@ -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": "*",