PHPackages                             boenrobot/big-xlsx-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [PDF &amp; Document Generation](/categories/documents)
4. /
5. boenrobot/big-xlsx-bundle

ActiveSymfony-bundle[PDF &amp; Document Generation](/categories/documents)

boenrobot/big-xlsx-bundle
=========================

Symfony2 Bundle for generating large multi-sheeted xlsx files with low memory usage. Fork of bassim/BigXlsxBundle, for compatibility with newer PHP versions.

v1.0.1(3y ago)07.9k↓33.3%MITPHP

Since Sep 26Pushed 3y agoCompare

[ Source](https://github.com/boenrobot/BigXlsxBundle)[ Packagist](https://packagist.org/packages/boenrobot/big-xlsx-bundle)[ Docs](http://github.com/boenrobot/BigXlsxBundle)[ RSS](/packages/boenrobot-big-xlsx-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (5)Used By (0)

BigXlsxBundle
=============

[](#bigxlsxbundle)

Symfony2 Bundle for generating large multi-sheeted xlsx files with low memory usage.

This Bundle basically acts as a replacement for creating csv files with large datasets. This, because the CSV format can be troublesome when it comes to difference in default cell separators en line-endings on specific operating systems. Also, obviously, CSV cannot handle multiple sheets.

This bundle uses the 'codeplex/phpexcel' bundle but tries to get rid of the enormous execution time and memory consumption when one wants to store large datasets in a xlsx.

Installation
------------

[](#installation)

add this to your composer.json:

```
	"bassim/big-xlsx-bundle": "dev-master"

```

add this to your AppKernel.php

```
	new Bassim\BigXlsxBundle\BassimBigXlsxBundle(),

```

Basic Usage
-----------

[](#basic-usage)

```
	/** @var $service BigXlsxService */
	$service = $container->get('bassim_big_xlsx.service');

	$data[] = array("id","name");
	for ($i=0;$iaddSheet(0, "test Sheet_0", $data);
	$file = $service->getFile();

```

Adding a custom sheet
---------------------

[](#adding-a-custom-sheet)

```
   /** @var $service BigXlsxService */
	$service = $container->get('bassim_big_xlsx.service');

	$data[] = array("id","name");
	for ($i=0;$iaddSheet(0, "test Sheet_0", $data);

	$objPHPExcel = $service->getPHPExcel();

	//add custom sheet
	$objPHPExcel->createSheet(1);
	$objPHPExcel->setActiveSheetIndex(1);
	$objPHPExcel->getActiveSheet()->setTitle("test");

	// ....

	$file = $service->getFile();

```

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 93.9% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1051 days

Total

4

Last Release

1454d ago

Major Versions

v0.2 → v1.0.02022-05-16

### Community

Maintainers

![](https://www.gravatar.com/avatar/c89497659df1f0444eec334fd27f4991a1d0b1078bce8a42fc4106048c5651b0?d=identicon)[boen\_robot](/maintainers/boen_robot)

---

Top Contributors

[![bassim](https://avatars.githubusercontent.com/u/748403?v=4)](https://github.com/bassim "bassim (31 commits)")[![boenrobot](https://avatars.githubusercontent.com/u/1029536?v=4)](https://github.com/boenrobot "boenrobot (2 commits)")

---

Tags

phpexcelxlsxcsvspreadsheet

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/boenrobot-big-xlsx-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/boenrobot-big-xlsx-bundle/health.svg)](https://phpackages.com/packages/boenrobot-big-xlsx-bundle)
```

###  Alternatives

[openspout/openspout

PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way

1.1k57.6M130](/packages/openspout-openspout)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
