CompressPackageCommand.php 944 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. declare (strict_types = 1);
  3. namespace catcher\command\Tools;
  4. use catcher\library\Compress;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\input\Argument;
  8. use think\console\Output;
  9. /**
  10. * 打包模块
  11. *
  12. * Class CompressPackageCommand
  13. * @package catcher\command\Tools
  14. */
  15. class CompressPackageCommand extends Command
  16. {
  17. protected function configure()
  18. {
  19. // 指令配置
  20. $this->setName('catch:unpack ')
  21. ->addArgument('module', Argument::REQUIRED, 'module name')
  22. ->setDescription('compress module to zip');
  23. }
  24. protected function execute(Input $input, Output $output)
  25. {
  26. $package = $this->input->getArgument('module');
  27. try {
  28. (new Compress())->moduleToZip($package);
  29. } catch (\Exception $e) {
  30. exit($output->error($e->getMessage()));
  31. }
  32. $output->info($package . ' zip successfully~');
  33. }
  34. }