From c006df73c66ff620542ad7a4379a7f653cc58e94 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Sun, 28 May 2023 16:58:27 -0400 Subject: [PATCH 1/2] Adding a fake 2.8 StimulusBundle recipe so that you always at least get the bundle installed Even if you can't execute the 2.9 recipe due to the "conflicts" inside. --- symfony/stimulus-bundle/2.8/manifest.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 symfony/stimulus-bundle/2.8/manifest.json diff --git a/symfony/stimulus-bundle/2.8/manifest.json b/symfony/stimulus-bundle/2.8/manifest.json new file mode 100644 index 00000000..ff66e874 --- /dev/null +++ b/symfony/stimulus-bundle/2.8/manifest.json @@ -0,0 +1,6 @@ +{ + "bundles": { + "Symfony\\UX\\StimulusBundle\\StimulusBundle": ["all"] + }, + "aliases": ["stimulus", "stimulus-bundle"] +} From 11c156d2b48d41bb780b0354b5b972902ca7ed08 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Sun, 28 May 2023 20:34:39 -0400 Subject: [PATCH 2/2] Adding missing requires for asset-mapper only feature --- symfony/stimulus-bundle/2.9/manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/symfony/stimulus-bundle/2.9/manifest.json b/symfony/stimulus-bundle/2.9/manifest.json index f9f14452..60e0ddbe 100644 --- a/symfony/stimulus-bundle/2.9/manifest.json +++ b/symfony/stimulus-bundle/2.9/manifest.json @@ -40,7 +40,8 @@ "content": " {{ ux_controller_link_tags() }}", "position": "after_target", "target": "{% block stylesheets %}", - "warn_if_missing": true + "warn_if_missing": true, + "requires": "symfony/asset-mapper" } ] }