laravel-test-factory-helper
laravel-test-factory-helper copied to clipboard
Generate Laravel test factories from your existing models
This PR updates the blade template used by the factory to a Laravel 8 version, and changes the default model source to `app/Models` I haven't added a configuration option for...
add support for laravel 8
When upgrading from larvel 7 to laravel 8: ```Conclusion: don't install laravel/framework v8.0.0 (conflict analysis result) - mpociot/laravel-test-factory-helper v2.1.0 requires illuminate/filesystem ^6.0|^7.0 -> satisfiable by illuminate/filesystem[v6.0.0, ..., 6.x-dev, v7.0.0, ...,...
Hey @jasonmccreary , i made a few changes for the coming Laravel 8 update. Unfortunately I had not the time to add tests.
Conflicts with **fakerphp/faker**, because it requires higher version if I understand correctly. **I do not want to do any workarounds**, because later upgrading to new Laravel LTS version might cause...
Laravel 8 is coming next week and it introduces [class based](https://github.com/laravel/framework/blob/8.x/src/Illuminate/Database/Console/Factories/stubs/factory.stub) factories. Are there any plans to support it?
If the application is connected to an postgres DB then the query that existed wouldn't suffice, because postgres has a different syntax. I added a simple if clause to check...
Hi, This PR is mainly created after a short patch allowed us to scratch our own itch. We have an old legacy database and a newer database which is our...