-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
46 lines (46 loc) · 1.16 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
{
"name": "dukt/social",
"description": "Let your visitors log into Craft with web services like Facebook, Google, Twitter…",
"version": "2.0.4",
"type": "craft-plugin",
"license": "proprietary",
"keywords": [
"social login",
"facebook",
"google",
"twitter",
"craftcms"
],
"authors": [
{
"name": "Dukt",
"homepage": "https://dukt.net/"
}
],
"support": {
"email": "support@dukt.net",
"issues": "https://github.com/dukt/social/issues?state=open",
"source": "https://github.com/dukt/social",
"docs": "https://github.com/dukt/social",
"rss": "https://github.com/dukt/social/commits/v2.atom"
},
"require": {
"craftcms/cms": "^3.1.0",
"league/oauth1-client": "^1.9.0",
"league/oauth2-client": "^2.5.0",
"league/oauth2-google": "^3.0.0",
"league/oauth2-facebook": "^2.0.0"
},
"autoload": {
"psr-4": {
"dukt\\social\\": "src/"
}
},
"extra": {
"name": "Social",
"handle": "social",
"schemaVersion": "1.0.3",
"documentationUrl": "https://dukt.net/docs/social/v2",
"changelogUrl": "https://raw.githubusercontent.com/dukt/social/develop/CHANGELOG.md"
}
}