-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
40 lines (40 loc) · 952 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
{
"name": "artkost/yii2-taxonomy",
"description": "Yii 2 Taxonomy categories and tags module",
"keywords": [
"yii2",
"taxonomy",
"category",
"tags",
"module"
],
"type": "yii2-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/artkost/yii2-taxonomy/issues",
"source": "https://github.com/artkost/yii2-taxonomy"
},
"authors": [
{
"name": "Nikolay Kostyurin",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5",
"yiisoft/yii2": "~2.0.5",
"paulzi/yii2-nested-sets": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/dbunit": "~1.0"
},
"autoload": {
"psr-4": {
"artkost\\yii2\\taxonomy\\": "src"
}
},
"extra": {
"bootstrap": "artkost\\yii2\\taxonomy\\Bootstrap"
}
}