-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
44 lines (44 loc) · 1.28 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": "imtigger/oneexcel",
"description": "PHP Excel read/write abstraction layer, support PhpSpreadSheet, LibXL, Spout and PHP fputcsv",
"homepage": "https://github.com/imTigger/oneexcel",
"keywords": ["excel", "phpexcel", "libxl", "spout", "xls", "xlsx", "csv", "ods", "fputcsv"],
"license": "MIT",
"authors": [
{
"name": "Tiger Fok",
"email": "tiger@tiger-workshop.com"
}
],
"require": {
"php": ">=5.6.4",
"box/spout": "^2.7",
"phpoffice/phpspreadsheet": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"suggest": {
"ext-excel": "Required for LibXL driver"
},
"autoload": {
"psr-4": {
"Imtigger\\OneExcel\\": "src/Imtigger/OneExcel"
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload-dev": {
"psr-4": {
"Imtigger\\OneExcel\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit --colors=always; ./vendor/bin/php-cs-fixer fix src --dry-run --diff --ansi",
"travis": "phpunit --coverage-clover build/logs/clover.xml",
"fix": "./vendor/bin/php-cs-fixer fix src --diff --ansi"
}
}