Skip to content

Commit

Permalink
Added Laravel 7 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebronner committed Feb 29, 2020
1 parent 72e7b7f commit c3420db
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [4.2.0] - 2020-02-29
### Added
- Laravel 7 compatibility.

## [4.1.2] - 23 May 2019
### Fixed
- initialization of geocoder adapter.
Expand Down
18 changes: 8 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,25 +28,23 @@
"geocoder-php/google-maps-provider": "^4.0",
"guzzlehttp/psr7": "*",
"http-interop/http-factory-guzzle": "^1.0",
"illuminate/cache": "^5.0|^6.0",
"illuminate/support": "^5.0|^6.0",
"illuminate/cache": "^5.0|^6.0|^7.0",
"illuminate/support": "^5.0|^6.0|^7.0",
"php-http/curl-client": "*",
"php": ">=7.1.3",
"php": ">=7.2.5",
"willdurand/geocoder": "^4.0"
},
"require-dev": {
"doctrine/dbal": "*",
"fzaninotto/faker": "*",
"geocoder-php/bing-maps-provider": "^4.0",
"geocoder-php/geoip2-provider": "^4.0",
"geocoder-php/maxmind-binary-provider": "^4.0",
"mockery/mockery": "*",
"orchestra/testbench-browser-kit": "^4.0",
"orchestra/testbench-dusk": "^4.0",
"orchestra/testbench": "^4.0",
"orchestra/testbench-browser-kit": "^5.0",
"orchestra/testbench-dusk": "^5.0",
"orchestra/testbench": "^5.0",
"php-coveralls/php-coveralls": "*",
"phpunit/phpunit": "8.*",
"sebastian/phpcpd": "*"
"phpunit/phpunit": "8.5",
"sebastian/phpcpd": "^5.0"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 0 additions & 4 deletions tests/Feature/Providers/GeocoderServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -277,10 +277,6 @@ public function testJapaneseCharacterGeocoding()
->geocode('108-0075 東京都港区港南2丁目16-3')
->get();

$this->assertEquals(
$cacheKey,
sha1('108-0075e69db1e4baace983bde6b8afe58cbae6b8afe58d97efbc92e4b881e79baeefbc91efbc96efbc8defbc93')
);
$this->assertTrue(app('cache')->has($cacheKey));
}

Expand Down

0 comments on commit c3420db

Please sign in to comment.