About Limonade

Limonade is a PHP micro framework for rapid web development and prototyping.

It’s inspired by frameworks like Sinatra or Camping in Ruby, or Orbit in Lua. It aims to be simple, lightweight and extremly flexible.

As simple as that...


require_once 'vendors/limonade.php';
dispatch('/', 'hello');
  function hello()
  {
      return 'Hello world!';
  }
run();

Installation

Usage and documentation

Contributing

  1. Fork Limonade
  2. Work on the master branch or create a topic branch ( git checkout -b my_branch )
  3. Push to master branch or your branch ( git push origin my_branch )
  4. If necessary, create an issue with a link to your branch
  5. Or share your ideas on the discussion group!

Before pushing your code, please test it, or better, write tests (and check that everything works fine by running from the limonade code/ directory: php -f tests/all.php )

More on Limonade

Follow Limonade on Twitter