-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.13 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
{
"name": "sptec/gmail-api-mailer-bundle",
"description": "Symfony Mailer Transport for Gmail API including Google OAuth2 authentication.",
"keywords": ["symfony", "mailer", "gmail"],
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Sptec\\GmailApiMailerBundle\\": "src/"
}
},
"authors": [
{
"name": "Stefan Poensgen",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"symfony/config": "^5.4|^6.0",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/mailer": "^5.4|^6.0",
"google/apiclient": "^2.0"
},
"scripts": {
"pre-autoload-dump": "Google\\Task\\Composer::cleanup"
},
"extra": {
"google/apiclient-services": [
"Gmail"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-symfony": "^1.2",
"phpstan/extension-installer": "^1.1",
"symplify/easy-coding-standard": "^11.1",
"symfony/phpunit-bridge": "^5.4|^6.0",
"symfony/http-client": "^5.4|^6.0"
}
}