From 3153f3c3d180e659e4c403442b3e0de157a4114b Mon Sep 17 00:00:00 2001 From: Alex Petchkarev Date: Sat, 21 Sep 2019 15:25:03 +0100 Subject: [PATCH] Adding support for Laravel 5.1 --- README.md | 6 +++--- composer.json | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 579ee5e..913729d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## Collection of Google Maps API Web Services for Laravel 5 +## Collection of Google Maps API Web Services for Laravel 5.1 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:1.0.9 +composer require alexpechkarev/google-maps:5.1 ``` Alternatively edit composer.json by adding following line and run **`composer update`** ```php "require": { ...., - "alexpechkarev/google-maps":"1.0.9", + "alexpechkarev/google-maps":"5.1", }, ``` diff --git a/composer.json b/composer.json index 0aace8c..6fac838 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": "1.0.9", + "description": "Collection of Google Maps API Web Services for Laravel 5.1", + "version": "5.1", "keywords": [ "google maps api", "google maps api for laravel", @@ -26,8 +26,8 @@ ], "minimum-stability": "stable", "require": { - "illuminate/support": "5.*", - "illuminate/config": "5.*", + "illuminate/support": "5.1.*", + "illuminate/config": "5.1.*", "alexpechkarev/geometry-library" : "1.0.0", "jbroadway/urlify": "^1.1", "ext-json": "*",