├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Command │ ├── PurgeCommand.php │ └── UpdateCommand.php ├── DbalSchemaCommand.php ├── DbalSchemaProvider.php └── SchemaDefinition.php └── tests ├── DbalSchemaCommandTest.php ├── Fixture └── .gitignore └── MigrationTest.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Command/PurgeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/src/Command/PurgeCommand.php -------------------------------------------------------------------------------- /src/Command/UpdateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/src/Command/UpdateCommand.php -------------------------------------------------------------------------------- /src/DbalSchemaCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/src/DbalSchemaCommand.php -------------------------------------------------------------------------------- /src/DbalSchemaProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/src/DbalSchemaProvider.php -------------------------------------------------------------------------------- /src/SchemaDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/src/SchemaDefinition.php -------------------------------------------------------------------------------- /tests/DbalSchemaCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/tests/DbalSchemaCommandTest.php -------------------------------------------------------------------------------- /tests/Fixture/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/MigrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnapoli/dbal-schema/HEAD/tests/MigrationTest.php --------------------------------------------------------------------------------