Skip to content
This repository has been archived by the owner on Mar 6, 2020. It is now read-only.

Commit

Permalink
Updated version compatibility for Laravel 5.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkGhostHunter committed Mar 2, 2019
1 parent bbdf1da commit ef280c9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
],
"require": {
"php" : "^7.1.3",
"illuminate/auth": "5.7.*",
"illuminate/config": "5.7.*",
"illuminate/http": "5.7.*",
"illuminate/cookie": "5.7.*",
"illuminate/session": "5.7.*",
"illuminate/events": "5.7.*",
"illuminate/notifications": "5.7.*",
"illuminate/support": "5.7.*"
"illuminate/auth": "5.8.*",
"illuminate/config": "5.8.*",
"illuminate/http": "5.8.*",
"illuminate/cookie": "5.8.*",
"illuminate/session": "5.8.*",
"illuminate/events": "5.8.*",
"illuminate/notifications": "5.8.*",
"illuminate/support": "5.8.*"
},
"require-dev": {
"orchestra/testbench": "3.7.*"
"orchestra/testbench": "3.8.*"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/AuthenticationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class AuthenticationTest extends TestCase
/** @var Controller */
protected $class;

protected function setUp()
protected function setUp() : void
{
parent::setUp();
$this->loadLaravelMigrations();
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/LoginNotificationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class LoginNotificationTest extends TestCase
/** @var LoginNotification */
protected $notification;

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

Expand Down

0 comments on commit ef280c9

Please sign in to comment.