zhanghong / tpadmin
the admin framework based on thinkphp 6.0
Installs: 229
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 2
Open Issues: 2
Language:JavaScript
Requires
- php: >=7.1.0
- league/flysystem: ^1.0
- topthink/framework: ^6.0.0
- topthink/think-captcha: 3.0.*
- topthink/think-helper: ^3.1
- topthink/think-migration: 3.0.*
- topthink/think-view: 1.0.*
- zzstudio/think-auth: ^2.0
This package is auto-updated.
Last update: 2025-03-28 18:30:55 UTC
README
the admin framework based on thinkphp 5.1.
安装
最方便的安装方式就是使用Composer ( https://getcomposer.org/ ),在这之前务必先搭建好thinkphp5.1项目
1、安装 Tpadmin :
$ composer require zhanghong/tpadmin
2、配置
添加行为在 application/tags.php
return [
'app_init' => [
\tpadmin\behavior\Boot::class,
],
// ...
];
3、初始化和数据迁移
#初始化 $ php think tpadmin:init #安装数据库迁移扩展包 $ composer require topthink/think-migration=2.0.* #创建Tpadmin数据表 $ php think migrate:run #添加初始化数据 $ php think tpadmin:seed
进入tpadmin后台
打开后台地址,例如: