diff --git a/Home.md b/Home.md index 4a17b38..be11a12 100644 --- a/Home.md +++ b/Home.md @@ -1 +1,24 @@ Welcome to the flight 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.