PHPackages                             richie314/simple-mvc - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. richie314/simple-mvc

ActiveLibrary[Framework](/categories/framework)

richie314/simple-mvc
====================

Simple MVC php library

v1.0.4(3mo ago)070proprietaryPHP

Since Jan 1Pushed 3mo agoCompare

[ Source](https://github.com/Richie314/Php-Simple-MVC)[ Packagist](https://packagist.org/packages/richie314/simple-mvc)[ RSS](/packages/richie314-simple-mvc/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)DependenciesVersions (6)Used By (0)

Php-Simple-MVC
==============

[](#php-simple-mvc)

Very basic php library for a MVC (Model-View-Control) application

```
composer require richie314/simple-mvc
```

Webserver configuration
-----------------------

[](#webserver-configuration)

### Apache

[](#apache)

### Nginx

[](#nginx)

In this example the nginx server listens on port 8080 and redirectes all the traffic to `index.php`, except for the `Public` folder, where is assumed there are public static files that will be served without redirecting the request to the `index.php` file first.

In the configuration below, php is accessed via a unix socket.

```
server {
    server_name example;
    listen 8080 default_server;
    root /example;
    index index.php;

    location ~* ^/Public/ {
        try_files $uri $uri/ /index.php$is_args$args;

        # Enable compression for static assets
        gzip on;
        gzip_types text/plain text/css application/javascript application/json image/svg+xml application/xml font/woff2;
        gzip_vary on;

        # Cache static assets
        location ~* \.(?:css|js|jpg|jpeg|gif|png|ico|svg|webp|woff|woff2|ttf|eot)$ {
            expires 30d;
            add_header Cache-Control "public, immutable";
        }
    }

    location / {
        rewrite ^ /index.php last;
    }

    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_pass unix:/var/run/php-app.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
}

```

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance79

Regular maintenance activity

Popularity11

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~5 days

Total

5

Last Release

110d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f876510ed9889774353dbf9a5d41eaf1147207747032a8ac31ee8094104f4f76?d=identicon)[Richie314](/maintainers/Richie314)

---

Top Contributors

[![Richie314](https://avatars.githubusercontent.com/u/60298539?v=4)](https://github.com/Richie314 "Richie314 (7 commits)")

---

Tags

mvcphpphp8

### Embed Badge

![Health badge](/badges/richie314-simple-mvc/health.svg)

```
[![Health](https://phpackages.com/badges/richie314-simple-mvc/health.svg)](https://phpackages.com/packages/richie314-simple-mvc)
```

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M192](/packages/laravel-telescope)[spiral/roadrunner

RoadRunner: High-performance PHP application server and process manager written in Go and powered with plugins

8.4k12.2M84](/packages/spiral-roadrunner)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M259](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

708181.8M596](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
