forked from Nodge/yii2-eauth
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
33 lines (33 loc) · 817 Bytes
/
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
{
"name": "nodge/yii2-eauth",
"description": "Yii2 EAuth Extension. EAuth allows to authenticate users with accounts on other websites (Google, Facebook, Twitter, etc).",
"keywords": ["yii2", "extension", "eauth", "openid", "oauth", "authentication"],
"homepage": "https://github.com/Nodge/yii2-eauth",
"type": "yii2-extension",
"license": "New BSD License",
"authors": [
{
"name": "Maxim Zemskov",
"email": "[email protected]",
"homepage": "http://nodge.ru/"
}
],
"support": {
"source": "https://github.com/nodge/yii2-eauth"
},
"autoload": {
"psr-4": {
"nodge\\eauth\\": "src/"
}
},
"require": {
"php": ">=5.4.0",
"lib-curl": "*",
"yiisoft/yii2": "*",
"lusitanian/oauth": "~0.3.0",
"nodge/lightopenid": "~1.1.0"
},
"extra": {
"bootstrap": "nodge\\eauth\\Bootstrap"
}
}