-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
48 lines (48 loc) · 859 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "chervand/yii2-oauth2-server",
"description": "OAuth 2.0 server for Yii 2.0 with MAC tokens support.",
"license": "MIT",
"keywords": [
"oauth",
"oauth2",
"oauth 2",
"oauth 2.0",
"server",
"auth",
"authorization",
"authorisation",
"authentication",
"resource",
"api",
"auth",
"protect",
"secure",
"mac",
"hmac",
"league",
"thephpleague"
],
"authors": [
{
"name": "chervand",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"yiisoft/yii2": "^2.0",
"league/oauth2-server": "^6.1",
"guzzlehttp/guzzle": "^6.3",
"lcobucci/jwt": "3.3.2"
},
"autoload": {
"psr-4": {
"chervand\\yii2\\oauth2\\server\\": "/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}