ke / thinkphp-model-make
thinkphp model生成器
Installs: 33
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/ke/thinkphp-model-make
Requires
- php: >=7.0.0
- symfony/string: ^5.1
This package is auto-updated.
Last update: 2025-10-05 17:59:17 UTC
README
thinkphp model生成器
安装
composer require ke/thinkphp-model-make
## 或者使用最新版本的
composer require ke/thinkphp-model-make dev-master
注册命令
// app/command.php
return [
\ke\model\MakeCommand::class,
];
使用
php think ke:model:make --table=project
参数说明
参数 | 必须 | 说明 |
---|---|---|
table | 是 | 表名,无需前缀,会自动引入database的前缀 |
namespace | 否 | 命名空间;只需输入子空间名 |
dir | 否 | 输出目录;默认为common |