-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
33 lines (33 loc) · 886 Bytes
/
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
{
"name": "7lab/7lab-logging",
"type": "library",
"description": "Laravel integration for 7Lab-logging (https://7lab.nl)",
"homepage": "https://7lab.nl",
"authors": [
{
"name": "Niels Kramer",
"email": "[email protected]"
}
],
"require": {
"php": "^5.4||^7.0",
"illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*",
"spatie/laravel-failed-job-monitor": "^3.0"
},
"require-dev": {
"laravel/framework": "5.6.*"
},
"autoload": {
"psr-4": {
"SevenLabLogging\\": "src/"
}
},
"extra": {
"laravel": {
"providers": ["SevenLabLogging\\SevenLabLoggingLaravelServiceProvider"],
"aliases": {
"SevenLabLogging": "SevenLabLogging\\SevenLabLoggingFacade"
}
}
}
}