14 lines
360 B
PHP
14 lines
360 B
PHP
<?php
|
|
/**
|
|
* Database Configuration
|
|
*/
|
|
|
|
return [
|
|
'host' => $_ENV['DB_HOST'] ?? '127.0.0.1',
|
|
'port' => $_ENV['DB_PORT'] ?? '3306',
|
|
'database' => $_ENV['DB_DATABASE'] ?? 'musadaqDb',
|
|
'username' => $_ENV['DB_USERNAME'] ?? 'musadaqUser',
|
|
'password' => $_ENV['DB_PASSWORD'] ?? '',
|
|
'charset' => $_ENV['DB_CHARSET'] ?? 'utf8mb4',
|
|
];
|