-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
59 lines (59 loc) · 2.07 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "zenstruck/messenger-monitor-bundle",
"description": "Batteries included UI to monitor your Messenger workers, transports, schedules, and messages.",
"homepage": "https://github.com/zenstruck/messenger-monitor-bundle",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [],
"authors": [
{
"name": "Kevin Bond",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^6.4.1|^7.0",
"symfony/messenger": "^6.4|^7.0",
"zenstruck/bytes": "^1.0",
"zenstruck/collection": "^0.5"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.10",
"doctrine/orm": "^2.15|^3.1",
"knplabs/knp-time-bundle": "^1.20|^2.0",
"lorisleiva/cron-translator": "^0.4.3",
"matthiasnoback/symfony-dependency-injection-test": "^4.3|^5.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.6.0",
"symfony/config": "^6.4|^7.0",
"symfony/console": "^6.4|^7.0",
"symfony/http-client-contracts": "^3.3",
"symfony/mailer": "^6.4|^7.0",
"symfony/phpunit-bridge": "^6.1|^7.0",
"symfony/process": "^6.4|^7.0",
"symfony/scheduler": "^6.4|^7.0",
"symfony/security-bundle": "^6.4|^7.0",
"symfony/serializer": "^6.4|^7.0",
"symfony/var-dumper": "^6.4|^7.0",
"zenstruck/console-test": "^1.5",
"zenstruck/foundry": "^2.2",
"zenstruck/messenger-test": "^1.11"
},
"suggest": {
"knplabs/knp-time-bundle": "For human readable timestamps and durations on your dashboard.",
"lorisleiva/cron-translator": "For human readable cron expressions on your dashboard."
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Zenstruck\\Messenger\\Monitor\\": ["src/"] }
},
"autoload-dev": {
"psr-4": { "Zenstruck\\Messenger\\Monitor\\Tests\\": ["tests/"] }
},
"minimum-stability": "dev",
"prefer-stable": true
}