-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcomposer.json
executable file
·58 lines (58 loc) · 1.54 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
{
"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": "[email protected]"
}
],
"autoload":{
"psr-4":{
"Tylercd100\\LERN\\":"src/"
}
},
"autoload-dev": {
"psr-4": {
"Tylercd100\\LERN\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0",
"monolog/monolog": "^2.0",
"tylercd100/laravel-notify": "^4.0"
},
"require-dev": {
"mockery/mockery": "~1.3.3|^1.4.2",
"orchestra/testbench": "^4.0|^5.0|^6.0",
"phpunit/phpunit": "^8.4|^9.3.3",
"doctrine/dbal": "^2.6|^3.0"
},
"suggest": {
},
"extra": {
"laravel": {
"providers": [
"Tylercd100\\LERN\\LERNServiceProvider"
],
"aliases": {
"LERN": "Tylercd100\\LERN\\Facades\\LERN"
}
}
}
}