-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
28 lines (27 loc) · 872 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
{
"name": "phpsa/BasicExcel",
"type": "library",
"description": "This Class can both read and write to CSV, XLS and XLSX. Added in the abiliity to guess which file type it is and parse accordingly to array",
"keywords": ["excel", "spreadsheet", "document", "csv", "xls", "xlsx", "parser", "converter", "writer"],
"homepage": "https://github.com/phpsa/BasicExcel",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/phpsa/BasicExcel.git"
}
],
"license": "BSD 3-Clause \"New\" or \"Revised\" License",
"authors": [
{
"name": "Craig Smith",
"homepage": "http://www.omnihost.co.nz",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-0": {"BasicExcel\\": "BasicExcel/"}
}
}