fall / mvc
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
Requires
- php: ^7.1
- fall/core: dev-master
Requires (Dev)
- phpunit/phpunit: ^7
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