fall/mvc

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

A package to handle http request

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/fall/mvc

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

This package is auto-updated.

Last update: 2025-09-24 23:55:18 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