You've already forked Php-Template
24 lines
532 B
PHP
24 lines
532 B
PHP
<?php
|
|
|
|
use Siteworxpro\App\Helpers\Env;
|
|
|
|
return [
|
|
|
|
/**
|
|
* The server configuration.
|
|
*/
|
|
'server' => [
|
|
'port' => Env::get('HTTP_PORT', 9501),
|
|
],
|
|
|
|
/**
|
|
* The database configuration.
|
|
*/
|
|
'db' => [
|
|
'driver' => Env::get('DB_DRIVER', 'pgsql'),
|
|
'host' => Env::get('DB_HOST', 'localhost'),
|
|
'database' => Env::get('DB_DATABASE', 'siteworxpro'),
|
|
'username' => Env::get('DB_USERNAME', 'siteworxpro'),
|
|
'password' => Env::get('DB_PASSWORD', 'password'),
|
|
]
|
|
]; |