├── .circleci └── config.yml ├── .github ├── .media │ ├── logo.png │ └── screenshots │ │ ├── candyland.png │ │ ├── pirateislands.png │ │ ├── void.png │ │ └── winterwonder.png ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .poggit.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── icon.png ├── phpstan.neon ├── plugin.yml └── src └── surva └── fancygenerators ├── FancyGenerators.php └── generator ├── candyland ├── CandyLand.php ├── object │ └── CandyTree.php └── populator │ └── CandyTreePopulator.php ├── exception └── ChunkPopulateException.php ├── pirateislands ├── PirateIslands.php └── populator │ └── JungleTreePopulator.php ├── void └── VoidGenerator.php └── winterwonder ├── WinterWonder.php ├── object ├── ChristmasTree.php └── Gift.php └── populator ├── ChristmasTreePopulator.php └── GiftPopulator.php /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/.media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/.github/.media/logo.png -------------------------------------------------------------------------------- /.github/.media/screenshots/candyland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/.github/.media/screenshots/candyland.png -------------------------------------------------------------------------------- /.github/.media/screenshots/pirateislands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/.github/.media/screenshots/pirateislands.png -------------------------------------------------------------------------------- /.github/.media/screenshots/void.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/.github/.media/screenshots/void.png -------------------------------------------------------------------------------- /.github/.media/screenshots/winterwonder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/.github/.media/screenshots/winterwonder.png -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IDE project folder 2 | /.idea 3 | 4 | # Composer dependencies 5 | /vendor 6 | -------------------------------------------------------------------------------- /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/.poggit.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/composer.lock -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/icon.png -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/phpstan.neon -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/plugin.yml -------------------------------------------------------------------------------- /src/surva/fancygenerators/FancyGenerators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/src/surva/fancygenerators/FancyGenerators.php -------------------------------------------------------------------------------- /src/surva/fancygenerators/generator/candyland/CandyLand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/src/surva/fancygenerators/generator/candyland/CandyLand.php -------------------------------------------------------------------------------- /src/surva/fancygenerators/generator/candyland/object/CandyTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/src/surva/fancygenerators/generator/candyland/object/CandyTree.php -------------------------------------------------------------------------------- /src/surva/fancygenerators/generator/candyland/populator/CandyTreePopulator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/src/surva/fancygenerators/generator/candyland/populator/CandyTreePopulator.php -------------------------------------------------------------------------------- /src/surva/fancygenerators/generator/exception/ChunkPopulateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/src/surva/fancygenerators/generator/exception/ChunkPopulateException.php -------------------------------------------------------------------------------- /src/surva/fancygenerators/generator/pirateislands/PirateIslands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/src/surva/fancygenerators/generator/pirateislands/PirateIslands.php -------------------------------------------------------------------------------- /src/surva/fancygenerators/generator/pirateislands/populator/JungleTreePopulator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/src/surva/fancygenerators/generator/pirateislands/populator/JungleTreePopulator.php -------------------------------------------------------------------------------- /src/surva/fancygenerators/generator/void/VoidGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/src/surva/fancygenerators/generator/void/VoidGenerator.php -------------------------------------------------------------------------------- /src/surva/fancygenerators/generator/winterwonder/WinterWonder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/src/surva/fancygenerators/generator/winterwonder/WinterWonder.php -------------------------------------------------------------------------------- /src/surva/fancygenerators/generator/winterwonder/object/ChristmasTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/src/surva/fancygenerators/generator/winterwonder/object/ChristmasTree.php -------------------------------------------------------------------------------- /src/surva/fancygenerators/generator/winterwonder/object/Gift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/src/surva/fancygenerators/generator/winterwonder/object/Gift.php -------------------------------------------------------------------------------- /src/surva/fancygenerators/generator/winterwonder/populator/ChristmasTreePopulator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/src/surva/fancygenerators/generator/winterwonder/populator/ChristmasTreePopulator.php -------------------------------------------------------------------------------- /src/surva/fancygenerators/generator/winterwonder/populator/GiftPopulator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/survanetwork/FancyGenerators/HEAD/src/surva/fancygenerators/generator/winterwonder/populator/GiftPopulator.php --------------------------------------------------------------------------------