Skip to content

Commit

Permalink
Merge pull request #110 from laravel-shift/l10-compatibility
Browse files Browse the repository at this point in the history
Laravel 10.x Compatibility
  • Loading branch information
alexpechkarev authored Feb 3, 2023
2 parents 0d07b42 + 036a192 commit 25846ca
Showing 1 changed file with 55 additions and 55 deletions.
110 changes: 55 additions & 55 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,57 +1,57 @@
{
"name": "alexpechkarev/google-maps",
"description": "Collection of Google Maps API Web Services for Laravel",
"version": "9.0",
"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": {
"illuminate/support": "^8.0 | ^9.0",
"illuminate/config": "^8.0 | ^9.0",
"alexpechkarev/geometry-library" : "^1.0.2",
"jbroadway/urlify": "^1.1",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "4.7.*"
},
"autoload": {
"psr-4": {
"GoogleMaps\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "8.0-dev"
},
"laravel": {
"providers": [
"GoogleMaps\\ServiceProvider\\GoogleMapsServiceProvider"
],
"aliases": {
"GoogleMaps": "GoogleMaps\\Facade\\GoogleMapsFacade"
}
}
}
"name": "alexpechkarev/google-maps",
"description": "Collection of Google Maps API Web Services for Laravel",
"version": "9.0",
"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": {
"illuminate/support": "^8.0 | ^9.0|^10.0",
"illuminate/config": "^8.0 | ^9.0|^10.0",
"alexpechkarev/geometry-library": "^1.0.2|^1.0",
"jbroadway/urlify": "^1.1|dev-voku-portable-ascii-2.0",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "4.7.*|^9.5.10"
},
"autoload": {
"psr-4": {
"GoogleMaps\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "8.0-dev"
},
"laravel": {
"providers": [
"GoogleMaps\\ServiceProvider\\GoogleMapsServiceProvider"
],
"aliases": {
"GoogleMaps": "GoogleMaps\\Facade\\GoogleMapsFacade"
}
}
}
}

0 comments on commit 25846ca

Please sign in to comment.