├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src └── LazyContainer.php └── test └── LazyContainerTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /vendor 3 | /composer.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/lazy-container/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/lazy-container/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/lazy-container/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/lazy-container/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/lazy-container/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/LazyContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/lazy-container/HEAD/src/LazyContainer.php -------------------------------------------------------------------------------- /test/LazyContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshotpl/lazy-container/HEAD/test/LazyContainerTest.php --------------------------------------------------------------------------------