Config, setup and bootstrap
This commit is contained in:
6
app/configs/commands.php
Normal file
6
app/configs/commands.php
Normal file
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
return [
|
||||
'commands' => [
|
||||
ProVM\Command\GenerateMigrations::class,
|
||||
]
|
||||
];
|
13
app/configs/env.php
Normal file
13
app/configs/env.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
return [
|
||||
...$_ENV,
|
||||
'start_date' => '20141101080000',
|
||||
'skips' => [
|
||||
'monolog',
|
||||
'phinxlog',
|
||||
'personas',
|
||||
'datos_personas',
|
||||
'proveedores',
|
||||
'datos_proveedores'
|
||||
]
|
||||
];
|
8
app/configs/paths.php
Normal file
8
app/configs/paths.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
return [
|
||||
'paths.base' => dirname(__DIR__),
|
||||
'paths.resources' => DI\String('{paths.base}/resources'),
|
||||
'paths.database' => DI\String('{paths.resources}/database'),
|
||||
'paths.migrations' => DI\String('{paths.database}/migrations'),
|
||||
'paths.seeds' => DI\String('{paths.database}/seeds')
|
||||
];
|
Reference in New Issue
Block a user