-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 727 Bytes
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 727 Bytes
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
{
"name": "matviib/telegram-logger",
"description": "Put log messages from your Laravel app to your Telegram bot",
"keywords": [
"laravel",
"laravel-5-package",
"logging",
"logger",
"logs",
"telegram",
"telegram-bot",
"telegram-logger",
"telegram-loging"
],
"type": "library",
"version": "v1.0.1",
"license": "MIT",
"authors": [
{
"name": "Matvii Bondar",
"email": "matvii.bondar@gmail.com"
}
],
"autoload": {
"psr-4": {
"MatviiB\\": "src/"
}
},
"extra": {
"laravel": {
"aliases": {
"Log": "MatviiB\\TelegramLog"
}
}
},
"minimum-stability": "dev",
"require": {
"laravel/framework": "^5.0"
}
}