-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from nmfzone/patch-1
Only require illuminate/support and bump version
- Loading branch information
Showing
1 changed file
with
35 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,45 @@ | ||
{ | ||
"name": "alexpechkarev/google-maps", | ||
"description": "Collection of Google Maps API Web Services for Laravel", | ||
"version":"1.0.7", | ||
"keywords": ["google maps api", "google maps api for laravel", "google maps web service for laravel", "laravel google maps api", "geocoding api", "directions api", "distance matrix api", "elevation api", "geolocation api", "roads api", "time zone api", "places api web service"], | ||
"homepage":"https://alexpechkarev.github.io/google-maps/", | ||
"version": "1.0.8", | ||
"keywords": [ | ||
"google maps api", | ||
"google maps api for laravel", | ||
"google maps web service for laravel", | ||
"laravel google maps api", | ||
"geocoding api", | ||
"directions api", | ||
"distance matrix api", | ||
"elevation api", | ||
"geolocation api", | ||
"roads api", | ||
"time zone api", | ||
"places api web service" | ||
], | ||
"homepage": "https://alexpechkarev.github.io/google-maps/", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Alexander Pechkarev", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "stable", | ||
"require": { | ||
"laravel/framework": "5.*", | ||
"alexpechkarev/geometry-library" : "1.0.0" | ||
"authors": [ | ||
{ | ||
"name": "Alexander Pechkarev", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "stable", | ||
"require": { | ||
"illuminate/support": "5.*", | ||
"alexpechkarev/geometry-library" : "1.0.0" | ||
}, | ||
|
||
"require-dev": { | ||
"laravel/framework": "5.*", | ||
"phpunit/phpunit": "4.7.*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "4.7.*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"GoogleMaps\\": "src/" | ||
} | ||
}, | ||
|
||
|
||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.0-dev" | ||
} | ||
} | ||
|
||
|
||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.0-dev" | ||
} | ||
} | ||
} |