forked from yoeunes/toastr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.74 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "yoeunes/toastr",
"license": "MIT",
"description": "toastr.js flush notifications for Laravel 5, 6, 7 and Lumen",
"homepage": "https://github.com/yoeunes/toastr",
"keywords": [
"toastr",
"toastr js",
"notification",
"laravel",
"laravel 5",
"laravel 6",
"laravel 7",
"laravel notification",
"laravel notify",
"laravel toastr",
"flush",
"flush notifications",
"laravel flush notifications",
"flush messages",
"messages",
"alerts",
"Lumen",
"php",
"yoeunes"
],
"authors": [
{
"name": "Younes Khoubza",
"email": "[email protected]",
"homepage": "https://github.com/yoeunes",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/yoeunes/toastr/issues",
"source": "https://github.com/yoeunes/toastr",
"docs": "https://github.com/yoeunes/toastr/README.md"
},
"require": {
"php": ">=7.0",
"illuminate/session": "^5.5 || ^6.0 || ^7.0",
"illuminate/support": "^5.5 || ^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Yoeunes\\Toastr\\": "src"
},
"files": [
"src/helpers.php"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Yoeunes\\Toastr\\ToastrServiceProvider"
],
"aliases": {
"Toastr": "Yoeunes\\Toastr\\Facades\\Toastr"
}
}
},
"config": {
"sort-packages": true
}
}