-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 1.61 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "antidot-fw/logger",
"description": "Anti.Framework logger adapter library",
"keywords": [
"psr-3",
"psr-15"
],
"type": "library",
"license": "BSD-2-Clause",
"authors": [
{
"name": "kpicaza"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^3.0"
},
"require-dev": {
"icanhazstring/composer-unused": "^0.8.9",
"infection/infection": "^0.27",
"phpro/grumphp": "~0.17 || ~1.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^8.0 || ^9.0",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"Antidot\\Logger\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AntidotTest\\Logger\\": "test"
}
},
"scripts": {
"check-all": [
"@test",
"@unused",
"@cs-check",
"@inspect",
"@infection"
],
"cs-check": "phpcs src --colors",
"cs-fix": "phpcbf src --colors",
"inspect": "phpstan analyse src -l7 --ansi",
"test": "phpunit --colors=always",
"infection": "XDEBUG_MODE=coverage infection",
"unused": "composer-unused"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"phpro/grumphp": true
}
},
"extra": {
"zf": {
"config-provider": "Antidot\\Logger\\Container\\Config\\ConfigProvider"
}
}
}