From 777716b47cfc1791b10604a3f95b25009e15be25 Mon Sep 17 00:00:00 2001 From: Johannes Wachter Date: Thu, 22 Apr 2021 08:39:58 +0200 Subject: [PATCH 1/3] add sulu/sylius-consumer-bundle recipe --- .../0.4/config/packages/sulu_sylius_consumer.yaml | 13 +++++++++++++ sulu/sylius-consumer-bundle/0.4/manifest.json | 12 ++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 sulu/sylius-consumer-bundle/0.4/config/packages/sulu_sylius_consumer.yaml create mode 100644 sulu/sylius-consumer-bundle/0.4/manifest.json diff --git a/sulu/sylius-consumer-bundle/0.4/config/packages/sulu_sylius_consumer.yaml b/sulu/sylius-consumer-bundle/0.4/config/packages/sulu_sylius_consumer.yaml new file mode 100644 index 00000000..21b1fc33 --- /dev/null +++ b/sulu/sylius-consumer-bundle/0.4/config/packages/sulu_sylius_consumer.yaml @@ -0,0 +1,13 @@ +sulu_sylius_consumer: + sylius_base_url: '%env(SYLIUS_BASE_URL)%' + taxon_category_adapter: + enabled: true + +framework: + messenger: + transports: + sulu_sylius_transport: '%env(SULU_SYLIUS_MESSENGER_TRANSPORT_DSN)%' + buses: + sulu_sylius_producer.messenger_bus: + middleware: + - doctrine_transaction diff --git a/sulu/sylius-consumer-bundle/0.4/manifest.json b/sulu/sylius-consumer-bundle/0.4/manifest.json new file mode 100644 index 00000000..458d99f2 --- /dev/null +++ b/sulu/sylius-consumer-bundle/0.4/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Sulu\\Bundle\\SyliusConsumerBundle\\SuluSyliusConsumerBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "SYLIUS_BASE_URL": "", + "SULU_SYLIUS_MESSENGER_TRANSPORT_DSN": "" + } +} From 5dbd571338e1971fbed974fde1663eafc9cc526b Mon Sep 17 00:00:00 2001 From: Johannes Wachter Date: Thu, 22 Apr 2021 08:42:37 +0200 Subject: [PATCH 2/3] add sulu/sylius-producer-plugin recipe --- .../0.2/config/packages/sulu_sylius_producer.yaml | 7 +++++++ sulu/sylius-producer-plugin/0.2/manifest.json | 11 +++++++++++ 2 files changed, 18 insertions(+) create mode 100644 sulu/sylius-producer-plugin/0.2/config/packages/sulu_sylius_producer.yaml create mode 100644 sulu/sylius-producer-plugin/0.2/manifest.json diff --git a/sulu/sylius-producer-plugin/0.2/config/packages/sulu_sylius_producer.yaml b/sulu/sylius-producer-plugin/0.2/config/packages/sulu_sylius_producer.yaml new file mode 100644 index 00000000..c2c1840f --- /dev/null +++ b/sulu/sylius-producer-plugin/0.2/config/packages/sulu_sylius_producer.yaml @@ -0,0 +1,7 @@ +imports: + - { resource: "@SuluSyliusProducerPlugin/Resources/config/app/config.yaml" } + +framework: + messenger: + transports: + sulu_sylius_transport: '%env(SULU_SYLIUS_MESSENGER_TRANSPORT_DSN)%' diff --git a/sulu/sylius-producer-plugin/0.2/manifest.json b/sulu/sylius-producer-plugin/0.2/manifest.json new file mode 100644 index 00000000..88b787fe --- /dev/null +++ b/sulu/sylius-producer-plugin/0.2/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Sulu\\Bundle\\SyliusProducerPlugin\\SuluSyliusProducerPlugin": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "SULU_SYLIUS_MESSENGER_TRANSPORT_DSN": "" + } +} From a280550b90fcc4f984c46f5579ce3ad9bc835a05 Mon Sep 17 00:00:00 2001 From: Johannes Wachter Date: Thu, 22 Apr 2021 10:20:44 +0200 Subject: [PATCH 3/3] comment out the taxon adapter --- .../0.4/config/packages/sulu_sylius_consumer.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sulu/sylius-consumer-bundle/0.4/config/packages/sulu_sylius_consumer.yaml b/sulu/sylius-consumer-bundle/0.4/config/packages/sulu_sylius_consumer.yaml index 21b1fc33..7b67cb2a 100644 --- a/sulu/sylius-consumer-bundle/0.4/config/packages/sulu_sylius_consumer.yaml +++ b/sulu/sylius-consumer-bundle/0.4/config/packages/sulu_sylius_consumer.yaml @@ -1,7 +1,7 @@ sulu_sylius_consumer: sylius_base_url: '%env(SYLIUS_BASE_URL)%' - taxon_category_adapter: - enabled: true + # taxon_category_adapter: + # enabled: true framework: messenger: