forked from lab123it/lumen-notification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 930 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
41
42
43
44
45
46
47
48
49
{
"name": "lab123/lumen-notification",
"type": "library",
"description": "Wrapper of Laravel Notification adapted to work with Lumen 5.x",
"keywords": [
"lumen",
"laravel",
"notification",
"laravel-notification",
"lumen-notification",
"wrapper"
],
"homepage": "https://github.com/lab123/lumen-notification",
"license": "MIT",
"authors": [
{
"name": "Jean Pierre",
"email": "[email protected]"
},
{
"name": "Felipe Santos",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"LumenNotification\\": "src/"
}
},
"require": {
"php": ">=5.6.4",
"illuminate/notifications": "^5.3",
"illuminate/mail": "^5.3",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "~5.0"
},
"autoload-dev": {
"classmap": [
"tests/"
],
"psr-4": {
"LumenNotification\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}