xelax90 / learning-context-client-module-doctrine-orm
Doctrine ORM extension for xelax90/learning-context-client-module
v1.0.1
2016-06-21 14:30 UTC
This package is auto-updated.
Last update: 2024-11-20 01:26:13 UTC
README
This module provides a Doctrine token storage for the Learning Context Client. The tokens will be stored in the lc_accesstoken
and lc_refreshtoken
tables.
For more information about the Learning Context Client see https://github.com/xelax90/learning-context-client
For more information about the Learning Context Client Module see https://github.com/xelax90/learning-context-client-module
Setup
- Install this module with composer
composer require xelax90/learning-context-client-module-doctrine-orm
- Add
LearningContextClientModuleDoctrineORM
to your modules array inconfig/application.config.php
AFTERLearningContextClientModule
$config = array( 'modules' => array( // ... 'LearningContextClientModule', 'LearningContextClientModuleDoctrineORM', // ... ), // ... );