mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 08:11:24 +05:30
35 lines
961 B
PHP
35 lines
961 B
PHP
<?php
|
|
/**
|
|
* Application configuration shared by all applications and test types
|
|
*/
|
|
return [
|
|
'language' => 'en-US',
|
|
'controllerMap' => [
|
|
'fixture' => [
|
|
'class' => 'yii\faker\FixtureController',
|
|
'fixtureDataPath' => '@tests/codeception/common/fixtures/data',
|
|
'templatePath' => '@tests/codeception/common/templates/fixtures',
|
|
'namespace' => 'tests\codeception\common\fixtures',
|
|
],
|
|
],
|
|
'components' => [
|
|
'db' => [
|
|
'dsn' => 'mysql:host=db;dbname=ely_accounts_test',
|
|
],
|
|
'mailer' => [
|
|
'useFileTransport' => true,
|
|
],
|
|
'urlManager' => [
|
|
'showScriptName' => true,
|
|
],
|
|
'redis' => [
|
|
'database' => 1,
|
|
],
|
|
'amqp' => [
|
|
'user' => 'ely-accounts-tester',
|
|
'password' => 'tester-password',
|
|
'vhost' => '/account.ely.by/tests',
|
|
],
|
|
],
|
|
];
|