mnb / mnb-phpexcel-ods
Native streaming ODS reader module for MNB PHPExcel.
v2.0.0
2026-07-29 09:11 UTC
Requires
- php: >=8.1
- ext-libxml: *
- ext-zlib: *
- mnb/mnb-phpexcel-core: ^2.0
Suggests
- ext-xmlreader: Recommended for true streaming ODS reads; a pure-PHP fallback is included.
- ext-zip: Recommended for native ODS package access; a pure-PHP fallback is included.
Conflicts
README
<<<<<<< HEAD Native streaming ODS reader module for MNB PHPExcel. Documentation URL: https://mnbphpexcel.space/getting-started/installation This package is generated from the MNB PHPExcel monorepo. Do not copy source files between modules manually.
Install
=======
Independent native OpenDocument Spreadsheet reader. Requires core, ext-libxml, and ext-zlib.
92854cd (Release v2.0.0)
composer require mnb/mnb-phpexcel-ods:^2.0
use Mnb\PHPExcel\Format\Ods; $rows = Ods::read('report.ods') ->sheet('Data') ->withHeaderRow() ->toArray();
Version 2.0 provides native ODS reading and row streaming. ODS writing is not yet part of this package.