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
768 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' => config('database.driver'),
'host' => config('database.host'),
'name' => config('database.database'),
'user' => config('database.username'),
'pass' => config('database.password'),
'port' => config('database.port'),
]
]
];