getwarp/collection

Framework-agnostic PHP collections

Maintainers

👁 tntrex

Package info

github.com/getwarp/collection

pkg:composer/getwarp/collection

Fund package maintenance!

getwarp

hustlahusky

Statistics

Installs: 934

Dependents: 2

Suggesters: 0

Stars: 3

3.1.2 2023-03-14 15:08 UTC

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 75aae2d5515b15773091c3aeb4a73eeb66e42608

maplistcollectiongenerators

This package is auto-updated.

Last update: 2026-06-14 22:07:49 UTC


README

getwarp/collection

Framework-agnostic PHP collections

GitHubPackagistInstallationUsage

Installation

Via Composer

$ composer require getwarp/collection

Usage

use Warp\Collection\Collection;
use Warp\Collection\Map;

$collection = Collection::new([0, 1, 2, 3]);
\assert(6 === $collection->sum());

$map = Map::new([
 'key' => 'value',
 'foo' => 'bar',
]);
\assert(true === $map->has('foo'));
\assert(false === $map->has('baz'));

Change log

Please see CHANGELOG for more information on what has changed recently.

Contributing

Report issues and send pull requests in the main Warp repository. Please see contributing guide and code of conduct for details.

Credits

License

The MIT License (MIT). Please see license file for more information.