-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.08 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"name": "dayspring-tech/logging-bundle",
"description": "Adds additional context data to log messages",
"keywords": [
"logging",
"session",
"request"
],
"type": "symfony-bundle",
"license": "MIT",
"require": {
"symfony/framework-bundle": "^4.4|^5.0|^6.0",
"monolog/monolog": "^1.22 || ^2.0"
},
"require-dev": {
"php": ">=7.4",
"phpunit/phpunit": "~8.5.33|^9.0",
"rector/rector": "^2.0",
"symfony/yaml": "^4.4|^5.0|^6.0",
"symfony/monolog-bridge": "^4.4|^5.0|^6.0",
"symfony/monolog-bundle": "^3.0"
},
"authors": [
{
"name": "Jeffrey Wong",
"email": "jwong@dayspringpartners.com"
}
],
"autoload": {
"psr-4": {
"Dayspring\\LoggingBundle\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"scripts": {
"ci-test": [
"Composer\\Config::disableProcessTimeout",
"vendor/phpunit/phpunit/phpunit -c ./phpunit.xml.dist"
]
}
}