PHPackages                             warmans/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. [Framework](/categories/framework)
4. /
5. warmans/pipeline

ActiveLibrary[Framework](/categories/framework)

warmans/pipeline
================

Framework for creating task pipelines

0.0.3(11y ago)0453PHP

Since Aug 12Pushed 11y ago2 watchersCompare

[ Source](https://github.com/warmans/pipeline)[ Packagist](https://packagist.org/packages/warmans/pipeline)[ RSS](/packages/warmans-pipeline/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (2)Versions (5)Used By (0)

pipeline
========

[](#pipeline)

[![Build Status](https://camo.githubusercontent.com/7517a2aa738b931b1450f9fa7481031c4cd08869194ef5a63ebd12c07b617637/68747470733a2f2f7472617669732d63692e6f72672f7761726d616e732f706970656c696e652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/warmans/pipeline)[![Code Coverage](https://camo.githubusercontent.com/0ae943f5ec22e7ddd5a0b86c9536b394d3f66952ea3ae025a6a6fbc51398e175/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7761726d616e732f706970656c696e652f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/warmans/pipeline/?branch=master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/d3be16eef64b308ab1323d8620c69e0c4f4b088035e56b3354a617707e6fec14/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7761726d616e732f706970656c696e652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/warmans/pipeline/?branch=master)

Create a task pipline for seperating complex operations into smaller testable units.

Sample useage:

```
use Pipeline\Pipeline;
use Pipeline\Workload;
use Pipeline\Workload\Task;
use Pipeline\Stage\CallbackStage;

//setup two tasks
$workload = new Workload();
$workload->addTask(new Workload\Task('foo'));
$workload->addTask(new Workload\Task('bar'));

//setup a pipeline
$pipeline = new Pipeline();

//setup two stages
$pipeline->addStage(new CallbackStage('first-stage', function (Task $task) {
    $task->setMeta('done-first', true);
}));
$pipeline->addStage(new CallbackStage('second-stage', function (Task $task) {
    $task->setMeta('done-second', true);
}));

//setup the context to enable logging
$context = new Context();
$context->setLogger(function($msg, $writeLn=true) {
    echo $msg . ($writeLn ? "\n" : "");
});

//execute
$pipeline->execute($workload, $context);

var_dump($workload);
```

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity56

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

Every ~10 days

Total

3

Last Release

4322d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1299401?v=4)[SW](/maintainers/warmans)[@warmans](https://github.com/warmans)

---

Top Contributors

[![warmans](https://avatars.githubusercontent.com/u/1299401?v=4)](https://github.com/warmans "warmans (1 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

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

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

###  Alternatives

[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k39.6M299](/packages/laravel-dusk)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

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