-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.3 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.3 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
{
"name": "jacklul/monolog-telegram",
"type": "library",
"description": "Monolog handler that sends logs through Telegram bot to any chat in HTML format",
"keywords": [
"monolog",
"telegram",
"log",
"logging",
"bot"
],
"license": "MIT",
"support": {
"issues": "https://github.com/jacklul/monolog-telegram/issues",
"source": "https://github.com/jacklul/monolog-telegram"
},
"authors": [
{
"name": "Jack'lul",
"email": "jacklulcat@gmail.com",
"homepage": "https://jacklul.github.io",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-mbstring": "*",
"monolog/monolog": "^3.0"
},
"require-dev": {
"ext-curl": "*",
"squizlabs/php_codesniffer": "^3.2",
"phpunit/phpunit": "^9.0",
"vlucas/phpdotenv": "^5.0"
},
"suggest": {
"ext-curl": "cURL generally works better and is recommended"
},
"autoload": {
"psr-4": {
"jacklul\\MonologTelegramHandler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"jacklul\\MonologTelegramHandler\\Tests\\": "tests/"
}
},
"scripts": {
"check-code": [
"\"vendor/bin/phpcs\" -snp --standard=PSR2 --encoding=utf-8 --report-width=150 src/ tests/"
],
"test": [
"\"vendor/bin/phpunit\""
]
}
}