Отделены параметры конфигурации для приложения от параметров конфигурации необходимых контейнеров

This commit is contained in:
ErickSkrauch
2016-12-04 15:34:32 +03:00
parent 6fc558c3c8
commit 9274155cfc
6 changed files with 85 additions and 64 deletions

View File

@@ -6,22 +6,5 @@ return [
'schemaCacheDuration' => 3600,
'schemaCache' => 'cache',
],
'mailer' => [
'useFileTransport' => false,
'transport' => [
'class' => Swift_SmtpTransport::class,
'host' => 'ely.by',
'username' => getenv('SMTP_USER'),
'password' => getenv('SMTP_PASS'),
'port' => 587,
'encryption' => 'tls',
'streamOptions' => [
'ssl' => [
'allow_self_signed' => true,
'verify_peer' => false,
],
],
],
],
],
];