-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
41 lines (40 loc) · 854 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
33
34
35
36
37
38
39
40
41
{
"name": "rmrevin/yii2-comments",
"description": "Comments module for Yii2",
"keywords": [
"yii",
"comment",
"widget",
"module"
],
"type": "yii2-extension",
"license": "MIT",
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/rmrevin/yii2-comments/issues",
"source": "https://github.com/rmrevin/yii2-comments"
},
"authors": [
{
"name": "Roman Revin",
"email": "[email protected]",
"homepage": "http://rmrevin.ru/"
}
],
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "2.0.*",
"rmrevin/yii2-fontawesome": "~2.10"
},
"autoload": {
"psr-4": {
"rmrevin\\yii\\module\\Comments\\": ""
}
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
}