-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathphinx.php
More file actions
55 lines (52 loc) · 1.62 KB
/
Copy pathphinx.php
File metadata and controls
55 lines (52 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
require_once __DIR__ . '/vendor/autoload.php';
$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
$dotenv->load();
return
[
'paths' => [
'migrations' => '%%PHINX_CONFIG_DIR%%/db/migrations',
'seeds' => '%%PHINX_CONFIG_DIR%%/db/seeds'
],
'environments' => [
'default_migration_table' => 'phinxlog',
'default_environment' => 'development_mysql',
'production' => [
'adapter' => 'mysql',
'host' => 'localhost',
'name' => 'production_db',
'user' => 'root',
'pass' => '',
'port' => '3306',
'charset' => 'utf8',
],
'development_mysql' => [
'adapter' => 'mysql',
'host' => $_ENV['DB_HOST'],
'name' => $_ENV['DB_DATABASE'],
'user' => $_ENV['DB_USERNAME'],
'pass' => $_ENV['DB_PASSWORD'],
'port' => $_ENV['DB_PORT'],
'charset' => 'utf8',
],
'development_postgres' => [
'adapter' => 'pgsql',
'host' => $_ENV['DB_HOST_POSTGRES'],
'name' => $_ENV['DB_DATABASE_POSTGRES'],
'user' => $_ENV['DB_USERNAME_POSTGRES'],
'pass' => $_ENV['DB_PASSWORD_POSTGRES'],
'port' => $_ENV['DB_PORT_POSTGRES'],
'charset' => 'utf8',
],
'testing' => [
'adapter' => 'mysql',
'host' => 'localhost',
'name' => 'testing_db',
'user' => 'root',
'pass' => '',
'port' => '3306',
'charset' => 'utf8',
]
],
'version_order' => 'creation'
];