├── .gitattributes ├── .github └── workflows │ ├── run-cs-fix.yml │ └── run-tests.yml ├── .gitignore ├── composer.json ├── license.md ├── phpunit.xml ├── readme.md └── src ├── CrossJoinSequence.php ├── Data.php ├── Factory.php ├── HasFactory.php └── Sequence.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectoryTree/Dummy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/run-cs-fix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectoryTree/Dummy/HEAD/.github/workflows/run-cs-fix.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectoryTree/Dummy/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | .composer 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectoryTree/Dummy/HEAD/composer.json -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectoryTree/Dummy/HEAD/license.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectoryTree/Dummy/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectoryTree/Dummy/HEAD/readme.md -------------------------------------------------------------------------------- /src/CrossJoinSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectoryTree/Dummy/HEAD/src/CrossJoinSequence.php -------------------------------------------------------------------------------- /src/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectoryTree/Dummy/HEAD/src/Data.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectoryTree/Dummy/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/HasFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectoryTree/Dummy/HEAD/src/HasFactory.php -------------------------------------------------------------------------------- /src/Sequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DirectoryTree/Dummy/HEAD/src/Sequence.php --------------------------------------------------------------------------------