-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
executable file
·47 lines (47 loc) · 1.45 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
{
"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": "^7.2 || ^8.0",
"ext-json": "*",
"graylog2/gelf-php": "^1.4.2",
"monolog/monolog": "^1.24 || ^2.0",
"sentry/sdk": "^3.1",
"sentry/sentry": "^3.1",
"sentry/sentry-symfony": "^4.0",
"symfony/config": "^3.4|^4.0|^5.0|^6.0",
"symfony/dependency-injection": "^3.4|^4.0|^5.0|^6.0",
"symfony/expression-language": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"symfony/framework-bundle": "^3.4.26|^4.2.7|^5.0|^6.0",
"symfony/http-kernel": "^3.4|^4.0|^5.0|^6.0",
"symfony/monolog-bundle": "^3.4|^5.0"
},
"require-dev": {
"doctrine/annotations": "^1.14",
"doctrine/doctrine-bundle": "~2.6.0",
"doctrine/orm": "^2.10",
"phpunit/phpunit": "^8.5",
"symfony/yaml": "^4.3|^5.0|^6.0"
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"scripts": {
"phpunit": "phpunit",
"test": ["@phpunit"]
}
}