All Projects → leomarquine → Php Etl

leomarquine / Php Etl

Licence: mit
Extract, Transform and Load data using PHP.

Projects that are alternatives of or similar to Php Etl

Auditjs
Audits an NPM package.json file to identify known vulnerabilities.
Stars: ✭ 133 (-0.75%)
Mutual labels:  hacktoberfest
Vscode Emacs Mcx
Awesome Emacs Keymap - VSCode emacs keybinding with multi cursor support
Stars: ✭ 135 (+0.75%)
Mutual labels:  hacktoberfest
Saleor
A modular, high performance, headless e-commerce platform built with Python, GraphQL, Django, and React.
Stars: ✭ 14,720 (+10885.07%)
Mutual labels:  hacktoberfest
Instructor Training
Instructor Training
Stars: ✭ 134 (+0%)
Mutual labels:  hacktoberfest
Azure Az 900 Study Guide
Study Guide for the Microsoft Azure Fundamentals Exam
Stars: ✭ 134 (+0%)
Mutual labels:  hacktoberfest
Rathena
rAthena is an open-source cross-platform MMORPG server.
Stars: ✭ 1,793 (+1238.06%)
Mutual labels:  hacktoberfest
Libfaketime
libfaketime modifies the system time for a single application
Stars: ✭ 1,932 (+1341.79%)
Mutual labels:  hacktoberfest
Nim
Nim is a statically typed compiled systems programming language. It combines successful concepts from mature languages like Python, Ada and Modula. Its design focuses on efficiency, expressiveness, and elegance (in that order of priority).
Stars: ✭ 12,270 (+9056.72%)
Mutual labels:  hacktoberfest
React Google Places Autocomplete
React Google Places Autocomplete input -- fully customizable
Stars: ✭ 135 (+0.75%)
Mutual labels:  hacktoberfest
Ice
Comprehensive RPC framework with support for C++, C#, Java, JavaScript, Python and more.
Stars: ✭ 1,772 (+1222.39%)
Mutual labels:  hacktoberfest
Nl.fokkezb.infinitescroll
Alloy widget for infinitive scrolling TableViews and ListViews
Stars: ✭ 134 (+0%)
Mutual labels:  hacktoberfest
Studio
An authoring platform to build Web Augmented Reality experiences, without coding knowledge
Stars: ✭ 135 (+0.75%)
Mutual labels:  hacktoberfest
Wiredtiger
WiredTiger's source tree
Stars: ✭ 1,812 (+1252.24%)
Mutual labels:  hacktoberfest
Restful
Unlocking the potential of the WP REST API at the command line
Stars: ✭ 134 (+0%)
Mutual labels:  hacktoberfest
React Content Loader
⚪ SVG-Powered component to easily create skeleton loadings.
Stars: ✭ 11,830 (+8728.36%)
Mutual labels:  hacktoberfest
Awesome Travel
Do you want to build a travel app?
Stars: ✭ 133 (-0.75%)
Mutual labels:  hacktoberfest
Whatsapp Bulk Sender
Send bulk messages right from your WhatsApp Android Client or WhatsApp Web
Stars: ✭ 135 (+0.75%)
Mutual labels:  hacktoberfest
Network
An ansible role to configure networking
Stars: ✭ 134 (+0%)
Mutual labels:  hacktoberfest
Responsively App
A modified web browser that helps in responsive web development. A web developer's must have dev-tool.
Stars: ✭ 14,425 (+10664.93%)
Mutual labels:  hacktoberfest
Fluent.ribbon
WPF Ribbon control like in Office
Stars: ✭ 1,895 (+1314.18%)
Mutual labels:  hacktoberfest

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].