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