-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "vstelmakh/psr-test-logger",
"description": "Easy to use PSR-3 compliant test-logger",
"keywords": ["log", "logger", "psr-3", "logging", "test"],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/vstelmakh/psr-test-logger",
"authors": [
{
"name": "Volodymyr Stelmakh",
"homepage": "https://github.com/vstelmakh"
}
],
"provide": {
"psr/log-implementation": "^2 || ^3"
},
"require": {
"php": "^8.1",
"psr/log": "^2 || ^3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.69",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.5.45"
},
"autoload": {
"psr-4": {
"VStelmakh\\PsrTestLogger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"VStelmakh\\PsrTestLogger\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}