-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 953 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
34
35
36
37
38
{
"name": "afsdev/laravel-ray-log-channel",
"description": "Log messages using Spatie Ray",
"homepage": "https://github.com/arne-s/laravel-ray-log-channel",
"license": "MIT",
"keywords": [
"laravel",
"logging",
"spatie",
"ray",
"debug"
],
"require": {
"illuminate/bus": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/log": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^5.6|^6.0|^7.|^8.00|^9.0|^10.0",
"spatie/ray": "^1.3"
},
"autoload": {
"psr-4": {
"AFSDev\\RayLogChannel\\": "src"
}
},
"authors": [
{
"name": "Arne Stulp",
"email": "[email protected]",
"role": "developer"
}
],
"extra": {
"laravel": {
"providers": [
"AFSDev\\RayLogChannel\\RayLogChannelServiceProvider"
]
}
}
}