mnb/mnb-phpexcel-application

Facade, workbook builder, application helpers, plugins, diagnostics, and full workflow API for MNB PHPExcel.

Maintainers

Package info

github.com/mnagendrababu23/mnb-phpexcel-application

pkg:composer/mnb/mnb-phpexcel-application

Transparency log

Statistics

Installs: 5

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

v2.0.0 2026-07-29 09:30 UTC

This package is auto-updated.

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


README

Complete facade, workbook builder, diagnostics, plugins, queues, HTTP helpers, mail workflows, and cross-format application API.

composer require mnb/mnb-phpexcel-application:^2.0
use Mnb\PHPExcel\MnbExcel;

$rows = MnbExcel::read('report.xlsx')
    ->sheet('Data')
    ->withHeaderRow()
    ->toArray();

MnbExcel::fromArray($rows)
    ->withHeader()
    ->freezeHeader()
    ->autoWidth()
    ->save('report-copy.xlsx');

The application package installs every format and integration module at the same ^2.0 release line, including native XLS and the optional XLSX/database bridge.