-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.07 KB
/
composer.json
File metadata and controls
38 lines (38 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
{
"name": "iliaal/php-excel",
"type": "php-ext",
"description": "PHP extension for reading and writing Excel files using LibXL",
"license": "PHP-3.01",
"homepage": "https://github.com/iliaal/php_excel",
"authors": [
{
"name": "Ilia Alshanetsky",
"email": "ilia@ilia.ws"
}
],
"require": {
"php": ">=8.3"
},
"php-ext": {
"extension-name": "excel",
"configure-options": [
{
"name": "with-excel",
"description": "Enable Excel support",
"needs-value": false
},
{
"name": "with-libxl-incdir",
"description": "Path to LibXL C header files (include_c directory)",
"needs-value": true
},
{
"name": "with-libxl-libdir",
"description": "Path to LibXL shared library (lib64 directory)",
"needs-value": true
}
],
"support-zts": true,
"support-nts": true
}
}