mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
build: Cut out database.php embedded in .travis.yml
This commit is contained in:
parent
bd633c023a
commit
fe26fedbbc
1 changed files with 79 additions and 0 deletions
79
.github/workflows/configs/database.php
vendored
Normal file
79
.github/workflows/configs/database.php
vendored
Normal file
|
@ -0,0 +1,79 @@
|
|||
<?php
|
||||
class DATABASE_CONFIG {
|
||||
private $identities = array(
|
||||
'mysql' => array(
|
||||
'datasource' => 'Database/Mysql',
|
||||
'host' => '127.0.0.1',
|
||||
'login' => 'root'
|
||||
),
|
||||
'pgsql' => array(
|
||||
'datasource' => 'Database/Postgres',
|
||||
'host' => '127.0.0.1',
|
||||
'login' => 'postgres',
|
||||
'database' => 'cakephp_test',
|
||||
'schema' => array(
|
||||
'default' => 'public',
|
||||
'test' => 'public',
|
||||
'test2' => 'test2',
|
||||
'test_database_three' => 'test3'
|
||||
)
|
||||
),
|
||||
'sqlite' => array(
|
||||
'datasource' => 'Database/Sqlite',
|
||||
'database' => array(
|
||||
'default' => ':memory:',
|
||||
'test' => ':memory:',
|
||||
'test2' => '/tmp/cakephp_test2.db',
|
||||
'test_database_three' => '/tmp/cakephp_test3.db'
|
||||
),
|
||||
)
|
||||
);
|
||||
public $default = array(
|
||||
'persistent' => false,
|
||||
'host' => '',
|
||||
'login' => '',
|
||||
'password' => '',
|
||||
'database' => 'cakephp_test',
|
||||
'prefix' => ''
|
||||
);
|
||||
public $test = array(
|
||||
'persistent' => false,
|
||||
'host' => '',
|
||||
'login' => '',
|
||||
'password' => '',
|
||||
'database' => 'cakephp_test',
|
||||
'prefix' => ''
|
||||
);
|
||||
public $test2 = array(
|
||||
'persistent' => false,
|
||||
'host' => '',
|
||||
'login' => '',
|
||||
'password' => '',
|
||||
'database' => 'cakephp_test2',
|
||||
'prefix' => ''
|
||||
);
|
||||
public $test_database_three = array(
|
||||
'persistent' => false,
|
||||
'host' => '',
|
||||
'login' => '',
|
||||
'password' => '',
|
||||
'database' => 'cakephp_test3',
|
||||
'prefix' => ''
|
||||
);
|
||||
public function __construct() {
|
||||
$db = 'mysql';
|
||||
if (!empty($_SERVER['DB'])) {
|
||||
$db = $_SERVER['DB'];
|
||||
}
|
||||
foreach (array('default', 'test', 'test2', 'test_database_three') as $source) {
|
||||
$config = array_merge($this->{$source}, $this->identities[$db]);
|
||||
if (is_array($config['database'])) {
|
||||
$config['database'] = $config['database'][$source];
|
||||
}
|
||||
if (!empty($config['schema']) && is_array($config['schema'])) {
|
||||
$config['schema'] = $config['schema'][$source];
|
||||
}
|
||||
$this->{$source} = $config;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue