PHPackages                             usualtool/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. [Framework](/categories/framework)
4. /
5. usualtool/framework

ActiveLibrary[Framework](/categories/framework)

usualtool/framework
===================

UsualTool Framework (UT) is a PHP-based multi-end development framework with a comprehensive class library, suitable for building various types of applications.

V7.3.0(3w ago)3813448[1 issues](https://github.com/usualtool/framework/issues)Apache-2.0PHP

Since Apr 8Pushed 2w ago3 watchersCompare

[ Source](https://github.com/usualtool/framework)[ Packagist](https://packagist.org/packages/usualtool/framework)[ Docs](https://github.com/usualtool)[ RSS](/packages/usualtool-framework/feed)WikiDiscussions master Synced today

READMEChangelog (10)DependenciesVersions (60)Used By (0)

[![release](https://camo.githubusercontent.com/f1bd8087033fa44cc62b0c1d617bc4eec452b67a689078a5136fc278025bb44d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f757375616c746f6f6c2f6672616d65776f726b3f696e636c7564655f70726572656c6561736573267374796c653d736f6369616c)](https://camo.githubusercontent.com/f1bd8087033fa44cc62b0c1d617bc4eec452b67a689078a5136fc278025bb44d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f757375616c746f6f6c2f6672616d65776f726b3f696e636c7564655f70726572656c6561736573267374796c653d736f6369616c)[![license](https://camo.githubusercontent.com/7e32d772e7207a5fe5245ac14e80aa2e5f2299ef4b39e94d5813b7dcef77aa17/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f757375616c746f6f6c2f75742d6170693f7374796c653d736f6369616c)](https://camo.githubusercontent.com/7e32d772e7207a5fe5245ac14e80aa2e5f2299ef4b39e94d5813b7dcef77aa17/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f757375616c746f6f6c2f75742d6170693f7374796c653d736f6369616c)[![size](https://camo.githubusercontent.com/cd03590595e9fa78bc7662ae02401cfcee3e5566f362b797745264a7cc18ac83/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f636f64652d73697a652f757375616c746f6f6c2f6672616d65776f726b3f7374796c653d736f6369616c)](https://camo.githubusercontent.com/cd03590595e9fa78bc7662ae02401cfcee3e5566f362b797745264a7cc18ac83/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f636f64652d73697a652f757375616c746f6f6c2f6672616d65776f726b3f7374796c653d736f6369616c)

### English | [简体中文](http://frame.usualtool.com/baike)

[](#english--简体中文)

#### Introduction

[](#introduction)

UsualTool Framework (UT) is a PHP-based multi-end development framework with a comprehensive class library, suitable for building various types of applications.

#### Schematic diagram

[](#schematic-diagram)

Difference from traditional MVC
[![schematic](https://camo.githubusercontent.com/a44f20433383b3165d3290c66f20c4191ceee6c71fc66f1394fa14733617fc41/687474703a2f2f6672616d652e757375616c746f6f6c2e636f6d2f696d6167652f7574796c2d656e2e6a7067)](https://camo.githubusercontent.com/a44f20433383b3165d3290c66f20c4191ceee6c71fc66f1394fa14733617fc41/687474703a2f2f6672616d652e757375616c746f6f6c2e636f6d2f696d6167652f7574796c2d656e2e6a7067)

#### Environment

[](#environment)

Support Nginx/Apache/IIS.
Support PHP7+ and other known upward distributions.

#### Security

[](#security)

.ut.config configuration contains sensitive information.
You must set in the configuration file to prohibit non-local access Config file.
install-dev is the installation directory of visual package on the development side. If visualization is not required, please delete this directory after deploying UT.

#### system architecture

[](#system-architecture)

```
┌─── 📁app 应用开发目录 core
├────├─── 📁modules 模块 Module
├────├────└───ut-frame 公共模块（示例）
├────├─────────├─assets 临时资源包
├────├────├────├─lang 模块语言包 Language
├────├────├────├─cache 缓存编译 Cache
├────├────├────├─front 前端控制 Client control
├────├────├────├─admin 后端控制 Admin control
├────├────├────├─skin 视图 View
├────├────├────├────├─admin 后端视图 Admin view
├────├────├────├────└─front 前端视图 Client view
├────├────├────├─model 模型 Model
├────├────├────├─controller 独立控制器 Controller
├────├────├────├─route.php 文件映射配置
├────├─────────└─usualtool.config 模块配置 Configure
├────├─── 📁plugins 插件 Plugin
├────├────└───插件名称
├────├─────────├─assets 临时资源包
├────├─────────├─plugin.php 插件模型
├────├─────────└─usualtool.config 插件配置 Configure
├────├─── 📁share 共享命名空间 Namespace
├────├─── 📁task 计划任务 Crontab
├────└─── 📁template 模板工程 Formwork
├─────────└───模板名称
├──────────────├─assets 临时资源包
├──────────────├─move 覆盖控制&模型
├──────────────├─skin 视图 View
├──────────────├───├─ut-frame 公共模块视图
├──────────────├───├────├─admin 后端视图 Admin view
├──────────────├───├────├─cache 缓存 Cache
├──────────────├───├────└─front 前端视图 Client view
├──────────────├───└─其他模块视图
├──────────────└─usualtool.config 模板配置 Configure
├─── 📁library 类库 Class library
├─── 📁log 框架日志 Log
├─── 📁open 应用根目录（开放访问）
├────├─── 📁assets 静态资源 Resource
├────├─── 📁lang 全局语言包 Language
├────├─── index.php 应用控制器
├────├─── plugin.php 插件控制器
├────├─── route.php 模块映射配置
├────└─── config.php 业务配置
├─── 📁update 更新包目录 Update
├─── 📁vendor 依赖库目录
├─── .ut.config 全局配置 Global configuration
├─── .version.ini 框架版本 Version
├─── autoload.php 加载/启动器 Automatic file loading
└─── usualtool 命令行服务端 Command line

```

#### [Development documentation](http://frame.usualtool.com/baike)

[](#development-documentation)

###  Health Score

54

—

FairBetter than 96% of packages

Maintenance96

Actively maintained with recent releases

Popularity29

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity63

Established project with proven stability

 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 ~26 days

Recently: every ~17 days

Total

59

Last Release

25d ago

Major Versions

V2.7 → V3.02022-04-15

V3.9.5 → V4.02022-11-10

V4.7 → V5.02023-03-07

V5.7.2 → V6.0.02025-10-15

V6.8 → V7.02026-02-18

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

frameworkmvcphptemplateusualtoolututframeutUT FrameworkUsualTool Framework

### Embed Badge

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

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

###  Alternatives

[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)
