Skip to content

Commit

Permalink
Merge pull request #3 from biscofil/master
Browse files Browse the repository at this point in the history
laravel 6
  • Loading branch information
santigarcor authored Feb 20, 2020
2 parents 98bf693 + 149c5fa commit 6669cc2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
}
],
"require": {
"php": ">=7.0",
"illuminate/http": "~5.4",
"illuminate/support": "~5.4",
"illuminate/database": "~5.4"
"php": ">=7.1",
"illuminate/http": "^5.0|^6.0",
"illuminate/support": "^5.0|^6.0",
"illuminate/database": "^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"phpunit/phpunit": "^7.1",
"orchestra/testbench": "~3.5"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion tests/VuetableCollectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class VuetableCollectionTest extends VuetableTestCase
*/
private $collection;

public function setUp()
protected function setUp() : void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/VuetableEloquentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class VuetableEloquentTest extends VuetableTestCase
{
private $query;

public function setUp()
protected function setUp() : void
{
parent::setUp();
$this->migrate();
Expand Down

0 comments on commit 6669cc2

Please sign in to comment.