-
Notifications
You must be signed in to change notification settings - Fork 0
/
phinx.php
executable file
·46 lines (41 loc) · 1.26 KB
/
phinx.php
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
<?php declare(strict_types=1);
use App\Helper\Env;
use Dotenv\Dotenv;
error_reporting(-1);
ini_set('display_errors', 'on');
ini_set('display_startup_errors', 'on');
require __DIR__ . '/vendor/autoload.php';
Dotenv::createImmutable(__DIR__)->load();
defined('FAKER_LANG') || define('FAKER_LANG', 'ru_RU');
return [
'paths' => [
'migrations' => [
"App\Db\Migrations" => 'db/migrations'
],
'seeds' => [
"App\Db\Seeds" => 'db/seeds',
]
],
'environments' => [
'default_migration_table' => 'phinxlog',
'default_database' => Env::PRODUCTION,
Env::PRODUCTION => [
'adapter' => getenv('DB_CONNECTION'),
'host' => getenv('DB_HOST'),
'name' => getenv('DB_NAME'),
'user' => getenv('DB_USER'),
'pass' => getenv('DB_PASSWORD'),
'port' => getenv('DB_PORT'),
'charset' => 'utf8'
],
Env::TESTING => [
'adapter' => getenv('DB_CONNECTION'),
'host' => getenv('DB_HOST'),
'name' => getenv('DB_NAME'),
'user' => getenv('DB_USER'),
'pass' => getenv('DB_PASSWORD'),
'port' => getenv('DB_PORT'),
'charset' => 'utf8'
]
]
];