├── .github └── FUNDING.yml ├── .gitignore ├── LICENCE ├── README.md ├── composer.json ├── phpstan.neon └── src ├── NestableCollection.php └── NestableTrait.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: typicms 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypiCMS/NestableCollection/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypiCMS/NestableCollection/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypiCMS/NestableCollection/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypiCMS/NestableCollection/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/NestableCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypiCMS/NestableCollection/HEAD/src/NestableCollection.php -------------------------------------------------------------------------------- /src/NestableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypiCMS/NestableCollection/HEAD/src/NestableTrait.php --------------------------------------------------------------------------------