You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
642 B

<?php
require 'vendor/autoload.php';
$bootstrap = new Movim\Bootstrap;
$bootstrap->boot(true);
return [
'paths' => [
'migrations' => DOCUMENT_ROOT . '/database/migrations',
'seeds' => DOCUMENT_ROOT . '/database/seeds'
],
'environments' => [
'default_migration_table' => 'phinxlog',
'default_database' => 'movim',
'default_environment' => 'movim',
'movim' => [
'adapter' => DB_TYPE,
'host' => DB_HOST,
'name' => DB_DATABASE,
'user' => DB_USERNAME,
'pass' => DB_PASSWORD,
'port' => DB_PORT
]
]
];