LaravelPackages.net
Acme Inc.
Toggle sidebar
matt127127/laravel-migration-paths

Multiple migration paths for Laravel projects.

3.079
0
v1.20
About matt127127/laravel-migration-paths

matt127127/laravel-migration-paths is a Laravel package for multiple migration paths for laravel projects.. It currently has 0 GitHub stars and 3.079 downloads on Packagist (latest version v1.20). Install it with composer require matt127127/laravel-migration-paths. Discover more Laravel packages by matt127127 or browse all Laravel packages to compare alternatives.

Last updated

Laravel Migration Paths

By matt127127

During the periodical development phase the migrations folder may become very large. It is very helpful if we can organize the content of the migration folders. This library helps to organize migration files in different folders.

Installation:

Use Composer to install the library.

composer require matt127127/laravel-migration-paths

After updating composer, add the service provider to the providers array in config/app.php

matt127127\MigrationPath\ServiceProvider::class,

Laravel 5.5 uses Package Auto-Discovery, so does not require you to manually add the ServiceProvider.

Usage:

By default all folders under the database/migrations directory will be registered for migrations.

But, if you would like to add multiple directories which are not under the migrations folder, you have to publish the config first.

php artisan vendor:publish --provider="matt127127\MigrationPath\ServiceProvider" --tag="config"

Add your custom directories:

'paths' => [
    database_path('migrations'),
    'path/to/custom_migrations', // Your Custom Migration Directory
],

License

This bundle is under the MIT license. For the full copyright and license information please view the LICENSE file that was distributed with this source code.

Star History Chart