Mateusz Tymek

Results 7 comments of Mateusz Tymek

Good work! What's your plan on unit tests? I would suggest adding them on every step, so that "Album" module will be fully covered after each part. This would show...

How do you configure `FormElementManager`? Do you have a factory that injects it with configuration? I did something similar here: https://github.com/mtymek/blast-input-filter - I configure validator, filter and input filter plugin...

So, basically you're missing a factory that does the code you put in `config.php` ;) By itself, `FormElementManager` doesn't know that it should look for `form_elements` config key. My package...

I encountered the same issue today, and cleaning `node_modules` or `pnpm prune` did not help. Switching the "file sharing implementation" (in Docker settings) from VirtioFS to gRPC FUSE has resolved...

At this moment `zend-console` does not support "alternative parameters". You can only use literal alternative: `( foo | bar )` or flag alternative: `( -x | -c )` I can't...

Thanks for your explanation. So, if I understand it correctly, ZF3 MVC will still be based on `zend-http`'s HTTP abstractions instead of PSR-7 (perhaps with some bridge, like in Symfony)?...

You don't need the GH MCP - OpenCode works pretty well with Github CLI (`gh`) tool. Few typical prompts that I use: * Commit, push and create a PR *...