-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1.1 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
{
"name": "elfuvo/yii2-import-wizard",
"description": "Step-by-step import from Excel files with mapping of model attributes",
"type": "yii2-extension",
"keywords": [
"yii2",
"extension",
"import",
"xlsx",
"csv"
],
"license": "MIT",
"authors": [
{
"name": "elfuvo",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=7.1.0",
"yiisoft/yii2": "~2.0.12",
"phpoffice/phpspreadsheet": "~1.2",
"yiisoft/yii2-queue": "~2.3"
},
"autoload": {
"psr-4": {
"elfuvo\\import\\": "src",
"elfuvo\\import\\tests\\app\\": "tests/app"
}
},
"require-dev": {
"codeception/codeception": "^4.0",
"codeception/module-asserts": "^1.2",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-cli": "^1.0"
},
"scripts": {
"test": "vendor/bin/codecept run"
}
}