Lines Matching full:extensions
44 …'plugin repository to find the proper git repository. Multiple extensions can be given as paramete…
111 * Tries to install the given extensions using git clone
113 * @param array $extensions
115 public function cmdClone($extensions) argument
120 foreach ($extensions as $ext) {
134 …if ($succeeded) $this->success('successfully cloned the following extensions: ' . implode(', ', $s…
135 … if ($errors) $this->error('failed to clone the following extensions: ' . implode(', ', $errors));
139 * Tries to install the given extensions using git clone with fallback to install
141 * @param array $extensions
143 public function cmdInstall($extensions) argument
148 foreach ($extensions as $ext) {
172 …if ($succeeded) $this->success('successfully installed the following extensions: ' . implode(', ',…
173 …if ($errors) $this->error('failed to install the following extensions: ' . implode(', ', $errors));