plumephp / plume
A micro framework for PHP.
Installs: 2 504
Dependents: 3
Suggesters: 0
Security: 0
Stars: 3
Watchers: 4
Forks: 2
Open Issues: 1
Requires
Requires (Dev)
- phpunit/phpunit: 5.5.7
This package is auto-updated.
Last update: 2025-01-07 20:34:01 UTC
README
Intro
plume is a micro framework for php.
Feature
- Pure PHP
- multi environment support
- MVC and customizable view
- Fast implementation API with json data
- simple API to use
- cache with request and db
- exception logs
- performance logs
- unit test
- customizable
- Utils Class
Install and Use
See plume-demo-web and docs.
show details
index page:
require_once __DIR__.'/../vendor/autoload.php';
use Plume\Application;
$app = new Application();
$app->run();
change env:
$app = new Application(‘test’);
$app = new Application('pro');
setting default module or cache:
$app['plume.module.default']='example';
$app['plume.cache.request']=true;
$app['plume.cache.db']=true;
Depends
Plume is pure PHP and just have mini dependence on phpunit, mysqli.
Have a good time with plume.