@inheritDoc
Overrides VcsDriverInterface::getDist
public function getDist(string $identifier) : ?array { $url = $this->getApiUrl() . '/repos/' . $this->owner . '/' . $this->repository . '/zipball/' . $identifier; return [ 'type' => 'zip', 'url' => $url, 'reference' => $identifier, 'shasum' => '', ]; }