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.2.0(1mo ago)3863448[1 issues](https://github.com/usualtool/framework/issues)Apache-2.0PHP

Since Apr 8Pushed 1mo 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 1mo ago

READMEChangelog (10)DependenciesVersions (56)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 PHP5/PHP7/PHP8 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
├────├─── 📁lang 语言包 Language package
├────├─── 📁modules 模块 Module
├────├────└───ut-frame 公共模块
├────├─────────├─assets 临时资源包
├────├────├────├─admin 后端控制 Admin control
├────├────├────├─cache 缓存编译 Cache
├────├────├────├─skin 视图 View
├────├────├────├────├─admin 后端视图 Admin view
├────├────├────├────└─front 前端视图 Client view
├────├────├────├─front 前端控制 Client control
├────├────├────├────├─error.php
├────├────├────├────└─index.php 示例文件
├────├────├────├─model 模型 Model
├────├─────────└─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
├────├─── index.php 路由控制器
├────├─── plugin.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

52

—

FairBetter than 96% of packages

Maintenance90

Actively maintained with recent releases

Popularity30

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity62

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

Recently: every ~7 days

Total

55

Last Release

48d 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 (79 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

[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

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

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

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

A simple API extension for DateTime.

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

Easily delve into your Laravel application's log files directly from the command line.

91545.3M590](/packages/laravel-pail)[nette/bootstrap

🅱 Nette Bootstrap: the simple way to configure and bootstrap your Nette application.

68535.8M592](/packages/nette-bootstrap)[cakephp/utility

CakePHP Utility classes such as Inflector, String, Hash, and Security

12127.1M63](/packages/cakephp-utility)

PHPackages © 2026

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