-
Notifications
You must be signed in to change notification settings - Fork 71
Closed
Description
I tried to use your module with zf 2.3.2dev and when I execute the import command the module delete all my data but, doesn't create anything, that because the command:
$paths = $sm->get('doctrine.configuration.fixtures');
in Module.php doesn't work.
Just change it with:
$config = $sm->get('Config');
$paths = $config['doctrine']['configuration']['fixtures'];
and please change the documentation for the reference of fixture paths.