PHPackages                             bobinrinder/laravel-super-migrate - 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. bobinrinder/laravel-super-migrate

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

bobinrinder/laravel-super-migrate
=================================

This is my package laravel-super-migrate

v1.0.0-beta.6(7mo ago)3111[2 PRs](https://github.com/bobinrinder/laravel-super-migrate/pulls)MITPHPPHP ^8.3CI passing

Since Sep 26Pushed 1w ago1 watchersCompare

[ Source](https://github.com/bobinrinder/laravel-super-migrate)[ Packagist](https://packagist.org/packages/bobinrinder/laravel-super-migrate)[ Docs](https://github.com/bobinrinder/laravel-super-migrate)[ RSS](/packages/bobinrinder-laravel-super-migrate/feed)WikiDiscussions main Synced today

READMEChangelog (6)Dependencies (13)Versions (11)Used By (0)

🚀 Laravel Super Migrate
=======================

[](#-laravel-super-migrate)

[![Latest Version on Packagist](https://camo.githubusercontent.com/09e8a1b633f3c9096894d8dd08406bd2086b8be2c4afd532521c680b045147cb/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f626f62696e72696e6465722f6c61726176656c2d73757065722d6d6967726174652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/bobinrinder/laravel-super-migrate)[![GitHub Tests Action Status](https://github.com/bobinrinder/laravel-super-migrate/actions/workflows/run-tests.yml/badge.svg)](https://github.com/bobinrinder/laravel-super-migrate/actions/workflows/run-tests.yml)[![GitHub Code Style Action Status](https://github.com/bobinrinder/laravel-super-migrate/actions/workflows/fix-php-code-style-issues.yml/badge.svg)](https://github.com/bobinrinder/laravel-super-migrate/actions/workflows/fix-php-code-style-issues.yml)[![Total Downloads](https://camo.githubusercontent.com/bd92954f31fc8aa477a2ad7812f9c9822cd30194f77807841ed3bb6ef31167b0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f626f62696e72696e6465722f6c61726176656c2d73757065722d6d6967726174652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/bobinrinder/laravel-super-migrate)

This package extends Laravel's default migration functionality.

It hooks seamlessly into the existing migration process, but tracks more details than the built-in process.

FeatureSuper MigrateNative LaravelLogs migrations✅✅Logs start, end and failure times✅❌Logs rollbacks✅❌Logs exceptions with stack trace✅❌CLI to see history and failures✅❌Optional parallel run prevention✅❌Installation
------------

[](#installation)

You can install the package via composer:

```
composer require bobinrinder/laravel-super-migrate
```

And then run the migration with:

```
php artisan migrate
```

Publish
-------

[](#publish)

Optionally you can publish the [config file](https://github.com/bobinrinder/laravel-super-migrate/blob/main/config/super-migrate.php) with and/or the migration with:

```
php artisan vendor:publish --tag="super-migrate-config"
php artisan vendor:publish --tag="super-migrate-migrations"
```

Usage
-----

[](#usage)

Use Laravel's migration system like you usually do.

```
php artisan migrate
```

To show a history of migrations run:

```
php artisan super-migrate:list
```

To show details of the last failure:

```
php artisan super-migrate:failure
```

To show details of a specific failure add the ID seen in the `list` command:

```
php artisan super-migrate:failure 5
```

Testing
-------

[](#testing)

```
composer test
```

Roadmap
-------

[](#roadmap)

- Log events and errors to Slack etc via Monolog
- Web/Nova UI to look at history

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [bobinrinder](https://github.com/bobinrinder)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance82

Actively maintained with recent releases

Popularity9

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 81.9% 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 ~9 days

Total

6

Last Release

231d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/4162722?v=4)[Robin Binder](/maintainers/bobinrinder)[@bobinrinder](https://github.com/bobinrinder)

---

Top Contributors

[![bobinrinder](https://avatars.githubusercontent.com/u/4162722?v=4)](https://github.com/bobinrinder "bobinrinder (68 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (10 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (5 commits)")

---

Tags

laravelbobinrinderlaravel-super-migrate

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/bobinrinder-laravel-super-migrate/health.svg)

```
[![Health](https://phpackages.com/badges/bobinrinder-laravel-super-migrate/health.svg)](https://phpackages.com/packages/bobinrinder-laravel-super-migrate)
```

###  Alternatives

[spatie/laravel-permission

Permission handling for Laravel 12 and up

12.9k102.4M1.4k](/packages/spatie-laravel-permission)[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M47](/packages/spatie-laravel-pdf)[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.1k11.2M100](/packages/dedoc-scramble)[wnx/laravel-backup-restore

A package to restore database backups made with spatie/laravel-backup.

213421.0k2](/packages/wnx-laravel-backup-restore)[spatie/laravel-passkeys

Use passkeys in your Laravel app

471890.7k39](/packages/spatie-laravel-passkeys)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)

PHPackages © 2026

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