<?php
declare(strict_types=1);

return [
    'app' => [
        'url' => 'https://attendance.example.com',
        'timezone' => 'Asia/Dhaka',
        'debug' => false,
        'session_secure' => true,
        'setup_key' => 'replace-with-at-least-32-random-characters',
    ],
    'db' => [
        'host' => 'localhost',
        'port' => 3306,
        'name' => 'cpaneluser_attendance',
        'user' => 'cpaneluser_attendance',
        'pass' => 'database-password',
    ],
];

