summaryrefslogtreecommitdiff
path: root/Postman/Postman-Mail/sendgrid/vendor/sendgrid/sendgrid/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'Postman/Postman-Mail/sendgrid/vendor/sendgrid/sendgrid/composer.json')
-rw-r--r--Postman/Postman-Mail/sendgrid/vendor/sendgrid/sendgrid/composer.json40
1 files changed, 32 insertions, 8 deletions
diff --git a/Postman/Postman-Mail/sendgrid/vendor/sendgrid/sendgrid/composer.json b/Postman/Postman-Mail/sendgrid/vendor/sendgrid/sendgrid/composer.json
index 2e2a398..d7dea0e 100644
--- a/Postman/Postman-Mail/sendgrid/vendor/sendgrid/sendgrid/composer.json
+++ b/Postman/Postman-Mail/sendgrid/vendor/sendgrid/sendgrid/composer.json
@@ -1,23 +1,47 @@
{
"name": "sendgrid/sendgrid",
- "description": "This library allows you to quickly and easily send emails through SendGrid using PHP.",
- "version": "6.0.0",
+ "description": "This library allows you to quickly and easily send emails through Twilio SendGrid using PHP.",
+ "version": "7.3.0",
"homepage": "http://github.com/sendgrid/sendgrid-php",
"license": "MIT",
- "keywords": ["SendGrid", "sendgrid", "email", "send", "grid"],
+ "keywords": [
+ "SendGrid",
+ "sendgrid",
+ "Twilio SendGrid",
+ "twilio sendgrid",
+ "email",
+ "send",
+ "grid"
+ ],
"require": {
"php": ">=5.6",
- "sendgrid/php-http-client": "~3.7"
+ "sendgrid/php-http-client": "~3.9",
+ "ext-curl": "*",
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "ext-openssl": "*"
},
"require-dev": {
- "phpunit/phpunit": "4.*",
- "squizlabs/php_codesniffer": "2.*"
+ "phpunit/phpunit": "^5.7.9 || ^6.4.3",
+ "squizlabs/php_codesniffer": "3.*",
+ "swaggest/json-diff": "^3.4"
},
"replace": {
"sendgrid/sendgrid-php": "*"
},
"type": "library",
"autoload": {
- "files": ["lib/SendGrid.php", "lib/helpers/mail/Mail.php"]
+ "psr-4": {
+ "SendGrid\\": "lib/",
+ "SendGrid\\Mail\\": "lib/mail/",
+ "SendGrid\\Contacts\\": "lib/contacts/",
+ "SendGrid\\Stats\\": "lib/stats/"
+ },
+ "files": ["lib/SendGrid.php"]
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "SendGrid\\Tests\\": "test/"
+ }
}
-} \ No newline at end of file
+}