PHPackages                             izzle/csv - 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. izzle/csv

ActiveProject[PDF &amp; Document Generation](/categories/documents)

izzle/csv
=========

The CSV Library

1.0.2(8y ago)024LGPL-3.0-or-laterPHPPHP &gt;=7.0

Since Jan 9Pushed 5y ago1 watchersCompare

[ Source](https://github.com/izzle-org/csv-lib)[ Packagist](https://packagist.org/packages/izzle/csv)[ RSS](/packages/izzle-csv/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (5)Used By (0)

Izzle, CSV
==========

[](#izzle-csv)

What is "Izzle CSV"?
--------------------

[](#what-is-izzle-csv)

Izzle CSV is a highly memory efficient, flexible and extendable open-source CSV import library.

```
use Izzle\Csv\Reader;
use Izzle\Csv\Config;
use Izzle\Csv\Interpreter;

$interpreter = (new Interpreter())->addObserver(function (array $line) {
    var_dump($line);
});

$csv = new Reader((new Config())->setDelimiter(';')->setIgnoreHeaderLine(true));
$csv->parse(__DIR__ . '/data.csv', $interpreter);
```

Requirements
------------

[](#requirements)

- PHP 7.0 or later

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

[](#installation)

Install composer in your project:

```
curl -s http://getcomposer.org/installer | php
```

Create a `composer.json` file in your project root:

```
{
    "require": {
        "izzle/csv": "*"
    }
}
```

Install via composer:

```
php composer.phar install
```

Documentation
-------------

[](#documentation)

### Configuration

[](#configuration)

Import configuration:

```
use Izzle\Csv\Config;

$config = new Config();
$config
    ->setDelimiter("\t") // Customize delimiter. Default value is comma(,)
    ->setEnclosure("'")  // Customize enclosure. Default value is double quotation(")
    ->setEscape("\\")    // Customize escape character. Default value is backslash(\)
    ->setToCharset('UTF-8') // Customize target encoding. Default value is null, no converting.
    ->setFromCharset('SJIS-win') // Customize CSV file encoding. Default value is null.
;
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

 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 ~18 days

Total

3

Last Release

3012d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8366df1d677bf0046c77cbfb70dd34246633b34823e9468a3ff30768ec7334fc?d=identicon)[sicbb](/maintainers/sicbb)

---

Top Contributors

[![sicbb](https://avatars.githubusercontent.com/u/7226232?v=4)](https://github.com/sicbb "sicbb (10 commits)")

---

Tags

librarycsv

### Embed Badge

![Health badge](/badges/izzle-csv/health.svg)

```
[![Health](https://phpackages.com/badges/izzle-csv/health.svg)](https://phpackages.com/packages/izzle-csv)
```

###  Alternatives

[maatwebsite/excel

Supercharged Excel exports and imports in Laravel

12.7k144.3M712](/packages/maatwebsite-excel)[league/csv

CSV data manipulation made easy in PHP

3.5k166.1M646](/packages/league-csv)[rap2hpoutre/fast-excel

Fast Excel import/export for Laravel

2.3k24.9M47](/packages/rap2hpoutre-fast-excel)[openspout/openspout

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

1.1k57.6M131](/packages/openspout-openspout)[mk-j/php_xlsxwriter

PHP Library to write XLSX files

1.9k8.1M27](/packages/mk-j-php-xlsxwriter)[sonata-project/exporter

Lightweight Exporter library

44920.9M35](/packages/sonata-project-exporter)

PHPackages © 2026

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