-
Notifications
You must be signed in to change notification settings - Fork 623
/
composer.json
57 lines (57 loc) · 1.35 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "sendgrid/sendgrid",
"description": "This library allows you to quickly and easily send emails through Twilio SendGrid using PHP.",
"homepage": "http://github.com/sendgrid/sendgrid-php",
"license": "MIT",
"keywords": [
"SendGrid",
"sendgrid",
"Twilio SendGrid",
"twilio sendgrid",
"email",
"send",
"grid"
],
"require": {
"php": ">=7.3",
"sendgrid/php-http-client": "~4.1",
"starkbank/ecdsa": "0.*",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "3.*",
"swaggest/json-diff": "^3.4",
"phpstan/phpstan": "^1.5"
},
"replace": {
"sendgrid/sendgrid-php": "*"
},
"type": "library",
"autoload": {
"psr-4": {
"SendGrid\\Contacts\\": "lib/contacts/",
"SendGrid\\EventWebhook\\": "lib/eventwebhook/",
"SendGrid\\Helper\\": "lib/helper/",
"SendGrid\\Mail\\": "lib/mail/",
"SendGrid\\Stats\\": "lib/stats/"
},
"classmap": [
"lib/BaseSendGridClientInterface.php",
"lib/SendGrid.php",
"lib/TwilioEmail.php"
]
},
"autoload-dev": {
"psr-4": {
"SendGrid\\Tests\\Integration\\": "test/integration",
"SendGrid\\Tests\\Unit\\": "test/unit"
},
"classmap": [
"test/BaseTestClass.php"
]
}
}