mirror of
https://github.com/elyby/accounts.git
synced 2024-12-05 04:58:56 +05:30
c0aa78d156
Completely removed usage of the RabbitMQ. Queue now based on Redis channels. Worker process now extracted as separate docker container. Base image upgraded to the 1.8.0 version (PHP 7.2.7 and pcntl extension).
31 lines
1000 B
PHP
31 lines
1000 B
PHP
<?php
|
||
return [
|
||
'language' => 'en-US',
|
||
'controllerMap' => [
|
||
'fixture' => [
|
||
'class' => yii\faker\FixtureController::class,
|
||
'fixtureDataPath' => '@tests/codeception/common/fixtures/data',
|
||
'templatePath' => '@tests/codeception/common/templates/fixtures',
|
||
'namespace' => 'tests\codeception\common\fixtures',
|
||
],
|
||
],
|
||
'params' => [
|
||
'fromEmail' => 'ely@ely.by',
|
||
],
|
||
'components' => [
|
||
'urlManager' => [
|
||
'showScriptName' => true,
|
||
],
|
||
'security' => [
|
||
// Для тестов нам не сильно важна безопасность, а вот время прохождения тестов значительно сокращается
|
||
'passwordHashCost' => 4,
|
||
],
|
||
'queue' => [
|
||
'class' => tests\codeception\common\_support\queue\Queue::class,
|
||
],
|
||
'sentry' => [
|
||
'enabled' => false,
|
||
],
|
||
],
|
||
];
|