8000 Added Laravel 5.8 compatibility · geocoder-php/GeocoderLaravel@de6047c · GitHub
[go: up one dir, main page]

Skip to content

Commit de6047c

Browse files
committed
Added Laravel 5.8 compatibility
1 parent 1140830 commit de6047c

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

composer.json

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,26 +27,25 @@
2727
"geocoder-php/geo-plugin-provider": "^4.0",
2828
"geocoder-php/google-maps-provider": "^4.0",
2929
"guzzlehttp/psr7": "*",
30-
"illuminate/cache": "5.0 - 5.7",
31-
"illuminate/support": "5.0 - 5.7",
30+
"illuminate/cache": "5.0 - 5.8",
31+
"illuminate/support": "5.0 - 5.8",
3232
"php-http/curl-client": "*",
3333
"php": ">=7.1.3",
3434
"willdurand/geocoder": "^4.0"
3535
},
3636
"require-dev": {
37-
"codedungeon/phpunit-result-printer": "*",
38-
"doctrine/dbal": "^2.5",
39-
"fzaninotto/faker": "~1.4",
37+
"doctrine/dbal": "*",
38+
"fzaninotto/faker": "*",
4039
"geocoder-php/bing-maps-provider": "^4.0",
4140
"geocoder-php/geoip2-provider": "^4.0",
4241
"geocoder-php/maxmind-binary-provider": "^4.0",
43-
"mockery/mockery": "0.9.*",
44-
"orchestra/database": "3.6.*",
45-
"orchestra/testbench": "3.6.*",
46-
"orchestra/testbench-browser-kit": "3.6.*",
47-
"orchestra/testbench-dusk": "3.6.x-dev@dev",
42+
"mockery/mockery": "*",
43+
"orchestra/testbench-browser-kit": "3.8.*",
44+
"orchestra/database": "3.8.x-dev@dev",
45+
"orchestra/testbench-dusk": "3.8.x-dev@dev",
46+
"orchestra/testbench": "3.8.*",
4847
"php-coveralls/php-coveralls": "*",
49-
"phpunit/phpunit": "^7.0",
48+
"phpunit/phpunit": "^7.5",
5049
"sebastian/phpcpd": "*"
5150
},
5251
"autoload": {

phpunit.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
convertErrorsToExceptions="true"
88
convertNoticesToExceptions="true"
99
convertWarningsToExceptions="true"
10-
printerClass="Codedungeon\PHPUnitPrettyResultPrinter\Printer"
1110
processIsolation="false"
1211
stopOnFailure="false"
1312
>

tests/CreatesApplication.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
trait CreatesApplication
77
{
8-
public function setUp()
8+
public function setUp() : void
99
{
1010
parent::setUp();
1111

0 commit comments

Comments
 (0)
0