I'm in a development team of 4. We have been using codeigniter over the last six months and found some problems. Soon we will have two new developers so now is a good time to learn new tools.
Forms require a lot of work. Things like images, and forms which dynamically change on the page cause a lot of issues with the form generation library. Most of our work is creating forms so this is a major pain. Really looking for something which makes defining, creating and validating the forms easy.
Lack of basic CRUD support. It's not hard to write but this is boiler plate and takes time away from working on business logic. Models should be quick to setup, perhaps an ORM is required?
Object Orientation seems lacking in codeigniter, there is basically a large singleton class (
$this) and no real objects. To me it seems very procedural.The file structure does not allow for modules. I need to bundle the controllers, views and models for a particular feature of a website. Code igniter has one controllers directory.
It would be great if we could override modules without changing anything within the module folder. I'm used to doing this in Drupal. We make a lot of small websites which usually have a few changes to modules.
I have not used larger frameworks like zend and symfony so I'm really trying to get some perspective of what features I should be looking for. Kohana looks like it fixes a number of these problems but I don't know if it's worth spending the time switching to similar framework.