config: drop the "conf" prefix for config files.
This commit is contained in:
parent
005f1e3292
commit
ca90ec30fb
4 changed files with 3 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -5,6 +5,7 @@ node_modules/
|
|||
|
||||
cache/
|
||||
app/config/conf.local.yml
|
||||
app/config/local.yml
|
||||
|
||||
# Ignore transpiled files
|
||||
|
||||
|
|
|
|||
|
|
@ -65,8 +65,8 @@ class Services extends DiDefault
|
|||
// The priority is files defined AFTER another
|
||||
// will override settings if there a multiple keys.
|
||||
$files = array(
|
||||
'conf.app.yml',
|
||||
'conf.local.yml'
|
||||
'app.yml',
|
||||
'local.yml'
|
||||
);
|
||||
|
||||
$basePath = APP_PATH . '/app/config/';
|
||||
|
|
|
|||
Reference in a new issue