This repository was archived by the owner on Dec 26, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.5 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "simple-bus/bernard-bundle-bridge",
"type": "symfony-bundle",
"description": "Use BernardBundle with SimpleBus/AsynchronousBundle.",
"keywords": [ "bernard", "messages", "message bus", "event bus", "command bus" ],
"homepage": "https://github.com/SimpleBus/SimpleBusBernardBundleBridge",
"license": "MIT",
"authors": [
{
"name": "Dmitri Lakachauskis",
"email": "dmitri@devmachine.net"
}
],
"require": {
"php": "^5.6 || ^7.0",
"simple-bus/message-bus": "~3.0",
"simple-bus/asynchronous-bundle": "~3.0",
"simple-bus/asynchronous": "~3.0",
"bernard/bernard-bundle": "2.0.*@dev",
"bernard/bernard": "1.0.*@dev"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"matthiasnoback/symfony-config-test": "~1.0",
"matthiasnoback/symfony-dependency-injection-test": "~0.7",
"matthiasnoback/phpunit-asynchronicity": "~1.0",
"symfony/console": "~2.4",
"symfony/process": "~2.4",
"symfony/finder": "~2.4",
"doctrine/dbal": "~2.4"
},
"suggest": {
"ext-mcrypt": "Allows encryption of messages.",
"simple-bus/jms-serializer-bundle-bridge": "Serialization of messages with JMS serializer."
},
"autoload": {
"psr-4": {
"SimpleBus\\BernardBundleBridge\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimpleBus\\BernardBundleBridge\\Tests\\": "tests"
}
}
}