mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 23:42:09 +05:30
23 lines
626 B
PHP
23 lines
626 B
PHP
<?php
|
|
return [
|
|
'components' => [
|
|
'db' => [
|
|
'dsn' => 'mysql:host=localhost;dbname=ely_accounts',
|
|
'username' => 'root',
|
|
'password' => '',
|
|
],
|
|
'mailer' => [
|
|
// send all mails to a file by default. You have to set
|
|
// 'useFileTransport' to false and configure a transport
|
|
// for the mailer to send real emails.
|
|
'useFileTransport' => true,
|
|
],
|
|
'redis' => [
|
|
'hostname' => 'localhost',
|
|
'password' => null,
|
|
'port' => 6379,
|
|
'database' => 0,
|
|
],
|
|
],
|
|
];
|