webdev1404 / mars-framework
The Mars Framework
dev-master
2026-05-02 00:02 UTC
Requires
- php: >=8.5
- ezyang/htmlpurifier: ^4.19
- matthiasmullie/minify: ^1.3
- mobiledetect/mobiledetectlib: ^4.10
- phpmailer/phpmailer: ^7.0
- voku/html-min: ^5.0
- webdev1404/mars-extensions: dev-master
This package is auto-updated.
Last update: 2026-05-02 00:02:59 UTC
README
A PHP web framework designed for rapid application development.
Features
- Simple routing system
- MVC architecture support
- Easy configuration
- Efficient request handling
Installation
composer require webdev1404/mars-framework
Quick Start
Create a basic route:
<?php require 'vendor/autoload.php'; use Mars\Framework\Router; $router = new Router(); $router->get('/', function() { return 'Hello, Mars!'; }); $router->run();
Documentation
For detailed documentation, visit the official docs.
License
This project is licensed under the MIT License.
Support
For issues and feature requests, please visit the GitHub repository.