PHPackages                             cyve/etl - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. cyve/etl

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

cyve/etl
========

Extract-Transform-Load service

3.1.1(1y ago)1518MITPHPPHP &gt;=8.1

Since May 18Pushed 1y ago1 watchersCompare

[ Source](https://github.com/cyve/etl)[ Packagist](https://packagist.org/packages/cyve/etl)[ RSS](/packages/cyve-etl/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (4)Versions (13)Used By (0)

Extract Transform Load
======================

[](#extract-transform-load)

Installation:
-------------

[](#installation)

With [Composer](http://packagist.org):

```
composer require cyve/etl
```

Usage
-----

[](#usage)

### Use case: convert CSV to JSON

[](#use-case-convert-csv-to-json)

```
$etl = new ETL(
    new CsvFileExtractor('users.csv'),
    new NullTransformer(),
    new JsonFileLoader('users.json')
);
$etl->start();
```

### Use an event dispatcher

[](#use-an-event-dispatcher)

Use the 4th argument of the constructor to inject an instance of `Psr\EventDispatcher\EventDispatcherInterface`. At each step of each iteration, the ETL will dispatch an event containing the result if the operation succeeded, or an exception if the operation failed

```
$eventDispatcher = new Symfony\Component\EventDispatcher\EventDispatcher();

$etl = new ETL(
    $extractor,
    $transformer,
    $loader,
    $eventDispatcher,
);
$etl->start();
```

#### Example: progress bar

[](#example-progress-bar)

```
$eventDispatcher = new Symfony\Component\EventDispatcher\EventDispatcher();
$eventDispatcher->addListener(LoadSuccessEvent::class, function (LoadSuccessEvent $event): void {
    echo '#';
});
$eventDispatcher->addListener(LoadFailureEvent::class, function (LoadFailureEvent $event): void {
    echo 'E';
});

```

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity79

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

Recently: every ~396 days

Total

12

Last Release

636d ago

Major Versions

1.3 → 2.0.02020-02-19

2.0.4 → 3.0.02023-12-30

PHP version history (4 changes)1.0PHP &gt;=7.0

2.0.0PHP ^7.1

2.0.4PHP ^7.1|^8.0

3.0.0PHP &gt;=8.1

### Community

Maintainers

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

---

Top Contributors

[![cyve](https://avatars.githubusercontent.com/u/3588995?v=4)](https://github.com/cyve "cyve (6 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/cyve-etl/health.svg)

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

###  Alternatives

[phpro/soap-client

A general purpose SoapClient library

8885.6M46](/packages/phpro-soap-client)[cognesy/instructor-php

The complete AI toolkit for PHP: unified LLM API, structured outputs, agents, and coding agent control

310107.9k1](/packages/cognesy-instructor-php)[j0k3r/php-readability

Automatic article extraction from HTML

186808.8k6](/packages/j0k3r-php-readability)[spomky-labs/pwa-bundle

Progressive Web App Manifest Generator Bundle for Symfony.

6144.4k1](/packages/spomky-labs-pwa-bundle)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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