forked from expertcoder/SwiftmailerSendGridBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.32 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
{
"name": "gulaandrij/swiftmailer-send-grid-bundle",
"type": "symfony-bundle",
"description": "Swiftmailer Transport and Symfony bundle for Sendgrid",
"keywords": [
"symfony4",
"symfony",
"swiftmailer",
"sendgrid"
],
"homepage": "https://github.com/gulaandrij/SwiftmailerSendGridBundle",
"license": "MIT",
"require": {
"php": ">=7.1",
"ext-fileinfo": "*",
"symfony/dependency-injection": "~2.7|~3.3|~4.0",
"swiftmailer/swiftmailer": "6.*",
"sendgrid/sendgrid": "7.*"
},
"require-dev": {
"nyholm/symfony-bundle-test": "^1.3",
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "^3.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
"slevomat/coding-standard": "^4.6",
"symfony/var-dumper": "^4.1",
"phpstan/phpstan": "^0.10"
},
"autoload": {
"psr-4": {
"ExpertCoder\\Swiftmailer\\SendGridBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ExpertCoder\\Swiftmailer\\SendGridBundle\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"thanks": {
"name": "expertcoder/swiftmailer-send-grid-bundle",
"url": "https://github.com/expertcoder/SwiftmailerSendGridBundle"
}
}
}