I have a Zend Framework 2 project with Doctrine 2 that is set up to use PSR-4 auto-loading:
"autoload": {
"psr-4": {
"Application\\": "module/Application/src/"
}
}
When I configure my module's export path in Skipper, I set the 'Relative Export Path' like this: ..\..\MyApp\module\Application\src\
and set the filename format to subdirectories-by-namespace
The problem is that it exports the files to C:\...\MyApp\module\Application\src\Application\Entity\Model\User\
when I want it to be C:\...\MyApp\module\Application\src\Entity\Model\User\
.
Feature request:
It would be nice to have an option in the config where I can define the namespace prefix like this:
