-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathcomposer.json
44 lines (44 loc) · 1.16 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": "akeneo-labs/spreadsheet-parser",
"description": "Akeneo Spreadsheet parser. Reads XLXS files from Microsoft Excel and Open Office",
"keywords": ["akeneo", "excel", "xlsx", "reader", "parser", "spreadsheet"],
"homepage": "http://akeneo.com",
"license": "OSL-3.0",
"authors": [
{
"name": "Antoine Guigan",
"email": "[email protected]",
"homepage": "http://akeneo.com"
},
{
"name": "Matthieu Viel",
"email": "[email protected]",
"homepage": "http://akeneo.com"
},
{
"name": "JM Leroux",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"symfony/options-resolver": "~2.6 || ~3.0 || ^4.0"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"symfony/phpunit-bridge": "^4.2"
},
"autoload": {
"psr-4": {
"Akeneo\\Component\\SpreadsheetParser\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
},
"config": {
"bin-dir": "bin"
}
}