Skip to content
Snippets Groups Projects
main-local.php 1.03 KiB
Newer Older
  • Learn to ignore specific revisions
  • Marcello Pivanti's avatar
    Marcello Pivanti committed
    <?php
    
    /**
     * Art-ER Attrattività, ricerca e territorio dell’Emilia-Romagna
     * OPEN 2.0
     *
     * @package    arter\amos\basic\template
     * @category   CategoryName
     * @author     Elite Division S.r.l.
     */
    
    return [
        'components' => [
            'db' => [
                'class' => 'yii\db\Connection',
                'dsn' => 'mysql:host=localhost;dbname=db_name',
                'username' => 'db_user',
                'password' => 'db_passwd',
                'charset' => 'utf8',
                'enableSchemaCache' => true,
                'schemaCacheDuration' => 88000,
                'schemaCache' => 'schemaCache',
                'attributes'=>[
                    PDO::ATTR_PERSISTENT => true
                ]
            ],
            'mailer' => [
                'class' => 'yii\swiftmailer\Mailer',
                'viewPath' => '@common/mail',
                // send all mails to a file by default. You have to set
                // 'useFileTransport' to false and configure a transport
                // for the mailer to send real emails.
                'useFileTransport' => true,
            ],
        ],
    ];