This repository has been archived by the owner on Jan 24, 2022. It is now read-only.
v3.0.0
- Factories now are subclasses of class
Factrory
- Attributes now are decorated with
@field
,@hasOne
,@hasMany
and@sequenceItem
. - Factories extending now works just like simple class extending:
class ParentFactory extends Factory {}
class ChildFactory extends ParentFactory {}