-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 1005 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
{
"name": "mvlabs/mvlabs-phpexcel",
"description": "MvlabsPHPExcel is a ZF2 module that allow easy to create, modify and read excel files (including pdf, xlsx, odt) using PHPOffice/PHPExcel library.",
"license": "MIT",
"type": "zf2-module",
"keywords": [
"PHPExcel",
"PHPOffice",
"excel",
"xls",
"office",
"php-excel",
"snapshot",
"MvaAssociati",
"MvLabs",
"zf2"
],
"homepage": "https://github.com/mvlabs/MvlabsPHPExcel.git",
"authors": [
{
"name": "Diego Drigani",
"email": "[email protected]",
"homepage": "http://www.mvlabs.it/en/"
}
],
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-mvc": "^3.0",
"phpoffice/phpexcel": "1.8.*"
},
"autoload": {
"psr-0": {
"MvlabsPHPExcel": "src/"
},
"classmap": [
"./Module.php"
]
}
}