forked from faisalman/simple-excel-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 929 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
{
"name": "faisalman/simple-excel-php",
"type": "library",
"description": "Easily parse / convert / write between Microsoft Excel XML / CSV / TSV / HTML / JSON / etc formats",
"keywords": ["excel", "spreadsheet", "document", "xml", "csv", "tsv", "html", "json", "parser", "converter", "writer"],
"homepage": "http://faisalman.github.com/simple-excel-php",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/faisalman/simple-excel-php.git"
}
],
"license": "MIT",
"authors": [
{
"name": "Faisal Salman",
"email": "[email protected]",
"homepage": "http://faisalman.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {"SimpleExcel\\": "src/"}
}
}