php-extended/php-model-to-db-schema-interface

A library that provides a way to transform model objects into database schemas


Keywords
php, db, schema, model, interface, Bridge
License
MIT

Documentation

php-model-to-db-schema-interface

A library that provides a way to transform model objects into database schemas

Installation

The installation of this library is made via composer. Download composer.phar from their website. Then add to your composer.json :

	"require": {
		...
		"php-extended/php-model-to-db-schema-interface": "^2"
		...
	}

Then run php composer.phar update to install this library. The autoloading of all classes of this library is made through composer's autoloader.

Basic Usage

This library is an interface-only library. It represents a bridge between modeling information for building a relational model for a database and the real database structure that emerges from it.

For a concrete implementation, see php-extended/php-model-to-db-schema-json.

License

MIT (See license file).