xu620 / fast-muban
the fastest admin framework
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Language:JavaScript
Type:project
Requires
- php: >=7.0.0
- ext-bcmath: *
- ext-curl: *
- ext-json: *
- ext-pdo: *
- endroid/qr-code: ^3.9
- firebase/php-jwt: ^5.2
- griffinledingham/php-apple-signin: ^1.1
- mtdowling/cron-expression: ^1.2
- nelexa/zip: ^3.3
- overtrue/easy-sms: ^1.3
- overtrue/pinyin: ~3.0
- overtrue/wechat: ~5.0
- phpmailer/phpmailer: ~6.1.6
- phpoffice/phpspreadsheet: ^1.2
- symfony/var-exporter: ^4.4.13
- topthink/framework: 5.1.*
- topthink/think-captcha: ^2.0
- topthink/think-queue: 2.*
- topthink/think-testing: ^2.0
- yidasu/fastadmin-addons: 1.0.*
This package is auto-updated.
Last update: 2025-03-18 17:38:33 UTC
README
环境要求
PHP >= PHP7.3
Mysql >= 5.5.0 (需支持innodb引擎)
Apache 或 Nginx
PDO PHP Extension
MBstring PHP Extension
CURL PHP Extension
Node.js (可选,用于安装Bower和LESS,同时打包压缩也需要使用到)
Composer (可选,用于管理第三方扩展包)
Bower (可选,用于管理前端资源)
Less (可选,用于编辑less文件,如果你需要增改css样式,最好安装上)
安装
-
下载前端插件依赖包
bower install
-
下载PHP依赖包
composer install
-
导入数据库 muban.sql
-
nginx配置伪静态
location / { index index.html index.htm index.php; if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; break; } }
- api文档生成
apidoc -i application/api/apidoc/ -o public/apidoc/
生成完 访问路径为 http://***.com/apidoc