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 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 },
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}
Original file line number Diff line number Diff line change 33use Jenssegers \Mongodb \Model as Eloquent ;
44
55use Illuminate \Auth \UserTrait ;
6- use Illuminate \Auth \UserInterface ;
76use 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
You can’t perform that action at this time.
0 commit comments