mcmatters / laravel-user-commands
v1.2
2020-06-14 09:04 UTC
Requires
- php: >=7.0
- illuminate/console: ^5.2 || 6.* || 7.*
- illuminate/database: ^5.2 || 6.* || 7.*
- illuminate/support: ^5.2 || 6.* || 7.*
README
Package with laravel user commands.
Installation
composer require mcmatters/laravel-user-commands
Include the service provider within your config/app.php
file.
'providers' => [ McMatters\UserCommands\ServiceProvider::class, ]
Publish the configuration.
php artisan vendor:publish --provider="McMatters\UserCommands\ServiceProvider"
Then open the config/user-commands.php
and configure namespaces for your models.
Requirements
This package requires php 7.0
or higher and Laravel 5.2
or higher.
Usage
Available commands:
php artisan user:assign-role {user} {role}
- Attach role for given userphp artisan user:sanitize
- Sanitize all user emails. You can configure which users should be taken through the scopesphp artisan user:update-password {user}
- Update password for given user