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 yesterday

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 9% 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

816d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/761443?v=4)[Ceili Cornelison](/maintainers/cornelisonc)[@cornelisonc](https://github.com/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.8k54.9M11.6k](/packages/illuminate-database)[yajra/laravel-oci8

Oracle DB driver for Laravel via OCI8

8793.2M25](/packages/yajra-laravel-oci8)[glushkovds/phpclickhouse-laravel

Adapter of the most popular library https://github.com/smi2/phpClickHouse to Laravel

2051.5M2](/packages/glushkovds-phpclickhouse-laravel)[lemaur/eloquent-publishing

218.1k1](/packages/lemaur-eloquent-publishing)[laravel-liberu/laravel-gedcom

A package that converts gedcom files to Eloquent models

782.5k1](/packages/laravel-liberu-laravel-gedcom)

PHPackages © 2026

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