PHPackages                             diandiyun/ddicms - 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. diandiyun/ddicms

ActiveProject[Admin Panels](/categories/admin)

diandiyun/ddicms
================

店滴云-针对多商户业务开发的一套管理cms,支持多运营主体,单运营主体运营开发

1.3.1(3y ago)631BSD-3-ClauseJavaScriptPHP &gt;=7.2.0

Since Apr 2Pushed 2y ago1 watchersCompare

[ Source](https://github.com/ddicloud/ddiot)[ Packagist](https://packagist.org/packages/diandiyun/ddicms)[ Docs](https://www.dandicloud.com/)[ RSS](/packages/diandiyun-ddicms/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (32)Versions (36)Used By (0)

欢迎使用店滴 cms(ddiot)
=================

[](#欢迎使用店滴-cmsddiot)

[![在这里插入图片描述](https://camo.githubusercontent.com/3b1300011eabba75c4367bf34378ed301463fdf75923f69e0ccf636d80065f36/68747470733a2f2f6469616e64692d313235353336393130392e636f732e61702d6e616e6a696e672e6d7971636c6f75642e636f6d2f636d73253246343739656438346435343463666362306635613765376265326635663630632e6a7067)](https://camo.githubusercontent.com/3b1300011eabba75c4367bf34378ed301463fdf75923f69e0ccf636d80065f36/68747470733a2f2f6469616e64692d313235353336393130392e636f732e61702d6e616e6a696e672e6d7971636c6f75642e636f6d2f636d73253246343739656438346435343463666362306635613765376265326635663630632e6a7067)

店滴云，让经营场所，更智能。围绕茶室、酒店、健身房、公寓、出租房等经营性场所进行物联网改造。同时支持多种物联网通信协议，开放智能门锁，智能开关，智能手环的sdk供开发者使用。

官方地址
----

[](#官方地址)

[店滴云官网](https://www.dandicloud.com/)[官方开源库](https://toscode.gitee.com/wayfirer)[cms源码](https://toscode.gitee.com/wayfirer/ddicms)

#### 开发者参与

[](#开发者参与)

qq群
---

[](#qq群)

：823429313，点击可直接加入：[开发者交流群](https://jq.qq.com/?_wv=1027&k=4d2Rl2lc)

微信公众号
-----

[](#微信公众号)

[![在这里插入图片描述](https://camo.githubusercontent.com/5ffd3247b1d1add3ba63a740a11a812e6b414fc380eaa596ad5ceefdcb6471d3/68747470733a2f2f6469616e64692d313235353336393130392e636f732e61702d6e616e6a696e672e6d7971636c6f75642e636f6d2f636d73253246386564633230633730653436393735653735323061383936313431343239352e6a7067)](https://camo.githubusercontent.com/5ffd3247b1d1add3ba63a740a11a812e6b414fc380eaa596ad5ceefdcb6471d3/68747470733a2f2f6469616e64692d313235353336393130392e636f732e61702d6e616e6a696e672e6d7971636c6f75642e636f6d2f636d73253246386564633230633730653436393735653735323061383936313431343239352e6a7067)

特性
==

[](#特性)

- 使用稳定的 YII 框架，优化处理开发过程，开发体验如 tp 一样顺滑。
- 支持多层权限管控，路由权限，数据权限，菜单权限，集团权限，商户权限，扩展功能权限随意搭配调度
- 多模块可安装，便于迅速扩展业务，支持横向纵向双向扩展业务需求
- 表单多样，除 yii 自身的表单组件，系统还对表单做了丰富，支持一句话配置万能表单
- gii代码自动生成，包括扩展模块，数据库模型，检索模型，控制器和接口都可以自动生成
- element-ui+uniapp+店滴cms，中后台，多端兼容，数据处理全部支持且开源

基于element-ui的后台：ddAdmin
-----------------------

[](#基于element-ui的后台ddadmin)

```
    git clone https://gitee.com/wayfirer/dd-admin.git
```

环境准备：
=====

[](#环境准备)

```
Php>=8.1
Redis 7.0.0
MySQL 5.6.50

```

第一步：git 下载代码
============

[](#第一步git-下载代码)

```
git clone https://gitee.com/wayfirer/ddicms.git

```

第二步：composer 扩展安装
=================

[](#第二步composer-扩展安装)

```
cd 你的项目根路径
php composer.phar install

```

注：第一步和第二步也可以合并，缺点是后续git更新不方便，优点是安装快捷
====================================

[](#注第一步和第二步也可以合并缺点是后续git更新不方便优点是安装快捷)

```
composer create-project ddicloud/ddicms

```

第三步：执行安装命令
==========

[](#第三步执行安装命令)

```

    php ./yii install

说明：提醒输入数据库版本，请输入：1.0.0

```

第五步：Nginx 部署配置
==============

[](#第五步nginx-部署配置)

首先解析网站到 frontend，然后配置 nginx 如下：

```
server {
        listen        80;
        server_name  www.ai.com;
        root   "ddicms/frontend";
        add_header Access-Control-Allow-Origin *;
        add_header Access-Control-Allow-Headers X-Requested-With,Authorization,Content-Type,access-token,bloc-id,store-id;
        add_header Access-Control-Allow-Methods GET,POST,OPTIONS,PUT,DELETE;
        location / {
            index index.php index.html error/index.html;
            error_page 400 /error/400.html;
            error_page 403 /error/403.html;
            error_page 404 /error/404.html;
            error_page 500 /error/500.html;
            error_page 501 /error/501.html;
            error_page 502 /error/502.html;
            error_page 503 /error/503.html;
            error_page 504 /error/504.html;
            error_page 505 /error/505.html;
            error_page 506 /error/506.html;
            error_page 507 /error/507.html;
            error_page 509 /error/509.html;
            error_page 510 /error/510.html;
            include D:/www/firetech/frontend/web/nginx.htaccess;
            autoindex  off;
        }
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9001;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }
        location /backend {
            index index.html  index.php;
            if (!-e $request_filename)
            {
                rewrite ^/backend/(.*)$ /backend/index.html last;
            }
        }
        location /api {
            index index.php index.html;
            if (!-e $request_filename)
            {
                rewrite ^/api/(.*)$ /api/index.php last;
            }
            if (!-f $request_filename){
                set $rule_0 1$rule_0;
            }
        }

        location /admin {
            index index.php index.html;
            if (!-e $request_filename)
            {
                rewrite ^/admin/(.*)$ /admin/index.php last;
            }
            if (!-f $request_filename){
                set $rule_0 1$rule_0;
            }
        }

         location /help {
            index index.php index.html;
            if (!-e $request_filename)
            {
                rewrite ^/help/(.*)$ /help/index.php last;
            }
            if (!-f $request_filename){
                set $rule_0 1$rule_0;
            }
        }

        gzip on;
      	gzip_comp_level 5;
      	gzip_min_length 256;
      	gzip_proxied any;
      	gzip_vary on;
}

```

特别鸣谢
====

[](#特别鸣谢)

感谢以下的项目，排名不分先后

- Yii：
- EasyWechat：
- AdminLTE：
- Vue:
- vue-ele-form:
- element-ui:
- 百度ai:

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 99.4% 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 ~4 days

Total

32

Last Release

1381d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/46cef84bc40d75ea2a86c1746f139764841f3d133d34d951bf78ea39faffaa20?d=identicon)[wangchunsheng](/maintainers/wangchunsheng)

---

Top Contributors

[![yii-diandi](https://avatars.githubusercontent.com/u/34767187?v=4)](https://github.com/yii-diandi "yii-diandi (1727 commits)")[![MinRadish](https://avatars.githubusercontent.com/u/22492914?v=4)](https://github.com/MinRadish "MinRadish (11 commits)")

---

Tags

phpcmsswooleyiiyii-vueyiicmsaiyii2python

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/diandiyun-ddicms/health.svg)

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

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M650](/packages/sylius-sylius)[craftcms/cms

Craft CMS

3.6k3.6M2.6k](/packages/craftcms-cms)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)[yii2-starter-kit/yii2-starter-kit

Yii2 Starter Kit Application Template

1.4k6.6k](/packages/yii2-starter-kit-yii2-starter-kit)

PHPackages © 2026

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