HIXMAN / Collection

A dataset handling library for PHP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Collection

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.

Install

Via Composer

$ IN PROGRESS

Usage

$collection = new Collection([1,2,3,4,5,6,7,8,9,10]);

$filteredCollection = $this->collection->filter(function ($item)
{
    return $item % 2 == 0;
});

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

A dataset handling library for PHP

License:MIT License


Languages

Language:PHP 100.0%