gitextract_r60zc_y7/ ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── .styleci.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── composer.json ├── phpunit.xml ├── readme.md ├── src/ │ ├── ArgumentParser.php │ ├── Concerns/ │ │ ├── EnhancedCount.php │ │ ├── EnhancedRelationships.php │ │ └── EnhancedSequence.php │ ├── Factory.php │ ├── FactoryServiceProvider.php │ ├── HasFactory.php │ ├── RelationRequest.php │ └── helpers.php └── tests/ ├── Feature/ │ ├── FactoryTest.php │ ├── RelationsTest.php │ └── StateTest.php ├── Stubs/ │ ├── Company.php │ ├── Customer.php │ ├── Department.php │ ├── HasFactory.php │ ├── Image.php │ └── User.php ├── TestCase.php └── database/ ├── factories/ │ ├── CompanyFactory.php │ ├── CustomerFactory.php │ ├── DepartmentFactory.php │ └── UserFactory.php └── migrations/ └── 2018_04_27_000000_create_test_tables.php