Download the PHP package simple-as-fuck/orm without Composer
On this page you can find all versions of the php package simple-as-fuck/orm. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package orm
Simple as fuck / orm
Orm layer easy to use with customizable class generation.
Installation
Usage generator with mysql as composer command
Add configurations into your composer.json extra (https://getcomposer.org/doc/04-schema.md#extra).
All configuration keys are commented in Defaults\Config and can be change in composer extra.
Add commands into your composer.json scripts (https://getcomposer.org/doc/articles/scripts.md#writing-custom-commands).
After prepared composer you can run commands:
Command generate for all database tables with primary key Model and Repository classes. By default, models are in App\Model\Database and repository in App\Service\Database namespace.
If you add all generated classes into repository, you can check generated content if is up-to-date with database structure.
Is recommended avoid adding generated code in repository and run orm generation like this for production deploy after composer install. --no-dev option in default class templates remove some comments from generated code and some additional checks with exception, this can make orm gently faster.
-- --i-am-not-stupid and --no-dev are synonyms because if you write production deploy script, is good to know what you doing and not be stupid :-).
Usage default generated classes
Nice after successful class generation with default templates, you can write code like this.
Customization
Usage generator with mysql as php class
If you want write in application your command for class generation, mainly for configuration sharing with generator and app, use class \SimpleAsFuck\Orm\Generator\Generator.
Usage generator with different database type
Generator can create classes from various sources, because use abstract SimpleAsFuck\Orm\Generator\Abstracts\StructureLoader. You can load models structure from any source and create any classes.
All versions of orm with dependencies
ext-pdo Version *
league/flysystem Version ^2.0|^3.0
composer/composer Version ^2
simple-as-fuck/php-validator Version ^0.1.0|^0.2.0|^0.3.0