mirror of
https://github.com/elyby/accounts.git
synced 2024-11-07 00:29:00 +05:30
17 lines
365 B
PHP
17 lines
365 B
PHP
<?php
|
|
return [
|
|
'components' => [
|
|
'db' => [
|
|
'dsn' => 'mysql:host=localhost;dbname=ely_accounts',
|
|
'username' => 'root',
|
|
'password' => '',
|
|
],
|
|
'redis' => [
|
|
'hostname' => 'localhost',
|
|
'password' => null,
|
|
'port' => 6379,
|
|
'database' => 0,
|
|
],
|
|
],
|
|
];
|