webdev1404/mars-framework

The Mars Framework

Maintainers

Package info

github.com/webdev1404/mars-framework

pkg:composer/webdev1404/mars-framework

Statistics

Installs: 31

Dependents: 3

Suggesters: 0

Stars: 0

Open Issues: 0

dev-master 2026-05-02 00:02 UTC

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.