mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 23:26:27 +03:00
49 lines
1.7 KiB
JSON
49 lines
1.7 KiB
JSON
{
|
|
"manifests": {
|
|
"symfony/routing": {
|
|
"manifest": {
|
|
"copy-from-recipe": {
|
|
"config/": "%CONFIG_DIR%/"
|
|
},
|
|
"conflict": {
|
|
"symfony/framework-bundle": "<5.3"
|
|
}
|
|
},
|
|
"files": {
|
|
"config/packages/routing.yaml": {
|
|
"contents": [
|
|
"framework:",
|
|
" router:",
|
|
" utf8: true",
|
|
"",
|
|
" # Configure how to generate URLs in non-HTTP contexts, such as CLI commands.",
|
|
" # See https://symfony.com/doc/current/routing.html#generating-urls-in-commands",
|
|
" #default_uri: http://localhost",
|
|
"",
|
|
"when@prod:",
|
|
" framework:",
|
|
" router:",
|
|
" strict_requirements: null",
|
|
""
|
|
],
|
|
"executable": false
|
|
},
|
|
"config/routes.yaml": {
|
|
"contents": [
|
|
"controllers:",
|
|
" resource: ../src/Controller/",
|
|
" type: annotation",
|
|
"",
|
|
"kernel:",
|
|
" resource: ../src/Kernel.php",
|
|
" type: annotation",
|
|
""
|
|
],
|
|
"executable": false
|
|
}
|
|
},
|
|
"ref": "eb3b377a4dc07006c4bdb2c773652cc9434f5246"
|
|
}
|
|
}
|
|
}
|