-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
37 lines (37 loc) · 1.22 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": "namshi/notificator",
"description": "A lightweight library to handle notifications the smart way.",
"require-dev": {
"phpspec/phpspec": "dev-master",
"oldsound/rabbitmq-bundle": "1.1.3",
"symfony/process": "v2.2.3",
"hipchat/hipchat-php": "1.2.*",
"cordoval/phpspec-stubs": "dev-master",
"namshi/smscountry": "~1.0",
"psr/log": "~1.0",
"swiftmailer/swiftmailer": "~5.0.0"
},
"suggest": {
"oldsound/rabbitmq-bundle": "To send RabbitMQ notifications in Symfony2",
"symfony/process": "To trigger notify-send notifications under Ubuntu",
"videlalvaro/php-amqplib": "To send notifications through RabbitMQ",
"hipchat/hipchat-php": "To send notifications over HipChat",
"swiftmailer/swiftmailer": "To send notification with SwiftMailer (for example, over AWS's SES service)"
},
"license": "MIT",
"authors": [
{
"name": "odino",
"email": "alessandro.nadalin@gmail.com"
},
{
"name": "cordoval",
"email": "cordoval@gmail.com"
}
],
"autoload": {
"psr-0": {
"Namshi\\Notificator": "src/"
}
}
}