forked from mailjet/mailjet-apiv3-php-no-composer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 797 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "mailjet/mailjet-apiv3-php",
"description": "PHP wrapper for the Mailjet API",
"keywords": ["mailjet", "api", "v3", "php", "email"],
"homepage": "https://github.com/mailjet/mailjet-apiv3-php-no-composer/",
"license": "MIT",
"authors": [
{
"name": "Mailjet",
"email": "[email protected]",
"homepage": "https://dev.mailjet.com"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "~7.0",
"mockery/mockery": "^1.4",
"psr/http-client": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8|^9",
"php-coveralls/php-coveralls": "^2.0"
},
"autoload": {
"psr-0": {
"Mailjet": "src/"
}
}
}