PHPackages                             cornelisonc/famous-user-seeder - 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. [Database &amp; ORM](/categories/database)
4. /
5. cornelisonc/famous-user-seeder

ActiveLibrary[Database &amp; ORM](/categories/database)

cornelisonc/famous-user-seeder
==============================

Laravel database UserSeeder assistant -- make your users famous!

v1.1.1(2y ago)02MITPHP

Since Apr 8Pushed 2y ago1 watchersCompare

[ Source](https://github.com/cornelisonc/FamousUserSeeder)[ Packagist](https://packagist.org/packages/cornelisonc/famous-user-seeder)[ RSS](/packages/cornelisonc-famous-user-seeder/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (3)Used By (0)

FamousUserSeeder
================

[](#famoususerseeder)

Make your users famous!

```
namespace Database\Seeders;

use Cornelisonc\FamousUserSeeder\NicCage;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Hash;

class UserSeeder extends Seeder
{
    /**
     * Run the database seeds.
     */
    public function run(): void
    {
        $nicCage = new NicCage();

        Db::table('users')->insert(
            $nicCage->get(
                50,
                [
                    'fullName',
                    'email',
                    'password'
                ]
            )
        );
    }
}
```

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

[](#installation)

`composer require cornelisonc/famous-user-seeder`

Famous User Classes
-------------------

[](#famous-user-classes)

#### Available FamousUser classes:

[](#available-famoususer-classes)

- NicCage

#### Future FamousUser classes:

[](#future-famoususer-classes)

- ChristopherWalken
- JeffGoldblum
- SamuelLJackson
- SteveBuscemi
- BettyWhite
- BillMurray
- Simpsons
- TheOffice
- StarWars
- ...and more!

Usage
-----

[](#usage)

FamousUser instances' `get()` functions accept two arguments: the number of users to generate (quantity) and an array of fields to include in the output.

The fields currently available are:

```
$fields = array[
    'fullName',
    'firstName',
    'lastName',
    'email',
    'password'
];
```

If you would like to generate a field not listed here, pass it in to the `$fields` array and it will be generated as 10-character randomized alphanumeric string.

Fields can also be aliased, if you would like a field to be output as a different key in the array, pass in the desired key as the value in the `$fields` array:

```
$nicCage->get(1, array(
    'name'              => 'fullName'
    'first'             => 'firstName',
    'last'              => 'lastName',
    'favorite_color'    => 'favorite_color'
));

// will return:

array([
    'name'              => 'Yuri Orlov',
    'first'             => 'Yuri',
    'last'              => 'Orlov',
    'favorite_color'    => '7d8fff9aq2' // 10 char random string
]);
```

Email addresses are formatted using the user's first &amp; last name seperated by a period, with the domain name likeiwse a randomized string to provide unique email addresses.

[![implementation example](https://github.com/cornelisonc/FamousUserSeeder/raw/bd169a9302e45cc7d89c869cf38f945c4300e2e1/image.png?raw=true)](https://github.com/cornelisonc/FamousUserSeeder/blob/bd169a9302e45cc7d89c869cf38f945c4300e2e1/image.png?raw=true)

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity42

Maturing project, gaining track record

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 ~0 days

Total

2

Last Release

762d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a4cc15d9d3b6f7fe4aa4873874e7267d2d8b2a560ed24aaad122347e24ce3f8e?d=identicon)[cornelisonc](/maintainers/cornelisonc)

### Embed Badge

![Health badge](/badges/cornelisonc-famous-user-seeder/health.svg)

```
[![Health](https://phpackages.com/badges/cornelisonc-famous-user-seeder/health.svg)](https://phpackages.com/packages/cornelisonc-famous-user-seeder)
```

###  Alternatives

[illuminate/database

The Illuminate Database package.

2.8k52.4M9.4k](/packages/illuminate-database)[cybercog/laravel-love

Make Laravel Eloquent models reactable with any type of emotions in a minutes!

1.2k302.7k1](/packages/cybercog-laravel-love)[cviebrock/eloquent-taggable

Easy ability to tag your Eloquent models in Laravel.

567694.8k3](/packages/cviebrock-eloquent-taggable)[clickbar/laravel-magellan

This package provides functionality for working with the postgis extension in Laravel.

423715.4k1](/packages/clickbar-laravel-magellan)[genealabs/laravel-pivot-events

This package introduces new eloquent events for sync(), attach(), detach() or updateExistingPivot() methods on BelongsToMany relation.

1404.9M8](/packages/genealabs-laravel-pivot-events)[reedware/laravel-relation-joins

Adds the ability to join on a relationship by name.

2121.2M13](/packages/reedware-laravel-relation-joins)

PHPackages © 2026

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