marsoltys/uservel

This package is abandoned and no longer maintained. The author suggests using the soltmar/uservel package instead.

User management

1.0.5 2020-08-17 10:56 UTC

This package is auto-updated.

Last update: 2021-12-05 18:01:36 UTC


README

Installation

Using Composer

comopser install soltmar/uservel

Define User model class in uservel.php config file

change user provider class in auth.php conifg to:

'providers' => [
           'users' => [
               'driver' => 'eloquent',
               'model' => \User::class,
           ],
           ...
]