-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.01 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
45
46
47
48
{
"name": "nealyip/spreadsheet",
"description": "Spreadsheet read writer abstraction for box/spout and phpexcel",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Neal Yip",
"email": "neal.yip@webssup.com"
}
],
"scripts": {
"test": [
"php ./vendor/phpunit/phpunit/phpunit"
]
},
"require": {
"php": ">=7",
"box/spout": "^2.7",
"phpoffice/phpexcel": "^1.8",
"illuminate/support": "~5.1.0|~5.2.0|~5.3.0|~5.4.0|~5.5.0|~5.6.0",
"illuminate/config": "~5.1.0|~5.2.0|~5.3.0|~5.4.0|~5.5.0|~5.6.0",
"ext-zip" : "*",
"phpoffice/phpspreadsheet": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^6.2.1"
},
"autoload": {
"psr-4": {
"Nealyip\\Spreadsheet\\": "src"
},
"files": [
]
},
"autoload-dev": {
"psr-4": {
"Nealyip\\Spreadsheet\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Nealyip\\Spreadsheet\\SpreadsheetServiceProvider"
]
}
}
}