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

ActiveLibrary

heddiyoussouf/pipeline
======================

A Laravel package to simplify the use of pipelines with artisan commands for step generation and an intuitive facade interface.

1.0.0(2y ago)04PHPPHP ^8.0

Since Sep 8Pushed 2y ago1 watchersCompare

[ Source](https://github.com/HeddiYoussouf1/pipeline)[ Packagist](https://packagist.org/packages/heddiyoussouf/pipeline)[ RSS](/packages/heddiyoussouf-pipeline/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

Heddiyoussouf's Pipeline Package
================================

[](#heddiyoussoufs-pipeline-package)

The heddiyoussouf/pipeline package provides a simplified way to utilize Laravel's pipeline mechanism and introduces a command to rapidly generate "step" classes. It extends Laravel's pipeline functionality, allowing users to pass data through various transformations (steps) more efficiently. Features:

```
A make:step artisan command to quickly generate step classes.
A facade to easily interact with the pipeline.
Ability to apply a sequence of steps to a given input and get a final result.
Publishable stubs to further customize the generated step classes.

```

Installation
------------

[](#installation)

**Require the package:**

You can include the package in your Laravel project with the following command:

```
bash

composer require heddiyoussouf/pipeline

```

**Service Provider:**

Laravel will automatically register the service provider. If you're on an older version of Laravel or have disabled package discovery, add the provider manually in config/app.php:

```
php

'providers' => [
    // ...
    Heddiyoussouf\Pipeline\PipelineProvider::class,
],

```

Usage:
------

[](#usage)

**Generate a Step:**

After installation, you can use the provided artisan command to generate step classes:

```
bash

php artisan make:step YourStepName

```

This will create a new step class inside the App\\Steps directory.

**Using the Pipeline:**

You can easily utilize the provided pipeline with the facade:

```
php

use Heddiyoussouf\Pipeline\Facades\Pipeline;

$result = Pipeline::apply($initialValue, [YourStep1::class, YourStep2::class]);

```

**Publishing PipelineProvider:**

```
bash

php artisan vendor:publish --provider="Heddiyoussouf\Pipeline\PipelineProvider"

```

Once published, you can find the stubs in your project's root stubs directory.

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 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

Unknown

Total

1

Last Release

977d ago

### Community

Maintainers

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

---

Top Contributors

[![HeddiYoussouf1](https://avatars.githubusercontent.com/u/105787447?v=4)](https://github.com/HeddiYoussouf1 "HeddiYoussouf1 (3 commits)")

### Embed Badge

![Health badge](/badges/heddiyoussouf-pipeline/health.svg)

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

PHPackages © 2026

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