JonathanTorres\Construct\Construct::composerInstall PHP Method

composerInstall() protected method

Do an initial composer install and require the set development packages in the constructed project.
protected composerInstall ( Script $script ) : void
$script JonathanTorres\Construct\Helpers\Script
return void
    protected function composerInstall(Script $script)
    {
        if ($this->file->isDirectory($this->projectLower)) {
            $script->runComposerInstallAndRequireDevelopmentPackages($this->projectLower, $this->developmentRequirements);
        }
    }