-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
52 lines (52 loc) · 1.31 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
{
"name": "bgalati/monolog-sentry-handler",
"description": "Sentry handler for PHP SDK v2/v3",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Benoit Galati",
"email": "[email protected]"
},
{
"name": "Grzegorz Korba",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BGalati\\MonologSentryHandler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BGalati\\MonologSentryHandler\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
}
},
"require": {
"php": "^7.4 || ^8.0",
"monolog/monolog": "^1.6 || ^2.0 || ^3.0",
"sentry/sentry": "^3.1 || ^4.0"
},
"require-dev": {
"coduo/php-matcher": "^6.0.8",
"friendsofphp/php-cs-fixer": "3.51.0",
"jangregor/phpstan-prophecy": "1.0.0",
"phpstan/phpstan": "1.10.59",
"phpstan/phpstan-phpunit": "1.3.16",
"phpunit/phpunit": "^9.6.7",
"symfony/phpunit-bridge": "^6.2.10",
"symfony/var-dumper": ">4.3"
}
}