forked from karo-io/messenger-monitor-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.35 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "karo-io/messenger-monitor-bundle",
"description": "Symfony bundle for information about your Messenger queues and transports",
"type": "symfony-bundle",
"require": {
"php": "^7.1.3",
"symfony/config": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/event-dispatcher": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/http-foundation": "^4.4|^5.0",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/messenger": "^4.4|^5.0",
"symfony/routing": "^4.4|^5.0",
"symfony/polyfill-uuid": "^1.13",
"symfony/twig-bundle": "^4.4|^5.0"
},
"require-dev": {
"ext-json": "*",
"doctrine/dbal": "^2.10",
"doctrine/doctrine-bundle": "^2.0",
"symfony/phpunit-bridge": "^5.0"
},
"conflict": {
"doctrine/doctrine-bundle": "<2.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"KaroIO\\MessengerMonitorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KaroIO\\MessengerMonitorBundle\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"authors": [
{
"name": "Peter Dietrich",
"email": "[email protected]"
}
]
}