2012-11-23 19:28:44 +00:00
|
|
|
{
|
2016-06-19 17:26:38 +00:00
|
|
|
"name": "phpoffice/phpspreadsheet",
|
2016-08-13 10:43:52 +00:00
|
|
|
"description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
|
2016-08-13 17:22:11 +00:00
|
|
|
"keywords": ["PHP", "OpenXML", "Excel", "xlsx", "xls", "ods", "gnumeric", "spreadsheet"],
|
2016-06-19 17:26:38 +00:00
|
|
|
"homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
|
2012-11-23 19:28:44 +00:00
|
|
|
"type": "library",
|
2015-05-26 22:49:37 +00:00
|
|
|
"license": "LGPL-2.1",
|
2012-11-23 19:28:44 +00:00
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Maarten Balliauw",
|
|
|
|
"homepage": "http://blog.maartenballiauw.be"
|
|
|
|
},
|
|
|
|
{
|
2016-07-14 21:02:23 +00:00
|
|
|
"name": "Mark Baker",
|
2016-06-19 17:26:38 +00:00
|
|
|
"homepage": "http://markbakeruk.net"
|
2012-11-23 19:28:44 +00:00
|
|
|
},
|
|
|
|
{
|
2012-12-17 23:46:03 +00:00
|
|
|
"name": "Franck Lefevre",
|
2015-05-12 06:02:56 +00:00
|
|
|
"homepage": "http://rootslabs.net"
|
2012-11-23 19:28:44 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Erik Tilt"
|
|
|
|
}
|
|
|
|
],
|
2017-09-11 04:55:25 +00:00
|
|
|
"scripts": {
|
|
|
|
"check": [
|
|
|
|
"php-cs-fixer fix --ansi --dry-run --diff",
|
2017-10-01 08:48:59 +00:00
|
|
|
"phpcs --report-width=200 --report-summary --report-full samples/ src/ tests/ --ignore=samples/Header.php --standard=PSR2 -n",
|
2017-09-11 04:55:25 +00:00
|
|
|
"phpunit --color=always"
|
|
|
|
]
|
|
|
|
},
|
2012-11-23 19:28:44 +00:00
|
|
|
"require": {
|
2017-01-23 02:44:16 +00:00
|
|
|
"php": "^5.6|^7.0",
|
2015-09-14 21:52:57 +00:00
|
|
|
"ext-mbstring": "*",
|
2016-08-31 20:52:42 +00:00
|
|
|
"ext-iconv": "*",
|
2014-01-03 21:59:32 +00:00
|
|
|
"ext-xml": "*",
|
2017-03-11 02:48:46 +00:00
|
|
|
"ext-xmlwriter": "*",
|
2017-04-14 05:22:33 +00:00
|
|
|
"ext-zip": "*",
|
|
|
|
"psr/simple-cache": "^1.0"
|
2012-11-23 19:28:44 +00:00
|
|
|
},
|
2015-05-12 06:02:56 +00:00
|
|
|
"require-dev": {
|
2017-01-23 07:02:59 +00:00
|
|
|
"tecnickcom/tcpdf": "^6.2",
|
|
|
|
"squizlabs/php_codesniffer": "^2.7",
|
|
|
|
"phpunit/phpunit": "^5.7",
|
2017-02-23 02:42:52 +00:00
|
|
|
"friendsofphp/php-cs-fixer": "^2.0",
|
2017-09-29 02:17:08 +00:00
|
|
|
"dompdf/dompdf": "^0.8.0",
|
|
|
|
"mpdf/mpdf": "7.0.0-RC1@dev"
|
2015-05-12 06:02:56 +00:00
|
|
|
},
|
2015-05-26 22:49:37 +00:00
|
|
|
"suggest": {
|
2016-10-18 20:13:36 +00:00
|
|
|
"ext-gd": "Required for exact column width autocalculation",
|
2016-08-25 02:14:03 +00:00
|
|
|
"ext-dom": "Option to read and write HTML files",
|
2015-05-26 22:49:37 +00:00
|
|
|
"mpdf/mpdf": "Option for rendering PDF with PDF Writer",
|
|
|
|
"dompdf/dompdf": "Option for rendering PDF with PDF Writer",
|
|
|
|
"tecnick.com/tcpdf": "Option for rendering PDF with PDF Writer",
|
|
|
|
"jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers"
|
2012-11-23 19:28:44 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
2015-05-26 20:24:14 +00:00
|
|
|
"psr-4": {
|
2016-08-31 17:18:12 +00:00
|
|
|
"PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
|
2012-11-23 19:28:44 +00:00
|
|
|
}
|
2016-08-13 17:22:11 +00:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2016-08-31 17:18:12 +00:00
|
|
|
"PhpOffice\\PhpSpreadsheetTests\\": "tests/PhpSpreadsheetTests"
|
2016-08-13 17:22:11 +00:00
|
|
|
}
|
2012-11-23 19:28:44 +00:00
|
|
|
}
|
|
|
|
}
|