mailgun-php/composer.json

45 lines
1.1 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.",
"license": "MIT",
"authors": [
{
"name": "Travis Swientek",
"email": "travis@mailgunhq.com"
}
],
2013-07-18 22:01:36 +04:00
"require": {
"php": "^7.3 || ^8.0",
"php-http/client-common": "^2.2.1",
"php-http/discovery": "^1.9.1",
"php-http/multipart-stream-builder": "^1.1.2",
"psr/http-client": "^1.0.1",
"webmozart/assert": "^1.9.1"
2013-07-24 04:34:50 +04:00
},
"require-dev": {
"nyholm/nsa": "^1.2.1",
"nyholm/psr7": "^1.3.1",
2021-08-18 22:48:23 +03:00
"phpunit/phpunit": "^9.3",
"symfony/http-client": "^5.3"
},
"suggest": {
2021-08-18 22:24:13 +03:00
"nyholm/psr7": "PSR-7 message implementation",
"symfony/http-client": "HTTP client"
},
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/"
}
2021-12-17 13:00:24 +03:00
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
2013-07-18 22:01:36 +04:00
}