zelax90 / 学习环境客户端模块-Doctrine ORM
zelax90/学习环境客户端模块的Doctrine ORM扩展
v1.0.1
2016-06-21 14:30 UTC
This package is auto-updated.
Last update: 2024-09-20 01:01:30 UTC
README
本模块为学习环境客户端提供Doctrine令牌存储。令牌将存储在lc_accesstoken
和lc_refreshtoken
表中。
有关学习环境客户端的更多信息,请参阅https://github.com/xelax90/学习环境客户端
有关学习环境客户端模块的更多信息,请参阅https://github.com/xelax90/学习环境客户端模块
设置
- 使用composer安装此模块
composer require xelax90/learning-context-client-module-doctrine-orm
- 在
config/application.config.php
中将LearningContextClientModuleDoctrineORM
添加到模块数组中,在LearningContextClientModule
之后
$config = array( 'modules' => array( // ... 'LearningContextClientModule', 'LearningContextClientModuleDoctrineORM', // ... ), // ... );