forked from yiisoft/yii2-composer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 928 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
{
"name": "yiisoft/yii2-composer",
"description": "The composer plugin for Yii extension installer",
"keywords": ["yii2", "composer", "extension installer"],
"type": "composer-plugin",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/yii2-composer/issues",
"forum": "http://www.yiiframework.com/forum/",
"wiki": "http://www.yiiframework.com/wiki/",
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/yiisoft/yii2-composer"
},
"authors": [
{
"name": "Qiang Xue",
"email": "[email protected]"
}
],
"require": {
"composer-plugin-api": "^1.0"
},
"autoload": {
"psr-4": { "yii\\composer\\": "" }
},
"extra": {
"class": "yii\\composer\\Plugin",
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}