1. Go to this page and download the library: Download 4spacesdk/ci4authextension library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
4spacesdk / ci4authextension example snippets
namespace Config;
use CodeIgniter\Config\BaseConfig;
class AuthExtension extends BaseConfig {
/*
* Specify the database group
*/
public string $dbGroupName = 'default';
/*
* If true, AuthExtension will extend routes with default endpoints
* Check CI4AuthExtension/Hooks/PreController.php for details
*/
public bool $autoRoute = true;
/*
* OAuth Access token lifetime in seconds
*/
public int $oauthAccessTokenLifeTime = 15 * MINUTE;
/*
* OAuth Access token lifetime in seconds
*/
public int $oauthRefreshTokenLifeTime = 7 * DAY;
/*
* Path to login page
*/
public string $loginPage = '/login';
}