Releases: butschster/entity-faker
Releases · butschster/entity-faker
v2.0.0
v0.9.1
Fixed Seeds::first method
Added ability to generate array of entities and store them into memory
v0.9 Added ability to generate array of entities
Added ability to pass options to EntityFactory store method
v0.6 Merge branch 'master' of github.com:butschster/entity-faker
Added ability to export raw data to php files
// For a single entity
$path = $factory->of(SuperUser::class)->times(1000)->export('path/to/store');
// path/to/store/SuperUser.php
// For all defined entities
$patches = $factory->export('path/to/store', 1000);
//[
// User::class => path/to/store/User.php,
// SuperUser::class => path/to/store/SuperUser.php,
//];Added ability to get EntityFactory object
Fix problems with callbacks
Added ability to run callbacks before entity creation
v0.3 Added ability to run callbacks before entity creation
v0.2.1
fix
Added ability to run after creating callbacks
v0.2 Added ability to run after creating callbacks
First release
v0.1 Update readme