PHPackages                             curicows/laravel-seeder-manager - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. curicows/laravel-seeder-manager

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

curicows/laravel-seeder-manager
===============================

1.0.1(3y ago)04MITPHPPHP ^8.2

Since May 13Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Curicows/laravel-seeder-manager)[ Packagist](https://packagist.org/packages/curicows/laravel-seeder-manager)[ Docs](https://github.com/curicows/laravel-seeder-manager)[ RSS](/packages/curicows-laravel-seeder-manager/feed)WikiDiscussions development Synced 1mo ago

READMEChangelog (1)Dependencies (4)Versions (4)Used By (0)

Manage seeders like migrations
==============================

[](#manage-seeders-like-migrations)

[![Latest Version on Packagist](https://camo.githubusercontent.com/36e09e0667625ee51c36171d06537d7dddcc9c1bb477de9b420654cbdde2d508/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f63757269636f77732f6c61726176656c2d7365656465722d6d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/curicows/laravel-seeder-manager)[![Total Downloads](https://camo.githubusercontent.com/3a457c18c9d22fb98e0dc9df76483c5749d71af86f5f8e1ad1c80e5cbbc3f08a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f63757269636f77732f6c61726176656c2d7365656465722d6d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/curicows/laravel-seeder-manager)

This package allows you to manage your seeders like migrations. You can run and will not run again.

I'm working on more features like rollback and more. Total WIP.

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

[](#installation)

You can install the package via composer:

```
composer require curicows/laravel-seeder-manager
```

Usage
-----

[](#usage)

Seed a database with a seeder interface:

```
class DataSeeder extends Seeder implements SeedDatabase
{
    public function getName(): string
    {
        return 'DataSeeder';
    }

    public function seed(): void
    {
        User::create([
            'name' => 'Admin',
            'email' => 'test@test.com',
        ]);
    }
}
```

Or a manager to handle multiple seeders:

```
class DataManagerSeeder extends Seeder implements ManagerSeeder
{
    public function getName(): string
    {
        return 'DataManagerSeeder';
    }

    public function getSeeders(): array
    {
        return [
            DataSeeder::class,
        ];
    }
}
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Curicows](https://github.com/curicows)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~1 days

Total

2

Last Release

1099d ago

### Community

Maintainers

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

---

Top Contributors

[![Curicows](https://avatars.githubusercontent.com/u/7757193?v=4)](https://github.com/Curicows "Curicows (10 commits)")

---

Tags

curicowslaravel-seeder-manager

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/curicows-laravel-seeder-manager/health.svg)

```
[![Health](https://phpackages.com/badges/curicows-laravel-seeder-manager/health.svg)](https://phpackages.com/packages/curicows-laravel-seeder-manager)
```

###  Alternatives

[wireui/wireui

TallStack components

1.8k1.3M16](/packages/wireui-wireui)[livewire/volt

An elegantly crafted functional API for Laravel Livewire.

4195.3M84](/packages/livewire-volt)[ramonrietdijk/livewire-tables

Dynamic tables for models with Laravel Livewire

21147.4k](/packages/ramonrietdijk-livewire-tables)

PHPackages © 2026

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