Thomas Rieschl
Thomas Rieschl
@svycka, @MethorZ: You can give: https://github.com/neilime/zf-twbs-helper-module a try.
Isn't this what [laminas-mvc-middleware](https://docs.laminas.dev/laminas-mvc-middleware/) already does?
Right, putting it in the readme of the docker repo is a good idea 🙂 @Nyholm what do you think?
@christaggart we have the following constraints in our project: ``` "zendframework/zend-mvc": "^3.1", "zendframework/zend-stratigility": "
BTW: I just saw that the `composer.json` of the current master [also suggests that](https://github.com/zendframework/zend-mvc/blob/c3edbac00aacf332c5d4004f69e3c07dfb43da81/composer.json#L49).
Thanks, @Xerkus I also noticed that. But I _do_ need the ORM stuff (mostly for clearing cache). So the only thing I can think of is to check the content...
> @rieschl did you find a better way to do this? I am using `$argv[0]` as well since I couldn't find a better solution. I use the `cli-config.php` from the...
> In theory, you'd need to reference the original source and license in the location where you copy the code to. It's in the files, so that should be satisfied.,...
Hm, @Ocramius if you're bored, you could extract all non-ORM stuff (basically everything except EntityManager- and Migration-stuff) into a separate base package which I can use directly in the DoctrineMongoODMModule....
Update: I went another way with DoctrineMongoODMModule (not using this factories), so it's not an issue, there. But as the DoctrineMongoODMModule needs laminas-mvc I wrote [a separate package](https://github.com/eventjet/eventjet-psr-container-doctrine-odm/pull/1) like this...