PHPackages                             mellivora/framework - 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. mellivora/framework

ActiveLibrary

mellivora/framework
===================

Web Framework for Mellivora

v1.0.1(8y ago)0141MITPHPPHP &gt;=5.6.0

Since Aug 31Pushed 8y ago1 watchersCompare

[ Source](https://github.com/zhouyl/mellivora-framework)[ Packagist](https://packagist.org/packages/mellivora/framework)[ Docs](https://github.com/zhouyl/framework)[ RSS](/packages/mellivora-framework/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

项目说明
====

[](#项目说明)

项目初始化
-----

[](#项目初始化)

该项目使用了 Mellivora 框架 ，其基础为 Slim3，结合了 laravel 5.4 + Symfony 3.3 的部分组件及特性，自主开发完成。

该项目的最低运行环境为 php5.6，建议使用 php7.1+ 版本以获得更好的性能。

### 获取代码

[](#获取代码)

```
cd /workspace
git clone git@github.com:zhouyl/mellivora-framework.git my.host.com
cd my.host.com
composer install
bash bin/app-init.sh
```

### 配置 nginx

[](#配置-nginx)

```
server {
    listen       80;

    server_name  my.host.com;
    root         /workspace/my.host.com/public;
    charset      utf-8;
    index        index.php index.html index.htm;

    location / {
        try_files $uri $uri/ /index.php$is_args$args;
    }

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_pass   unix:/dev/shm/php7.1.sock;
        fastcgi_index  index.php;
        include        fastcgi_params;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_param  PATH_INFO $fastcgi_path_info;
        fastcgi_param  PATH_TRANSLATED $document_root$fastcgi_path_info;
    }

    location ~ \.(gif|jpg|jpeg|png|bmp|swf|ico|js|css)$ {
        expires      30d;
        access_log   off;
    }

    location ~ /\.ht {
        deny all;
    }

    access_log  /var/log/nginx/my.host.com.log  main;
}

```

### 目录结构

[](#目录结构)

```
.
├── claw                   Claw 命令行工具
├── app
│   ├── Commands           命令行脚本
│   ├── Controllers        MVC 控制器
│   ├── Middlewares        自定义项目中间件
│   ├── Models             数据库模型类
│   └── Providers          自定义项目服务提供者
├── bin
│   ├── app-init.sh        项目初始化脚本
│   └── daemon-service.sh  守护进程管理脚本
├── config
│   ├── production         生产环境配置
│   └── testing            测试环境配置
├── database
│   ├── migrations         数据库迁移脚本
│   └── seeds              数据库填充脚本
├── docs                   文档目录
├── public                 Web 根目录
├── resources
│   ├── lang               语言包
│   └── views              项目视图文件
├── storage
│   ├── cache              文件缓存
│   ├── logs               日志文件
│   ├── sessions           文件 session
│   └── views              Blade 视图编译缓存
└── vendor                 Composer 第三方库

```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity59

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.

###  Release Activity

Cadence

Every ~10 days

Total

2

Last Release

3162d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/670a28674a5d1c4feb1817a0214b725395c08fbd0c41d5c4dc269a2f27f41620?d=identicon)[zhouyl](/maintainers/zhouyl)

---

Top Contributors

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

---

Tags

frameworkframework-phpmellivoraslim3web-framework

### Embed Badge

![Health badge](/badges/mellivora-framework/health.svg)

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

PHPackages © 2026

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