This repository has been archived by the owner on Dec 28, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
68 lines (68 loc) · 1.83 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
61
62
63
64
65
66
67
68
{
"name": "yiisoft/yii-api",
"description": "Yii framework API support",
"keywords": [
"yii",
"framework",
"rest",
"api"
],
"type": "library",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/yii-api/issues",
"forum": "http://www.yiiframework.com/forum/",
"wiki": "http://www.yiiframework.com/wiki/",
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/yiisoft/yii-api"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4|^8.0",
"yiisoft/http": "^1.0",
"yiisoft/router": "^3.0@dev",
"yiisoft/serializer": "^3.0@dev"
},
"require-dev": {
"nyholm/psr7": "^1.0",
"phan/phan": "^3.0",
"phpunit/phpunit": "^9.4",
"roave/infection-static-analysis-plugin": "^1.5",
"spatie/phpunit-watcher": "^1.23",
"vimeo/psalm": "^4.2",
"yiisoft/cache": "^3.0@dev",
"yiisoft/composer-config-plugin": "^1.0@dev",
"yiisoft/di": "^3.0@dev",
"yiisoft/log": "^3.0@dev"
},
"autoload": {
"psr-4": {
"Yiisoft\\Yii\\Api\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yiisoft\\Yii\\Api\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
},
"config-plugin": {
"params": "config/params.php",
"common": "config/common.php",
"web": "config/web.php",
"tests": "$web"
}
},
"scripts": {
"phan": "phan --progress-bar -o analysis.txt",
"test": "phpunit --testdox --no-interaction",
"test-watch": "phpunit-watcher watch"
},
"config": {
"sort-packages": true
}
}