aboutsummaryrefslogtreecommitdiff
path: root/config.php
blob: 0e83ebeedfefd33c87baf5c691849e7907abd7b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

return [
    'database' => [
        'name' => 'pgsql_database',
        'username' => 'pgsql_username',
        'password' => 'pgsql_password',
        'connection' => 'pgsql:',
        'options' => [
            PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
        ]
    ],

    'mail' => [
        'host' => 'email_host',
        'port' => 'email_port',
        'name' => 'email_name',
        'username' => 'email_username',
        'password' => 'email_password',
    ]
];