This repository has been archived by the owner on Jun 9, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
60 lines (60 loc) · 1.6 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
53
54
55
56
57
58
59
60
{
"name": "yiisoft/yii-base-api",
"type": "library",
"description": "Yii Framework REST API Application Base",
"keywords": [
"yii",
"framework",
"application",
"rest",
"api"
],
"homepage": "https://github.com/yiisoft/yii-base-api",
"license": "BSD-3-Clause",
"support": {
"source": "https://github.com/yiisoft/yii-base-api",
"issues": "https://github.com/yiisoft/yii-base-api/issues",
"forum": "http://www.yiiframework.com/forum/",
"wiki": "http://www.yiiframework.com/wiki/",
"irc": "irc://irc.freenode.net/yii"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4",
"yiisoft/yii-rest": "^3.0@dev",
"yiisoft/di": "^3.0@dev",
"yiisoft/log": "^3.0@dev",
"yiisoft/cache": "^3.0@dev",
"yiisoft/active-record": "^3.0@dev",
"vlucas/phpdotenv": "^4.0",
"yiisoft/composer-config-plugin": "^1.0@dev"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
},
"config-plugin": {
"params": "config/params.php",
"common": "config/common.php",
"web": "config/web.php"
}
},
"autoload": {
"psr-4": {
"Yiisoft\\Yii\\Base\\Api\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yiisoft\\Yii\\Base\\Api\\Tests\\": "tests"
}
},
"config": {
"process-timeout": 1800,
"sort-packages": true
}
}