├── .github └── workflows │ └── test.yml ├── .gitignore ├── .styleci.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── banner-1.png ├── 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 /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/LICENSE.md -------------------------------------------------------------------------------- /banner-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/banner-1.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/readme.md -------------------------------------------------------------------------------- /src/ArgumentParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/src/ArgumentParser.php -------------------------------------------------------------------------------- /src/Concerns/EnhancedCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/src/Concerns/EnhancedCount.php -------------------------------------------------------------------------------- /src/Concerns/EnhancedRelationships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/src/Concerns/EnhancedRelationships.php -------------------------------------------------------------------------------- /src/Concerns/EnhancedSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/src/Concerns/EnhancedSequence.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/FactoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/src/FactoryServiceProvider.php -------------------------------------------------------------------------------- /src/HasFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/src/HasFactory.php -------------------------------------------------------------------------------- /src/RelationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/src/RelationRequest.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/src/helpers.php -------------------------------------------------------------------------------- /tests/Feature/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/Feature/FactoryTest.php -------------------------------------------------------------------------------- /tests/Feature/RelationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/Feature/RelationsTest.php -------------------------------------------------------------------------------- /tests/Feature/StateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/Feature/StateTest.php -------------------------------------------------------------------------------- /tests/Stubs/Company.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/Stubs/Company.php -------------------------------------------------------------------------------- /tests/Stubs/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/Stubs/Customer.php -------------------------------------------------------------------------------- /tests/Stubs/Department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/Stubs/Department.php -------------------------------------------------------------------------------- /tests/Stubs/HasFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/Stubs/HasFactory.php -------------------------------------------------------------------------------- /tests/Stubs/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/Stubs/Image.php -------------------------------------------------------------------------------- /tests/Stubs/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/Stubs/User.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/database/factories/CompanyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/database/factories/CompanyFactory.php -------------------------------------------------------------------------------- /tests/database/factories/CustomerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/database/factories/CustomerFactory.php -------------------------------------------------------------------------------- /tests/database/factories/DepartmentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/database/factories/DepartmentFactory.php -------------------------------------------------------------------------------- /tests/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/database/factories/UserFactory.php -------------------------------------------------------------------------------- /tests/database/migrations/2018_04_27_000000_create_test_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makeabledk/laravel-factory-enhanced/HEAD/tests/database/migrations/2018_04_27_000000_create_test_tables.php --------------------------------------------------------------------------------