PHPackages                             jeydotc/jeydotc-enumerable - 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. jeydotc/jeydotc-enumerable

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

jeydotc/jeydotc-enumerable
==========================

An enumerable class that mimics the concepts of .Net's IEnumerable interface, but with slight adaptations for PHP.

0.6(7y ago)010MITPHP

Since Mar 15Pushed 7y ago1 watchersCompare

[ Source](https://github.com/JeyDotC/jeydotc-enumerable)[ Packagist](https://packagist.org/packages/jeydotc/jeydotc-enumerable)[ Docs](https://github.com/JeyDotC/jeydotc-enumerable)[ RSS](/packages/jeydotc-jeydotc-enumerable/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)Dependencies (1)Versions (6)Used By (0)

\# Enumerable class!

```
$myEnumerable = Enumerable::from([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);

$even = $myEnumerable->where(function(int $number){
    return $number % 2 === 0;
});
// new Enumerable: 2, 4, 6, 8, 10

$allPowered = $myEnumerable->select(function(int $number){
    return $number * $number;
});
// new Enumerable:  1, 4, 9, 16, 25, 36, 48, 64, 81, 100

$theAlpha = $myEnumerable->first();
// 1

$theOmega = $myEnumerable->last();
// 10

// And many more...
```

\## Installation

```
composer install jeydotc/jeydotc-enumerable
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

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

4

Last Release

2611d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/00591816fd03c04b3c6cdca74e18fb7db861d17f21bdcfa88786cbafe0790cef?d=identicon)[JeyDotC](/maintainers/JeyDotC)

---

Tags

collectioncollectionsienumerableimmutablecollectionenumerablecollectionsimmutableienumerable

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/jeydotc-jeydotc-enumerable/health.svg)

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

###  Alternatives

[qaribou/immutable.php

Immutable, highly-performant collections, well-suited for functional programming and memory-intensive applications.

344146.0k](/packages/qaribou-immutablephp)[vistik/typed-collections

A simple way to create typed collections in PHP - build on Illuminate\\Support\\Collection

1128.2k5](/packages/vistik-typed-collections)[rotexsoft/versatile-collections

A collection package that can be extended to implement things such as a Dependency Injection Container, RecordSet objects for housing database records, a bag of http cookies, or technically any collection of items that can be looped over and whose items can each be accessed using array-access syntax or object property syntax.

186.0k1](/packages/rotexsoft-versatile-collections)

PHPackages © 2026

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