| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- $config = [
- 'components' => [
- 'request' => [
- // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
- 'cookieValidationKey' => 'o83yA7NsYp3sNfG9AjO8hbXq5ejTAvyt',
- ],
- 'dbCrm' => require(__DIR__ . '/../../common/config/db-xcrm.php'),
- 'mailer' => [
- 'class' => 'yii\swiftmailer\Mailer',
- 'useFileTransport' => false,
- 'transport' => [
- 'class' => 'Swift_SmtpTransport',
- 'host' => 'smtp.exmail.qq.com',
- // 'username' => 'admin@trends-fx.com',
- 'username' => 'admin@chong-hing.com',
- 'password' => 'Chonghink99',
- 'port' => '465',
- 'encryption' => 'ssl',
- ],
- 'messageConfig' => [
- 'charset' => 'UTF-8',
- 'from' => ['admin@chong-hing.com' => '創興']
- ],
- ],
- ],
- ];
- if (YII_ENV_DEV) {
- // configuration adjustments for 'dev' environment
- $config['bootstrap'][] = 'debug';
- $config['modules']['debug'] = [
- 'class' => 'yii\debug\Module',
- ];
- $config['bootstrap'][] = 'gii';
- $config['modules']['gii'] = [
- 'class' => 'yii\gii\Module',
- ];
- }
- return $config;
|