marquine/php-etl

Extract, Transform and Load data using PHP.
138,783 182
Install
composer require marquine/php-etl
Latest Version:v2.3.1
License:MIT
Last Updated:Oct 16, 2022
Links: GitHub  ·  Packagist
Maintainer: leomarquine

PHP ETL

Build Status Latest Stable Version Latest Unstable Version License

Extract, Transform and Load data using PHP.

Installation

In your application's folder, run:

composer require marquine/php-etl

Documentation

Documentation can be found here.

Example

In the example below, we will extract data from a csv file, trim white spaces from the name and email columns and then insert the values into the users table:

use Marquine\Etl\Etl;

$etl = new Etl;

$etl->extract('csv', '/path/to/users.csv')
    ->transform('trim', ['columns' => ['name', 'email']])
    ->load('insert', 'users')
    ->run();

License

PHP ETL is licensed under the MIT license.

Related Packages

fab2s/yaetl

Widely Extended Nodal Extract-Transform-Load ETL Workflow AKA NEJTL or Nodal-Ext...

198,569 65
eighty8/laravel-seeder

Versioned, environment-based Seeders in Laravel

59,548 18
kodeine/laravel-meta

Fluent Meta Data for Eloquent Models, as if it is a property on your model.

902,652 422
spatie/laravel-fractal

An easy to use Fractal integration for Laravel applications

16,568,849 1,909
linfo/laravel

This is a Laravel 5 Wrapper for the linfo package from jrgp

2,631 6