infuse / migrations
Migrations module for Infuse Framework
Installs: 251
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 1
pkg:composer/infuse/migrations
Requires
- php: >=5.6.0
- robmorgan/phinx: ~0.8
Requires (Dev)
- infuse/infuse: ~1.4
- phpunit/phpunit: 5.7.*
This package is auto-updated.
Last update: 2025-09-20 15:38:43 UTC
README
Database migrations module for Infuse Framework. Built on Phinx.
Installation
-
Install the package with composer:
composer require infuse/migrations
-
Add the console command to
console.commands
in your app's configuration:'console' => [ // ... 'commands' => [ // ... 'Infuse\Migrations\Console\MigrateCommand' ] ]
-
Add your migrations to
modules.migrations
in your app's configuration:'modules' => [ // .. 'migrations' => [ 'auth', 'users', // ... ] ]