generated from yiisoft/package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.05 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
{
"name": "yiistack/config",
"type": "library",
"description": "Yii config",
"keywords": [
"config"
],
"homepage": "https://www.yiiframework.com/",
"license": "MIT",
"support": {
"issues": "https://github.com/yiistack/config/issues?state=open",
"forum": "https://www.yiiframework.com/forum/",
"wiki": "https://www.yiiframework.com/wiki/",
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/yiistack/config"
},
"require": {
"php": "^7.4"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"phan/phan": "^2.4"
},
"autoload": {
"psr-4": {
"Yiistack\\Config\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yiistack\\Config\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"scripts": {
"phan": "phan --progress-bar -o analysis.txt"
},
"config": {
"sort-packages": true
}
}