mailgun-php/composer.json
Tobias Nyholm c875890720 SImplefied travis config and added composer scripts (#213)
* SImplefied travis config and added composer scripts

* Use 2 space indentation
2016-11-11 14:22:46 -06:00

39 lines
1.1 KiB
JSON

{
"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/client-common": "^1.0",
"php-http/discovery": "^1.0",
"webmozart/assert": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"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": "travis@mailgunhq.com"
}
],
"scripts": {
"test": "vendor/bin/phpunit --testsuite unit && vendor/bin/phpunit --testsuite functional",
"test-coverage": "vendor/bin/phpunit --testsuite integration --coverage-text --coverage-clover=build/coverage.xml"
}
}