alpari / messenger-bundle
Integrates symfony/messenger component into symfony 2.7+
Installs: 591
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: ~7.1
- psr/container: ^1.0
- symfony/config: ~2.7 || ~3.0 || ~4.0.0
- symfony/console: ~2.7 || ~3.0 || ~4.0.0
- symfony/dependency-injection: ~2.7 || ~3.0 || ~4.0.0
- symfony/http-kernel: ~2.7 || ~3.0 || ~4.0.0
- symfony/messenger: ^4.1.1
Requires (Dev)
- doctrine/orm: ~2.4
- phpunit/phpunit: ~7
- symfony/framework-bundle: ~2.7 || ~3.0 || ~4.0
- symfony/serializer: ~2.7 || ~3.0 || ~4.0
- symfony/validator: ~2.7 || ~3.0 || ~4.0
- symfony/yaml: ~2.7 || ~3.0 || ~4.0
Conflicts
- symfony/framework-bundle: >=4.1
This package is auto-updated.
Last update: 2024-11-14 03:56:09 UTC
README
Bundle for Messenger component backported for Symfony 2.7+ and <4.1 from Symfony 4.1's FrameworkBundle.
The main difference with original bundle is that
configuration must be set under messenger
section instead of framework
section in Symfony 4.1+.
This version of the Bundle uses 4.1+ version of the symfony/messenger component.
Usage
Install the bundle using composer:
composer require alpari/messenger-bundle
Register the bundle in your AppKernel class:
public function registerBundles() { $bundles = array( // ... new \Symfony\Bundle\MessengerBundle\MessengerBundle(), ); }
Original bundle features are well-described in symfony documentation.