PHPackages                             ailixter/gears-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. ailixter/gears-pipeline

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

ailixter/gears-pipeline
=======================

The project that gears pipelines.

00PHP

Since Sep 7Pushed 6y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

gears-pipeline
==============

[](#gears-pipeline)

The project that gears pipelines.

it runs a chain of handlers over iterables (iterators, generators, arrays). the processing is memory efficient, no intermediate arrays are used.

```
    echo PipelinedIteration::over(
        [1, 2],
        [3, 4],
        [5, 6],
        [7, 8]
    )
    ->map(function ($a, $b, $c, $d) {
        return [$a + $b, $c + $d];
    })
    ->reduce(function ($r, $x, $y) {
        return $r += $x * $y;
    })
    ->getResult(); // 132
```

implemented handlers
--------------------

[](#implemented-handlers)

- `map(callable)`
- `filter(callable)`
- `reduce(callable, mixed = 0)`
- `find(callable)`
- `some(callable)`
- `every(callable)`

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

 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.

### Community

Maintainers

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

---

Top Contributors

[![ailixter](https://avatars.githubusercontent.com/u/8529462?v=4)](https://github.com/ailixter "ailixter (6 commits)")

---

Tags

efficiencyeveryfilterfindfunctionaliterablemappipelinereducesome

### Embed Badge

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

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

PHPackages © 2026

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