forked from opencfp/opencfp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
phinx.php
40 lines (34 loc) · 1.15 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
<?php
declare(strict_types=1);
/**
* Copyright (c) 2013-2018 OpenCFP
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*
* @see https://github.com/opencfp/opencfp
*/
use OpenCFP\Environment;
use OpenCFP\Kernel;
require_once __DIR__ . '/vendor/autoload.php';
$kernel = new Kernel((string) Environment::fromServer(\getenv()), false);
$kernel->boot();
$container = $kernel->getContainer();
return [
'paths' => [
'migrations' => '%%PHINX_CONFIG_DIR%%/migrations',
],
'environments' => [
'default_migration_table' => 'phinxlog',
'default_database' => $kernel->getEnvironment(),
$kernel->getEnvironment() => [
'adapter' => 'mysql',
'host' => $container->getParameter('database.host'),
'name' => $container->getParameter('database.database'),
'user' => $container->getParameter('database.user'),
'pass' => $container->getParameter('database.password'),
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
],
],
];