An extensible micro-framework for PHP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
fadrian06 4744d6435d
Removed unused docblocks in Response::class
2 years ago
flight Removed unused docblocks in Response::class 2 years ago
tests Added typehints to View::class 2 years ago
.editorconfig Update .editorconfig 2 years ago
.gitignore fixed alias issue, levenshtein recommendations and coverage-check 2 years ago
LICENSE Initial commit 15 years ago
README.md updated and shrunk size of readme 2 years ago
composer.json Replace some tabs to spaces in composer.json 2 years ago
flight.sublime-project Added Lint script to SublimeText build systems 2 years ago
index.php refactorings 4 years ago
phpstan.neon Added code format 2 years ago
phpunit.xml cleaned up some unit test requires 2 years ago

README.md

PHPStan: enabled PHPStan: level 6 Matrix Hit Count

What is Flight?

Flight is a fast, simple, extensible framework for PHP. Flight enables you to quickly and easily build RESTful web applications.

Basic Usage

// 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!';
});

Flight::start();

Skeleton App

You can also install a skeleton app. Go to flightphp/skeleton for instructions on how to get started!

Documentation

We have our own documentation website that is built with Flight (naturally). Learn more about the framework at docs.flightphp.com.

Community

Chat with us on Matrix IRC #flight-php-framework:matrix.org

Requirements

Flight requires PHP 7.4 or greater.

Note: PHP 7.4 is supported because at the current time of writing (2024) PHP 7.4 is the default version for some LTS Linux distributions. Forcing a move to PHP >8 would cause a lot of heartburn for those users. The framework also supports PHP >8.

License

Flight is released under the MIT license.