phore / cli-tools
命令行助手工具
v1.0
2020-05-01 11:12 UTC
Requires
- php: >=7.2
- psr/log: ^1.1
Requires (Dev)
- phore/log: *
- phpunit/phpunit: *
Suggests
- phore/log: Enable advanced logging / out capabilities
This package is auto-updated.
Last update: 2024-09-16 08:46:18 UTC
README
CLI工具模板
示例
主命令
class MainCmd extends PhoreAbstractMainCmd { public function invoke(CliContext $context) { $opts = $context->getOpts("i:"); $context->dispatchMap([ "import" => new ImportCmd(), "search" => new SearchCmd() ], $opts); } }
子命令
class SearchCmd extends PhoreAbstractCmd { public function invoke(CliContext $context) { $opts = $context->getOpts(); $context->ask("Do you want to continue?"); } }