| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | 
							- <?php
 
- include './config/.config.php';
 
- return
 
- [
 
-     'paths' => [
 
-         'migrations' => '%%PHINX_CONFIG_DIR%%/db/migrations',
 
-         'seeds' => '%%PHINX_CONFIG_DIR%%/db/seeds'
 
-     ],
 
-     'environments' => [
 
-         'default_migration_table' => 'phinxlog',
 
-         'default_environment' => 'production',
 
-         'production' => [
 
-             'adapter' => 'mysql',
 
-             'host' => $_ENV['db_host'],
 
-             'name' => $_ENV['db_database'],
 
-             'user' => $_ENV['db_username'],
 
-             'pass' => $_ENV['db_password'],
 
-             'port' => '3306',
 
-             'charset' => $_ENV['db_charset'],
 
-         ],
 
-         'development' => [
 
-             'adapter' => 'mysql',
 
-             'host' => 'localhost',
 
-             'name' => 'development_db',
 
-             'user' => 'root',
 
-             'pass' => '',
 
-             'port' => '3306',
 
-             'charset' => 'utf8',
 
-         ],
 
-         'testing' => [
 
-             'adapter' => 'mysql',
 
-             'host' => 'localhost',
 
-             'name' => 'testing_db',
 
-             'user' => 'root',
 
-             'pass' => '',
 
-             'port' => '3306',
 
-             'charset' => 'utf8',
 
-         ]
 
-     ],
 
-     'version_order' => 'creation'
 
- ];
 
 
  |