thebart1/cakephp-steam-auth

A steam auth class for CakePHP 3.x

v1.0.1 2018-06-26 11:12 UTC

This package is not auto-updated.

Last update: 2024-04-28 02:58:36 UTC


README

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
]