forked from realrashid/sweet-alert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.5 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": "SweetAlert2 for Laravel 5.5.* by Rashid Ali",
"keywords": [
"laravel",
"sweet-alert2",
"sweet",
"notifier",
"alert",
"noty"
],
"homepage": "https://github.com/realrashid/sweet-alert",
"license": "MIT",
"authors": [
{
"name": "Rashid Ali",
"email": "realrashid05@gmail.com",
"homepage": "https://realrashid.com",
"role": "Developer"
}
],
"support": {
"email": "realrashid05@gmail.com",
"issues": "https://github.com/realrashid/sweet-alert/issues",
"source": "https://github.com/realrashid/sweet-alert",
"docs": "https://github.com/realrashid/sweet-alert/README.md"
},
"require": {
"illuminate/support": "~5.1",
"illuminate/session": "~5.1",
"php": "~5.6|~7.0"
},
"require-dev": {
"phpunit/phpunit": ">=5.4.3",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"RealRashid\\SweetAlert\\": "src"
},
"files": [
"src/functions.php"
]
},
"extra": {
"laravel": {
"providers": [
"RealRashid\\SweetAlert\\SweetAlertServiceProvider"
],
"aliases": {
"Alert": "RealRashid\\SweetAlert\\Facades"
}
}
},
"config": {
"sort-packages": true
}
}