-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.5 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
{
"name": "zfegg/stratigility-logging-error",
"description": "Logging for errors in Mezzio",
"license": "MIT",
"keywords": [
"log",
"error",
"mezzio",
"laminas",
"expressive",
"zend"
],
"require": {
"php": ">=7.4",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"psr/http-message": "^1.0 || ^2.0",
"laminas/laminas-stratigility": "^2.1 || ^3.0.0 || ^4"
},
"require-dev": {
"monolog/monolog": "^1.23",
"laminas/laminas-diactoros": "^2.0 | ^3",
"slevomat/coding-standard": "^7.0.12",
"phpunit/phpunit": "^9.0"
},
"authors": [
{
"name": "Moln",
"email": "moln.xie@gmail.com"
}
],
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"extra": {
"laminas": {
"config-provider": "Zfegg\\Stratigility\\LoggingError\\ConfigProvider"
}
},
"autoload": {
"psr-4": {
"Zfegg\\Stratigility\\LoggingError\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZfeggTest\\Stratigility\\LoggingError\\": "test/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}