-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.05 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
{
"name": "aqhmal/laravel-telegram-log",
"description": "A package to send Laravel/Lumen logs to Telegram via Telegram Bot.",
"keywords": ["laravel", "lumen", "telegram", "telegram-bot", "log", "monolog"],
"license": "MIT",
"homepage": "https://github.com/aqhmal/laravel-telegram-log",
"support": {
"issues": "https://github.com/aqhmal/laravel-telegram-log/issues",
"source": "https://github.com/aqhmal/laravel-telegram-log"
},
"authors": [
{
"name": "Aqhmal",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1|^7.2|^7.3|^7.4|^8.0",
"monolog/monolog": "^1.26|^2.3"
},
"autoload": {
"files": [
"src/Helpers/Helper.php"
],
"psr-4": {
"Aqhmal\\TelegramLog\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Aqhmal\\TelegramLog\\TelegramLogServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}