Skip to content

Commit 6669cc2

Browse files
authored
Merge pull request #3 from biscofil/master
laravel 6
2 parents 98bf693 + 149c5fa commit 6669cc2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=7.0",
14-
"illuminate/http": "~5.4",
15-
"illuminate/support": "~5.4",
16-
"illuminate/database": "~5.4"
13+
"php": ">=7.1",
14+
"illuminate/http": "^5.0|^6.0",
15+
"illuminate/support": "^5.0|^6.0",
16+
"illuminate/database": "^5.0|^6.0"
1717
},
1818
"require-dev": {
19-
"phpunit/phpunit": "~6.0",
19+
"phpunit/phpunit": "^7.1",
2020
"orchestra/testbench": "~3.5"
2121
},
2222
"autoload": {

tests/VuetableCollectionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class VuetableCollectionTest extends VuetableTestCase
1515
*/
1616
private $collection;
1717

18-
public function setUp()
18+
protected function setUp() : void
1919
{
2020
parent::setUp();
2121

tests/VuetableEloquentTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class VuetableEloquentTest extends VuetableTestCase
1212
{
1313
private $query;
1414

15-
public function setUp()
15+
protected function setUp() : void
1616
{
1717
parent::setUp();
1818
$this->migrate();

0 commit comments

Comments
 (0)