forked from edvinaskrucas/notification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 922 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
{
"name": "edvinaskrucas/notification",
"keywords": ["laravel", "notifications", "messages", "flash", "instant"],
"description": "Package for Laravel for helping to manage flash / instant notifications / messages.",
"authors": [
{
"name": "Edvinas Kručas",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php" : ">=7.2",
"illuminate/support": "6.*",
"illuminate/session": "6.*"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-0": {
"Krucas\\Notification": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Krucas\\Notification\\NotificationServiceProvider"
]
}
},
"minimum-stability": "dev"
}