-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.07 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": "venveo/craft-oauthclient",
"description": "Simple OAuth 2.0 client",
"type": "craft-plugin",
"version": "2.1.9",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"oauth 2.0 client"
],
"support": {
"docs": "https://github.com/venveo/craft-oauthclient/blob/master/README.md",
"issues": "https://github.com/venveo/craft-oauthclient/issues"
},
"license": "MIT",
"authors": [
{
"name": "Venveo",
"homepage": "https://www.venveo.com"
}
],
"require": {
"craftcms/cms": "^3.1.34.3",
"league/oauth2-client": "^2.2.1",
"league/oauth2-google": "^2.2 || ^3.0",
"league/oauth2-facebook": "^2.0",
"league/oauth2-github": "^2.0 || ^3.0"
},
"autoload": {
"psr-4": {
"venveo\\oauthclient\\": "src/"
}
},
"extra": {
"hasCpSettings": true,
"hasCpSection": false,
"name": "OAuth 2.0 Client",
"handle": "oauthclient",
"changelogUrl": "https://raw.githubusercontent.com/venveo/craft-oauthclient/master/CHANGELOG.md",
"class": "venveo\\oauthclient\\Plugin"
}
}