forked from box/spout
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.07 KB
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
{
"name": "wilsonglasser/spoutx",
"description": "SpoutX — fast and scalable PHP library to read and write XLSX spreadsheet files",
"type": "library",
"keywords": ["php","read","write","xlsx","excel","spreadsheet","scale","memory","stream","ooxml"],
"license": "Apache-2.0",
"homepage": "https://github.com/wilsonglasser/spout",
"authors": [
{
"name": "Wilson Glasser",
"email": "wilsonglasser@gmail.com"
},
{
"name": "Adrien Loison",
"email": "adrien@box.com"
}
],
"require": {
"php": ">=8.4",
"ext-dom": "*",
"ext-mbstring": "*",
"ext-xmlreader": "*",
"ext-zip": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"friendsofphp/php-cs-fixer": "^3.64"
},
"autoload": {
"psr-4": {
"SpoutX\\": "src/SpoutX"
}
},
"autoload-dev": {
"psr-4": {
"SpoutX\\Test\\": "tests/SpoutX"
}
},
"config": {
"sort-packages": true
}
}