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": {
|
2016-03-05 13:14:34 +03:00
|
|
|
"php": "^5.5|^7.0",
|
2016-02-26 14:04:54 +03:00
|
|
|
"php-http/httplug": "^1.0",
|
2017-06-03 11:21:05 +03:00
|
|
|
"php-http/multipart-stream-builder": "^1.0",
|
2016-07-21 11:50:33 +03:00
|
|
|
"php-http/message": "^1.0",
|
2016-11-24 11:30:41 +03:00
|
|
|
"php-http/client-common": "^1.1",
|
2016-10-24 20:01:32 +03:00
|
|
|
"php-http/discovery": "^1.0",
|
2016-11-24 01:01:26 +03:00
|
|
|
"webmozart/assert": "^1.2"
|
2013-07-24 04:34:50 +04:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2016-10-27 09:34:27 +03:00
|
|
|
"phpunit/phpunit": "~4.8",
|
2017-04-08 12:36:06 +03:00
|
|
|
"php-http/guzzle6-adapter": "^1.0",
|
2018-08-04 22:30:15 +03:00
|
|
|
"guzzlehttp/psr7": "^1.4",
|
|
|
|
"nyholm/nsa": "^1.1"
|
2013-07-18 22:01:36 +04:00
|
|
|
},
|
2013-07-23 07:55:41 +04:00
|
|
|
"autoload": {
|
|
|
|
"psr-0": {
|
|
|
|
"Mailgun": "src/"
|
|
|
|
}
|
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"
|
|
|
|
}
|
|
|
|
],
|
2016-11-11 23:22:46 +03:00
|
|
|
"scripts": {
|
|
|
|
"test": "vendor/bin/phpunit --testsuite unit && vendor/bin/phpunit --testsuite functional",
|
2016-12-06 20:02:32 +03:00
|
|
|
"test-all": "vendor/bin/phpunit --testsuite all",
|
2016-11-24 11:30:41 +03:00
|
|
|
"test-integration": "vendor/bin/phpunit --testsuite integration",
|
2016-12-06 20:02:32 +03:00
|
|
|
"test-coverage": "vendor/bin/phpunit --testsuite all --coverage-text --coverage-clover=build/coverage.xml"
|
2016-11-11 23:22:46 +03:00
|
|
|
}
|
2013-07-18 22:01:36 +04:00
|
|
|
}
|