Minimum Requirements
MINI is designed to run on minimal infrastructure with basic server requirements.PHP Version
PHP 5.3.0+
MINI was originally built for PHP 5.3.0 but works perfectly with modern PHP versions.
- PHP 5.3.0+ (original requirement)
- PHP 5.6.x (tested, stable)
- PHP 7.0.x, 7.1.x, 7.2.x, 7.3.x, 7.4.x (tested, stable)
- PHP 8.0+ (should work, but not extensively tested)
For PHP 7.0+, the framework uses the class name “Problem” instead of “Error” due to PHP 7’s internal Error class. See troubleshooting for details.
Database
- MySQL 5.x or higher (required)
- PDO MySQL extension enabled
- Database with proper character encoding support (UTF-8 recommended)
The framework uses PDO for database operations, providing protection against SQL injection when used correctly.
Web Server
Apache
- Apache 2.2 or 2.4
- mod_rewrite module (required for clean URLs)
.htaccesssupport enabled (AllowOverride All)
nginx
nginx is supported with proper configuration. See Server Setup for details.PHP Extensions
Required extensions:pdopdo_mysqlmod_rewrite(Apache only)
Optional Tools
Composer
Composer
Not required by default. The framework runs without Composer dependencies. However, if you plan to extend the application with additional packages, Composer can be useful.
Git
Git
Recommended for version control and easy updates. The Vagrant setup automatically installs Git.
PHPMyAdmin
PHPMyAdmin
Optional but helpful for database management. Included in the Vagrant setup.
Server Recommendations
Production Environment
Minimum Specs
- 512 MB RAM
- 1 CPU core
- 500 MB disk space
Recommended Specs
- 1 GB+ RAM
- 2+ CPU cores
- 5 GB+ disk space
Development Environment
MINI works seamlessly in common development environments:- XAMPP (Windows, Mac, Linux)
- MAMP (Mac)
- WAMP (Windows)
- AMPPS (Windows, Mac)
- EasyPHP (Windows)
- LAMPP (Linux)
- Vagrant (all platforms) - see installation guides
Hosting Compatibility
MINI runs on most shared hosting providers that meet the basic requirements: ✅ Compatible with:- Most shared hosting (cPanel, Plesk, etc.)
- VPS and dedicated servers
- Cloud platforms (DigitalOcean, AWS, Azure, etc.)
- Docker containers
- Vagrant environments
- Hosting without mod_rewrite support
- Servers with PHP < 5.3.0
- Hosting without PDO MySQL support
Security Considerations
File System Requirements
This security measure ensures:- Application code is not directly accessible
- Configuration files are protected
.gitfolder cannot be accessed- Only public assets are exposed
File Permissions
Recommended permissions:- Directories:
755(read/execute for all, write for owner) - PHP files:
644(read for all, write for owner) - Configuration files:
600(read/write for owner only)
Quick Compatibility Check
Use this command to verify your PHP installation:Next Steps
Server Setup
Configure Apache or nginx for MINI
Troubleshooting
Fix common deployment issues
