I have long been a fan of _why's Camping microframework -- lightweight, great for microscopic applications (low concurrency, easy to use and edit and maintain), which is what I do. I'd love to know if there's something similar for PHP; full-blown app frameworks like CakePHP or Symfony are very large for what I do, but I can't seem to find nothing "less".

What PHP framework would you prefer, in this situation?

link|improve this question

75% accept rate
2  
Note that as of Aug '09, _why has turned off the lights, and as such, that link no longer works. Here's Resig's eulogy: ejohn.org/blog/eulogy-to-_why – nickf Aug 27 '09 at 16:33
Camping lives now here: github.com/camping/camping – Mauricio Scheffer Jun 12 '11 at 18:02
feedback

24 Answers

up vote 10 down vote accepted

The lightest PHP framework I've used is Nice Dog, which tries to be very much like Camping, at least in spirit.

One that's slightly heavier, and has a steeper learning curve, but is incredibly fun and useful once you get it, is Konstrukt.

Neither of these include an ORM, but if you need one, I really like Doctrine. I had not seen CoughPHP before this thread, but it looks decent, and definitely lighter-weight than Doctrine.

link|improve this answer
Nice Dog is out. – Alix Axel Jan 11 '10 at 5:18
2  
using doctrine or propel on a lightweight framework is overkill. it's like building a skyscraper on stilts. – stillstanding Aug 24 '10 at 16:06
Check out Fat Free Framework. Has a couple bugs, but it sounds like v2.0 is coming out soon. – duma Mar 8 '11 at 15:32
feedback

The most light weight php framework that I am aware of is Code Igniter, which is pretty good, but still much bigger than camping. However, implementing a very simple MVC type pattern in php is pretty easy and there are a ton of articles on the web about it. For example:

And that is just what I found with a few minutes of googling. Of course, for most small php apps, you don't really need this type of stuff. You can just hack to together a single page of script and html, all in one file. Not very clean, but it gets the job done (usually... sigh).

link|improve this answer
3  
Kohana wins over Codeigniter anyday – Niteriter Nov 3 '09 at 16:45
4  
While Kohana certainly brings frameworks up to date, and adds numerous features over CI, it is really lacking documentation. Which means, unless you want to spend all your time reading framework class code to find out what it does, CI is much easier to use. – Kurucu Jan 14 '11 at 18:35
feedback

Kohana is a lightweight fork of CI. I like it better, but decide for yourself.

link|improve this answer
2  
+1 for Kohana... you should be using PHP5! – alex Jul 6 '09 at 2:21
2  
Note that Kohana (particularly v3) is still awaiting a lot of documentation, making it difficult for newcomers. I'm sure that this will improve quickly. – Kurucu Jan 14 '11 at 18:07
feedback

If you want a super lightweight PHP framework, check out LightVC. CodeIgniter looks like a bloated hog in comparison.

LightVC does not include a model component, (hence the "VC" part), however you can grab your own ORM tool like CoughPHP or Propel. CoughPHP is written by the same guy who writes LightVC, and they compliment each other extremely well.

I've been using LightVC on some of my recent projects and did some benchmarking. It's no secret that CodeIgniter smokes most other PHP frameworks. Well, LightVC smokes CodeIgniter.

Keep in mind though, LightVC is super lightweight. You're not going to get any helpers or modules with it. It's literally a view-controller framework and that's it. Nothing else.

link|improve this answer
1  
That should read "LightVC does not include a model component". Someone with edit privileges should fix that. – anshul Jul 5 '09 at 8:24
Thanks, good catch. Fixed. – Bob Somers Jul 6 '09 at 1:41
feedback

I'm not sure what qualifies as "lightweight". The PHP Fat-Free Framework is only 55KB uncompressed. In that puny size they crammed a Ruby Sinatra-like routing/controller, template engine, CAPTCHA generator, HTML forms processor, URL-based cache and SQL handler.

link|improve this answer
1  
This is the next best thing to Nice Dog – stillstanding Aug 10 '10 at 13:54
feedback

What's wrong with using full-blown app framework even for tiny tasks? They all are pretty lightweight and modular, so you can just skip unneeded modules. As all frameworks I know use lazy loading these modules will not be included at runtime.

Also, there are several advantages of using existing framework:

  • Applications tend to grow over time. At some point you may painfully realize that the custom framework is somewhat limiting to further development.
  • Programmers come, programmers go. Maintaining application based on popular framework may reduce initial learning curve cost when hiring new developer.
  • Costless upgrade. You don't need to invest a penny to get your framework upgraded to newer version.
link|improve this answer
feedback

I'm a recent CodeIgniter user myself, I like it a lot.

If you want to see real-world code that's not very difficult, you can check out this:

http://hippohx.googlecode.com/svn/trunk/src/tools/web/

Which is the source code of this website:

http://hippohx.com

link|improve this answer
Agreed. I liked using CodeIgniter, and it's very small (a single ./system/ folder). It's also a far less "rigid" framework, so if you need to throw a web-interface around some code you already have, it shouldn't require too much change. – dbr Sep 12 '08 at 10:26
feedback

I like Flourish

link|improve this answer
feedback

http://github.com/jim/fitzgerald...

link|improve this answer
Fitzgerald is a Sinatra clone. This very lightweight framework fits in one file and has only 230 lines of code. It's ideal when you wnat your routing to be flexible and break out from the hostname/controller/action schema. You can have different controller actions for GET and POST, making it ideal for REST applications. – chiborg Jan 14 '11 at 10:29
feedback

From this question:


I made this one for my own personal use, it consists of only 4 functions:

  • DB()
  • Route()
  • Singleton()
  • View()

It's inspired by NiceDog and DiBi. I use it primarily for simple websites and APIs, and I find the DB() function quite useful because it's quite easy to implement (zero configuration) and supports all the following features:

  • SQLite 3
  • Arrays for SELECTs
  • Last Insert ID for INSERTs
  • # of Affected Rows for UPDATEs, DELETEs, ...
  • Prepared Statements and Escaping similar to DiBi

I haven't written any documentation for this but it should be pretty easy to understand if you study the code for a couple of minutes.

PS: I only use this "framework" for test cases and sometimes for low traffic stuff, a full featured framework should be used if you're doing something serious.

link|improve this answer
feedback

Toro is a quite nice, very minimal PHP framework that basically just provides routing and some hooks. It also supports mobile pages and XHR requests. There are no views or models included.

link|improve this answer
+1. Toro is neat for small size webapps. – mAu Oct 29 '11 at 17:04
feedback

Check out Outglow, I had a play around with it a few weeks ago, looks promising, and very lightweight by the size of it.

link|improve this answer
feedback

i like codeigniter too. And We are waiting for new version of the CMS ExpressionEngine to run on top of it.

CI is nice as it lets you take or leave how much you use or even use it with Zend Framework for example so you do not have to change you style too much.

link|improve this answer
feedback

I am currently using the Zend Framework as my framework-of-choice. The various components are as loosely coupled as possible, allowing for you to use as much or as little as you like. Essentially, the Zend Framework is not full stack but provides you with the components to rapidly build your application with more control over the components you use (or choose to include in your app).

Kieran.

link|improve this answer
feedback

TinyMVC seems to be very very lightweight. I haven't actually tried it. It's PHP 5 only though.

link|improve this answer
feedback

Obullo is a super lightweight php framework that derived from Code Igniter.

It use CI Active Record Class with PDO.

Look at develturk.com

link|improve this answer
feedback

There are many metrics of what "lightweight" can possibly mean: disk size on server, amount of code generated for the client, difficulty of installing / configuring process on the server, etc...

I've been on the core development team of a PHP Framework called NOLOH for 6 years now, and I believe that NOLOH scores remarkably high on all those meanings of lightweight. NOLOH's benefits are too numerous to just quickly review here, but we believe that it makes developing and maintaining a website or webapp of any size or complexity orders of magnitude simpler than other solutions.

Yet what distinguishes NOLOH, as far as "lightweight" is concerned, is that NOLOH will automatically figure out what is and is not used by the particular project, and lazy-load only the necessary modules, while also sending the client only the necessary code for his current view only. We describe this aspect as being "on-demand." Many other frameworks either include far too much (commonly found in fat client frameworks) or leave it to the developer to surgically include what he needs. NOLOH handles this, and countless other hassles, for you completely transparently and automatically. In short, it lets you just focus on the application logic without the countless implementation tricks and details.

Check out http://www.noloh.com

link|improve this answer
feedback

micro-mvc and tweet-mvc are tiny.

link|improve this answer
feedback

I develop Phraw for small web sites and little, fast applications. It is only few KB and very flexible. I use it for some of my work when a bigger framework is a waste of time and resources.

The standard template engine is Smarty, is optional so you can remove or replace it.

For the ORM I suggest you Idiorm http://github.com/j4mie/idiorm/ with http://github.com/j4mie/paris/ Paris. Few KB, fun and very simple to use.

Take a look here: http://phraw.dav-muz.net/

link|improve this answer
feedback

You should check out Sonic. It's a PHP 5.3 framework that is very light. You can build an entire MVC application including just a single file that clocks in around 26kb.

The framework itself is really light and supports add-ons via extensions.

Check it out for yourself: http://sonicframework.com

Browse the source on GitHub: https://github.com/ccampbell/sonic

link|improve this answer
feedback

I made a PHP skeleton (php-skel) which gives you a portable application folder in which you can just run "bin/start.sh", dynamic routing is sent to router.php where you can do whatever you want.

It's not actually a framework it just sorts the initial configuration which provides a nice starting point to create your framework, or not use any framework at all.

PHP files can be used as views, which can require() a separate file of yours that contains control logic. You can use the router.php file to define any URL rewrites within your code (instead of in server config), by just requiring the necessary view file.

application.php can hold any code you need to define and will always be auto_prepended to each request.

https://github.com/ngspinners/php-skel

link|improve this answer
feedback

If your after fully namespaced and OOP PHP 5.3+ framework REKS Framework is a beauty.

You should take a look at "REKS Framework" . Its 24 KB in size. reks.pkj.no

link|improve this answer
feedback

Have a look at Swiftlet, a tiny MVC framework.

link|improve this answer
feedback

Check out http a super-micro routing framework.

link|improve this answer
feedback

protected by Bo Persson Apr 3 at 18:27

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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