mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 06:37:55 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			658 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			658 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Application configuration shared by all test types
 | 
						|
 */
 | 
						|
return [
 | 
						|
    'controllerMap' => [
 | 
						|
        'fixture' => [
 | 
						|
            'class' => 'yii\faker\FixtureController',
 | 
						|
            'fixtureDataPath' => '@tests/codeception/fixtures',
 | 
						|
            'templatePath' => '@tests/codeception/templates',
 | 
						|
            'namespace' => 'tests\codeception\fixtures',
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
    'components' => [
 | 
						|
        'db' => [
 | 
						|
            'dsn' => 'mysql:host=localhost;dbname=yii2_basic_tests',
 | 
						|
        ],
 | 
						|
        'mailer' => [
 | 
						|
            'useFileTransport' => true,
 | 
						|
        ],
 | 
						|
        'urlManager' => [
 | 
						|
            'showScriptName' => true,
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
];
 |