Nwidart\Modules\Repository::install PHP 메소드

install() 공개 메소드

Install the specified module.
public install ( string $name, string $version = 'dev-master', string $type = 'composer', boolean $subtree = false ) : Process
$name string
$version string
$type string
$subtree boolean
리턴 Symfony\Component\Process\Process
    public function install($name, $version = 'dev-master', $type = 'composer', $subtree = false)
    {
        $installer = new Installer($name, $version, $type, $subtree);
        return $installer->run();
    }