From fc87603199cf337e140e2a75ab38afd54830be4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Andr=C3=A9?= Date: Wed, 20 Nov 2024 11:36:36 +0100 Subject: [PATCH] [UX Turbo] Fix recipe does not install bundle (#1357) * [UX Turbo] Fix recipe does not install bundle Turbo is not installed correctly now (i guess now having this recipe, we do need to add the `bundles` entry in the manifest) Issue: https://github.com/symfony/ux/issues/2391 I just hope the "conflict" will not prevent the bundle to be configured ? * add 2.19 --- symfony/ux-turbo/2.19/manifest.json | 5 +++++ symfony/ux-turbo/2.20/manifest.json | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 symfony/ux-turbo/2.19/manifest.json diff --git a/symfony/ux-turbo/2.19/manifest.json b/symfony/ux-turbo/2.19/manifest.json new file mode 100644 index 000000000..1fa03bf69 --- /dev/null +++ b/symfony/ux-turbo/2.19/manifest.json @@ -0,0 +1,5 @@ +{ + "bundles": { + "Symfony\\UX\\Turbo\\TurboBundle": ["all"] + } +} diff --git a/symfony/ux-turbo/2.20/manifest.json b/symfony/ux-turbo/2.20/manifest.json index 48149c60a..b166a6ca0 100644 --- a/symfony/ux-turbo/2.20/manifest.json +++ b/symfony/ux-turbo/2.20/manifest.json @@ -1,4 +1,7 @@ { + "bundles": { + "Symfony\\UX\\Turbo\\TurboBundle": ["all"] + }, "conflict": { "symfony/framework-bundle": "<7.2", "symfony/security-csrf": "<7.2"