예제 #1
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Executing tests unit and integration');
     parent::configure();
     $this->addOption('no-unit', null, InputOption::VALUE_NONE);
     $this->addOption('no-integration', null, InputOption::VALUE_NONE);
 }
예제 #2
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Open project in editor');
     $this->addOption('editor', null, InputOption::VALUE_REQUIRED, 'Which editor to use', 'subl');
     $this->addOption('no-rewrite', null, InputOption::VALUE_NONE, 'No rewrites project config file');
     parent::configure();
 }
예제 #3
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Executes unit tests');
     $this->addOption('format', null, InputOption::VALUE_REQUIRED, 'Formatter', 'pretty');
     $this->addOption('no-display-status-text', null, InputOption::VALUE_NONE, 'Do not display the status ');
     parent::configure();
 }
예제 #4
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Performs checks before commiting');
     $this->addOption('php-cs-fixer-level', null, InputOption::VALUE_REQUIRED, 'The level of fixes (can be psr0, psr1, psr2, or symfony (formerly all))', 'symfony');
     $this->addOption('pattern', null, InputOption::VALUE_REQUIRED, 'The pattern file', '/\\.(php|yml|twig)$/i');
     parent::configure();
 }
예제 #5
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Install dependencies with composer and build assets.');
     $this->addOption('optimize-autoloader', 'o', InputOption::VALUE_NONE, 'Optimize autoloader during autoloader dump');
     $this->addOption('prefer-dist', null, InputOption::VALUE_NONE, 'Forces installation from package dist even for dev versions.');
     $this->addOption('dry-run', null, InputOption::VALUE_NONE, 'Outputs the operations but will not execute anything (implicitly enables --verbose).');
     $this->addOption('no-dev', null, InputOption::VALUE_NONE, 'Disables installation of require-dev packages.');
     parent::configure();
 }
예제 #6
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Executes integration tests');
     $this->addOption('no-display-status-text', null, InputOption::VALUE_NONE, 'Do not display the status ');
     parent::configure();
 }
예제 #7
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     parent::configure();
     $this->setDescription('This command will SSH into a running remote machine and give you access to a shell in project directory.');
     $this->addArgument('command_name', InputArgument::OPTIONAL, 'Which command to run using ssh with working directory to project', 'bash');
 }
예제 #8
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Add project in configuration');
     parent::configure();
 }
예제 #9
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->addOption('--symfony-env', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'The Symfony Environment name.', ['dev']);
     parent::configure();
 }
예제 #10
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Install git hooks in to one or all projects.');
     parent::configure();
 }
예제 #11
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Lints a template and outputs encountered errors');
     parent::configure();
 }
예제 #12
0
 /**
  * @{inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Updates all branches that are tracking a remote branch for to one or all projects, install dependencies with composer and build assets.');
     $this->addOption('no-auto-install-git-up', null, InputOption::VALUE_NONE, 'Checks for installed git up command and if not installed install PyGitUp (https://github.com/msiemens/PyGitUp).');
     parent::configure();
 }
예제 #13
0
 /**
  * {@inheritdoc}
  */
 protected function configure()
 {
     $this->setDescription('Show local git repository directory real path');
     parent::configure();
 }