-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
45 lines (45 loc) · 1.08 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
45
{
"name": "saasscaleup/laravel-log-alarm",
"description": "Laravel log Alarm help you to set up alarm when errors occur in your system and send you a notification via Slack and email",
"license": "MIT",
"homepage": "https://github.com/saasscaleup/laravel-log-alarm",
"keywords": [
"laravel",
"log",
"alarm",
"error",
"notification",
"slack",
"email",
"logging",
"monitoring",
"alert",
"laravel-log",
"laravel-error",
"laravel-notification",
"laravel-slack",
"laravel-email",
"laravel-monitoring",
"laravel-alert",
"laravel alarm"
],
"autoload": {
"psr-4": {
"Saasscaleup\\LogAlarm\\": "src/"
}
},
"extra": {
"laravel":{
"providers":[
"Saasscaleup\\LogAlarm\\LogAlarmServiceProvider"
]
}
},
"authors": [
{
"name": "Scale-Up SaaS",
"email": "[email protected]"
}
],
"require": {}
}