phprest/phprest-service-orm
Composer 安装命令:
composer require phprest/phprest-service-orm
包简介
Phprest Orm Service.
README 文档
README
Description
Orm Service which uses these components:
Installation
Install it through composer.
{
"require": {
"phprest/phprest-service-orm": "@stable"
}
}
tip: you should browse the phprest/phprest-service-orm
page to choose a stable version to use, avoid the @stable meta constraint.
Usage
Configuration
For the configuration you should check the Config class.
Example
<?php $ormConfig = new \Phprest\Service\Orm\Config( [ 'driver' => 'pdo_mysql', 'host' => 'localhost', 'dbname' => 'phprest', 'charset' => 'utf8', 'user' => 'root', 'password' => 'root' ], ['path_to_the_entities'] ); $ormConfig->migration = new \Phprest\Service\Orm\Config\Migration('path_to_the_migrations'); $ormConfig->fixture = new \Phprest\Service\Orm\Config\Fixture('path_to_the_fixtures');
Registration
<?php use Phprest\Service\Orm; # ... /** @var \Phprest\Application $app */ $app->registerService(new Orm\Service(), $ormConfig); # ...
Reaching from a Controller
To reach your Service from a Controller you should use the Service's Getter Trait.
<?php namespace App\Module\Controller; use Phprest\Service; class Index extends \Phprest\Util\Controller { use Service\Orm\Getter; public function post(Request $request) { /** @var \Doctrine\ORM\EntityManager $em */ $em = $this->serviceOrm(); } }
Cli
You can use a helper script if you want after a composer install (vendor/bin/phprest-service-orm).
You have to provide an orm config for the script. You have two options for this:
- Put your orm configuration to a specific file:
app/config/orm.php - You have to return with the orm configuration in the proper file
- Put the path of the configuration in the
paths.phpfile - You have to return with an array from the
paths.phpfile with the orm configuration file path under theservice.orm.configarray key
统计信息
- 总下载量: 884
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 3
- 推荐数: 3
其他信息
- 授权协议: MIT
- 更新时间: 2014-12-11