Hello, I have been looking for a good PHP MVC framework that is interested primarily in speed, security, and implementing the MVC design architectural style.
Some of the biggest beefs I have with a lot of the mainstream MVC frameworks out there is that they:
put view logic in controllers, or do things like:
controller:
$form = "a form here";
view:
echo $form;
- I would prefer to write my HTML as HTML, and not as PHP, same goes for CSS and JavaScript
- fail to integrate well with 3rd party libraries
- leave me with a lack of options about how I want to do my database queries
- rely heavily on command line PHP
The ideal framework would be something not necessarily lightweight, but something that concentrates mostly on implementing the MVC architectural style.
Has anyone used a framework that seems to fit this description?