mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			505 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			505 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
return [
 | 
						|
    'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
 | 
						|
    'components' => [
 | 
						|
        'cache' => [
 | 
						|
            'class' => 'yii\caching\FileCache',
 | 
						|
        ],
 | 
						|
        'db' => [
 | 
						|
            'class' => 'yii\db\Connection',
 | 
						|
            'charset' => 'utf8',
 | 
						|
        ],
 | 
						|
        'mailer' => [
 | 
						|
            'class' => 'yii\swiftmailer\Mailer',
 | 
						|
            'viewPath' => '@common/mail',
 | 
						|
        ],
 | 
						|
        'security' => [
 | 
						|
            'passwordHashStrategy' => 'password_hash',
 | 
						|
        ]
 | 
						|
    ],
 | 
						|
];
 |