-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (43 loc) · 1.04 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
{
"name" : "technovistalimited/notific",
"description": "Laravel simple, static and minimal notification system",
"keywords" : ["laravel", "notification"],
"license" : "GPL-2.0+",
"version" : "1.0.2",
"authors" : [
{
"name" : "Mayeenul Islam",
"email" : "[email protected]",
"homepage": "https://nanodesignsbd.com",
"role" : "Developer"
},
{
"name" : "Nazmul Hasan",
"email" : "[email protected]",
"homepage": "https://orocoder.com",
"role" : "Developer"
}
],
"support": {
"issues": "https://github.com/technovistalimited/notific/issues"
},
"minimum-stability": "dev",
"require-dev": {
"laravel/framework": ">=5.8"
},
"autoload": {
"psr-4": {
"Technovistalimited\\Notific\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Technovistalimited\\Notific\\NotificServiceProvider"
],
"aliases": {
"Notific": "Technovistalimited\\Notific\\Facades\\Notific"
}
}
}
}