-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 loc) · 1.3 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
{
"name": "devgroup/yii2-flex-integration",
"description": "Flexible integration(import, export, sync) for yii2",
"type": "yii2-extension",
"keywords": ["yii2","extension","integration","import","export"],
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Alexander Kozhevnikov",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"yiisoft/yii2": "^2.0.10",
"devgroup/yii2-tag-dependency-helper": "~1.5",
"devgroup/yii2-data-structure-tools": "dev-master",
"devgroup/yii2-entity-search": "*",
"phpoffice/phpexcel": "^1.8"
},
"require-dev": {
"devgroup/dotplant-dev": "~1.0",
"codeception/base": "^2.2",
"codeception/verify": "^0.3.2",
"codeception/specify": "^0.4.5"
},
"autoload": {
"psr-4": {
"DevGroup\\FlexIntegration\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevGroup\\FlexIntegration\\Tests\\": "tests/"
}
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
},
"migrationPath": [
"src/migrations"
]
}
}