-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
43 lines (43 loc) · 913 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
39
40
41
42
43
{
"name": "sarfraznawaz2005/noty",
"description": "Laravel package to incorporate noty flash notifications into laravel.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Sarfraz Ahmed",
"email": "sarfraznawaz2005@gmail.com",
"homepage": "http://codeinphp.github.io"
}
],
"homepage": "https://github.com/sarfraznawaz2005/noty",
"keywords": [
"Laravel",
"Noty",
"Flash",
"Notify",
"Notification"
],
"require": {
"illuminate/support": "~5|~6|~7|~8"
},
"autoload": {
"psr-4": {
"Sarfraznawaz2005\\Noty\\": "src/"
},
"files": [
"src/Helpers/helper.php"
]
},
"extra": {
"laravel": {
"providers": [
"Sarfraznawaz2005\\Noty\\NotyServiceProvider"
],
"aliases": {
"Noty": "Sarfraznawaz2005\\Noty\\Facades\\Noty"
}
}
},
"minimum-stability": "stable"
}