-
Notifications
You must be signed in to change notification settings - Fork 70
Open
Description
Hello,
The configuration for Registering Fixtures
return array(
'data-fixture' => array(
'ModuleName_fixture' => __DIR__ . '/../src/ModuleName/Fixture',
)
);does not work and the fixtures files are not loaded. It should be
return array(
'doctrine' => array(
'fixture' => array(
'ModuleName_fixture' => __DIR__ . '/../src/ModuleName/Fixture',
)
),
);and then everything works fine.
Please update the documentation :)
Thanks!