forked from mailgun/mailgun-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 803 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
{
"name": "mailgun/mailgun-php",
"description": "The Mailgun SDK provides methods for all API functions.",
"require": {
"php": "^5.5|^7.0",
"php-http/httplug": "^1.0",
"php-http/multipart-stream-builder": "^0.1",
"php-http/message": "^1.0",
"php-http/discovery": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.6",
"php-http/guzzle6-adapter": "^1.0"
},
"autoload": {
"psr-0": {
"Mailgun": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mailgun\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Travis Swientek",
"email": "[email protected]"
}
],
"minimum-stability": "stable"
}