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 598c71d01c
Restored phpcs.dist.xml > phpcs.xml script
10 months ago
.vscode Spaces my friend, spaces... 11 months ago
flight Add PSR/Container dependency for type hint and expose the API 10 months ago
tests Add Short After Filter Syntax with one parameter 10 months ago
.editorconfig Fixed root files code format 12 months ago
.gitattributes Added phpstan baseline 11 months ago
.gitignore Merge branch 'master' into dispatcher-refactor 11 months ago
LICENSE Initial commit 14 years ago
README.md Update README.md 11 months ago
composer.json Restored phpcs.dist.xml > phpcs.xml script 10 months ago
index.php Apply some fixes of phpcs 11 months ago
phpcs.xml.dist Created phpcs.xml.dist with automatic local config creation script 11 months ago
phpstan-baseline.neon Added phpstan baseline 11 months ago
phpstan.neon Added phpstan baseline 11 months ago
phpunit.xml phpunit fixes for deprecated notices. Also pdowrapper reset removal 10 months ago

README.md

PHPStan: enabled PHPStan: level 6 Matrix

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

Upgrading From v2

If you have a current project on v2, you should be able to upgrade to v2 with no issues depending on how your project was built. If there are any issues with upgrade, they are documented in the migrating to v3 documentation page. It is the intention of Flight to maintain longterm stability of the project and to not add rewrites with major version changes.

Requirements

[!IMPORTANT] 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.

Roadmap

To see the current and future roadmap for the Flight Framework, visit the project roadmap

License

Flight is released under the MIT license.