Mark Gerarts

Results 29 comments of Mark Gerarts

That's definitely a step in the right direction. Using a `NoNamingConventions` is an option, although it might be more fitting to put this logic in a `NameResolver`, either adding logic...

You should be able to do this in a configuration class: ```php class AutoMapperConfig implements AutoMapperConfiguratorInterface { public function configure(AutoMapperConfigInterface $config): void { $config->getOptions()->createUnregisteredMappings(); } } ``` However, it might...

Hi @leroy0211! Yes, this would be pretty useful. For this to work we need to be able to map from and to scalars. From there it would simply be a...

I'm running into the same issue on NixOS 20.09. I *tried* working around it by using an older version: ``` nix-env -f https://github.com/obsidiansystems/obelisk/archive/v0.9.0.1.tar.gz -iA command ``` This actually installs fine,...

I tried the installation again today, and I've got the starter app running without any problems! I'm guessing it was an upstream issue that's fixed.

I simply tried running the installation again: ``` $ nix-env -f https://github.com/obsidiansystems/obelisk/archive/master.tar.gz -iA command ``` After which `ob init` and `ob run` etc. just worked. As to what changed is...

That's a very good question actually... It does seem I specifically added this behavior, as per [this commit](https://github.com/mark-gerarts/automapper-plus/commit/ac466ccea2d3617791438955562e91cc013f431a#diff-9ef79e8d8aec5666a99b4b15470498ede115b03147bc8bdcbbce4a742a09f8a1R43). The commit doesn't mention any reason, nor are there any related issues...

Hi @ahmed-bhs, I'm not really a fan of maintaining several branches. Is it an option that you depend on a specific commit of the library? If so I suggest you...

Hi @brendanjerwin, this is a good question. It is not part of the library right now. Do you want every property to have an explicit operation defined, or is it...