| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?php
- // 根据运行环境加载不同的配置文件
- $mainConfig = require_once __DIR__ . '/config-product.php';
- //if (YII_ENV == YII_ENV_DEV) {
- // $mainConfig = require_once __DIR__ . '/config-development.php';
- //} else if (YII_ENV == YII_ENV_TEST) {
- // $mainConfig = require_once __DIR__ . '/config-test.php';
- //} else if (YII_ENV == YII_ENV_PROD) {
- // $mainConfig = require_once __DIR__ . '/config-product.php';
- //} else {
- // $mainConfig = require_once __DIR__ . '/config-development.php';
- //}
- return [
- 'language' => 'zh-CN', // zh-CN 目标语言
- 'sourceLanguage' => 'en-US',
- 'timeZone' => 'Africa/Lagos',
- 'aliases' => [
- '@bower' => '@vendor/bower-asset',
- '@npm' => '@vendor/npm-asset',
- // 'anlity/swooleAsyncTimer' => '@backend/runtime/tmp-extensions/yii2-swoole-async-timer',
- ],
- 'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
- 'components' => [
- 'db' => array_merge([
- 'class' => 'yii\db\Connection',
- 'enableSlaves' => false,
- // 'enableSavepoint' => false,
- ], $mainConfig['db'], $mainConfig['slavesDb']),
- // 'dbShop' => array_merge(['class' => 'yii\db\Connection', 'schemaMap' => ['oci' => 'common\helpers\Schema']], $mainConfig['dbShop']),
- 'dbLog' => array_merge(['class' => 'yii\mongodb\Connection',], $mainConfig['dbLog']),
- 'dbCalc' => array_merge(['class' => 'yii\db\Connection'], $mainConfig['dbCalc']),
- 'dbCalcServer' => array_merge(['class' => 'yii\db\Connection'], $mainConfig['dbCalcServer']),
- // 'dbShopCalc' => array_merge(['class' => 'yii\db\Connection', 'schemaMap' => ['oci' => 'common\helpers\Schema'],], $mainConfig['dbShopCalc']),
- 'dbNetPoint' => array_merge(['class' => 'yii\db\Connection'], $mainConfig['dbNetPoint']),
- // 'cache' => [
- // //'class' => 'yii\caching\FileCache',
- // 'class' => 'dcb9\redis\Cache',
- // 'redis' => $mainConfig['cacheRedis'],
- // ],
- 'cache' => [
- 'class' => 'yii\redis\Cache',
- 'redis' => $mainConfig['cacheRedis'],
- // 'redis' => [
- // 'hostname' => '127.0.0.1',
- // 'port' => 6379,
- // 'database' => 0,
- // ]
- ],
- 'tokenRedis' => array_merge(['class' => 'yii\redis\Connection'], $mainConfig['tokenRedis']),
- 'redis' => array_merge(['class' => 'yii\redis\Connection'], $mainConfig['otherRedis']),
- // 'tokenRedis' => array_merge(['class' => 'common\components\Redis'], $mainConfig['tokenRedis']),
- // 'redis' => array_merge(['class' => 'common\components\Redis'], $mainConfig['otherRedis']),
- 'mailer' => [
- 'class' => 'yii\swiftmailer\Mailer',
- 'viewPath' => '@common/mail',
- 'useFileTransport' => false,
- 'enableSwiftMailerLogging' => true,
- 'transport' => [
- 'class' => 'Swift_SmtpTransport',
- 'host' => 'mail.authsmtp.com',
- 'port' => 325,
- 'username' => 'ac71555',
- 'password' => 'I1j-MKi-fJ8-nHb',
- 'encryption' => 'TLS',
- ],
- ],
- 'swooleAsyncTimer' => [
- 'class' => 'common\components\SwooleAsyncTimer',
- ],
- // payStack配置
- 'Paystack' => [
- 'class' => 'smladeoye\paystack\Paystack',
- 'environment' => YII_ENV,
- 'testPublicKey' => 'pk_test_2eed10135c4a958c5073795b22854ded9d1a6c55',
- 'testSecretKey' => 'sk_test_5ece72377432376f5cf6bb5c468395a650220309',
- 'livePublicKey' => 'pk_live_fae524f9d073d877beeb661fd825a37a9bc91f0a',
- 'liveSecretKey' => 'sk_live_b93c6bbee2cc0e9c594547bf4779ec9852b9d055',
- ],
- // 配置SQL语句输出
- 'log' => [
- 'traceLevel' => YII_DEBUG ? 3 : 0,
- 'targets' => [
- [
- 'class' => 'yii\log\FileTarget',
- 'levels' => ['error', 'warning', 'info'],
- 'categories' => ['yii\db\*', 'app\models\*'],
- 'logFile' => '@runtime/logs/sql.log',
- ],
- 'db' => [ 'class' => 'yii\log\FileTarget'],
- ],
- ],
- // 多语言
- 'i18n' => [
- 'translations' => [
- 'app*' => [
- 'class' => 'yii\i18n\PhpMessageSource',
- 'basePath' => '@common/messages',
- 'sourceLanguage' => 'en-US',
- 'fileMap' => [
- 'app' => 'app.php',
- 'app/error' => 'error.php',
- ],
- 'forceTranslation' => true,
- ],
- 'ctx*' => [
- 'class' => 'yii\i18n\PhpMessageSource',
- 'basePath' => '@common/messages',
- 'sourceLanguage' => 'en-US',
- 'fileMap' => [
- 'ctx' => 'ctx.php',
- 'ctx/error' => 'error.php',
- ],
- 'forceTranslation' => true,
- ],
- ],
- ],
- ],
- 'controllerMap' => [
- 'swoole_server' => [
- 'class' => 'anlity\swooleAsyncTimer\SwooleAsyncTimerController',
- ],
- ],
- ];
|