Skip to content

Commit

Permalink
added default config files
Browse files Browse the repository at this point in the history
  • Loading branch information
khooz committed Jan 6, 2015
1 parent ce071b9 commit 5b256ca
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/config/connections.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php
namespace Libraries\Database;

return [
'oracle-sid' => [
'driver' => 'pdo-via-oci8',
'host' => 'localhost',
'port' => '65535',
'database' => 'dev',
'service_name' => 'dev',
'username' => 'dev',
'password' => '12345678',
'charset' => 'utf8',
'prefix' => '',
],
];
8 changes: 8 additions & 0 deletions src/config/defaults.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php
namespace Libraries\Database;

return [
'paging' => 20,
'connection' => 'oracle-sid',
'schema' => 'DEV',
];

0 comments on commit 5b256ca

Please sign in to comment.