PHPackages                             kleytonsantos/pipeline-bundle - 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. kleytonsantos/pipeline-bundle

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

kleytonsantos/pipeline-bundle
=============================

A symfony package to handle a pipeline structure

16PHP

Since Mar 9Pushed 1y ago1 watchersCompare

[ Source](https://github.com/KleytonFSantos/PipelineBundle)[ Packagist](https://packagist.org/packages/kleytonsantos/pipeline-bundle)[ RSS](/packages/kleytonsantos-pipeline-bundle/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

PipelineBundle
==============

[](#pipelinebundle)

**PipelineBundle** is a Symfony component that allows you to create and execute data processing pipelines in a flexible and dynamic way.

📦 Instalação
------------

[](#-instalação)

Installing the bundle with **Composer**, run the following command:

```
composer require kleytonsantos/pipeline-bundle
```

```
// config/bundles.php
return [
    KleytonSantos\Pipeline\PipelineBundle::class => ['all' => true],
];
```

🚀 Uso Básico
============

[](#-uso-básico)

### 1️⃣ Create a Pipeline Configuration

[](#1️⃣--create-a-pipeline-configuration)

Adding a pipeline configuration to config/packages/pipeline.yaml:

```
# config/packages/pipeline.yaml
pipeline:
    pipelines:
        my_pipeline:
            - my_pipe1
            - my_pipe2
```

### 2️⃣ Custom Pipes

[](#2️⃣--custom-pipes)

```
