From 991a1705b91b05925e5503db12b9b6817ef46338 Mon Sep 17 00:00:00 2001 From: n0nag0n Date: Sat, 30 Dec 2023 22:40:52 -0700 Subject: [PATCH] added matrix link and readme updates --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 24c1d07..5376e70 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,15 @@ This is a fork of the original project [https://github.com/mikecao/flight](https Flight is a fast, simple, extensible framework for PHP. Flight enables you to quickly and easily build RESTful web applications. +Chat with us on Matrix IRC [#flight-php-framework:matrix.org](https://matrix.to/#/#flight-php-framework:matrix.org) + +# Basic Usage ```php -require 'flight/Flight.php'; + +// if installed with composer +require 'vendor/autoload.php'; +// or if installed manually by zip file +//require 'flight/Flight.php'; Flight::route('/', function() { echo 'hello world!';