vote up 11 vote down star
13

I currently use CodeIgniter for an MVC framework in PHP because it's a very bare framework, is there anything even more bare than CodeIgniter?

flag

12 Answers

vote up 16 vote down check

There's always Rasmus Lerdorf's "No-Framework MVC Framework". That's about as "light" as you can get.

link|flag
vote up 0 vote down

The lightest View-Controller framework that I'm aware of it's called Doo and it's made by me. :P

link|flag
vote up 1 vote down

You could also try using phpDataMapper as your Model layer. The entire codebase is under 100k, uncompressed.

link|flag
vote up 1 vote down

Facing the same question, I wrote my own.

At 400 self-documented lines of code, it has a nice view/controller relationship and some helpful model functions. I put a task management app I'm building into it, so you could svn that down and look at it if you like.

link|flag
vote up 1 vote down

I have seen tinymvc Although I haven't used it yet.

link|flag
vote up 2 vote down

You could use something like TinyMVC or the already mentioned LightVC or you could use an ORM such as Doctrine for the Model and a template system like Smarty or Dwoo for the Views and for the Controller you could use Zend_Controller or Horde Routes

link|flag
vote up 9 vote down

I've been using LightVC a lot lately and it makes CodeIgniter look like a heavyweight. Beware that it's just a view-controller framework. If you want some kind of data access support, you'll need your own ORM layer. I've been using CoughPHP for that. It's written by the same guy and fairly lightweight as well.

Now keep in mind, LightVC and CoughPHP give you MVC only. No helpers, none of that. Just basic MVC organization and routing. In my case that's exactly what I wanted. From what you've described it sounds like it's exactly what you want as well.

link|flag
vote up 8 vote down

make your own! it's fun!

link|flag
It may not be feasible though. – conmulligan Sep 26 '08 at 23:44
1  
I started building my own framework, but eventually got frustrated re-inventing the wheel, I started using Code Igniter and found I had learnt a lot from my own developments. – Jon Winstanley Mar 10 at 12:53
vote up 2 vote down

Based on your question, I'd say you should try to create an MVC patterned app using just PHP/MySQL.

I think you'd gain a lot of valuable insight, and it would probably generate much more specific questions.

link|flag
vote up 2 vote down

From what I can tell, CodeIgniter is about as light as they get for PHP frameworks. I've tried it out a little and found it to be reasonably fast compared to CakePHP.

From reddit links a few months back: PHP framework comparison benchmarks. With caching, CodeIgniter handled about 1/3 fewer requests/second than bare PHP vs. 1/10 with Zend and 1/50 for CakePHP. Depending on traffic levels you're expecting though, any of these may work just fine, and easier development may be worth the performance hit CakePHP comes with.

link|flag
Thanks for the link! :-) – Christian DavĂ©n Sep 30 '08 at 10:16
vote up 5 vote down

You probably want to roll your own solution. I've written a small set of php pages that uses MVC (kinda) as controller/view scripts, a set of functions for data retrieval and a central index.php script to map urls to the proper files.

Of course, a good question is why do you need anything lighter? If you are having performance issues, I doubt a lighter framework is the solution.

link|flag
Heh, that's a good point, since lighter doesn't always mean lighter on resources. Might mean lighter on maintenance though, I suppose. – Tchalvak Nov 10 at 16:08
vote up 1 vote down

Is there a reason you are looking for anything lighter? I personally found code-igniter to be too low-key and it simply doesn't do enough for me - which is the purpose of a framework anywany. Also, I didn't find its code quality to be in the same class of other profilic frameworks such as Zend's and Symfony.

link|flag
I have not needed to use most of the functions of the framework, the MVC however is useful because it separates layout from processing. – Teifion Sep 26 '08 at 21:15
You can use Zend's then, which is modular - you can cherry pick only the components you want to use. – Eran Galperin Sep 26 '08 at 21:17
@Eran Galperin which features of zend / symfony do you use that you found lacking in codeigniter? (for interest sake) – Owen Sep 26 '08 at 21:17
I use mostly Zend's - The MVC, Db, Caching, Mail, Date, Authorization, Session, Filter / Validate. For some projects I use for some less - its modular architecture is very effective. – Eran Galperin Sep 26 '08 at 21:22
And regarding code igniter - I just didn't like what I saw in the source code (when I use a framework I usually dig in the internals). – Eran Galperin Sep 26 '08 at 21:23
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.