A small collection wrapper for working with arrays in PHP

Maintainers

Package info

github.com/enfantsrichesdeprimess/my-project

pkg:composer/enfantsrichesdeprimess/my-project

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2026-05-06 10:25 UTC

This package is auto-updated.

Last update: 2026-05-06 10:29:13 UTC


README

Small immutable collection wrapper for array operations.

Install

composer require enfantsrichesdeprimess/my-project

Example

use Practice\Collect\Collect;

$names = Collect::make(["Ann", "Bob", "Kate"])
    ->filter()
    ->implode(", ");