Nwidart\Modules\Repository::install PHP Méthode

install() public méthode

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
Résultat 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();
    }