2017 © Pedro Peláez
 

project fastflight

Framework PHP

image

1fabiosoares/fastflight

Framework PHP

  • Sunday, March 5, 2017
  • by 1fabiosoares
  • Repository
  • 1 Watchers
  • 2 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

FastFlight

Using Flight microframework efficiently., (*1)

<?php
  namespace app\controller;

  use core\fast\FastController;
  use core\http\Response;

  class HelloController extends FastController {
      public function render(){
          Response::view('hello', ['message' => "It Works"]);
      }
  }

What is Flight?

Flight is a fast, simple, extensible framework for PHP. Flight enables you to quickly and easily build RESTful web applications... But you can see better here., (*2)

require 'flight/Flight.php';

Flight::route('/', function(){
  echo 'hello world!';
});

Flight::start();

Checkout the truly Flight., (*3)

What is Fast Flight?

FastFlight is a extention of Flight that allows you work with MVC in a simple as Flight is. You can develop large programs and small ones., (*4)

It's easy and scalable with out complications., (*5)

How to get started?

You will need to have the Composer installed and PHP 7.0 or superior., (*6)

$ composer create-project 1fabiosoares/fastflight nameOfProject
$ cd nameOfProject/www
$ php -S localhost:8000

Or you can clone de project, (*7)

$ git clone https://github.com/1fabiosoares/FastFlight.git
$ cd FastFlight
$ composer install
$ cd www
$ php -S localhost:8000

And you ready to go! :), (*8)

The Versions

05/03 2017

dev-master

9999999-dev

Framework PHP

  Sources   Download

GPL-v3

The Requires

 

by Fabio Soares

05/03 2017

v0.0.1

0.0.1.0

Framework PHP

  Sources   Download

GPL-v3

The Requires

 

by Fabio Soares