Skip to content

bartekbujak/cake-steam-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

cakephp-steam-auth

Steam Authorization for CakePhp

Instruction:

Add following lines to initialize() mehtod in AppController.

$this->Auth->config('authenticate', [
    'Steam', // app authentication object.
]);

Also add following lines to config/app.php

'Steam' => [
    'redirectUrl' => '' //example: http://localhost:8765
]