mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 06:37:55 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			274 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			274 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Application configuration shared by all applications and test types
 | 
						|
 */
 | 
						|
return [
 | 
						|
    'components' => [
 | 
						|
        'mailer' => [
 | 
						|
            'useFileTransport' => true,
 | 
						|
        ],
 | 
						|
        'urlManager' => [
 | 
						|
            'showScriptName' => true,
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
];
 |