Files
2026-07-01 16:44:17 +03:00

63 lines
1.3 KiB
Plaintext

<?php return
[
'mail' =>
[
'driver' => 'smtp',
'smtp' =>
[
'host' => '',
'user' => '',
'password' => '',
'port' => 587,
'keepAlive' => false,
'timeout' => 10,
'encode' => 'tls',
'dsn' => false,
'auth' => true
],
'imap' =>
[
'host' => '',
'user' => '',
'password' => '',
'port' => 993,
'flags' => [],
'mailbox' => 'INBOX'
],
'general' =>
[
'senderMail' => '',
'senderName' => '',
]
],
'cache' =>
[
'driver' => 'file',
'file' =>
[
'encode' => false,
],
'redis' =>
[
'host' => '',
'password' => '',
'port' => 6379,
'timeout' => 60,
],
'memcache' =>
[
'host' => '',
'port' => 11211,
'weight' => 1,
],
'memcached' =>
[
'host' => '',
'port' => 11211,
'weight' => 1,
],
]
];