Skip to content

Commit 0a6832a

Browse files
authored
Merge pull request #4 from cgauge/laravel-upgrade
Support Laravel 8
2 parents 72571fe + 47b8da2 commit 0a6832a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
],
1313
"require": {
1414
"php": "^7.3",
15-
"illuminate/auth": "^7.28",
16-
"illuminate/contracts": "^7.28"
15+
"illuminate/auth": "^7.28 || ^8.0",
16+
"illuminate/contracts": "^7.28 || ^8.0"
1717
},
1818
"require-dev": {
1919
"phpunit/phpunit": "^9.3",

tests/Fixtures/FakeDispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
final class FakeDispatcher implements Dispatcher
88
{
9-
public function listen($events, $listener)
9+
public function listen($events, $listener = null)
1010
{
1111

1212
}

0 commit comments

Comments
 (0)