File tree Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 11
11
"license" : " MIT" ,
12
12
"require" : {
13
13
"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.*"
18
19
},
19
20
"require-dev" : {
20
- "orchestra/testbench" : " 2.2 .*" ,
21
+ "orchestra/testbench" : " 3.0 .*" ,
21
22
"mockery/mockery" : " *" ,
22
23
"satooshi/php-coveralls" : " *"
23
24
},
30
31
"suggest" : {
31
32
"jenssegers/mongodb-session" : " Add MongoDB session support to Laravel-MongoDB" ,
32
33
"jenssegers/mongodb-sentry" : " Add Sentry support to Laravel-MongoDB"
33
- }
34
+ },
35
+ "minimum-stability" : " dev"
34
36
}
Original file line number Diff line number Diff line change 3
3
use Jenssegers \Mongodb \Model as Eloquent ;
4
4
5
5
use Illuminate \Auth \UserTrait ;
6
- use Illuminate \Auth \UserInterface ;
7
6
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 ;
9
9
10
- class User extends Eloquent implements UserInterface, RemindableInterface {
10
+ class User extends Eloquent implements UserContract, RemindableContract {
11
11
12
12
use UserTrait, RemindableTrait;
13
13
You can’t perform that action at this time.
0 commit comments