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
n0nag0n 68613880c7
Merge pull request #546 from flightphp/fadrian06-patch-1
12 months ago
flight corrected spacing 12 months ago
tests added more tests for ui testing 12 months ago
.editorconfig Fixed root files code format 1 year ago
.gitattributes Testing .gitattributes 12 months ago
.gitignore Removed Sublime Project from repository 12 months ago
LICENSE Initial commit 14 years ago
README.md Removed broken image in README 12 months ago
composer.json tabs again, config your editor 😠 12 months ago
index.php Fixed https://github.com/flightphp/core/pull/538#pullrequestreview-1861099821 1 year ago
phpcs.xml Fixed https://github.com/flightphp/core/pull/538#pullrequestreview-1861099821 1 year ago
phpstan.neon Dispatcher::reset now is also chaineable 1 year ago
phpunit.xml tabs again, config your editor 😠 12 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

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.

License

Flight is released under the MIT license.