2017 © Pedro Peláez
 

library ccreateuser

Laravel 5 command rapid create user

image

spacedog4/ccreateuser

Laravel 5 command rapid create user

  • Tuesday, July 10, 2018
  • by spacedog4
  • Repository
  • 1 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

Laravel Command Create User

Laravel command for rapid creating an user with default table, (*1)

Installation

You can use composer to install the package, (*2)

composer require spacedog4/ccreateuser, (*3)

Next add the Spacedog4\Command\UserCreaterCommand class to your console kernel, (*4)

   // app/Console/Kernel.php

   protected $commands = [
       ...
       \Spacedog4\Command\UserCreaterCommand::class,
   ]

Requirements

This command just works with the default users table from laravel, it must have: - an User Model app/User - a Laravel users table with the columns name, email and password, (*5)

Usage

This command will create an user, (*6)

php artisan user-create {name} {email} {password}, (*7)

Where..., (*8)

name is the user's namebr/ email is user's emailbr/ password is user's password, it will be encrypted by Laravel Hash, (*9)

The Versions

10/07 2018

dev-master

9999999-dev

Laravel 5 command rapid create user

  Sources   Download

MIT

The Requires

 

10/07 2018

0.3.1

0.3.1.0

Laravel 5 command rapid create user

  Sources   Download

MIT

The Requires

 

10/07 2018

0.3.0

0.3.0.0

Laravel 5 command rapid create user

  Sources   Download

MIT

The Requires

 

10/07 2018

0.2.0

0.2.0.0

Laravel 5 command rapid create user

  Sources   Download

MIT

The Requires

 

09/07 2018

0.1.0

0.1.0.0

Laravel 5 command rapid create user

  Sources   Download

MIT

The Requires