Mark Gerarts

Results 36 comments of Mark Gerarts

Thanks to #27, this should be fixed on master. Can you confirm this is working? I'll tag a new version then.

Changes are available starting from release `1.5.0`.

Hi @fractalzombie, can you provide a code sample for this issue? Or do you mean something like this: ```php $config->registerMapping(Employee::class, EmployeeListView::class) ->copyFrom(Employee::class, EmployeeDto::class); $config->registerMapping(Employee::class, EmployeeDto::class) ->forMember('fullName', function (Employee $source) {...

This is a late response and probably no longer relevant for you, but maybe it helps someone in the future. A working config where the controller node is also an...

Yes that's a good idea! Feel free to open a PR, otherwise I'll look into this after some time.

I ran in the same issue. As a workaround I used `ME_CONFIG_MONGODB_URL=`. For example, connecting to a locally installed database: ```bash docker run \ --network host \ -e ME_CONFIG_MONGODB_URL="mongodb://localhost:27017/app" \...