-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 901 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": "dev-techguy/note",
"description": "This is a custom system notification channel.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vincent Ososi",
"email": "vincent@shiftech.co.ke"
}
],
"keywords": [
"laravel",
"notification-channels",
"notification"
],
"minimum-stability": "stable",
"require": {
"illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0|^10",
"webpatser/laravel-uuid": "^3.0|^4.0",
"dev-techguy/laravel-multiple-guards": "^1.0"
},
"autoload": {
"psr-4": {
"Note\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Note\\NoteServiceProvider"
],
"aliases": {
"Note": "Note\\NoteFacade"
}
}
}
}