-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
executable file
·44 lines (44 loc) · 1.08 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
{
"name": "zaxbux/wn-gmaildriver-plugin",
"description": "Send email with Gmail using this driver plugin.",
"homepage": "https://github.com/zaxbux/wn-gmaildriver-plugin",
"keywords": [
"winter",
"wintercms",
"gmail",
"workspace"
],
"type": "winter-plugin",
"license": "MIT",
"authors": [
{
"name": "Zachary Schneider",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/zaxbux/wn-gmaildriver-plugin/issues",
"source": "https://github.com/zaxbux/wn-gmaildriver-plugin"
},
"require": {
"php": ">=7.4",
"composer/installers": "~1.0",
"google/apiclient": "~2.7"
},
"scripts": {
"post-update-cmd": [
"Google\\Task\\Composer::cleanup"
]
},
"extra": {
"google/apiclient-services": [
"Gmail"
],
"installer-name": "gmaildriver"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}