Zend Framework 2 without MVC

Posted by Luke on Stack Overflow See other posts from Stack Overflow or by Luke
Published on 2013-06-24T21:20:56Z Indexed on 2013/06/24 22:21 UTC
Read the original article Hit count: 134

Filed under:
|

I'm currently using Zend Framework 2 for all my web tier development using the MVC module that's shipped with the framework.

However, I want to implement my business logic in a separate layer, call it the business tier which is a non HTTP layer and expose it through AMQP, and I'd like to reuse my knowledge of PHP for implementing this. Since there is a lot of "stuff" that I need in this business layer such as configuration, a service manager, database access, etc, etc, I'd like to use all the goodies shipped with Zend Framework 2 for this.

Are there any examples or tutorials out there on how to build a Zend Framework 2 application that is not build for the web tier and doesn't require the MVC module?

© Stack Overflow or respective owner

Related posts about zend-framework2

Related posts about non-mvc