2016-01-02 19:13:18 +05:30
|
|
|
<?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,
|
|
|
|
],
|
2016-02-14 23:20:10 +05:30
|
|
|
'redis' => [
|
|
|
|
'hostname' => 'localhost',
|
|
|
|
'password' => null,
|
|
|
|
'port' => 6379,
|
|
|
|
'database' => 0,
|
|
|
|
],
|
2016-04-15 04:15:33 +05:30
|
|
|
'amqp' => [
|
|
|
|
'host' => 'localhost',
|
|
|
|
'port' => 5672,
|
|
|
|
'user' => 'root',
|
|
|
|
'password' => '',
|
|
|
|
'vhost' => '/',
|
|
|
|
],
|
2016-01-02 19:13:18 +05:30
|
|
|
],
|
|
|
|
];
|