-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
It would be a nice addition if one could also use configuration files nested in folders, which will then be parsed recursively (like is the case with Kohana's CFS), e.g.:
config/
+-- dev/
+-- locales/
+-- en.yml
+-- locales/
+-- en.yml
+-- es.yml
Will result in:
{
"locales": {
"en": {
"foo": "bar"
},
"es": {
"foo": "barra"
}
}
}