conflakes
Version:
Manager of the configuration, may be depending on the environment, with the ability to import another config files defined inside themselves.
23 lines • 617 B
JSON
{
"routing": {
"homage": {
"path": "/homepage",
"defaults": {
"_controller": "App/Default",
"_format": "json"
}
},
"article_show": {
"path": "/articles/{_locale}/{year}/{slug}.{_format}",
"defaults": {
"_controller": "AppBundle:Article:show",
"_format": "html"
},
"requirements": {
"_locale": "en|fr",
"_format": "html|rss",
"year": "\\d+"
}
}
}
}