mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
343 B
14 lines
343 B
<?php
|
|
|
|
/**
|
|
* Movim database default values
|
|
*/
|
|
|
|
return [
|
|
'driver' => env('DB_DRIVER', 'pgsql'),
|
|
'host' => env('DB_HOST', 'localhost'),
|
|
'port' => (int)env('DB_PORT', 5432),
|
|
'username' => env('DB_USERNAME', 'movim'),
|
|
'password' => env('DB_PASSWORD', 'movim'),
|
|
'database' => env('DB_DATABASE', 'movim')
|
|
];
|