ibio / weemvc-php
This is a mini PHP MVC framework. It's good for beginners as a painless study experience.
1.1.0
2017-03-25 21:48 UTC
Requires
- php: >=5.5
This package is not auto-updated.
Last update: 2024-11-09 21:47:42 UTC
README
A mini-size, elegant, php MVC framework for interface output.
How to install
1 using composer
https://packagist.org/packages/ibio/weemvc-php
composer require ibio/weemvc-php
require_once './vendor/autoload.php';
use org\weemvc\core\Application;
2 the package directly
require_once './org/weemvc/util/AutoloadHelper.php';
use org\weemvc\core\Application;