just add:
define('STDIN',fopen("php://stdin","r"));
at the top of /vendor/symfony/symfony/src/Symfony/Component/Console/Helper/DialogHelper.php
<?php namespace Symfony\Component\Console\Helper; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Formatter\OutputFormatterStyle; define('STDIN',fopen("php://stdin","r")); ...
source share