Boss Mini PHP framework created by Tech Reagan
This project is still in alpha version, If you are interested in helping out with solving bugs and developing new features you are welcome to do so.
Copy the project in your development folder. Follow the instructions to complete the installation.
- Apache Server
- PHP 5.6+
- Mysql Database
Install XAMPP for an easy quickstart for windows
Install MAMPP for an easy quickstart for mac
Or use whatever suit you.
Modify the app/config/config.php file according to your needs.
//Database Configuration
define('DB_HOST', '_YOUR_HOST');
define('DB_USER', '_YOUR_DATABSE_USERNAME');
define('DB_PASS', '_YOUR_DATABASE_PASSWORD');
define('DB_NAME', '_YOUR DATABASE_NAME');
// App Root
define('APPROOT', dirname(dirname(__FILE__)));
// URL Root
define('URLROOT', '_YOUR_URL_');
// Site Name
define('SITENAME', '_YOUR_SITENAME_');
Modify the .htaccess file inside the public folder to match the name of your installation folder, Modify only the RewriteBase.
<IfModule mod_rewrite.c>
Options -Multiviews
RewriteEngine On
RewriteBase /boss/public
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
</IfModule>
More documentation coming soon..
- PHP
- Mysql
This project is licensed under the MIT License