Skip to content

Releases: butschster/entity-faker

v2.0.0

13 Jul 20:13
64349ff

Choose a tag to compare

What's Changed

Full Changelog: v0.9.1...v2.0.0

v0.9.1

22 Jul 15:03

Choose a tag to compare

Fixed Seeds::first method

Added ability to generate array of entities and store them into memory

21 Jul 21:22

Choose a tag to compare

v0.9

Added ability to generate array of entities

Added ability to pass options to EntityFactory store method

19 Jul 10:17

Choose a tag to compare

v0.6

Merge branch 'master' of github.com:butschster/entity-faker

Added ability to export raw data to php files

16 Jul 10:18

Choose a tag to compare

// 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

15 Jul 22:08

Choose a tag to compare

Fix problems with callbacks

Added ability to run callbacks before entity creation

15 Jul 20:18

Choose a tag to compare

v0.3

Added ability to run callbacks before entity creation

v0.2.1

15 Jul 20:12

Choose a tag to compare

fix

Added ability to run after creating callbacks

15 Jul 20:10

Choose a tag to compare

v0.2

Added ability to run after creating callbacks

First release

15 Jul 16:58

Choose a tag to compare

v0.1

Update readme