2017 © Pedro PelĂĄez
 

library collection

Data collection manager

image

wok/collection

Data collection manager

  • Tuesday, March 7, 2017
  • by graphidev
  • Repository
  • 1 Watchers
  • 0 Stars
  • 45 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 7 Versions
  • 2 % Grown

The README.md

Collection

This library is lightweight collection manager., (*1)

SensioLabsInsight, (*2)

Diclaimer : This component is part of the WOK (Web Operational Kit) framework. It however can be used as a standalone library., (*3)

Install

It is recommanded to install that component as a dependency using Composer :, (*4)

composer require wok/collection

You're also free to get it with git or by direct download while this package has no dependencies., (*5)

git clone https://github.com/web-operational-kit/collection.git

Features

As this component roles are to be a data container and manager, it's features are related to collection data manipulation., (*6)

However, it has also been developed to be a dependency that other components can require and extend., (*7)

Usage

``` php // Register the data collection $collection = new \WOK\Collection\Collection(array( 'a' => 'value', 'b' => 'value', 'c' => 'value', ));, (*8)

$collection->add(array('key'=>'value')); // Add some data, (*9)

$exists = $collection->has($key); // Check if a data exists by it's key $value = $collection->get($key); // Get a data value by it's key $collection->remove($key); // Remove a data, (*10)

$data = $collection->all(); // Get the all data collection as array, (*11)

// Iterate through the collection foreach($collection as $key => $data) {, (*12)

// Play with the data list

} ```, (*13)

The Versions

07/03 2017

dev-develop

dev-develop

Data collection manager

  Sources   Download

MIT

by SĂ©bastien ALEXANDRE

07/03 2017

dev-master

9999999-dev

Data collection manager

  Sources   Download

MIT

by SĂ©bastien ALEXANDRE

07/03 2017

v1.0.4

1.0.4.0

Data collection manager

  Sources   Download

MIT

by SĂ©bastien ALEXANDRE

14/11 2016

v1.0.3

1.0.3.0

Data collection manager

  Sources   Download

MIT

by SĂ©bastien ALEXANDRE

13/11 2016

v1.0.2

1.0.2.0

Data collection manager

  Sources   Download

MIT

by SĂ©bastien ALEXANDRE

13/09 2016

v1.0.1

1.0.1.0

Data collection manager

  Sources   Download

MIT

by SĂ©bastien ALEXANDRE

13/09 2016

v1.0.0

1.0.0.0

wok/collection

  Sources   Download

MIT

by SĂ©bastien ALEXANDRE