Magestead\Installers\Magento2Project::showCredentials PHP Method

showCredentials() protected method

protected showCredentials ( array $options, Symfony\Component\Console\Output\OutputInterface $output )
$options array
$output Symfony\Component\Console\Output\OutputInterface
    protected function showCredentials(array $options, OutputInterface $output)
    {
        $output->writeln('<info>SUCCESS: Magestead has finished installing Magento 2!</info>');
        $table = new Table($output);
        $table->setHeaders(['Username', 'Password', 'Base URL', 'Admin URI'])->setRows([['admin', 'password123', $options['magestead']['apps']['mba_12345']['base_url'], 'admin']]);
        $table->render();
        HostsPluginChecker::verify($options, $output);
    }