From 36365b74f384bfbcf52974ad6be181f279f4291b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Andr=C3=A9?= Date: Tue, 19 Nov 2024 20:53:08 +0100 Subject: [PATCH 1/2] [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 ? --- symfony/ux-turbo/2.20/manifest.json | 3 +++ 1 file changed, 3 insertions(+) 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" From 3595b58d3eebefc70e71a24d1b0b663ac7009da4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Andr=C3=A9?= Date: Tue, 19 Nov 2024 21:13:38 +0100 Subject: [PATCH 2/2] add 2.19 --- symfony/ux-turbo/2.19/manifest.json | 5 +++++ 1 file changed, 5 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"] + } +}