-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (63 loc) · 1.95 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "adaptit-darshan/exception-notifier",
"description": "An easy-to-use package for sending email notifications with stack traces whenever an exception occurs in your Laravel application.",
"type": "library",
"require": {
"php": ">=7.4 || ^8.0",
"illuminate/support": "8.*|9.*|10.*|11.*",
"illuminate/view": "8.*|9.*|10.*|11.*",
"illuminate/config": "8.*|9.*|10.*|11.*",
"illuminate/mail": "8.*|9.*|10.*|11.*",
"illuminate/log": "8.*|9.*|10.*|11.*",
"illuminate/queue": "8.*|9.*|10.*|11.*",
"illuminate/console": "8.*|9.*|10.*|11.*",
"symfony/error-handler": "~5.1|~6.0|~7.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"AdaptItDarshan\\ExceptionNotifier\\": "src/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"keywords": [
"error-reporting",
"bug-tracking",
"laravel-log-email",
"exception-notifier",
"error-monitoring",
"automatic-error-notification",
"laravel-error-alerts",
"server-error-email",
"exception-logging",
"laravel-exception-monitoring",
"email-alerts",
"real-time-error-notification",
"laravel-exception-handler",
"error-debugging",
"Laravel Error Monitoring",
"Laravel Exception Handler",
"Error Reporting",
"Exception Tracking",
"Server Error Notification",
"Stack Trace Email Alerts",
"Laravel Bug Tracking",
"Real-time Error Alerts",
"Laravel Error Logging",
"Automated Error Notification"
],
"authors": [
{
"name": "Darshan Baraiya",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"AdaptItDarshan\\ExceptionNotifier\\Providers\\ExceptionNotifierServiceProvider"
]
}
}
}