-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.72 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.72 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
{
"name": "kariricode/logging",
"description": "A robust, flexible, and PSR-3 compliant logging component for the KaririCode Framework, providing comprehensive logging capabilities for PHP applications.",
"keywords": [
"Logging",
"PSR-3",
"php",
"KaririCode",
"framework",
"Logger",
"Log Handler",
"Log Formatter",
"Log Processor",
"Log Rotator",
"Asynchronous Logging",
"Context Logging",
"Error Logging",
"Application Logging",
"System Monitoring"
],
"homepage": "https://kariricode.org/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Walmir Silva",
"email": "walmir.silva@kariricode.org"
}
],
"autoload": {
"psr-4": {
"KaririCode\\Logging\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KaririCode\\Logging\\Tests\\": "tests"
}
},
"require": {
"php": "^8.3",
"kariricode/contract": "^2.6",
"composer/composer": "^2.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.58",
"nunomaduro/phpinsights": "^2.11",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.10",
"mockery/mockery": "^1.6",
"enlightn/security-checker": "^2.0"
},
"scripts": {},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
},
"kariricode/logging": {
"default-channel": "stack",
"config-file": "config/logging.php"
}
},
"support": {
"issues": "https://github.com/KaririCode-Framework/kariricode-logging/issues",
"source": "https://github.com/KaririCode-Framework/kariricode-logging"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable"
}