PHPackages                             skyraptor/laravel-make-user - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [CLI &amp; Console](/categories/cli)
4. /
5. skyraptor/laravel-make-user

ActiveLibrary[CLI &amp; Console](/categories/cli)

skyraptor/laravel-make-user
===========================

An Artisan console command to create users in your Laravel application.

8.0.0(5y ago)19MITPHPPHP ^7.3.0

Since Jun 9Pushed 5y agoCompare

[ Source](https://github.com/bumbummen99/laravel-make-user)[ Packagist](https://packagist.org/packages/skyraptor/laravel-make-user)[ RSS](/packages/skyraptor-laravel-make-user/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (8)Versions (14)Used By (0)

Laravel Make User
=================

[](#laravel-make-user)

v7.0.0
------

[](#v700)

[![Build Status](https://camo.githubusercontent.com/d2ab9a4399f335fd466e3a4a565a7436b09f3f8589503e78893e7f3102fc6524/68747470733a2f2f7472617669732d63692e6f72672f6d69636861656c647972796e64612f6c61726176656c2d6d616b652d757365722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/michaeldyrynda/laravel-make-user)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/a504c360afc9b898aa3add06a59b358f9f9573d026b1cd4e5fd41ab2fa31004a/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6d69636861656c647972796e64612f6c61726176656c2d6d616b652d757365722f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/michaeldyrynda/laravel-make-user/?branch=master)[![Code Coverage](https://camo.githubusercontent.com/22b4dac7dac18550d8e85eaa908271e91a8b0323e46edfdfdfc1672c0b60b466/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6d69636861656c647972796e64612f6c61726176656c2d6d616b652d757365722f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/michaeldyrynda/laravel-make-user/?branch=master)[![Latest Stable Version](https://camo.githubusercontent.com/a5e48e6a1f39bfaac956043eef938d592a93be67783b5b5799ad7284ac204445/68747470733a2f2f706f7365722e707567782e6f72672f647972796e64612f6c61726176656c2d6d616b652d757365722f762f737461626c65)](https://packagist.org/packages/dyrynda/laravel-make-user)[![Total Downloads](https://camo.githubusercontent.com/60f6e5e7b9a9129483c1cb5233b95c1b0b8c69b317fab3e83e9f4b7bbddf6483/68747470733a2f2f706f7365722e707567782e6f72672f647972796e64612f6c61726176656c2d6d616b652d757365722f646f776e6c6f616473)](https://packagist.org/packages/dyrynda/laravel-make-user)[![License](https://camo.githubusercontent.com/81ff3cdafe7192179d11fb16b248823adb45e6d3391bad01cc95291125740c23/68747470733a2f2f706f7365722e707567782e6f72672f647972796e64612f6c61726176656c2d6d616b652d757365722f6c6963656e7365)](https://packagist.org/packages/dyrynda/laravel-make-user)[![Dependency Status](https://camo.githubusercontent.com/9a5acc8de63e985f83a59af7391ab9a86a24c3dd4197340088c14a8b6c601223/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f7068702f647972796e64613a6c61726176656c2d6d616b652d757365722f6465762d6d61737465722f62616467653f7374796c653d666c61742d737175617265)](https://www.versioneye.com/php/dyrynda:laravel-make-user/dev-master)[![Buy us a tree](https://camo.githubusercontent.com/130148911f548b001b2ac68a32c0a06559977ca60ada3bf480c72ae4ea093175/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f54726565776172652d2546302539462538432542332d6c69676874677265656e)](https://plant.treeware.earth/michaeldyrynda/laravel-make-user)

Introduction
------------

[](#introduction)

Out of the box, Laravel makes it really simple to scaffold out with its [authentication quickstart](https://laravel.com/docs/5.8/authentication#authentication-quickstart). Whilst this makes it really easy to register and authenticate users, for many of the applications I find myself building, we usually remove the ability for visitors to register themselves.

I still need a way to get users into those applications, however, and whilst they're in early development this usually involves firing up Laravel Tinker. This can be a tedious process, and one that I repeat many times over.

This package aims to solve the repetition problem by providing a convenient `make:user` Artisan command.

### Version compatibility

[](#version-compatibility)

LaravelPackage5.4.\*1.0.\*5.5.\*2.0.\*5.6.\*3.0.\*5.7.\*4.0.\*5.8.\*5.0.\*6.x6.0.\*7.x7.0.\*Code Samples
------------

[](#code-samples)

This package exposes a `make:user` command, which is accessed via the Artisan command line utility. The package will use the model defined in your `auth.providers.users.model` configuration value.

```
php artisan make:user

```

This package runs on the assumption that you are using Laravel's default `users` table structure. You can specify additional fields when prompted.

Installation
------------

[](#installation)

This package is installed via [Composer](https://getcomposer.org/). To install, run the following command.

```
composer require dyrynda/laravel-make-user
```

Support
-------

[](#support)

If you are having general issues with this package, feel free to contact me on [Twitter](https://twitter.com/michaeldyrynda).

If you believe you have found an issue, please report it using the [GitHub issue tracker](https://github.com/michaeldyrynda/laravel-make-user/issues), or better yet, fork the repository and submit a pull request.

If you're using this package, I'd love to hear your thoughts. Thanks!

Treeware
--------

[](#treeware)

You're free to use this package, but if it makes it to your production environment you are required to buy the world a tree.

It’s now common knowledge that one of the best tools to tackle the climate crisis and keep our temperatures from rising above 1.5C is to plant trees. If you support this package and contribute to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.

You can buy trees [here](https://plant.treeware.earth/michaeldyrynda/laravel-make-user)

Read more about Treeware at [treeware.earth](https://treeware.earth)

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 88.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~119 days

Recently: every ~131 days

Total

11

Last Release

2118d ago

Major Versions

3.0.0 → 4.0.02018-09-06

4.0.0 → 5.0.02019-04-05

5.0.0 → 6.0.02019-10-13

6.0.0 → 7.0.02020-03-06

7.0.1 → 8.0.02020-09-13

PHP version history (7 changes)1.0.0PHP &gt;=5.6.4

2.0.0PHP &gt;=7.0

3.0.0PHP &gt;=7.1.3

4.0.0PHP ^7.1.3

6.0.0PHP ^7.2

7.0.0PHP ^7.2.5

8.0.0PHP ^7.3.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/4533331?v=4)[Patrick](/maintainers/bumbummen99)[@bumbummen99](https://github.com/bumbummen99)

---

Top Contributors

[![michaeldyrynda](https://avatars.githubusercontent.com/u/558441?v=4)](https://github.com/michaeldyrynda "michaeldyrynda (78 commits)")[![bumbummen99](https://avatars.githubusercontent.com/u/4533331?v=4)](https://github.com/bumbummen99 "bumbummen99 (3 commits)")[![mattdfloyd](https://avatars.githubusercontent.com/u/185187?v=4)](https://github.com/mattdfloyd "mattdfloyd (3 commits)")[![0x15f](https://avatars.githubusercontent.com/u/17521434?v=4)](https://github.com/0x15f "0x15f (2 commits)")[![jamesmills](https://avatars.githubusercontent.com/u/557096?v=4)](https://github.com/jamesmills "jamesmills (1 commits)")[![orlandocharles](https://avatars.githubusercontent.com/u/22510311?v=4)](https://github.com/orlandocharles "orlandocharles (1 commits)")

---

Tags

consolelaravelartisan

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/skyraptor-laravel-make-user/health.svg)

```
[![Health](https://phpackages.com/badges/skyraptor-laravel-make-user/health.svg)](https://phpackages.com/packages/skyraptor-laravel-make-user)
```

###  Alternatives

[laravel/cashier

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

2.6k29.9M145](/packages/laravel-cashier)[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k15.1M130](/packages/laravel-pulse)[spatie/laravel-health

Monitor the health of a Laravel application

87512.0M164](/packages/spatie-laravel-health)[laravel/ai

The official AI SDK for Laravel.

1.0k3.2M193](/packages/laravel-ai)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9762.4M130](/packages/roots-acorn)[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
