-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.64 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.64 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "brainbits/monolog-sentry",
"type": "library",
"description": "brainbits sentry",
"license": "proprietary",
"require": {
"php": "^8.3",
"ext-iconv": "*",
"bgalati/monolog-sentry-handler": "^2.1",
"monolog/monolog": "^3.0",
"nyholm/psr7": "^1.2.1",
"psr/log": "^3.0",
"sentry/sentry": "^4.6.1",
"symfony/config": "^7.2",
"symfony/dependency-injection": "^7.2",
"symfony/http-client": "^7.2",
"symfony/http-kernel": "^7.2",
"symfony/yaml": "^7.2"
},
"require-dev": {
"brainbits/phpcs-standard": "^8.0",
"ergebnis/phpstan-rules": "^2.10.5",
"nyholm/nsa": "^1.3",
"phpstan/phpstan": "^2.1.21",
"phpstan/phpstan-phpunit": "^2.0.7",
"phpunit/phpunit": "^12.2.9",
"symfony/console": "^7.2",
"symfony/http-foundation": "^7.2",
"symfony/messenger": "^7.2",
"symfony/security-bundle": "^7.2"
},
"suggest": {
"symfony/console": "For the console listener",
"symfony/messenger": "For the messenger resetter",
"symfony/security-bundle": "For the user listener"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"Brainbits\\MonologSentry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brainbits\\MonologSentryTests\\": "tests/"
}
}
}