vovanmix / phinx-laravel-style
Extension on top of Phinx to make migrations in Laravel 5 style with good IDE support
Installs: 118
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/vovanmix/phinx-laravel-style
Requires
- php: >=5.4.0
- robmorgan/phinx: ~0.6.0
- vlucas/phpdotenv: ^2.2
This package is not auto-updated.
Last update: 2025-09-24 04:12:53 UTC
README
Init after the first installation:
cp ./vendor/vovanmix/phinx-laravel-style/src/phinx-settings.php ./phinx.php
Generate migration:
php vendor/bin/phinx create --class=default MyNewMigration
Migrate:
php vendor/bin/phinx migrate
Rollback:
php vendor/bin/phinx rollback