Magestead\Installers\Magento2Project::__construct PHP Method

__construct() public method

Magento2Project constructor.
public __construct ( array $options, array $config, $projectPath, Symfony\Component\Console\Output\OutputInterface $output )
$options array
$config array
$projectPath
$output Symfony\Component\Console\Output\OutputInterface
    public function __construct(array $options, array $config, $projectPath, OutputInterface $output)
    {
        $this->output = $output;
        $this->composerInstall($projectPath, $output);
        $this->installMagento($config, $options, $projectPath, $output);
        $this->finaliseSetup($options, $projectPath, $output);
        $this->showCredentials($config, $output);
        Notification::send('Magento 2 was successfully installed!');
    }