15 lines
		
	
	
		
			342 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			342 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
    'class' => 'yii\db\Connection',
 | 
						|
    'dsn' => 'mysql:host=localhost;dbname=yii2basic',
 | 
						|
    'username' => 'root',
 | 
						|
    'password' => '',
 | 
						|
    'charset' => 'utf8',
 | 
						|
 | 
						|
    // Schema cache options (for production environment)
 | 
						|
    //'enableSchemaCache' => true,
 | 
						|
    //'schemaCacheDuration' => 60,
 | 
						|
    //'schemaCache' => 'cache',
 | 
						|
];
 |