Files
symfony-flex-recipes/symfony/reprise/1.1/manifest.json
T

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
}
]
}