sylake / sylius-consumer-plugin
Integrates Sylius with message processing for sylake/akeneo-producer-bundle.
Installs: 1 362
Dependents: 0
Suggesters: 0
Security: 0
Stars: 15
Watchers: 11
Forks: 5
Open Issues: 2
Type:sylius-plugin
Requires
- php: ^7.1
- php-amqplib/rabbitmq-bundle: ^1.12
- sylius-labs/rabbitmq-simplebus-bundle: ^1.0
- sylius/sylius: ^1.0
Requires (Dev)
- dev-master
- v1.0.0-beta.11
- v1.0.0-beta.10
- v1.0.0-beta.9
- v1.0.0-beta.8
- v1.0.0-beta.7
- v1.0.0-beta.6
- v1.0.0-beta.5
- v1.0.0-beta.4
- v1.0.0-beta.3
- v1.0.0-beta.2
- v1.0.0-beta.1
- v1.0.0-beta
- v1.0.0-alpha.9
- v1.0.0-alpha.8
- v1.0.0-alpha.7
- v1.0.0-alpha.6
- v1.0.0-alpha.5
- v1.0.0-alpha.4
- v1.0.0-alpha.3
- v1.0.0-alpha.2
- v1.0.0-alpha.1
- v1.0.0-alpha
- dev-beta.2
This package is auto-updated.
Last update: 2022-02-01 13:07:17 UTC
README
SyliusConsumerPlugin
Installation
- Require this package:
$ composer require sylake/sylius-consumer-plugin
- Add bundles to
AppKernel.php
of existing Sylius application:
public function registerBundles() { $bundles = [ new \SimpleBus\SymfonyBridge\SimpleBusCommandBusBundle(), new \SimpleBus\SymfonyBridge\SimpleBusEventBusBundle(), new \OldSound\RabbitMqBundle\OldSoundRabbitMqBundle(), new \SyliusLabs\RabbitMqSimpleBusBundle\RabbitMqSimpleBusBundle(), new \Sylake\SyliusConsumerPlugin\SylakeSyliusConsumerPlugin(), ]; return array_merge(parent::registerBundles(), $bundles); }
- Configure RabbitMQ default connection:
# app/config/config.yml old_sound_rabbit_mq: connections: default: host: 'localhost' port: 5672 user: 'guest' password: 'guest'
Usage
- Run the following command to listen for messages and consume them:
$ bin/console rabbitmq:consumer sylake
Extending product projector
Adding a product postprocessor allows to change product before saving it.
-
Create a class which implements
Sylake\SyliusConsumerPlugin\Projector\Product\ProductPostprocessorInterface
. -
Define it as a service with tag
sylake_sylius_consumer.projector.product.postprocessor
. -
🎉