forked from gitoido/QueryBusBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.22 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.22 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
{
"name": "warezgibzzz/query-bus-bundle",
"description": "Bridge for using query bus extension of simple-bus in symfony",
"type": "library",
"license": "MIT",
"keywords": ["Symfony", "query bus", "command bus"],
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Pavel Poronko",
"email": "me@gibzzz.tk"
}
],
"require": {
"php": ">=5.4",
"ajgl/simple-bus-query-bus": "^0.1.0",
"simple-bus/message-bus": "~2.0|~3.0",
"symfony/http-kernel": "~2.3|~3.0|~4.0",
"symfony/dependency-injection": "~2.3|~3.0|~4.0",
"symfony/yaml": "~2.3|~3.0|~4.0",
"symfony/config": "~2.3|~3.0|~4.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"symfony/monolog-bridge": "~2.3|~3.0",
"symfony/monolog-bundle": "~2.3|~3.0",
"satooshi/php-coveralls": "~0.6"
},
"suggest": {
"symfony/monolog-bundle": "For logging messages"
},
"autoload": {
"psr-4": {
"Warezgibzzz\\QueryBusBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Warezgibzzz\\QueryBusBundle\\Tests\\": "tests"
}
}
}