composer.json
1.92 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "colinodell/psr-testlogger",
"type": "library",
"description": "PSR-3 compliant test logger based on psr/log v1's, but compatible with v2 and v3 too!",
"keywords": ["psr","log","logger","logging","test","mock","unit","phpunit"],
"homepage": "https://github.com/colinodell/psr-testlogger",
"license": "MIT",
"authors": [
{
"name": "Colin O'Dell",
"email": "colinodell@gmail.com",
"homepage": "https://www.colinodell.com",
"role": "Lead Developer"
}
],
"support": {
"issues": "https://github.com/colinodell/psr-testlogger/issues",
"rss": "https://github.com/colinodell/psr-testlogger/releases.atom",
"source": "https://github.com/colinodell/psr-testlogger"
},
"require": {
"php": "^8.0",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"provide": {
"psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
},
"require-dev": {
"phpstan/phpstan": "^1.9.2",
"phpunit/phpunit": "^9.5.5",
"scrutinizer/ocular": "^1.8.1",
"unleashedtech/php-coding-standard": "^3.1",
"vimeo/psalm": "^4.30.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"ColinODell\\PsrTestLogger\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ColinODell\\PsrTestLogger\\Tests\\Unit\\": "tests/unit"
}
},
"scripts": {
"phpcs": "phpcs",
"phpstan": "phpstan analyse",
"phpunit": "phpunit --no-coverage",
"psalm": "psalm --stats",
"test": [
"@phpcs",
"@phpstan",
"@psalm",
"@phpunit"
]
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}