Skip to content

Instantly share code, notes, and snippets.

@marcoceppi
Created March 19, 2017 01:49
Show Gist options
  • Save marcoceppi/c50721494c48fde09fc7b704eaa37f0c to your computer and use it in GitHub Desktop.
Save marcoceppi/c50721494c48fde09fc7b704eaa37f0c to your computer and use it in GitHub Desktop.
<?php
class DATABASE_CONFIG {
public $default = array(
'datasource' => 'Database/Mysql',
'persistent' => false,
'host' => '{{ database.host() }}',
'login' => '{{ database.user() }}',
'password' => '{{ database.password() }}',
'database' => '{{ database.database() }}',
'prefix' => '',
'encoding' => 'utf8',
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment