Skip to content

Commit d1a212c

Browse files
committed
Update to L5
1 parent 160096c commit d1a212c

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

composer.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@
1111
"license" : "MIT",
1212
"require": {
1313
"php": ">=5.4.0",
14-
"illuminate/support": "4.2.*",
15-
"illuminate/container": "4.2.*",
16-
"illuminate/database": "4.2.*",
17-
"illuminate/events": "4.2.*"
14+
"illuminate/support": "5.0.*",
15+
"illuminate/contracts": "5.0.*",
16+
"illuminate/container": "5.0.*",
17+
"illuminate/database": "5.0.*",
18+
"illuminate/events": "5.0.*"
1819
},
1920
"require-dev": {
20-
"orchestra/testbench": "2.2.*",
21+
"orchestra/testbench": "3.0.*",
2122
"mockery/mockery": "*",
2223
"satooshi/php-coveralls": "*"
2324
},
@@ -30,5 +31,6 @@
3031
"suggest": {
3132
"jenssegers/mongodb-session": "Add MongoDB session support to Laravel-MongoDB",
3233
"jenssegers/mongodb-sentry": "Add Sentry support to Laravel-MongoDB"
33-
}
34+
},
35+
"minimum-stability": "dev"
3436
}

tests/models/User.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
use Jenssegers\Mongodb\Model as Eloquent;
44

55
use Illuminate\Auth\UserTrait;
6-
use Illuminate\Auth\UserInterface;
76
use Illuminate\Auth\Reminders\RemindableTrait;
8-
use Illuminate\Auth\Reminders\RemindableInterface;
7+
use Illuminate\Contracts\Auth\User as UserContract;
8+
use Illuminate\Contracts\Auth\Remindable as RemindableContract;
99

10-
class User extends Eloquent implements UserInterface, RemindableInterface {
10+
class User extends Eloquent implements UserContract, RemindableContract {
1111

1212
use UserTrait, RemindableTrait;
1313

0 commit comments

Comments
 (0)