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

ActiveLibrary

teleport/pipeline
=================

Teleport pipeline package.

v0.0.1(6y ago)02MITPHPPHP &gt;=7.3

Since Apr 6Pushed 6y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (2)Used By (0)

Teleport Pipeline.
==================

[](#teleport-pipeline)

The teleport pipeline design pattern implementation.

```
class BazStage implements Teleport\Pipeline\Interfaces\StageInterface
{

	public function process($payload)
	{
		$payload->baz = "my value";
		return $payload;
	}
}

$pipeline = new Teleport\Pipeline\Pipeline;

$pipeline
	->pipe(new Teleport\Pipeline\Stages\JsonDecodeStage)
	->pipe(new BazStage)
	->pipe(function($payload)
	{
		$payload->x = "y";
		return $payload;
	})
	->pipe(new Teleport\Pipeline\Stages\JsonEncodeStage);

echo $pipeline->process('{"foo": "bar"}');
```

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

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

2224d ago

### Community

Maintainers

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

---

Top Contributors

[![melbahja](https://avatars.githubusercontent.com/u/8259014?v=4)](https://github.com/melbahja "melbahja (13 commits)")

### Embed Badge

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

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

PHPackages © 2026

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