-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.21 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.21 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
{
"name": "ckrack/messenger-logging-bundle",
"description": "Symfony bundle for Messenger-related logging suitable for monitoring",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony",
"bundle",
"messenger",
"logging",
"logger"
],
"require": {
"php": "^8.2",
"psr/log": "^3.0",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/event-dispatcher": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0",
"symfony/messenger": "^6.4 || ^7.4 || ^8.0",
"symfony/uid": "^6.4 || ^7.4 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"monolog/monolog": "^3.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"C10k\\MessengerLoggingBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"C10k\\MessengerLoggingBundle\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}