-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
58 lines (58 loc) · 1.76 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
{
"name": "brainbits/monolog-sentry",
"type": "library",
"description": "brainbits sentry",
"license": "proprietary",
"require": {
"php": "^8.2",
"ext-iconv": "*",
"bgalati/monolog-sentry-handler": "^2.1",
"jean85/pretty-package-versions": "^2.0",
"monolog/monolog": "^3.0",
"nyholm/psr7": "^1.2.1",
"psr/log": "^1.1|^2.0|^3.0",
"sentry/sentry": "^4.6.1",
"symfony/config": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/http-client": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0"
},
"require-dev": {
"brainbits/phpcs-standard": "^7.0.1",
"ergebnis/phpstan-rules": "^2.2",
"nyholm/nsa": "^1.3",
"phpstan/phpstan": "^1.10.59",
"phpstan/phpstan-phpunit": "^1.3.16",
"phpunit/phpunit": "^11.0.4",
"symfony/console": "^6.4|^7.0.4",
"symfony/messenger": "^6.4|^7.0.4",
"symfony/security-bundle": "^6.4|^7.0.4",
"thecodingmachine/phpstan-strict-rules": "^1.0"
},
"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/"
}
}
}