Blame view

common/components/nodge/eauth/composer.json 879 Bytes
14a09168   Alex Savenko   init commit
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": "nodge@yandex.ru",

  			"homepage": "http://nodge.ru/"

  		}

  	],

  	"support": {

  		"source": "https://github.com/nodge/yii2-eauth"

  	},

  	"autoload": {

  		"psr-4": {

  			"common\modules\nodge\\eauth\\": "src/"

  		}

  	},

  	"require": {

  		"php": ">=5.4.0",

  		"lib-curl": "*",

  		"yiisoft/yii2": "*",

  		"lusitanian/oauth": "~0.3.0",

  		"nodge/lightopenid": "~1.1.0"

  	},

  	"extra": {

  		"bootstrap": "common\modules\nodge\\eauth\\Bootstrap"

  	}

  }