forked from sendgrid/sendgrid-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
28 lines (28 loc) · 806 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
{
"name": "sendgrid/sendgrid",
"description": "This library allows you to quickly and easily send emails through SendGrid using PHP.",
"version": "6.2.0",
"homepage": "http://github.com/sendgrid/sendgrid-php",
"license": "MIT",
"keywords": ["SendGrid", "sendgrid", "email", "send", "grid"],
"require": {
"php": ">=5.6",
"sendgrid/php-http-client": "~3.7"
},
"require-dev": {
"phpunit/phpunit": "^5.7.9 || ^6.4.3",
"squizlabs/php_codesniffer": "2.*"
},
"replace": {
"sendgrid/sendgrid-php": "*"
},
"type": "library",
"autoload": {
"files": ["lib/SendGrid.php", "lib/helpers/mail/Mail.php", "lib/helpers/contacts/Recipients.php", "lib/helpers/stats/Stats.php"]
},
"autoload-dev": {
"psr-4": {
"SendGridPhp\\Tests\\": "test/unit/"
}
}
}