We are starting a new project that will make use of RESTful services to talk to web clients (AngularJS) and mobile platforms (Android and iOS).
The idea is to hide the bussiness logic inside the RESTful services and to use the same code for both web client and mobile platforms.
Our server is being built in PHP using Zend Framework 3 (I´m new to the framework). The application will be have dozen of entities with hundreds of services.
I´ve noted on the web that is seems that ZF2 has a REST module, but I can´t find one for ZF3 (at least not in the documentation).
Some questions I have:
- What is the best path to provide RESTful services using ZF3 ?
- Shall I install a ZF module ? Is there something ready to be used that comes with ZF3 ?
- Shall I create a Module in the code just for my services ? Shall the other modules call this REST module for business logic ?