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

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

    'mail' => [
        'host' => 'smtp.mail.yahoo.com',
        'port' => '465',
        'username' => 'email_username',
        'password' => 'email_password',
    ]
];