-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 791 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 791 Bytes
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
{
"name": "export/excel-bundle",
"version": "0.0.1",
"type": "library",
"description": "Service for easy Excel export with PHPExcel Library in Symfony 2",
"keywords": ["export","excel","symfony2"],
"homepage": "http://github.com/rgazelot/ExcelBundle.git",
"license": "MIT",
"authors": [
{
"name": "Rémy Gazelot",
"email": "r.gazelot@gmail.com",
"homepage": "http://www.remygazelot.fr",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-0": {
"Export\\ExcelBundle": "",
"PHPExcel": "vendor/export/excel-bundle/Export/ExcelBundle/Library/phpExcel/Classes"
}
},
"target-dir": "Export/ExcelBundle"
}