mailgun-php/composer.json

49 lines
1.3 KiB
JSON
Raw Normal View History

2013-07-18 22:01:36 +04:00
{
2013-08-02 23:43:50 +04:00
"name": "mailgun/mailgun-php",
2013-07-24 04:34:50 +04:00
"description": "The Mailgun SDK provides methods for all API functions.",
2013-07-18 22:01:36 +04:00
"require": {
"php": "^7.1",
"psr/http-client": "^1.0",
"php-http/multipart-stream-builder": "^1.0",
"php-http/client-common": "^1.9 || ^2.0",
"php-http/discovery": "^1.6",
"webmozart/assert": "^1.2"
2013-07-24 04:34:50 +04:00
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"php-http/guzzle6-adapter": "^1.0",
"nyholm/psr7": "^1.0",
"nyholm/nsa": "^1.1"
2013-07-18 22:01:36 +04:00
},
2013-07-23 07:55:41 +04:00
"autoload": {
2019-01-06 10:34:49 +03:00
"psr-4": {
"Mailgun\\": "src/"
2013-07-23 07:55:41 +04:00
}
2013-07-24 04:34:50 +04:00
},
2016-08-10 18:06:27 +03:00
"autoload-dev": {
"psr-4": {
"Mailgun\\Tests\\": "tests/"
}
},
2018-08-04 16:18:41 +03:00
"suggest": {
"php-http/curl-client": "cURL client for PHP-HTTP",
"guzzlehttp/psr7": "PSR-7 message implementation that also provides common utility methods"
},
2013-07-24 04:34:50 +04:00
"license": "MIT",
"authors": [
{
"name": "Travis Swientek",
"email": "travis@mailgunhq.com"
}
],
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
2013-07-18 22:01:36 +04:00
}