-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 1.02 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
{
"name": "dstuecken/notify",
"version": "1.0.3",
"type": "library",
"description": "Framework agnostic and lightweight notification system with several adapters.",
"keywords": ["notify", "notification", "flash", "logger", "abstraction"],
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"hipchat/hipchat-php": "1.2.*",
"psr/log": "~1.0",
"swiftmailer/swiftmailer": "~5.0.0",
"phpunit/phpunit": "^5.7",
"monolog/monolog": "1.*",
"smarty/smarty": "v3.1.*"
},
"require": {
"php": ">=5.6.0",
"psr/log": "~1.0"
},
"suggest": {
"hipchat/hipchat-php": "Enable HipChat notification",
"swiftmailer/swiftmailer": "Enable E-Mail notification"
},
"license": "MIT",
"authors": [
{
"name": "dstuecken",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"dstuecken\\Notify\\": "src/"
}
}
}