Plum is a data processing pipeline that helps you to write structured, reusable and well tested data processing code.
Developed by Florian Eckerstorfer in Vienna, Europe.
Plum is a data processing pipeline, that means it reads data, filters and converts it and then writes the data.
- Filters, converters and even writers are pipeline elements that can be attached to a workflow in arbitrary order
- Readers are iterators that can return values of arbitrary type: arrays, objects or scalars, it doesn't matter to Plum
- Conditional converters that are only applied to an item if it passes a filter
- Ability to concatenate workflow to create smaller and better reusable workflows
Plum has been greatly inspired by ddeboer/data-import.
You can install Plum using Composer.
$ composer require cocur/plum:dev-master
Here is a quick preview, but please check out the documentation.
use Cocur\Plum\Workflow;
$workflow = new Workflow();
$workflow->addFilter($filter)
->addConverter($converter)
->addWriter($writer);
$workflow->process($reader);
- Reduce required version of PropertyAccess to
2.4
- Initial version
The MIT license applies to cocur/plum. For the full copyright and license information, please view the LICENSE file distributed with this source code.