├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .scrutinizer.yml ├── .styleci.yml ├── README.md ├── composer.json ├── doc └── images │ └── screencast.gif ├── phpunit.xml.dist ├── src ├── DefaultNamingStrategy.php ├── FluidColumn.php ├── FluidColumnOptions.php ├── FluidSchema.php ├── FluidSchemaException.php ├── FluidTable.php └── NamingStrategyInterface.php └── tests ├── DefaultNamingStrategyTest.php ├── FluidColumnOptionsTest.php ├── FluidColumnTest.php ├── FluidSchemaTest.php └── FluidTableTest.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/composer.json -------------------------------------------------------------------------------- /doc/images/screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/doc/images/screencast.gif -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/DefaultNamingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/src/DefaultNamingStrategy.php -------------------------------------------------------------------------------- /src/FluidColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/src/FluidColumn.php -------------------------------------------------------------------------------- /src/FluidColumnOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/src/FluidColumnOptions.php -------------------------------------------------------------------------------- /src/FluidSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/src/FluidSchema.php -------------------------------------------------------------------------------- /src/FluidSchemaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/src/FluidSchemaException.php -------------------------------------------------------------------------------- /src/FluidTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/src/FluidTable.php -------------------------------------------------------------------------------- /src/NamingStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/src/NamingStrategyInterface.php -------------------------------------------------------------------------------- /tests/DefaultNamingStrategyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/tests/DefaultNamingStrategyTest.php -------------------------------------------------------------------------------- /tests/FluidColumnOptionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/tests/FluidColumnOptionsTest.php -------------------------------------------------------------------------------- /tests/FluidColumnTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/tests/FluidColumnTest.php -------------------------------------------------------------------------------- /tests/FluidSchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/tests/FluidSchemaTest.php -------------------------------------------------------------------------------- /tests/FluidTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/dbal-fluid-schema-builder/HEAD/tests/FluidTableTest.php --------------------------------------------------------------------------------