forked from kartik-v/yii2-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·44 lines (44 loc) · 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
{
"name": "kartik-v/yii2-export",
"description": "A library to export server/db data in various formats (e.g. excel, html, pdf, csv etc.)",
"keywords": [
"yii2",
"extension",
"widget",
"export",
"spreadsheet",
"html",
"csv",
"text",
"pdf",
"json",
"xls",
"xlsx",
"OpenXML"
],
"homepage": "https://github.com/kartik-v/yii2-export",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Kartik Visweswaran",
"email": "[email protected]",
"homepage": "http://www.krajee.com/"
}
],
"require": {
"kartik-v/yii2-dynagrid": ">=1.4.5",
"kartik-v/yii2-dialog": "~1.0.0",
"phpoffice/phpexcel": "~1.8.0"
},
"autoload": {
"psr-4": {
"kartik\\export\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
}
}