phore/cli-tools
最新稳定版本:v1.0
Composer 安装命令:
composer require phore/cli-tools
包简介
Cli helper tools
README 文档
README
Boilerplate CLI Tool
Example
The Main Command
class MainCmd extends PhoreAbstractMainCmd { public function invoke(CliContext $context) { $opts = $context->getOpts("i:"); $context->dispatchMap([ "import" => new ImportCmd(), "search" => new SearchCmd() ], $opts); } }
The Subcommand
class SearchCmd extends PhoreAbstractCmd { public function invoke(CliContext $context) { $opts = $context->getOpts(); $context->ask("Do you want to continue?"); } }
统计信息
- 总下载量: 543
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-04-30