PHPackages                             haruncpi/fluent-pipe - 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. haruncpi/fluent-pipe

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

haruncpi/fluent-pipe
====================

Enables fluent value transformation via chained callbacks

v1.0.1(9mo ago)10cc-by-4.0PHPPHP &gt;=5.6.0

Since Jul 16Pushed 9mo agoCompare

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

READMEChangelog (2)DependenciesVersions (3)Used By (0)

FluentPipe
==========

[](#fluentpipe)

Enables fluent value transformation via chained callbacks

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

[](#installation)

```
composer require haruncpi/fluent-pipe
```

Usage
-----

[](#usage)

```
use Haruncpi\FluentPipe\FluentPipe;

$text = FluentPipe::from(' hello fluent pipe!')
    ->then(fn($text) => trim($text))
    ->then(fn($text) => explode(' ', $text))
    ->then(fn($text) => array_map(fn($word) => ucfirst($word), $text))
    ->then(fn($array) => implode(' ', $array))
    ->get();

echo $text; // Hello Fluent Pipe!
```

Or

```
use Haruncpi\FluentPipe\FluentPipe;

$text = FluentPipe::from(' hello fluent pipe!')
    ->through([
        fn($text) => trim($text),
        fn($text) => explode(' ', $text),
        fn($text) => array_map(fn($word) => ucfirst($word), $text),
        fn($array) => implode(' ', $array),
    ])
    ->get();

var_dump($text); // Hello Fluent Pipe!
```

License
-------

[](#license)

CC BY 4.0

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance56

Moderate activity, may be stable

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity32

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.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

297d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5ccb60a7a5a21d3f5ade112c82454c9ad6b7c8bace01b14f3715e47a2c86e8b7?d=identicon)[haruncpi](/maintainers/haruncpi)

---

Top Contributors

[![harunollyo](https://avatars.githubusercontent.com/u/97671808?v=4)](https://github.com/harunollyo "harunollyo (2 commits)")

### Embed Badge

![Health badge](/badges/haruncpi-fluent-pipe/health.svg)

```
[![Health](https://phpackages.com/badges/haruncpi-fluent-pipe/health.svg)](https://phpackages.com/packages/haruncpi-fluent-pipe)
```

PHPackages © 2026

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