-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
38 lines (37 loc) · 936 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
{
"name": "brian2694/laravel-toastr",
"description": "toastr.js for Laravel",
"keywords": ["toastr", "notification", "laravel", "php"],
"homepage": "https://github.com/brian2694/laravel-toastr",
"license": "MIT",
"authors": [
{
"name": "brian2694",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Brian2694\\Toastr\\": "src/"
},
"files": [
"src/helper.php"
]
},
"extra": {
"laravel": {
"providers": [
"Brian2694\\Toastr\\ToastrServiceProvider"
],
"aliases": {
"Toastr": "Brian2694\\Toastr\\Facades\\Toastr"
}
}
},
"minimum-stability": "dev",
"require": {
"php": ">=5.5.0",
"illuminate/support": ">=5.2.7",
"illuminate/session": ">=5.2.7"
}
}