Download the PHP package joshbrw/laravel-module-migrations without Composer
On this page you can find all versions of the php package joshbrw/laravel-module-migrations. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download joshbrw/laravel-module-migrations
More information about joshbrw/laravel-module-migrations
Files in joshbrw/laravel-module-migrations
Download joshbrw/laravel-module-migrations
More information about joshbrw/laravel-module-migrations
Files in joshbrw/laravel-module-migrations
Vendor joshbrw
Package laravel-module-migrations
Short Description Adds functionality for running migrations from other modules.
License MIT
Package laravel-module-migrations
Short Description Adds functionality for running migrations from other modules.
License MIT
Please rate this library. Is it a good library?
Informations about the package laravel-module-migrations
Laravel Module Migrations
Provides a Trait that can be used on migrations with Laravel Modules to ensure that a table from another Module exists. This solves any cross-module table dependency issues.
Installation
-
Publish the config to
config/module-migrations.php
by running:php artisan vendor:publish --provider="Joshbrw\LaravelModuleMigrations\LaravelModuleMigrationsServiceProvider"
- Write your table definitions within this config file. This config file should define the tables that can be created, the module that their migrations exist in and any migrations that should be ran to create this table.
- In any migrations that require tables created in other modules,
use Joshbrw\LaravelModuleMigrations\Traits\ModuleMigrator
. - Use
$this->ensureTableExists('tableName');
wherever you want the tables to be created.
All versions of laravel-module-migrations with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.2
nwidart/laravel-modules Version 5.*
illuminate/support Version 5.8.*
illuminate/database Version 5.8.*
nwidart/laravel-modules Version 5.*
illuminate/support Version 5.8.*
illuminate/database Version 5.8.*
The package joshbrw/laravel-module-migrations contains the following files
Loading the files please wait ....