-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (36 loc) · 1.1 KB
/
composer.json
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
{
"name": "happyr/simplebus-bundle",
"type": "symfony-bundle",
"description": "How Happyr use SimpleBus",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"psr/log": "~1.0",
"happyr/mq2php-bundle": "^0.2.4",
"simple-bus/symfony-bridge": "^4.1.5",
"simple-bus/doctrine-orm-bridge": "^4.0",
"simple-bus/jms-serializer-bundle-bridge": "^2.0.2",
"simple-bus/rabbitmq-bundle-bridge": "^3.1",
"simple-bus/asynchronous-bundle": "^2.3",
"simple-bus/asynchronous": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"symfony/symfony": "^3.0",
"simple-bus/jms-serializer-bundle-bridge": "^2.0",
"nyholm/symfony-bundle-test": "^1.0.2"
},
"autoload": {
"psr-4": { "Happyr\\SimpleBusBundle\\": "" }
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}