JonathanTorres\Construct\Construct::composerInstall PHP Méthode

composerInstall() protected méthode

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
Résultat void
    protected function composerInstall(Script $script)
    {
        if ($this->file->isDirectory($this->projectLower)) {
            $script->runComposerInstallAndRequireDevelopmentPackages($this->projectLower, $this->developmentRequirements);
        }
    }