-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
42 lines (42 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
{
"name": "enupal/socializer",
"description": "Login in, Register and share",
"type": "craft-plugin",
"version": "3.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"socializer"
],
"support": {
"docs": "https://github.com/enupal/socializer/blob/master/README.md",
"issues": "https://github.com/enupal/socializer/issues"
},
"authors": [
{
"name": "Enupal",
"homepage": "https://enupal.com/"
}
],
"require": {
"craftcms/cms": "^5.0.0",
"hybridauth/hybridauth": "3.11.0"
},
"autoload": {
"psr-4": {
"enupal\\socializer\\": "src/"
}
},
"extra": {
"name": "Socializer",
"handle": "enupal-socializer",
"hasSettings": true,
"changelogUrl": "https://raw.githubusercontent.com/enupal/socializer/master/CHANGELOG.md",
"class": "enupal\\socializer\\Socializer",
"components": {
"app": "enupal\\socializer\\services\\App"
}
}
}