-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
44 lines (44 loc) · 1.2 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
{
"name": "nguyenanhung/my-debug",
"type": "library",
"description": "My Debug, Logger Library",
"keywords": [
"debug",
"logger",
"log"
],
"homepage": "https://github.com/nguyenanhung/my-debug",
"license": "GPL-3.0",
"authors": [
{
"name": "Nguyen An Hung",
"email": "[email protected]",
"homepage": "https://nguyenanhung.com",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-mbstring": "*",
"nguyenanhung/benchmark": "^2.0 || ^1.0",
"nguyenanhung/filesystem-helper": "^2.0 || ^1.0",
"nguyenanhung/slug-helper": "^3.0 || ^2.0 || ^1.0",
"monolog/monolog": "^3.0"
},
"require-dev": {
"kint-php/kint": ">=3.0"
},
"suggest": {
"ext-json": "Needed to support JSON",
"ext-iconv": "Needed to support ICONV",
"ext-mbstring": "Needed to support MbString",
"ext-openssl": "Needed to support OpenSSL",
"sentry/sdk": "Need support for Logging with Sentry"
},
"autoload": {
"psr-4": {
"nguyenanhung\\MyDebug\\": "src/"
}
}
}