MCMatters / laravel-user-commands by MCMatters

321
1
2
Package Data
Maintainer Username: MCMatters
Maintainer Contact: dima.matters@gmail.com (Dmitry Borzyonok)
Package Create Date: 2017-06-27
Package Last Update: 2020-06-14
Language: PHP
License: MIT
Last Refreshed: 2024-11-16 15:00:57
Package Statistics
Total Downloads: 321
Monthly Downloads: 2
Daily Downloads: 0
Total Stars: 1
Total Watchers: 2
Total Forks: 1
Total Open Issues: 0

Laravel User Commands

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 user
  • php artisan user:sanitize - Sanitize all user emails. You can configure which users should be taken through the scopes
  • php artisan user:update-password {user} - Update password for given user