Skip to content

Commit c7d5993

Browse files
committed
Add Laravel 5.8 support
1 parent faeb83b commit c7d5993

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
}
1818
],
1919
"require": {
20-
"php": "^7.1"
20+
"php": "^7.1",
21+
"illuminate/support": "~5.6.0|~5.7.0|~5.8.0"
2122
},
2223
"require-dev": {
2324
"orchestra/testbench": "^3.6",

tests/TestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
abstract class TestCase extends \Orchestra\Testbench\TestCase
1010
{
1111

12-
public function setUp()
12+
public function setUp(): void
1313
{
1414
parent::setUp();
1515
$this->loadLaravelMigrations(['--database' => 'sqlite']);

0 commit comments

Comments
 (0)