signifly/laravel-database-refactors

Add database refactors to your Laravel app.

Downloads

23227

Stars

24

Version

v1.4.2

Add database refactors to your Laravel app

Latest Version on Packagist Build Status StyleCI Quality Score Total Downloads

The signifly/laravel-database-refactors package allows you to easily add database refactors to your Laravel app.

Below is a small example of how to use it.

Run the refactor in terminal:

php artisan db:refactor --class="UsersTableRefactor"

or programatically in a migration:

// use Illuminate\Support\Facades\Artisan;
Artisan::call('db:refactor', [
    '--class' => 'UsersTableRefactor',
]);

IMPORTANT! Update your composer.json file in order to autoload the database refactors:

    "autoload": {
        "classmap": [
            "database/seeds",
            "database/factories",
            "database/refactors"
        ],
        "psr-4": {
            "App\\": "app/"
        }
    },

Installation

You can install the package via composer:

composer require signifly/laravel-database-refactors

The package will automatically register itself.

Basic Usage

In order to generate a new refactor file, you may use the following command:

php artisan make:refactor UsersTableRefactor

The file will be located in the database/refactors folder.

Testing

composer test

Security

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

Credits

License

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

signifly

Author

signifly