ritalin / omelet
SQL base object mapper for php
0.3.4
2015-07-08 06:11 UTC
Requires
- php: >=5.5.0
- doctrine/annotations: ~1.2
- doctrine/dbal: ~2.5
- mattketmo/camel: ~1.1
Requires (Dev)
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2025-03-29 20:32:23 UTC
README
This Library is inspired by Doma(https://github.com/domaframework/doma).
Requirements
php >= 5.5.x
Installation
Omelet can be installed with Composer.
Define the following requirement in your composer.json file:
{ "require": { "ritalin/omelet": "*" } }
Quick Start
-
Define Dao (Data Access Object) interface.
- DAO method is need to describe an annotation comment to distingish database command/query.
use \Omelet\Annotation\Select; interface TodoDao { /** * @Select */ function listAll(); }
-
Prepare sql file of same name as method. sql file path depends on namespace for dao interface.
-- listAll.sql select * from todo order by id
-
Instanciate \Omelet\Builder\DaoBuilderContext .
- At least, need to a connection string to database as configuration.
$config = \Omelet\Builder\Configuration; $config->connectionString = "driver=pdo_sqlite&path=/path/to/todo.sqlite3"; $context = new \Omelet\Builder\DaoBuilderContext($config);
-
Generate Dao concrete class.
$context->build(Todo::class);
-
Use Dao.
- A Dao concrete class name note that 'Impl' is suffixed to interface name by default.
$conn = \Doctrine\DBAL\DriverManager->getConnection($context->connectionString()); $dao = new TodoImpl($conn, $context); $rows = $dao->listAll();
Sample Application
Please see ritalin/omelet-bear-example implemented with BEAR.Sunday (https://github.com/bearsunday/BEAR.Sunday) framework.
now work in progress ...