setDescription('List authors and contributors'); return $this; } public function execute(InputInterface $input, OutputInterface $output) { if ( ! $this->checkPhraseaInstall($output)) { return 1; } $output->writeln(file_get_contents(__DIR__ . '/../../../../AUTHORS')); return 0; } public function needPhraseaInstalled() { return false; } }