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-03-19 23:59:12 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 in config/application.config.php AFTER LearningContextClientModule
 $config = array(
   'modules' => array(
     // ...
     'LearningContextClientModule',
     'LearningContextClientModuleDoctrineORM',
     // ...
   ),
   // ...
);