├── .env.travis ├── .github └── FUNDING.yml ├── .gitignore ├── .styleci.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── readme.md ├── resources └── views │ └── factory.blade.php ├── src ├── Commands │ ├── PrefillAll.php │ └── PrefillFactory.php ├── LaravelFactoryPrefillServiceProvider.php └── TypeGuesser.php └── tests ├── Fixtures └── Models │ ├── Book.php │ ├── Car.php │ ├── Habit.php │ ├── NotAModel.php │ └── User.php ├── PrefillAllTest.php ├── PrefillFactoryTest.php ├── TestCase.php ├── TypeGuesserTest.php └── migrations ├── 0000_00_00_000001_create_users_table.php ├── 0000_00_00_000002_create_habits_table.php └── 0000_00_00_000003_create_cars_table.php /.env.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/.env.travis -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /vendor 3 | .env 4 | .phpunit.result.cache -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/LICENSE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/readme.md -------------------------------------------------------------------------------- /resources/views/factory.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/resources/views/factory.blade.php -------------------------------------------------------------------------------- /src/Commands/PrefillAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/src/Commands/PrefillAll.php -------------------------------------------------------------------------------- /src/Commands/PrefillFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/src/Commands/PrefillFactory.php -------------------------------------------------------------------------------- /src/LaravelFactoryPrefillServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/src/LaravelFactoryPrefillServiceProvider.php -------------------------------------------------------------------------------- /src/TypeGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/src/TypeGuesser.php -------------------------------------------------------------------------------- /tests/Fixtures/Models/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/tests/Fixtures/Models/Book.php -------------------------------------------------------------------------------- /tests/Fixtures/Models/Car.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/tests/Fixtures/Models/Car.php -------------------------------------------------------------------------------- /tests/Fixtures/Models/Habit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/tests/Fixtures/Models/Habit.php -------------------------------------------------------------------------------- /tests/Fixtures/Models/NotAModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/tests/Fixtures/Models/NotAModel.php -------------------------------------------------------------------------------- /tests/Fixtures/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/tests/Fixtures/Models/User.php -------------------------------------------------------------------------------- /tests/PrefillAllTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/tests/PrefillAllTest.php -------------------------------------------------------------------------------- /tests/PrefillFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/tests/PrefillFactoryTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/TypeGuesserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/tests/TypeGuesserTest.php -------------------------------------------------------------------------------- /tests/migrations/0000_00_00_000001_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/tests/migrations/0000_00_00_000001_create_users_table.php -------------------------------------------------------------------------------- /tests/migrations/0000_00_00_000002_create_habits_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/tests/migrations/0000_00_00_000002_create_habits_table.php -------------------------------------------------------------------------------- /tests/migrations/0000_00_00_000003_create_cars_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Naoray/laravel-factory-prefill/HEAD/tests/migrations/0000_00_00_000003_create_cars_table.php --------------------------------------------------------------------------------