From d9ec963905002fc069b67e6c608011ef3e35944f Mon Sep 17 00:00:00 2001 From: shoully Date: Sat, 20 Dec 2014 05:11:07 -0800 Subject: [PATCH] Updated Home (markdown) --- Home.md | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/Home.md b/Home.md index 4a17b38..5c0ad52 100644 --- a/Home.md +++ b/Home.md @@ -1 +1,24 @@ -Welcome to the flight wiki! +# Flight PHP wiki! + +## What is Flight? + +Flight is a fast, simple, extensible framework for PHP. +Flight enables you to quickly and easily build RESTful web applications. + + require 'flight/Flight.php'; + + Flight::route('/', function(){ + echo 'hello world!'; + }); + + Flight::start(); + +[Learn more](http://flightphp.com/learn) + +## Requirements + +Flight requires PHP 5.3 or greater. + +## License + +Flight is released under the [MIT](http://www.opensource.org/licenses/mit-license.php) license.