marcandreappel/laravel-artisan-users

An artisan command for fast user management.

2.0.0 2020-11-25 19:34 UTC

This package is auto-updated.

Last update: 2024-04-26 04:31:47 UTC


README

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.