-
-
Notifications
You must be signed in to change notification settings - Fork 167
/
composer.json
59 lines (59 loc) · 1.6 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
{
"name": "realrashid/sweet-alert",
"type": "library",
"description": "Laravel Sweet Alert Is A Package For Laravel Provides An Easy Way To Display Alert Messages Using The SweetAlert2 Library.",
"keywords": [
"laravel",
"laravel-package",
"sweet-alert2",
"sweet-alert",
"notifier",
"toast",
"noty",
"alert"
],
"homepage": "https://github.com/realrashid/sweet-alert",
"license": "MIT",
"authors": [
{
"name": "Rashid Ali",
"email": "[email protected]",
"homepage": "https://realrashid.com",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/realrashid/sweet-alert/issues",
"source": "https://github.com/realrashid/sweet-alert",
"docs": "https://realrashid.github.io/sweet-alert/"
},
"require": {
"php": "^7.2|^8.0|^8.1|^8.2|^8.3",
"laravel/framework": "^5.6|^6.0|^7.0|^8.0|^9.0|^9.11|9.14.*|^10.0|^11.0"
},
"require-dev": {
"symfony/thanks": "^1.0"
},
"autoload": {
"psr-4": {
"RealRashid\\SweetAlert\\": "src/"
},
"files": [
"src/functions.php"
]
},
"extra": {
"laravel": {
"providers": [
"RealRashid\\SweetAlert\\SweetAlertServiceProvider"
],
"aliases": {
"Alert": "RealRashid\\SweetAlert\\Facades\\Alert"
}
}
},
"config": {
"sort-packages": true
}
}