Skip to content

Commit

Permalink
Add Laravel 5.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot committed Feb 28, 2019
1 parent d2c4707 commit 7b559c8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,14 @@
],
"require": {
"php": "^7.1",
"illuminate/config": "~5.5.0|~5.6.0|~5.7.0",
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0"
"illuminate/config": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0"
},
"require-dev": {
"mockery/mockery": "^1.1",
"larapack/dd": "^1.0",
"phpunit/phpunit": "^7.0",
"orchestra/testbench": "~3.5.0|~3.6.0"
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
abstract class TestCase extends \Orchestra\Testbench\TestCase
{

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

Expand Down

0 comments on commit 7b559c8

Please sign in to comment.