Looking to hire Laravel developers? Try LaraJobs

laravel-artisan-users maintained by marcandreappel

Description
An artisan command for fast user management.
Last update
2020/11/25 20:34 (dev-main)
License
Downloads
96

Comments
comments powered by Disqus

Artisan command collection for user management

Packagist Version Travis build status Scrutinizer code quality Scrutinizer coverage GitHub code size in bytes Packagist Downloads

A collection of Laravel artisan commands to manage users on the cli.

Installation

You can install the package via composer:

composer require marcandreappel/laravel-artisan-users

Usage

First publish the config and adjust your User model. If you want to use the simple role system, see below.

artisan publish vendor:publish --provider="MarcAndreAppel\ArtisanUsers\ArtisanUsersServiceProvider" --tag="config"

Then you're good to go for the first command, just answer the questions:

artisan user:add

Else you can edit an user:

artisan user:edit

Testing

The test can be run with:

composer test

Contributing

Please see CONTRIBUTING for details.

License

The MIT License (MIT). Please see License File for more information.

Some parts are from the Laravel Package Boilerplate generator.