forked from PHPOffice/PHPExcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 823 Bytes
/
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
{
"name": "richin/phpexcel",
"description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
"keywords": ["PHP","Excel","OpenXML","xlsx","xls","spreadsheet"],
"homepage": "https://github.com/PHPOffice/PHPExcel",
"type": "library",
"license": "LGPL-2.1",
"authors": [
{
"name": "Richin Varghese",
"homepage": "https://github.com/richin"
}
],
"require": {
"php": "^8.0",
"ext-mbstring": "*",
"ext-xml": "*",
"ext-xmlwriter": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.*"
},
"recommend": {
"ext-zip": "*",
"ext-gd": "*"
},
"autoload": {
"psr-0": {
"PHPExcel": "Classes/"
}
}
}