Commit aa7be30178651908ced985fd6d96de2e9099455d

Authored by andryeyev
1 parent 2019263f

- main-local.php

Showing 1 changed file with 0 additions and 25 deletions   Show diff stats
common/config/main-local.php deleted
1 -<?php  
2 -return [  
3 - 'components' => [  
4 - 'db' => [  
5 - 'class' => 'yii\db\Connection',  
6 - 'dsn' => 'pgsql:host=localhost;port=5432;dbname=artbox_test',  
7 - 'username' => 'postgres',  
8 - 'password' => '',  
9 - 'schemaMap' => [  
10 - 'pgsql'=> [  
11 - 'class'=>'yii\db\pgsql\Schema',  
12 - 'defaultSchema' => 'public'  
13 - ]  
14 - ],  
15 - ],  
16 - 'mailer' => [  
17 - 'class' => 'yii\swiftmailer\Mailer',  
18 - 'viewPath' => '@common/mail',  
19 - // send all mails to a file by default. You have to set  
20 - // 'useFileTransport' to false and configure a transport  
21 - // for the mailer to send real emails.  
22 - 'useFileTransport' => true,  
23 - ],  
24 - ],  
25 -];