├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── Console │ └── GenerateSqlMigration.php └── MigrateSqlServiceProvider.php └── tests ├── Feature └── Console │ └── GenerateMigrationSqlTest.php ├── TestCase.php └── stubs └── migrations └── 2018_05_16_000000_create_stub_table.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-taylor/migrate-sql/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-taylor/migrate-sql/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-taylor/migrate-sql/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-taylor/migrate-sql/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-taylor/migrate-sql/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-taylor/migrate-sql/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-taylor/migrate-sql/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Console/GenerateSqlMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-taylor/migrate-sql/HEAD/src/Console/GenerateSqlMigration.php -------------------------------------------------------------------------------- /src/MigrateSqlServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-taylor/migrate-sql/HEAD/src/MigrateSqlServiceProvider.php -------------------------------------------------------------------------------- /tests/Feature/Console/GenerateMigrationSqlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-taylor/migrate-sql/HEAD/tests/Feature/Console/GenerateMigrationSqlTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-taylor/migrate-sql/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/stubs/migrations/2018_05_16_000000_create_stub_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh-taylor/migrate-sql/HEAD/tests/stubs/migrations/2018_05_16_000000_create_stub_table.php --------------------------------------------------------------------------------