keshav_jha / bloged
Simple MVC PHP framework
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/keshav_jha/bloged
Requires
- gabordemooij/redbean: ~5.7.1
- symfony/http-foundation: ~4.4
- symfony/routing: ~4.4
This package is auto-updated.
Last update: 2025-12-08 20:29:37 UTC
README
#Configure the framework by the following
//site name define('SITE_NAME', 'site_name'); //change this
//App Root define('APP_ROOT', dirname(dirname(FILE))); define('URL_ROOT', '/'); define('URL_SUBFOLDER', ''); define('BASE', 'http://host/'); //change this
$host = "host"; //change this $username = "user"; //change this $password = "password"; //change this $database = "db_name"; //change this R::setup("mysql:host=$host;dbname=$database", $username, $password); R::freeze( TRUE );