xelax90 / learning-context-client-module-doctrine-orm
Doctrine ORM extension for xelax90/learning-context-client-module
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/xelax90/learning-context-client-module-doctrine-orm
This package is auto-updated.
Last update: 2025-09-20 03:06:59 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', // ... ), // ... );