Skip to content

Commit 0620003

Browse files
committed
Fixed testing dependencies
1 parent 52c700c commit 0620003

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@
1616
"jmikola/geojson": "^1.0"
1717
},
1818
"require-dev": {
19-
"phpunit/phpunit": "~4.8",
19+
"phpunit/phpunit": "~4.8||~5.7",
2020
"mockery/mockery": "^0.9.9",
2121
"laravel/laravel": "^5.2",
2222
"codeclimate/php-test-reporter": "dev-master",
23-
"doctrine/dbal": "^2.5"
23+
"doctrine/dbal": "^2.5",
24+
"laravel/browser-kit-testing": "^2.0"
2425
},
2526
"autoload": {
2627
"psr-4": {

tests/Integration/SpatialTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
use Grimzy\LaravelMysqlSpatial\Types\Point;
99
use Grimzy\LaravelMysqlSpatial\Types\Polygon;
1010
use Illuminate\Filesystem\Filesystem;
11-
use Illuminate\Foundation\Testing\TestCase;
11+
use Laravel\BrowserKitTesting\TestCase as BaseTestCase;
1212

13-
class SpatialTest extends TestCase
13+
class SpatialTest extends BaseTestCase
1414
{
1515
/**
1616
* Boots the application.

0 commit comments

Comments
 (0)