briward / itemlist
Provides a way to build strongly typed lists of values. Provides methods to search, sort, and manipulate lists. Heavily inspired by the .NET List<T> class.
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/briward/itemlist
Requires
- php: ^5.6 || ^7.0
Requires (Dev)
- phpunit/phpunit: 5.4.*
This package is not auto-updated.
Last update: 2025-10-12 01:08:16 UTC
README
Provides a way to build strongly typed lists of values. Provides methods to search, sort, and manipulate lists. Heavily inspired by the .NET List class.
Installation
composer require briward/itemlist
Example usage
use Briward\ItemList\ItemList;
class Foo {}
$list = new ItemList('Foo');
$list->add(new Foo());
print_r($list->items());