PHPackages                             rockys/ex-admin-webman - 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. [Admin Panels](/categories/admin)
4. /
5. rockys/ex-admin-webman

ActiveLibrary[Admin Panels](/categories/admin)

rockys/ex-admin-webman
======================

Ex-admin-webman 是一个基于Ant Design of Vue + webman 开发而成后台系统构建工具，无需关注页面模板JavaScript，只用php代码即可快速构建出一个功能完善的后台系统。

1.0.2(3y ago)32783↓100%1[4 issues](https://github.com/rocky-git/ex-admin-webman/issues)Apache-2.0PHPPHP &gt;=7.4.0

Since Nov 8Pushed 3y ago1 watchersCompare

[ Source](https://github.com/rocky-git/ex-admin-webman)[ Packagist](https://packagist.org/packages/rockys/ex-admin-webman)[ RSS](/packages/rockys-ex-admin-webman/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (14)Versions (4)Used By (0)

 [![](https://camo.githubusercontent.com/56923318b0835d8cc70762226bc77ef9e5fa8cd75ae18ac4ecd460858aab5c57/68747470733a2f2f7777772e65782d61646d696e2e636f6d2f6c6f676f2e706e67)](https://camo.githubusercontent.com/56923318b0835d8cc70762226bc77ef9e5fa8cd75ae18ac4ecd460858aab5c57/68747470733a2f2f7777772e65782d61646d696e2e636f6d2f6c6f676f2e706e67)Ex-Admin
========

[](#ex-admin)

`Ex-Admin`是一个基于[Ant Design of Vue](https://www.antdv.com/docs/vue/introduce-cn/)开发而成后台系统构建工具，无需关注页面模板JavaScript，只用php代码即可快速构建出一个功能完善的后台系统。。

[![](https://camo.githubusercontent.com/9c3729303d4deb1e99efa1dd1bd061ccae96070680a2e5827af61dea31c94cc9/68747470733a2f2f7777772e65782d61646d696e2e636f6d2f696d672f313635353634353030303930332e706e67)](https://camo.githubusercontent.com/9c3729303d4deb1e99efa1dd1bd061ccae96070680a2e5827af61dea31c94cc9/68747470733a2f2f7777772e65782d61646d696e2e636f6d2f696d672f313635353634353030303930332e706e67)

- [中文文档](https://www.ex-admin.com/doc)
- [Demo / 在线演示](https://demo.ex-admin.com)
- [ex-admin-ui(github)](https://github.com/rocky-git/ex-admin-ui)
- [ex-admin-ui(码云)](https://gitee.com/rocky-git/ex-admin-ui)
- [官方交流群](https://jq.qq.com/?_wv=1027&k=ueqB1sVD)

#### thinkphp版本

[](#thinkphp版本)

- [github](https://github.com/rocky-git/ex-admin-thinkphp)
- [gitee](https://gitee.com/rocky-git/ex-admin-thinkphp)

#### laravel版本

[](#laravel版本)

- [github](https://github.com/rocky-git/ex-admin-laravel)
- [gitee](https://gitee.com/rocky-git/ex-admin-laravel)

#### hyperf版本

[](#hyperf版本)

- [github](https://github.com/rocky-git/ex-admin-hyperf)
- [gitee](https://gitee.com/rocky-git/ex-admin-hyperf)

#### webman版本

[](#webman版本)

- [github](https://github.com/rocky-git/ex-admin-webman)
- [gitee](https://gitee.com/rocky-git/ex-admin-webman)

### 特性

[](#特性)

- 灵活的设计，支持php各种框架接入
- 后台组件面向对象编程，组件化开发
- 自定义vue页面组件，无需重新编译打包
- 注解权限RBAC的权限系统,无限极菜单
- 数据表格构建工具，内置丰富的表格常用功能（如拖拽排序、数据导出、搜索、快捷创建、批量操作等）
- 数据表单构建工具，分步表单构建工具，内置丰富的表单类型，表单watch，表单互动
- 数据详情页构建工具
- 支持自定义图表

### 安装

[](#安装)

首先需要安装 webman 框架，如已安装可以跳过此步骤。如果您是第一次使用 webman，请务必先阅读文档 [安装《webman 中文文档》](https://www.workerman.net/doc/webman/install.html) ！

```
composer create-project workerman/webman 项目名称

```

安装 ex-admin

```
cd {项目名称}

composer require -W psr/container ^1

composer require rockys/ex-admin-webman

```

配置config/database.php

```
return [
    'default' => env('DB_CONNECTION', 'mysql'),
    'connections' => [
        'mysql' => [
            'driver' => 'mysql',
            'host' => env('DB_HOST', '127.0.0.1'),
            'port' => env('DB_PORT', '3306'),
            'database' => env('DB_DATABASE', 'forge'),
            'username' => env('DB_USERNAME', 'forge'),
            'password' => env('DB_PASSWORD', ''),
            'unix_socket' => env('DB_SOCKET', ''),
            'charset' => 'utf8mb4',
            'collation' => 'utf8mb4_unicode_ci',
            'prefix' => '',
            'prefix_indexes' => true,
            'strict' => true,
            'engine' => null,
            'options' => [
                \PDO::ATTR_TIMEOUT => 3
            ],
        ],
    ]
];
```

修改.env 文件，设置数据库连接设置正确

```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=webman
DB_USERNAME=root
DB_PASSWORD=

```

然后运行下面的命令完成安装：

```
php webman admin:install

```

启动服务：

```
php start.php start

```

启动服务后，在浏览器打开 [http://127.0.0.1:8787/admin，使用用户名](http://127.0.0.1:8787/admin%EF%BC%8C%E4%BD%BF%E7%94%A8%E7%94%A8%E6%88%B7%E5%90%8D) admin 和密码 admin 登陆

---

### 鸣谢

[](#鸣谢)

`Ex-Admin` 基于以下组件:

- [Ant Design Vue](https://www.antdv.com)
- [Vue3](https://cn.vuejs.org/)
- [font-awesome](http://fontawesome.io)
- [echarts](https://echarts.apache.org/)
- [simple-uploader.js](https://github.com/simple-uploader/Uploader)
- [tinymce](https://www.tiny.cloud/)
- [sortablejs](http://www.sortablejs.com/)

### License

[](#license)

---

Ex-Admin遵循Apache2开源协议发布，并提供免费使用

### 交流QQ群 579150457

[](#交流qq群-579150457)

[![](https://camo.githubusercontent.com/92814792caa6b1e157c171969906899e95b4989d01b4ba44e6f84bb422d8ba00/68747470733a2f2f7777772e65782d61646d696e2e636f6d2f73746f726167652f71715f7465616d2e706e67)](https://camo.githubusercontent.com/92814792caa6b1e157c171969906899e95b4989d01b4ba44e6f84bb422d8ba00/68747470733a2f2f7777772e65782d61646d696e2e636f6d2f73746f726167652f71715f7465616d2e706e67)

### 捐赠

[](#捐赠)

[![](https://camo.githubusercontent.com/9b030f1031e4f51bce74fc416a963fe4455791b3ae56038c0038e031170a89ce/68747470733a2f2f7777772e65782d61646d696e2e636f6d2f73746f726167652f66696c65732f66613562336336363935306230626339326239363535326464383039356163372e6a706567)](https://camo.githubusercontent.com/9b030f1031e4f51bce74fc416a963fe4455791b3ae56038c0038e031170a89ce/68747470733a2f2f7777772e65782d61646d696e2e636f6d2f73746f726167652f66696c65732f66613562336336363935306230626339326239363535326464383039356163372e6a706567)[![](https://camo.githubusercontent.com/5f4f6070e20a602d6ae1a08a05c29a98ed84a07c09c6889ecde8f146f40892d5/68747470733a2f2f7777772e65782d61646d696e2e636f6d2f73746f726167652f66696c65732f38326163653962326165626339356161613539363130626662356136323062662e6a706567)](https://camo.githubusercontent.com/5f4f6070e20a602d6ae1a08a05c29a98ed84a07c09c6889ecde8f146f40892d5/68747470733a2f2f7777772e65782d61646d696e2e636f6d2f73746f726167652f66696c65732f38326163653962326165626339356161613539363130626662356136323062662e6a706567)

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity26

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity48

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

Total

3

Last Release

1224d ago

PHP version history (2 changes)1.0.0PHP &gt;=7.3.0

1.0.2PHP &gt;=7.4.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/2356ebc531ecf95396be69a4adf181e70be1d5f1aa8a0dc1b8467218f528ff19?d=identicon)[rocky-git](/maintainers/rocky-git)

---

Top Contributors

[![rocky-git](https://avatars.githubusercontent.com/u/44958386?v=4)](https://github.com/rocky-git "rocky-git (24 commits)")

---

Tags

phpuiadminwebmancurdEx-adminExAdmin

### Embed Badge

![Health badge](/badges/rockys-ex-admin-webman/health.svg)

```
[![Health](https://phpackages.com/badges/rockys-ex-admin-webman/health.svg)](https://phpackages.com/packages/rockys-ex-admin-webman)
```

###  Alternatives

[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)[laravel-zero/framework

The Laravel Zero Framework.

3371.4M368](/packages/laravel-zero-framework)[rockys/ex-admin-thinkphp

Ex-admin-thinkphp 是一个基于Ant Design of Vue + Thinkphp 开发而成后台系统构建工具，无需关注页面模板JavaScript，只用php代码即可快速构建出一个功能完善的后台系统。

163.0k](/packages/rockys-ex-admin-thinkphp)[rockys/ex-admin-ui

基于Ant Design of Vue 的PHP通用前端渲染框架Ex-admin UI

254.6k4](/packages/rockys-ex-admin-ui)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

44643.1k1](/packages/pressbooks-pressbooks)

PHPackages © 2026

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