-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 930 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "wmde/psr-log-test-doubles",
"description": "Test Doubles for the PSR-3 Logger Interface",
"homepage": "https://github.com/wmde/PsrLogTestDoubles",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Wikimedia Deutschland FUN Team",
"email": "[email protected]"
},
{
"name": "Jeroen De Dauw",
"email": "[email protected]",
"homepage": "https://www.EntropyWins.wtf"
}
],
"keywords": [
"log",
"psr",
"psr-3",
"test doubles",
"test double",
"spies",
"spy",
"logger spy",
"LoggerSpy",
"fixtures",
"fixture",
"mocks",
"mock",
"test"
],
"require": {
"php": ">=8.2",
"psr/log": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~9.5",
"phpstan/phpstan": "^2.0.2"
},
"autoload": {
"psr-4": {
"WMDE\\PsrLogTestDoubles\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WMDE\\PsrLogTestDoubles\\Tests\\": "tests/"
}
}
}