bobinrinder/laravel-super-migrate

This is my package laravel-super-migrate

v1.0.0-beta.1 2025-09-26 17:47 UTC

This package is auto-updated.

Last update: 2025-09-26 18:03:40 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

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.

Feature Super Migrate Native Laravel
Logs 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

You can install the package via composer:

composer require bobinrinder/laravel-super-migrate

You can publish and run the migrations with:

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

You can publish the config file with:

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

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

composer test

Roadmap

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

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.