A library that provides a way to transform model objects into database schemas
A library that provides a way to transform model objects into database schemas
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.
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
.
MIT (See license file).