├── .gitignore ├── composer.json ├── readme.md └── src ├── Barryvdh └── MigrationGenerator │ ├── MigrationGeneratorCommand.php │ └── MigrationGeneratorServiceProvider.php └── config └── config.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/laravel-migration-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/laravel-migration-generator/HEAD/composer.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/laravel-migration-generator/HEAD/readme.md -------------------------------------------------------------------------------- /src/Barryvdh/MigrationGenerator/MigrationGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/laravel-migration-generator/HEAD/src/Barryvdh/MigrationGenerator/MigrationGeneratorCommand.php -------------------------------------------------------------------------------- /src/Barryvdh/MigrationGenerator/MigrationGeneratorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/laravel-migration-generator/HEAD/src/Barryvdh/MigrationGenerator/MigrationGeneratorServiceProvider.php -------------------------------------------------------------------------------- /src/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/laravel-migration-generator/HEAD/src/config/config.php --------------------------------------------------------------------------------