mnb/mnb-phpexcel-csv

CSV reader/writer module for MNB PHPExcel.

Maintainers

Package info

github.com/mnagendrababu23/mnb-phpexcel-csv

pkg:composer/mnb/mnb-phpexcel-csv

Transparency log

Statistics

Installs: 6

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

v2.0.0 2026-07-29 08:56 UTC

This package is auto-updated.

Last update: 2026-07-29 09:32:58 UTC


README

Independent CSV reader/writer module. Requires only mnb/mnb-phpexcel-core.

composer require mnb/mnb-phpexcel-csv:^2.0
use Mnb\PHPExcel\Format\Csv;

$rows = Csv::read('customers.csv')->withHeaderRow()->toArray();

Csv::write($rows, 'customers-export.csv', [
    'with_header' => true,
    'dialect' => 'excel',
]);

Supports streaming reads, dialect detection/configuration, encoding conversion, BOM handling, projection, and formula-injection policies.