PHPackages                             bassim/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. bassim/big-xlsx-bundle

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

bassim/big-xlsx-bundle
======================

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

v0.2(11y ago)315.8k2MITPHPPHP &gt;=5.3.3

Since Sep 26Pushed 10y agoCompare

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

READMEChangelog (2)Dependencies (2)Versions (3)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

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~587 days

Total

2

Last Release

4072d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a94191db919b9d9836339cb775502989a66ea860418dfa51a97308a317e8e757?d=identicon)[Bassim](/maintainers/Bassim)

---

Top Contributors

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

---

Tags

phpexcelxlsxcsvspreadsheet

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/bassim-big-xlsx-bundle/health.svg)](https://phpackages.com/packages/bassim-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.2k65.5M210](/packages/openspout-openspout)[avadim/fast-excel-reader

Lightweight and very fast XLSX Excel Spreadsheet and CSV Reader in PHP

106693.8k9](/packages/avadim-fast-excel-reader)

PHPackages © 2026

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