gap-db / orm
ORM
1.0.7
2016-07-28 22:13 UTC
Requires
- php: >=5.4.0
README
用于连接数据库并使用PDO驱动的ORM
需求
PHP > 5.3.0
安装
如果您使用Composer来管理项目的依赖项,请将以下内容添加到您的"composer.json"文件中
"require": {
"gap-db/orm": "1.*"
}
更新模块配置列表 - safan-framework-standard/application/Settings/modules.config.php
<?php
return [
// Safan Framework default modules route
'Safan' => 'vendor/safan-lab/safan/Safan',
'SafanResponse' => 'vendor/safan-lab/safan/SafanResponse',
// Write created or installed modules route here ... e.g. 'FirstModule' => 'application/Modules/FirstModule'
'GapOrm' => 'vendor/gap-db/orm/GapOrm'
];
添加配置 - safan-framework-standard/application/Settings/main.config.php
<?php
'init' => [
'gap' => [
'class' => 'GapOrm\GapOrm',
'method' => 'init',
'params' => [
'driver' => 'pdo',
'host' => 'localhost',
'user' => '',
'password' => '',
'db' => '',
'charset' => 'utf-8',
'debug' => false,
]
]
]