Ejemplo n.º 1
0
 /**
  * Gets the provided module with a minimum version
  * @param string $namespace The namespace of the module
  * @param string $name The name of the module
  * @param string $atLeastVersion The minimum version of the module
  * @return string Base64 encoded string of the phar file of the module
  */
 public function getModuleVersionAtLeast($namespace, $name, $atLeastVersion)
 {
     $file = $this->repository->getModuleFileForVersionAtLeast($namespace, $name, $atLeastVersion);
     return $this->getBase64FromFile($file);
 }