Module Example of Mezzio

Hello every one

I need some repo links or example of codes, for a Mezzio modules, we have a plan to move all modules from MVC to Mezzio, I need review some examples and other developer works

If you develop any module or know about any module, please share link here

Thanks

1 Like

A list will be added to the website shortly:

1 Like

Mezzio do not use the Module class it uses config providers:

Examples can be found in the packages of laminas, for example laminas-filter:

Some more examples:


Another important aspect is that there is no event manager as in laminas-mvc, as this is not necessary for processing an application due to the middleware concept.
Sure, you can use event manager but Mezzio does not need this.

GitHub - Ecodev/my-ichtus: myIchtus API and FE app is a real-life application based on Mezzio. It is mostly a GraphQL API, so you won’t find much of the typical view rendering things, but it can still give you ideas on what to do, or not to do (!).

The app also uses a custom a custom library, Felix, that provides a few useful thing for our use-cases. That lib is not really meant to be used by other people, but it can also give you some ideas…

See:

1 Like

Thank you very much for the links