mailgun-php/composer.json

42 lines
1.2 KiB
JSON
Raw Permalink 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": {
2016-03-05 13:14:34 +03:00
"php": "^5.5|^7.0",
"php-http/httplug": "^1.0",
"php-http/multipart-stream-builder": "^1.0",
2016-07-21 11:50:33 +03:00
"php-http/message": "^1.0",
"php-http/client-common": "^1.1",
"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",
"php-http/guzzle6-adapter": "^1.0",
"guzzlehttp/psr7": "^1.4"
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/"
}
},
2013-07-24 04:34:50 +04:00
"license": "MIT",
"authors": [
{
"name": "Travis Swientek",
"email": "travis@mailgunhq.com"
}
],
"scripts": {
"test": "vendor/bin/phpunit --testsuite unit && vendor/bin/phpunit --testsuite functional",
"test-all": "vendor/bin/phpunit --testsuite all",
"test-integration": "vendor/bin/phpunit --testsuite integration",
"test-coverage": "vendor/bin/phpunit --testsuite all --coverage-text --coverage-clover=build/coverage.xml"
}
2013-07-18 22:01:36 +04:00
}