PHPackages                             fatindeed/laravel-db-dump-migration - 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. fatindeed/laravel-db-dump-migration

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

fatindeed/laravel-db-dump-migration
===================================

Laravel DB Dump Migration

0.1.0(6y ago)03MITPHPPHP ^7.1

Since Jul 10Pushed 6y agoCompare

[ Source](https://github.com/fatindeed/laravel-db-dump-migration)[ Packagist](https://packagist.org/packages/fatindeed/laravel-db-dump-migration)[ Docs](https://packagist.org/packages/fatindeed/laravel-db-dump-migration)[ RSS](/packages/fatindeed-laravel-db-dump-migration/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (2)Versions (2)Used By (0)

Laravel DB Dump Migration
=========================

[](#laravel-db-dump-migration)

[![PHP Version](https://camo.githubusercontent.com/0050f073f0391a56bfe26b4441595fb1ff38173cfee4f87db654c8df7d6d37d4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f666174696e646565642f6c61726176656c2d64622d64756d702d6d6967726174696f6e2e737667)](#)[![Latest Version on Packagist](https://camo.githubusercontent.com/f3ad181dcfadbc883ac6cda1fb9caeca22b0e58e363dc6ef8b94b6fdb95b8926/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f666174696e646565642f6c61726176656c2d64622d64756d702d6d6967726174696f6e2e737667)](https://packagist.org/packages/fatindeed/laravel-db-dump-migration)[![Software License](https://camo.githubusercontent.com/95b13291cb6f820a442ca7eddde89baf66fb76004e0d26fcea0f9e84f392cce0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f666174696e646565642f6c61726176656c2d64622d64756d702d6d6967726174696f6e2e737667)](#)[![Build Status](https://camo.githubusercontent.com/643f0b37128b5ba8556541bcd37fe12d7cb9f19ed7beeca728ae95cd210f6651/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f666174696e646565642f6c61726176656c2d64622d64756d702d6d6967726174696f6e2f6d61737465722e737667)](https://travis-ci.org/fatindeed/laravel-db-dump-migration)[![Coverage Status](https://camo.githubusercontent.com/70e4084f4cb5fd0cb147a7c82ff5e15b2147964389fab73932a541ab2c01cb00/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f666174696e646565642f6c61726176656c2d64622d64756d702d6d6967726174696f6e2e737667)](https://scrutinizer-ci.com/g/fatindeed/laravel-db-dump-migration/code-structure)[![Quality Score](https://camo.githubusercontent.com/3e6ce01300d034a1ae116edd4beb94726b2c763452929174328629803daca34f/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f666174696e646565642f6c61726176656c2d64622d64756d702d6d6967726174696f6e2e737667)](https://scrutinizer-ci.com/g/fatindeed/laravel-db-dump-migration)[![Total Downloads](https://camo.githubusercontent.com/27157773c100a3533a8d903d235f4d316765279851ebef53ba528d5433b9a29a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646d2f666174696e646565642f6c61726176656c2d64622d64756d702d6d6967726174696f6e2e737667)](https://packagist.org/packages/fatindeed/laravel-db-dump-migration)

Guide
-----

[](#guide)

1. Install with composer

    ```
    composer require --dev fatindeed/laravel-db-dump-migration
    ```
2. Add command to your `app/Console/Kernel.php`

    ```
    protected $commands = [
        \Fatindeed\LaravelDbDumpMigration\DbDumpCommand::class
    ];
    ```
3. Run command

    ```
    php artisan db:dump-migration my_table_name
    ```

    ```
    php artisan db:dump-migration my_table_name --database=mysql
    ```

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity44

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

Unknown

Total

1

Last Release

2498d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/24bf4121bacddbc5b41de57941796c755c941ae02d4c8ea41157eea3a63602b5?d=identicon)[fatindeed](/maintainers/fatindeed)

---

Top Contributors

[![fatindeed](https://avatars.githubusercontent.com/u/168262?v=4)](https://github.com/fatindeed "fatindeed (3 commits)")

---

Tags

laravelmigration

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/fatindeed-laravel-db-dump-migration/health.svg)

```
[![Health](https://phpackages.com/badges/fatindeed-laravel-db-dump-migration/health.svg)](https://phpackages.com/packages/fatindeed-laravel-db-dump-migration)
```

###  Alternatives

[dragon-code/laravel-data-dumper

Adding data from certain tables when executing the `php artisan schema:dump` console command

3418.6k](/packages/dragon-code-laravel-data-dumper)[shiftonelabs/laravel-nomad

Add extra functionality to Laravel migrations.

20100.8k](/packages/shiftonelabs-laravel-nomad)[fisharebest/laravel-floats

Floating point support for Laravel migrations

1111.4k](/packages/fisharebest-laravel-floats)[khalyomede/laravel-seed

Run your seeds like you run your migrations.

1013.0k](/packages/khalyomede-laravel-seed)

PHPackages © 2026

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