views:

27

answers:

1

Hello, I'm looking for a PHP framework that supports CouchDB pretty well natively, I understand from here that Ruby-on-rails or Django would work best, but I am looking for a PHP solution, as I'd like to not have to learn a new language just yet.

features needed outside of CouchDB are minimal:

  • MVC architecture
  • Templating engine for the Views (Although i could hack this in myself)
+2  A: 

Actually CouchDB will be only the part of your application dealing with persistence, so your best bet is to choose your favorite framework (like Zend Framework or CodeIgniter) for MVC and templating, them choose a PHP CouchDB library to do your persistence/model layer instead of a regular ORM.

diogok
That sounds pretty great.
Rixius