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

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

doskyft/csv-helper
==================

A small package for parse CSV

v1.0.0(3y ago)0114MITPHPPHP &gt;=8.1

Since Nov 6Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Doskyft/csv-helper)[ Packagist](https://packagist.org/packages/doskyft/csv-helper)[ RSS](/packages/doskyft-csv-helper/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependenciesVersions (2)Used By (0)

csv-helper
==========

[](#csv-helper)

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

[](#installation)

```
composer require doskyft/csv-helper
```

Usage
-----

[](#usage)

```
use Doskyft\CsvHelper\ColumnDefinition;
use Doskyft\CsvHelper\Csv;
use Doskyft\CsvHelper\Types;

$csv = new Csv();

$csv
    ->setColumnSeparator(',')
    ->setColumns([
        ColumnDefinition::new('a_string_columns', Types::STRING),
        ColumnDefinition::new('a_bool_columns', Types::BOOLEAN)
            ->setConverterOptions([
                'falseValues' => ['false', 'not true', '...'],
            ]),
    ])
    ->setAllColumnsIsNeeded(false)
    ->setTrim(false)
;

$results = $csv->readFromString('
    a_string_columns,a_bool_columns
    value,not true
    value 2,true
');
```

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

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

Unknown

Total

1

Last Release

1336d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/8113527?v=4)[Damien HEBERT](/maintainers/Doskyft)[@Doskyft](https://github.com/Doskyft)

---

Top Contributors

[![Doskyft](https://avatars.githubusercontent.com/u/8113527?v=4)](https://github.com/Doskyft "Doskyft (2 commits)")

---

Tags

csvparserphp

### Embed Badge

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

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

###  Alternatives

[tarfin-labs/easy-pdf

Makes pdf processing easy.

1719.9k](/packages/tarfin-labs-easy-pdf)

PHPackages © 2026

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