Library providing helpers for Symfony Console
You can install it from Composer. In your project:
composer require "jelix/console-helper"
In your command class:
protected function execute(InputInterface $input, OutputInterface $output)
{
$questionHelper = $this->getHelper('question');
$interactive = new InteractiveCliHelper($questionHelper, $input, $output);
$interactive->...
}