forked from tylercd100/lern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·59 lines (58 loc) · 1.47 KB
/
composer.json
File metadata and controls
executable file
·59 lines (58 loc) · 1.47 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
59
{
"name": "tylercd100/lern",
"description": "LERN (Laravel Exception Recorder and Notifier) is a Laravel 5 package that will record exceptions into a database and will notify you via Email, Pushover or Slack.",
"keywords": [
"laravel",
"exceptions",
"monolog",
"pushover",
"slack",
"LERN",
"tylercd100"
],
"type": "laravel-package",
"homepage": "https://github.com/tylercd100/lern",
"license": "MIT",
"authors": [
{
"name": "Tyler Arbon",
"email": "tylercd100@gmail.com"
}
],
"autoload":{
"psr-4":{
"Tylercd100\\LERN\\":"src/"
}
},
"autoload-dev": {
"psr-4": {
"Tylercd100\\LERN\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": "^7.2",
"illuminate/support": "^6.0",
"monolog/monolog": "^2.0",
"tylercd100/laravel-notify": "^3.0"
},
"require-dev": {
"orchestra/testbench": "^4.0",
"phpunit/phpunit": "^8.0",
"doctrine/dbal": "~2.3"
},
"suggest": {
},
"extra": {
"laravel": {
"providers": [
"Tylercd100\\LERN\\LERNServiceProvider"
],
"aliases": {
"LERN": "Tylercd100\\LERN\\Facades\\LERN"
}
}
},
"repositories": [
]
}