├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── ORM │ └── LazyLoadEntityTrait.php └── tests ├── Fixture ├── ArticlesFixture.php ├── ArticlesTagsFixture.php ├── AuthorsFixture.php ├── CommentsFixture.php ├── TagsFixture.php └── UsersFixture.php ├── TestCase └── ORM │ └── LazyLoadEntityTraitTest.php ├── bootstrap.php ├── schema.sql └── test_app └── Model ├── Entity ├── Comment.php ├── LazyLoadableEntity.php ├── TablelessEntity.php └── User.php └── Table └── ArticlesTable.php /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/ORM/LazyLoadEntityTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/src/ORM/LazyLoadEntityTrait.php -------------------------------------------------------------------------------- /tests/Fixture/ArticlesFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/Fixture/ArticlesFixture.php -------------------------------------------------------------------------------- /tests/Fixture/ArticlesTagsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/Fixture/ArticlesTagsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/AuthorsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/Fixture/AuthorsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/CommentsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/Fixture/CommentsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/TagsFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/Fixture/TagsFixture.php -------------------------------------------------------------------------------- /tests/Fixture/UsersFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/Fixture/UsersFixture.php -------------------------------------------------------------------------------- /tests/TestCase/ORM/LazyLoadEntityTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/TestCase/ORM/LazyLoadEntityTraitTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/schema.sql -------------------------------------------------------------------------------- /tests/test_app/Model/Entity/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/test_app/Model/Entity/Comment.php -------------------------------------------------------------------------------- /tests/test_app/Model/Entity/LazyLoadableEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/test_app/Model/Entity/LazyLoadableEntity.php -------------------------------------------------------------------------------- /tests/test_app/Model/Entity/TablelessEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/test_app/Model/Entity/TablelessEntity.php -------------------------------------------------------------------------------- /tests/test_app/Model/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/test_app/Model/Entity/User.php -------------------------------------------------------------------------------- /tests/test_app/Model/Table/ArticlesTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyharris/cakephp-lazyload/HEAD/tests/test_app/Model/Table/ArticlesTable.php --------------------------------------------------------------------------------