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(5mo ago)085proprietaryPHP

Since Jan 1Pushed 5mo 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

34

—

LowBetter than 75% of packages

Maintenance71

Regular maintenance activity

Popularity11

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity39

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

162d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/60298539?v=4)[Riccardo Ciucci](/maintainers/Richie314)[@Richie314](https://github.com/Richie314)

---

Top Contributors

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

---

Tags

model-view-controllermvcphpphp8

### 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/dusk

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

1.9k39.6M297](/packages/laravel-dusk)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

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