16 lines
		
	
	
		
			311 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			311 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| $db = [
 | |
|     'class' => 'yii\db\Connection',
 | |
|     'dsn' => 'mysql:host=localhost;dbname=yii2-usuario-test',
 | |
|     'username' => 'root',
 | |
|     'password' => '',
 | |
|     'charset' => 'utf8',
 | |
| ];
 | |
| 
 | |
| if (file_exists(__DIR__.'/db.local.php')) {
 | |
|     $db = array_merge($db, require(__DIR__.'/db.local.php'));
 | |
| }
 | |
| 
 | |
| return $db;
 |