-
Notifications
You must be signed in to change notification settings - Fork 86
/
composer.json
57 lines (57 loc) · 1.65 KB
/
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
50
51
52
53
54
55
56
57
{
"name": "fenos/notifynder",
"description": "Management system of internal notifications for Laravel 5.*",
"keywords": ["notifications", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Fabrizio Fenoglio",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Tom Witkowski",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.0",
"illuminate/support": "~5.0",
"doctrine/dbal": "^2.5"
},
"require-dev": {
"laravel/framework": "~5.0",
"phpunit/phpunit": "~4.0|~5.0",
"laracasts/testdummy": "~2.0",
"orchestra/testbench": "~3.0",
"orchestra/database": "~3.0|3.4.x-dev",
"codeclimate/php-test-reporter": "^0.3.2",
"satooshi/php-coveralls": "^1.0"
},
"suggest": {
"astrotomic/notifynder-sender-email": "Allows to send notifications as email.",
"astrotomic/notifynder-sender-redis": "Allows to send notifications via Redis (Pub/Sub).",
"astrotomic/notifynder-sender-slack": "Allows to send notifications via Slack.",
"astrotomic/notifynder-sender-messagebird": "Allows to send notifications via MessageBird.",
"astrotomic/notifynder-sender-nexmo": "Allows to send notifications via Nexmo.",
"astrotomic/notifynder-sender-twilio": "Allows to send notifications via Twilio."
},
"autoload": {
"psr-4": {
"Fenos\\Notifynder\\": "src/Notifynder"
},
"files": [
"src/Notifynder/Helpers/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/NotifynderTestCase.php"
],
"psr-4": {
"Fenos\\Tests\\": "tests/models"
}
},
"prefer-stable": true
}