-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
40 lines (40 loc) · 999 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
{
"name": "softon/sweetalert",
"description": "Laravel 5 Package for SweetAlert2. Use this package to easily show sweetalert2 prompts in your laravel app.",
"license": "MIT",
"keywords": [
"Laravel 5",
"SweetAlert2",
"POPUP BOXES"
],
"authors": [
{
"name": "Shiburaj",
"email": "powerupneo@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
"guzzlehttp/guzzle": "~5.0|~6.0"
},
"autoload": {
"psr-4": {
"Softon\\SweetAlert\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Softon\\SweetAlert\\SweetAlertServiceProvider"
],
"aliases": {
"SWAL": "Softon\\SweetAlert\\Facades\\SWAL"
}
}
},
"minimum-stability": "dev"
}