xelax90 / learning-context-client-module-doctrine-orm
Doctrine ORM extension for xelax90/learning-context-client-module
Package info
github.com/xelax90/learning-context-client-module-doctrine-orm
pkg:composer/xelax90/learning-context-client-module-doctrine-orm
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is auto-updated.
Last update: 2026-08-20 05:24:00 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
LearningContextClientModuleDoctrineORMto your modules array inconfig/application.config.phpAFTERLearningContextClientModule
$config = array( 'modules' => array( // ... 'LearningContextClientModule', 'LearningContextClientModuleDoctrineORM', // ... ), // ... );