arodygin / simplebus-bundle
SimpleBus Symfony bundle
Installs: 259
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/arodygin/simplebus-bundle
Requires
- php: >=5.5
- simple-bus/symfony-bridge: ^4.1
- symfony/config: ^2.8|^3.0
- symfony/dependency-injection: ^2.8|^3.0
- symfony/http-kernel: ^2.8|^3.0
- symfony/validator: ^2.8|^3.0
Requires (Dev)
- doctrine/annotations: ^1.2
- friendsofphp/php-cs-fixer: ^1.11
- symfony/browser-kit: ^2.8|^3.0
- symfony/framework-bundle: ^2.8|^3.0
This package is not auto-updated.
Last update: 2016-07-18 11:53:59 UTC
README
This bundle installs Symfony bridge for SimpleBus and appends it with a few helpers.
Requirements
PHP needs to be a minimum version of PHP 5.5.
Symfony must be of 2.8 or above.
Installation
The recommended way to install is via Composer:
composer require "arodygin/simplebus-bundle"
Then, add the following line in the app/AppKernel.php
file to enable this bundle:
public function registerBundles() { $bundles = [ // ... new SimpleBus\SimpleBusExtraBundle(), ]; }
Development
phpunit --coverage-html=vendor/coverage ./bin/php-cs-fixer fix
Usage
Full documentation for SimpleBus library can be found here.