<?php

declare(strict_types=1);

/** 
 * @author Robert Strutts
 * @copyright (c) 2026, Robert Strutts
 * @license MIT
 */

use IOcornerstone\Framework\Configure as Config;

Config::set('security', [
    'max_last_login_age' => 172800, // 2 Days Login
    'max_token_age' => 7200, // 2 Hours
    'token_life' => 7300,
]);