52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
use CodeIgniter\Database\Config;
|
|
|
|
class Database extends Config
|
|
{
|
|
public string $filesPath = APPPATH . 'Database' . DIRECTORY_SEPARATOR;
|
|
public string $defaultGroup = 'default';
|
|
|
|
public array $default = [
|
|
'DSN' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'u280815660_melabidi',
|
|
'password' => '>tNxlRzP/W8',
|
|
'database' => 'u280815660_school',
|
|
'DBDriver' => 'MySQLi',
|
|
'DBPrefix' => '',
|
|
'pConnect' => false,
|
|
'DBDebug' => (ENVIRONMENT !== 'development'),
|
|
'charset' => 'utf8',
|
|
'DBCollat' => 'utf8_general_ci',
|
|
'swapPre' => '',
|
|
'encrypt' => false,
|
|
'compress' => false,
|
|
'strictOn' => false,
|
|
'failover' => [],
|
|
'port' => 3306,
|
|
];
|
|
|
|
public array $tests = [
|
|
'DSN' => '',
|
|
'hostname' => 'localhost',
|
|
'username' => 'u280815660_melabidi',
|
|
'password' => '>tNxlRzP/W8',
|
|
'database' => 'u280815660_school',
|
|
'DBDriver' => 'MySQLi',
|
|
'DBPrefix' => 'db_',
|
|
'pConnect' => false,
|
|
'DBDebug' => true,
|
|
'charset' => 'utf8',
|
|
'DBCollat' => 'utf8_general_ci',
|
|
'swapPre' => '',
|
|
'encrypt' => false,
|
|
'compress' => false,
|
|
'strictOn' => false,
|
|
'failover' => [],
|
|
'port' => 3306,
|
|
];
|
|
}
|