├── LICENSE.md ├── README.md ├── after-bagpack.png ├── before-bagpack.png ├── composer.json ├── config └── bagpack.php └── src ├── BagpackServiceProvider.php ├── Console ├── MigrateMakeCommand.php └── MigrationPackageCommand.php ├── Extensions └── Migrator.php ├── MakeMigrationProvider.php ├── MigrationTranspiler.php └── Traits ├── HandlesMigrationFiles.php └── InteractsWithFiles.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/README.md -------------------------------------------------------------------------------- /after-bagpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/after-bagpack.png -------------------------------------------------------------------------------- /before-bagpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/before-bagpack.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/composer.json -------------------------------------------------------------------------------- /config/bagpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/config/bagpack.php -------------------------------------------------------------------------------- /src/BagpackServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/src/BagpackServiceProvider.php -------------------------------------------------------------------------------- /src/Console/MigrateMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/src/Console/MigrateMakeCommand.php -------------------------------------------------------------------------------- /src/Console/MigrationPackageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/src/Console/MigrationPackageCommand.php -------------------------------------------------------------------------------- /src/Extensions/Migrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/src/Extensions/Migrator.php -------------------------------------------------------------------------------- /src/MakeMigrationProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/src/MakeMigrationProvider.php -------------------------------------------------------------------------------- /src/MigrationTranspiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/src/MigrationTranspiler.php -------------------------------------------------------------------------------- /src/Traits/HandlesMigrationFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/src/Traits/HandlesMigrationFiles.php -------------------------------------------------------------------------------- /src/Traits/InteractsWithFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwogu/bagpack/HEAD/src/Traits/InteractsWithFiles.php --------------------------------------------------------------------------------