-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.47 KB
/
composer.json
File metadata and controls
88 lines (88 loc) · 2.47 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "knotlog/knotlog",
"description": "Wide logging implementation for PHP - one comprehensive, context-rich event per request",
"license": "MIT",
"type": "library",
"keywords": [
"logging",
"logger",
"logs",
"knot",
"psr-3",
"psr-7",
"psr-15",
"contextual",
"structured",
"wide"
],
"authors": [
{
"name": "Woody Gilk",
"email": "woody.gilk@gmail.com"
}
],
"require": {
"php": "^8.4",
"symfony/filesystem": "^8.0"
},
"require-dev": {
"captainhook/captainhook": "^5.27",
"captainhook/hook-installer": "^1.0",
"carthage-software/mago": "^1.7.0",
"ergebnis/composer-normalize": "^2.48",
"nyholm/psr7": "^1.1",
"phpunit/phpunit": "^12.5.8",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^3.0",
"rregeer/phpunit-coverage-check": "^0.3.1",
"symfony/console": "^8.0.4",
"symfony/event-dispatcher-contracts": "^3.6"
},
"suggest": {
"psr/http-factory": "For HTTP error response generation",
"psr/http-message": "For HTTP context logging support",
"psr/http-server-middleware": "For HTTP middleware logging support",
"psr/log": "For common log output support",
"symfony/console": "For console context logging support"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Knotlog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Knotlog\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"captainhook/hook-installer": true,
"carthage-software/mago": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"analyze": "vendor/bin/mago analyze",
"cover": "coverage-check build/phpunit/clover.xml 100",
"fix": [
"vendor/bin/mago lint --fix",
"vendor/bin/mago format"
],
"lint": "vendor/bin/mago lint",
"test": "vendor/bin/phpunit",
"check": [
"@lint",
"@analyze",
"@test",
"@cover"
]
}
}