PHPackages                             stichoza/freshphp - 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. stichoza/freshphp

AbandonedArchivedFramework[Framework](/categories/framework)

stichoza/freshphp
=================

Fresh PHP MVC framework

24PHP

Since Jan 20Pushed 12y ago1 watchersCompare

[ Source](https://github.com/Stichoza/FreshPHP)[ Packagist](https://packagist.org/packages/stichoza/freshphp)[ RSS](/packages/stichoza-freshphp/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (1)DependenciesVersions (1)Used By (0)

FreshPHP [![Build Status](https://camo.githubusercontent.com/3ad6fcdf425a4f06370af2e454a99019953eada9a0a3826bae4fe7bb401af303/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f53746963686f7a612f46726573685048502e706e673f6272616e63683d6d6173746572)](http://travis-ci.org/Stichoza/FreshPHP)
========================================================================================================================================================================================================================================================================================================

[](#freshphp-)

This is some sort of lightweight (or maybe overly complicated) PHP framework with underlying MVC architecture implementing some other OOP design patterns like Singleton and etc.

Currently I'm writing this for educational purposes only but I'm using this in some of my projects.

---

Contributing to FreshPHP
------------------------

[](#contributing-to-freshphp)

### Issue Tracking

[](#issue-tracking)

Report bugs and issues (good ideas also) in [Issue Tracker](//github.com/Stichoza/FreshPHP/issues)

- **Search for existing issues** to avoid duplicate issues.
- **Include a live example** if possible.
- **Share as much information as possible.** Include operating system and version. Information about PHP, MySQL, Mail Server and any other used software used.
- Also include steps to reproduce the bug.

### Pull Requests

[](#pull-requests)

All pull requests are welcome! 🤘

### Coding Standards

[](#coding-standards)

Inspired by [Java Code Conventions](http://www.oracle.com/technetwork/java/javase/documentation/codeconvtoc-136057.html).

- class storing: `src/Namespace/.../Namespace/ClassName.php`
- Braces on same line. **Never** use new lines for braces.
- Four spaces for indentation, never tabs.
- Use proper indentation.
- Double quotes preferred.
- Comma last, Dot first.
- Each line should contain at most one statement.
- Lower-first `camelCase` for variables and functions/methods
- Upper-first `CamelCase` for class names

```
// Correct
if ($foo > 15) {
    $foo++;
    $bar--;
    print("ok");
    $newArray = array(
    "key_1" => 452,
        "key_2" => array(
            "key_2_1" => "yolo"
        ),
    "key_3" => "hello",
    "key_4" => "world"
    );
    echo "hello "
        . "world "
        . $foo . ":>";
}
```

```
if($foo>15)                         // Spaces around operators, spaces after keywords
{                                   // Don't use new lines for braces
    $foo++; $bar--;                 // Each line should contain at most one statement
    print('ok');                    // Use double quotes
    $new_array = array(             // Use camelCase in variable naming
    "key-1" => 452,                 // Never use dashes in array keys. Use underscores.
        "key_2" => array("key_2_1" => "yolo"),    // Use proper indentation.
    "key_3" => "hello"
    , "key_4" => "world"            // Comma-last
    );
    echo "hello hello " .           // Dot-first
        "world " .
        $foo.":>";                  // Use spaces around dots.
}
```

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1139050?v=4)[Levan Velijanashvili](/maintainers/stichoza)[@Stichoza](https://github.com/Stichoza)

---

Top Contributors

[![Stichoza](https://avatars.githubusercontent.com/u/1139050?v=4)](https://github.com/Stichoza "Stichoza (133 commits)")

### Embed Badge

![Health badge](/badges/stichoza-freshphp/health.svg)

```
[![Health](https://phpackages.com/badges/stichoza-freshphp/health.svg)](https://phpackages.com/packages/stichoza-freshphp)
```

###  Alternatives

[laravel/dusk

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

1.9k39.6M290](/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)
