alvin / phpmvc
A lightweight php mvc framework
Installs: 61
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/alvin/phpmvc
This package is auto-updated.
Last update: 2025-10-16 19:43:49 UTC
README
A lightweight mvc framework for php
! This framework is not production ready
<?php include_once './vendor/autoload.php'; use alvin\phpmvc\Application; $app = new Application(__DIR__); $app->get('/',function (){ return "hello world"; }); $app->run();
Installation
composer require alvin/phpmvc
Features
- Middleware support
 - Session support
 - Database support
 - Database migrations support
 - Csrf protection
 - Filestorage
 - Zero dependency package
 
Documentation
You can view the documentation here.