fall/mvc

There is no license information available for the latest version (dev-master) of this package.

A package to handle http request

dev-master 2019-11-24 10:43 UTC

This package is auto-updated.

Last update: 2024-09-24 21:49:50 UTC


README

Fall mvc contains all classes needed to handle http requests and response.

Installation

composer install fall\mvc --save

Then add require in your root php script

require_once vendor/autoload.php

Usage

Create http server

use fall\mvc\web\server\HttpServer;

$server = new HttpServer(80); // 80 is the listening port