forked from idimensionz/sendgrid-webapi-v3-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 842 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 842 Bytes
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
{
"name": "idimensionz/sendgrid-webapi-v3",
"description": "PHP implementation of the SendGrid WebAPI v3",
"require": {
"guzzlehttp/guzzle": "5.3.x-dev"
},
"require-dev": {
"phpunit/phpunit": "4.6.*",
"codeclimate/php-test-reporter": "dev-master",
"phake/phake": "2.1.x-dev"
},
"license": "MIT license",
"autoload": {
"psr-4": {
"iDimensionz\\Api\\": "lib/iDimensionz/Api/",
"iDimensionz\\SendGridWebApiV3\\": "lib/iDimensionz/SendGridWebApiV3/",
"Tests\\iDimensionz\\Api\\": "tests/iDimensionz/Api/",
"Tests\\iDimensionz\\SendGridWebApiV3\\": "tests/iDimensionz/SendGridWebApiV3/"
}
},
"authors": [
{
"name": "Jim Mullen",
"email": "info@idimensionz.com"
}
]
}