-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 985 Bytes
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 985 Bytes
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
{
"name": "plusemon/notify",
"description": "Flexible Toastr Notifcation Package for PHP Laravel",
"keywords": [
"toastr",
"notification",
"laravel"
],
"homepage": "https://github.com/plusemon/notify",
"license": "MIT",
"authors": [
{
"name": "Emon Khan",
"email": "bdemon00@gmail.com"
}
],
"autoload": {
"psr-4": {
"Plusemon\\Notify\\": "src/"
},
"files": [
"src/helper.php"
]
},
"extra": {
"laravel": {
"providers": [
"Plusemon\\Notify\\NotifyServiceProvider"
],
"aliases": {
"Notify": "Plusemon\\Notify\\Facades\\Notify"
}
}
},
"minimum-stability": "dev",
"require": {
"php": ">=5.5.0",
"illuminate/support": ">=5.2.7",
"illuminate/session": ">=5.2.7"
},
"prefer-stable": true
}