-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
56 lines (56 loc) · 1.19 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
{
"name": "fastglass/sendgrid",
"description": "This library allows you to send emails through SendGrid using PHP and Guzzle 6.x.",
"version": "2.0.6",
"homepage": "https://github.com/taz77/sendgrid-php-ng",
"license": "MIT",
"keywords": [
"SendGrid",
"sendgrid",
"Twilio SendGrid",
"twilio sendgrid",
"email",
"send",
"grid"
],
"authors": [
{
"name": "Brady Owens",
"email": "[email protected]",
"homepage": "https://github.com/taz77"
}
],
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": "^6.3|^7.0",
"ext-json": "*",
"ext-mbstring": "*",
"starkbank/ecdsa": "^0.0.4"
},
"require-dev": {
"phpunit/phpunit": "dev-main",
"vlucas/phpdotenv": "~1.0",
"squizlabs/php_codesniffer": "3.*",
"swaggest/json-diff": "^3.4"
},
"replace": {
"sendgrid/sendgrid-php": "*"
},
"type": "library",
"autoload": {
"psr-4": {
"SendGrid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SendGrid\\Tests\\": "Tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text"
},
"minimum-stability": "dev",
"prefer-stable" : true
}