-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
61 lines (61 loc) · 1.9 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
{
"name": "devgroup/yii2-data-structure-tools",
"description": "Data structure collections, helpers and utilities for yii2 ActiveRecord models(trees, sorts and etc.)",
"type": "yii2-extension",
"keywords": ["yii2","extension","tree","cache","sort","sortable"],
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Alexander Kozhevnikov",
"email": "[email protected]"
},
{
"name": "Pavel Naumov",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"yiisoft/yii2": "^2.0.6",
"devgroup/yii2-tag-dependency-helper": "~1.5",
"unclead/yii2-multiple-input": "~1.2.3",
"devgroup/yii2-multilingual": "*",
"devgroup/yii2-entity": "*",
"arogachev/yii2-sortable": "^0.1.5",
"kartik-v/yii2-widget-select2": "^2.0.0",
"hector68/yii2-map-input-widget": "^2.0",
"elasticsearch/elasticsearch": "^2.1",
"rmrevin/yii2-fontawesome": "~2.14",
"devgroup/yii2-jsoneditor": "*",
"vova07/yii2-imperavi-widget": "*",
"devgroup/yii2-measure": "*",
"kartik-v/yii2-widget-colorinput": "*"
},
"require-dev": {
"yiisoft/yii2-bootstrap": "^2.0@dev",
"devgroup/yii2-admin-utils": "dev-master",
"devgroup/dotplant-dev": "~1.0.0",
"elasticsearch/elasticsearch": "~5.0",
"dmstr/yii2-migrate-command": "^0.3.1"
},
"autoload": {
"psr-4": {
"DevGroup\\DataStructure\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevGroup\\DataStructure\\Tests\\": "tests/"
}
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
},
"migrationPath": [
"src/migrations"
]
}
}