-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (33 loc) · 1.17 KB
/
composer.json
File metadata and controls
34 lines (33 loc) · 1.17 KB
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": "messagemedia/webhooks-sdk",
"type": "library",
"description": "The MessageMedia Webhooks allows you to subscribe to one or several events and when one of those events is triggered, an HTTP request is sent to the URL of your choice along with the message or payload. In simpler terms, it allows applications to 'speak' to one another and get notified automatically when something new happens.",
"keywords": ["Webhooks","API","SDK"],
"homepage": "https://developers.messagemedia.com",
"version": "1.0.0",
"license": "Apache-2.0",
"authors": [
{
"name": "MessageMedia Developers",
"email": "developers@messagemedia.com",
"homepage": "https://developers.messagemedia.com"
}
],
"require": {
"php": ">=5.4.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"mashape/unirest-php": "~3.0.1",
"apimatic/jsonmapper": "~1.3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.7",
"phpunit/phpunit": "4.8.*"
},
"autoload": {
"psr-4": {
"MessageMediaWebhooksLib\\": "src/"
}
}
}