forked from expertcoder/SwiftmailerSendGridBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.2 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
{
"name": "tdmytrykiv/swiftmailer-send-grid-bundle",
"type": "symfony-bundle",
"description": "Swiftmailer Transport and Symfony bundle for Sendgrid",
"homepage": "https://github.com/expertcoder/SwiftmailerSendGridBundle",
"license": "MIT",
"authors": [
{
"name": "Samual Anthony",
"email": "sam@expertcoder.io"
},
{
"name": "Maxime Hermouet",
"email": "moux2003@hotmail.com"
}
],
"require": {
"php": ">=7.0.0",
"sendgrid/sendgrid": "^7.0",
"sendgrid/php-http-client": "~3.9.4",
"symfony/swiftmailer-bundle": "~2.6|~3.1|~3.2",
"symfony/framework-bundle": "~2.7|~3.0|~3.1|~3.3|~4.0|~5.0",
"symfony/yaml": "~2.7|~3.0|~3.1|~3.3|~4.0|~5.0"
},
"require-dev": {
"nyholm/symfony-bundle-test": "^1.3"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"ExpertCoder\\Swiftmailer\\SendGridBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ExpertCoder\\Swiftmailer\\SendGridBundle\\Tests\\": "tests/"
}
}
}