-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
34 lines (34 loc) · 1.01 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
{
"name": "bartlett/phpunit-loggertestlistener",
"description": "PHPUnit Test Suite listener for compatible PSR-3 logger",
"type": "library",
"license": "BSD-3-Clause",
"homepage": "https://github.com/llaville/phpunit-LoggerTestListener",
"support": {
"source": "https://github.com/llaville/phpunit-LoggerTestListener",
"issues": "https://github.com/llaville/phpunit-LoggerTestListener/issues"
},
"require": {
"php": "^7.2|^8.0",
"psr/log": "^1.0|^2.0|^3.0",
"phpunit/phpunit": "^7.5|^8.0"
},
"require-dev": {
"monolog/monolog": "^2.0",
"bartlett/monolog-callbackfilterhandler": "^2.0"
},
"authors": [
{
"name": "Laurent Laville",
"email": "[email protected]",
"homepage": "https://github.com/llaville",
"role": "Lead"
}
],
"autoload": {
"psr-4": {
"Bartlett\\": "src/",
"Bartlett\\Tests\\": "tests/"
}
}
}