mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			116 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
return [
 | 
						|
    'version' => '{{PLACE_VERSION_HERE}}', // This will be replaced by build tool
 | 
						|
    'vendorPath' => dirname(__DIR__, 2) . '/vendor',
 | 
						|
    'aliases' => [
 | 
						|
        '@bower' => '@vendor/bower-asset',
 | 
						|
        '@npm' => '@vendor/npm-asset',
 | 
						|
 | 
						|
        '@root' => dirname(__DIR__, 2),
 | 
						|
        '@api' => '@root/api',
 | 
						|
        '@common' => '@root/common',
 | 
						|
        '@console' => '@root/console',
 | 
						|
    ],
 | 
						|
    'params' => [
 | 
						|
        'fromEmail' => 'ely@ely.by',
 | 
						|
        'supportEmail' => 'support@ely.by',
 | 
						|
    ],
 | 
						|
    'container' => [
 | 
						|
        'definitions' => [
 | 
						|
            GuzzleHttp\ClientInterface::class => GuzzleHttp\Client::class,
 | 
						|
            Ely\Mojang\Api::class => Ely\Mojang\Api::class,
 | 
						|
            common\components\SkinSystem\Api::class => common\components\SkinSystem\Api::class,
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
    'components' => [
 | 
						|
        'cache' => [
 | 
						|
            'class' => yii\redis\Cache::class,
 | 
						|
        ],
 | 
						|
        'db' => [
 | 
						|
            'class' => yii\db\Connection::class,
 | 
						|
            'dsn' => 'mysql:host=' . (getenv('DB_HOST') ?: 'db') . ';dbname=' . getenv('DB_DATABASE'),
 | 
						|
            'username' => getenv('DB_USER'),
 | 
						|
            'password' => getenv('DB_PASSWORD'),
 | 
						|
            'charset' => 'utf8mb4',
 | 
						|
            'schemaMap' => [
 | 
						|
                'mysql' => common\db\mysql\Schema::class,
 | 
						|
            ],
 | 
						|
        ],
 | 
						|
        'unbufferedDb' => [
 | 
						|
            'class' => yii\db\Connection::class,
 | 
						|
            'dsn' => 'mysql:host=' . (getenv('DB_HOST') ?: 'db') . ';dbname=' . getenv('DB_DATABASE'),
 | 
						|
            'username' => getenv('DB_USER'),
 | 
						|
            'password' => getenv('DB_PASSWORD'),
 | 
						|
            'charset' => 'utf8mb4',
 | 
						|
            'attributes' => [
 | 
						|
                PDO::MYSQL_ATTR_USE_BUFFERED_QUERY => false,
 | 
						|
            ],
 | 
						|
            'schemaMap' => [
 | 
						|
                'mysql' => common\db\mysql\Schema::class,
 | 
						|
            ],
 | 
						|
        ],
 | 
						|
        'mailer' => [
 | 
						|
            'class' => yii\swiftmailer\Mailer::class,
 | 
						|
            'viewPath' => '@common/mail',
 | 
						|
            'transport' => [
 | 
						|
                'class' => Swift_SmtpTransport::class,
 | 
						|
                'host' => 'ely.by',
 | 
						|
                'username' => getenv('SMTP_USER'),
 | 
						|
                'password' => getenv('SMTP_PASS'),
 | 
						|
                'port' => getenv('SMTP_PORT') ?: 587,
 | 
						|
                'encryption' => 'tls',
 | 
						|
                'streamOptions' => [
 | 
						|
                    'ssl' => [
 | 
						|
                        'allow_self_signed' => true,
 | 
						|
                        'verify_peer' => false,
 | 
						|
                    ],
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ],
 | 
						|
        'sentry' => [
 | 
						|
            'class' => common\components\Sentry\Component::class,
 | 
						|
            'enabled' => !empty(getenv('SENTRY_DSN')),
 | 
						|
            'dsn' => getenv('SENTRY_DSN'),
 | 
						|
            'environment' => YII_ENV_DEV ? 'development' : 'production',
 | 
						|
            'client' => [
 | 
						|
                'curl_method' => 'async',
 | 
						|
            ],
 | 
						|
        ],
 | 
						|
        'security' => [
 | 
						|
            'passwordHashStrategy' => 'password_hash',
 | 
						|
        ],
 | 
						|
        'redis' => [
 | 
						|
            'class' => yii\redis\Connection::class,
 | 
						|
            'hostname' => getenv('REDIS_HOST') ?: 'redis',
 | 
						|
            'password' => getenv('REDIS_PASS') ?: null,
 | 
						|
            'port' => getenv('REDIS_PORT') ?: 6379,
 | 
						|
            'database' => getenv('REDIS_DATABASE') ?: 0,
 | 
						|
        ],
 | 
						|
        'guzzle' => [
 | 
						|
            'class' => GuzzleHttp\Client::class,
 | 
						|
        ],
 | 
						|
        'emailsRenderer' => [
 | 
						|
            'class' => common\components\EmailsRenderer\Component::class,
 | 
						|
            'serviceUrl' => getenv('EMAILS_RENDERER_HOST'),
 | 
						|
            'basePath' => '/images/emails',
 | 
						|
        ],
 | 
						|
        'oauth' => [
 | 
						|
            'class' => api\components\OAuth2\Component::class,
 | 
						|
        ],
 | 
						|
        'authManager' => [
 | 
						|
            'class' => \api\rbac\Manager::class,
 | 
						|
            'itemFile' => '@api/rbac/.generated/items.php',
 | 
						|
            'ruleFile' => '@api/rbac/.generated/rules.php',
 | 
						|
        ],
 | 
						|
        'statsd' => [
 | 
						|
            'class' => common\components\StatsD::class,
 | 
						|
            'host' => getenv('STATSD_HOST'),
 | 
						|
            'port' => getenv('STATSD_PORT') ?: 8125,
 | 
						|
            'namespace' => getenv('STATSD_NAMESPACE') ?: 'ely.accounts.' . gethostname() . '.app',
 | 
						|
        ],
 | 
						|
        'queue' => [
 | 
						|
            'class' => yii\queue\redis\Queue::class,
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
];
 |