lavalite / user
This package is abandoned and no longer maintained.
No replacement package was suggested.
User management package for Lavalite framework
v3.0.0
2015-11-14 16:02 UTC
Requires
- php: >=5.5.9
- laravel/socialite: ^3.0@dev
This package is not auto-updated.
Last update: 2016-05-20 11:39:47 UTC
README
This is a Laravel 5 package that provides user ACL facility for lavalite framework.
Begin by installing this package through Composer. Edit your project's composer.json file to require lavalite/user.
"lavalite/user": "dev-master"
Next, update Composer from the Terminal:
composer update
Once this operation completes execute below cammnds in command line to finalize installation.
Lavalite\User\Providers\UserServiceProvider::class,
And also add it to alias
'User' => Lavalite\User\Facades\User::class,
Use the below commands for publishing
Migration and seeds
php artisan vendor:publish --provider="Lavalite\User\Providers\UserServiceProvider" --tag="migrations"
php artisan vendor:publish --provider="Lavalite\User\Providers\UserServiceProvider" --tag="seeds"
Configuration
php artisan vendor:publish --provider="Lavalite\User\Providers\UserServiceProvider" --tag="config"
Language
php artisan vendor:publish --provider="Lavalite\User\Providers\UserServiceProvider" --tag="lang"
Views public and admin
php artisan vendor:publish --provider="Lavalite\User\Providers\UserServiceProvider" --tag="view-admin"
Publish admin views only if it is necessary.