Lines Matching full:extensions
44 …'plugin repository to find the proper git repository. Multiple extensions can be given as paramete…
125 * Tries to install the given extensions using git clone
127 * @param array $extensions
130 public function cmdClone($extensions, $preferHttps = false) argument
135 foreach ($extensions as $ext) {
149 …if ($succeeded) $this->success('successfully cloned the following extensions: ' . implode(', ', $s…
150 … if ($errors) $this->error('failed to clone the following extensions: ' . implode(', ', $errors));
154 * Tries to install the given extensions using git clone with fallback to install
156 * @param array $extensions
159 public function cmdInstall($extensions, $preferHttps = false) argument
164 foreach ($extensions as $ext) {
188 …if ($succeeded) $this->success('successfully installed the following extensions: ' . implode(', ',…
189 …if ($errors) $this->error('failed to install the following extensions: ' . implode(', ', $errors));