-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
39 lines (39 loc) · 884 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
{
"name": "bpocallaghan/notify",
"description": "Laravel 5 Flash Notifications with icons and animations and with a timeout",
"keywords": [
"laravel",
"flash",
"notifications",
"notify",
"bootstrap"
],
"license": "MIT",
"authors": [
{
"name": "Ben-Piet O'Callaghan",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.0"
},
"autoload": {
"psr-4": {
"Bpocallaghan\\Notify\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Bpocallaghan\\Notify\\NotifyServiceProvider"
],
"aliases": {
"Alert": "Bpocallaghan\\Notify\\Facades\\Notify"
}
}
}
}