flightphp / core
Flight is a fast, simple, extensible framework for PHP. Flight enables you to quickly and easily build RESTful web applications. This is the maintained fork of mikecao/flight
Installs: 10 106
Dependents: 6
Suggesters: 0
Security: 0
Stars: 2 636
Watchers: 168
Forks: 406
Open Issues: 2
Requires
- php: >=7.4
- ext-json: *
Requires (Dev)
- ext-pdo_sqlite: *
- flightphp/runway: ^0.2.3 || ^1.0
- league/container: ^4.2
- level-2/dice: ^4.0
- phpstan/extension-installer: ^1.3
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^9.5
- rregeer/phpunit-coverage-check: ^0.3.1
- squizlabs/php_codesniffer: ^3.8
Suggests
- latte/latte: Latte template engine
- phpstan/phpstan: PHP Static Analyzer
- tracy/tracy: Tracy debugger
Replaces
- mikecao/flight: 2.0.2
- dev-master
- v3.13.0
- v3.12.0
- v3.11.1
- v3.11.0
- v3.10.1
- v3.10.0
- v3.9.0
- v3.8.1
- v3.8.0
- v3.7.2
- v3.7.1
- v3.7.0
- v3.6.2
- v3.6.1
- v3.6.0
- v3.5.3
- v3.5.2
- v3.5.0
- v3.4.2
- v3.4.1
- v3.4.0
- v3.3.0
- v3.2.0
- v3.1.1
- v3.1.0
- v3.0.2
- v3.0.1
- v3.0.0
- v2.0.1
- v2.0.0
- v1.x-dev
- v1.3.9
- v1.3.8
- v1.3.7
- v1.3.5
- v1.3.4
- v1.3.3
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.22
- v1.2.21
- v1.2.20
- v1.2.19
- v1.2.18
- v1.2.17
- v1.2.15
- v1.2.14
- v1.2.13
- v1.2
- v1.1.10
- v1.1.5
- v1.1
- v1.0
- dev-feat/route-compact-syntax
- dev-php8-named-arguments-support
- dev-documentation-tests
This package is auto-updated.
Last update: 2024-10-30 19:57:17 UTC
README
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.