-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.3 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "bitexpert/slf4psrlog",
"description": "Simple Logging Facade for Loggers implementing PSR-3 logging interface.",
"minimum-stability": "stable",
"license": "Apache-2.0",
"type": "library",
"authors": [
{
"name": "Stephan Hochdörfer",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4.0|^8.0.0",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.2",
"squizlabs/php_codesniffer": "^3.5.8",
"phpstan/phpstan": "^0.12.71",
"phpstan/extension-installer": "^1.1",
"infection/infection": "^0.21.0",
"roave/security-advisories": "dev-latest"
},
"provide": {
"psr/log-implementation": "1.0.0"
},
"autoload": {
"psr-4": {
"bitExpert\\Slf4PsrLog\\": "src/bitExpert/Slf4PsrLog"
}
},
"autoload-dev": {
"psr-4": {
"bitExpert\\Slf4PsrLog\\": "tests/bitExpert/Slf4PsrLog"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "vendor/bin/phpcs --standard=PSR2 ./src ./tests",
"cs-fix": "vendor/bin/phpcbf",
"analyze": "vendor/bin/phpstan analyze",
"test": "vendor/bin/phpunit",
"infection": "vendor/bin/infection -j4 --ignore-msi-with-no-mutations --only-covered",
"coverage": "vendor/bin/phpunit --coverage-clover clover.xml"
}
}