home » zplus/freepost.git
ID: 46693c037cf61f6089c2caeac6a534371d49d855
12 lines — 349B — View raw


<?php

class Config {
    
    public static $DATABASE = array (
        // Data Source Name, contains the information required to connect to the database
        'dsn'      => 'mysql:host=localhost;dbname=freepost;charset=utf8',
        'username' => 'freepost',
        'password' => 'freepost'
    );
    
    public static $SEND_EMAILS = true;
}