forked from paysera/lib-logging-extra-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·46 lines (46 loc) · 1.28 KB
/
composer.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.28 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
{
"name": "paysera/lib-logging-extra-bundle",
"description": "Symfony bundle for further Monolog, Sentry and Graylog integration",
"keywords": ["logging", "monolog", "sentry", "graylog", "log"],
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Paysera\\LoggingExtraBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Paysera\\LoggingExtraBundle\\Tests\\": "tests"
}
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"graylog2/gelf-php": "^2.0",
"monolog/monolog": "^3.3",
"sentry/sdk": "^3.3",
"sentry/sentry": "^3.17",
"sentry/sentry-symfony": "^4.7",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/framework-bundle": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/monolog-bundle": "^3.4"
},
"require-dev": {
"doctrine/annotations": "^2.0",
"doctrine/doctrine-bundle": "^2.9",
"doctrine/orm": "^2.14",
"phpunit/phpunit": "^10.0",
"symfony/yaml": "^5.0"
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"scripts": {
"phpunit": "phpunit",
"test": ["@phpunit"]
}
}