qcubed/framework

View on GitHub
travis/pgsql.inc.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

    /*
     * Configure the pgsql travis-ci connection
     */
    define('DB_CONNECTION_1', serialize(array(
        'adapter' => 'PostgreSql',
        'server' => 'localhost',
        'port' => null,
        'database' => 'qcubed',
        'username' => 'postgres',
        'password' => '',
        'caching' => false,
        'profiling' => false)));