forked from wdmg/yii2-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.2 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
47
48
49
50
51
52
{
"name": "wdmg/yii2-api",
"description": "API control module",
"keywords": ["yii2", "yii2-api", "api", "wdmg"],
"type": "yii2-extension",
"license": "MIT",
"version": "1.2.13",
"homepage": "https://github.com/wdmg/yii2-api",
"support": {
"source": "https://github.com/wdmg/yii2-api",
"issues": "https://github.com/wdmg/yii2-api/issues"
},
"authors": [
{
"name": "Alexsander Vyshnyvetskyy",
"email": "alex.vyshnyvetskyy@gmail.com"
},
{
"name": "W.D.M.Group, Ukraine",
"email": "wdmg.com.ua@gmail.com"
}
],
"require": {
"yiisoft/yii2": "^2.0.20",
"wdmg/yii2-base": "^1.0.1",
"wdmg/yii2-users": "^1.1.4",
"wdmg/yii2-selectinput": "^1.0.5",
"wdmg/yii2-datepicker": "^1.0.5",
"bower-asset/clipboard": "*"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"wdmg\\api\\": ""
}
},
"extra": {
"options": {
"routePrefix": "admin",
"accessTokenExpire": 3600,
"blockedIp": [],
"rateLimit": 30,
"rateLimitHeaders": false,
"sendAccessToken": true,
"authMethods": {
"basicAuth": true,
"bearerAuth": true,
"paramAuth": true
}
}
}
}