mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 15:16:30 +03:00
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"bundles": {
|
|
"Symfony\\Reprise\\RepriseBundle": ["all"]
|
|
},
|
|
"copy-from-recipe": {
|
|
"assets/": "assets/",
|
|
"config/": "%CONFIG_DIR%/"
|
|
},
|
|
"aliases": ["reprise"],
|
|
"conflict": {
|
|
"symfony/flex": "<1.20.0 || >=2.0.0,<2.3.0",
|
|
"symfony/framework-bundle": "<6.4"
|
|
},
|
|
"gitignore": [
|
|
"/node_modules/",
|
|
"/%PUBLIC_DIR%/build/"
|
|
],
|
|
"add-lines": [
|
|
{
|
|
"file": "templates/base.html.twig",
|
|
"content": [
|
|
" {{ reprise_entry_link_tags('app') }}"
|
|
],
|
|
"position": "after_target",
|
|
"target": "{% block stylesheets %}",
|
|
"warn_if_missing": true
|
|
},
|
|
{
|
|
"file": "templates/base.html.twig",
|
|
"content": [
|
|
" {{ reprise_entry_script_tags('app') }}"
|
|
],
|
|
"position": "after_target",
|
|
"target": "{% block javascripts %}",
|
|
"warn_if_missing": true
|
|
}
|
|
]
|
|
}
|