kdyby / doctrine-collections-lazy
Lazy collection for doctrine/collections
Installs: 2 723
Dependents: 1
Suggesters: 5
Security: 0
Stars: 2
Watchers: 4
Forks: 1
Open Issues: 0
Requires
- php: ^5.6 || ^7.0
- doctrine/collections: ~1.2
Requires (Dev)
- nette/tester: ~1.7
This package is auto-updated.
Last update: 2024-10-22 04:41:48 UTC
README
This package provides an implementation of lazy collection for Doctrine/Collections.
Installation
The best way to install Kdyby/DoctrineCollectionsLazy is using Composer:
$ composer require kdyby/doctrine-collections-lazy
Usage
$collection = new LazyCollection(function () { return [1 => 2, 3 => 4]; });
Homepage http://www.kdyby.org and repository http://github.com/Kdyby/DoctrineCollectionsLazy.