Merge pull request #1124

This commit is contained in:
symfony-flex-server[bot]
2021-05-06 07:54:13 +00:00
committed by GitHub
4 changed files with 43 additions and 0 deletions
@@ -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
@@ -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": ""
}
}
@@ -0,0 +1,7 @@
imports:
- { resource: "@SuluSyliusProducerPlugin/Resources/config/app/config.yaml" }
framework:
messenger:
transports:
sulu_sylius_transport: '%env(SULU_SYLIUS_MESSENGER_TRANSPORT_DSN)%'
@@ -0,0 +1,11 @@
{
"bundles": {
"Sulu\\Bundle\\SyliusProducerPlugin\\SuluSyliusProducerPlugin": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"env": {
"SULU_SYLIUS_MESSENGER_TRANSPORT_DSN": ""
}
}