mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			738 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			738 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Application configuration shared by all applications and test types
 | 
						|
 */
 | 
						|
return [
 | 
						|
    'language' => 'en-US',
 | 
						|
    'controllerMap' => [
 | 
						|
        'fixture' => [
 | 
						|
            'class' => 'yii\faker\FixtureController',
 | 
						|
            'fixtureDataPath' => '@tests/codeception/common/fixtures/data',
 | 
						|
            'templatePath' => '@tests/codeception/common/templates/fixtures',
 | 
						|
            'namespace' => 'tests\codeception\common\fixtures',
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
    'components' => [
 | 
						|
        'db' => [
 | 
						|
            'dsn' => 'mysql:host=localhost;dbname=ely_accounts_test',
 | 
						|
        ],
 | 
						|
        'mailer' => [
 | 
						|
            'useFileTransport' => true,
 | 
						|
        ],
 | 
						|
        'urlManager' => [
 | 
						|
            'showScriptName' => true,
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
];
 |