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/
|
cache/
|
||||||
app/config/conf.local.yml
|
app/config/conf.local.yml
|
||||||
|
app/config/local.yml
|
||||||
|
|
||||||
# Ignore transpiled files
|
# Ignore transpiled files
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -65,8 +65,8 @@ class Services extends DiDefault
|
||||||
// The priority is files defined AFTER another
|
// The priority is files defined AFTER another
|
||||||
// will override settings if there a multiple keys.
|
// will override settings if there a multiple keys.
|
||||||
$files = array(
|
$files = array(
|
||||||
'conf.app.yml',
|
'app.yml',
|
||||||
'conf.local.yml'
|
'local.yml'
|
||||||
);
|
);
|
||||||
|
|
||||||
$basePath = APP_PATH . '/app/config/';
|
$basePath = APP_PATH . '/app/config/';
|
||||||
|
|
|
||||||
Reference in a new issue