You are here

public function InstallableLibrary::getAvailableVersions in Markdown 8.2

Retrieves the available versions of the library.

Note: this will likely make an HTTP request.

Return value

string[] The available versions.

2 calls to InstallableLibrary::getAvailableVersions()
InstallableLibrary::getNewerVersions in src/Annotation/InstallableLibrary.php
Retrieves the newer versions of the library.
InstallableLibrary::isKnownVersion in src/Annotation/InstallableLibrary.php
Indicates whether this is a known version.
2 methods override InstallableLibrary::getAvailableVersions()
ComposerPackage::getAvailableVersions in src/Annotation/ComposerPackage.php
Retrieves the available versions of the library.
PeclExtension::getAvailableVersions in src/Annotation/PeclExtension.php
Retrieves the available versions of the library.

File

src/Annotation/InstallableLibrary.php, line 129

Class

InstallableLibrary

Namespace

Drupal\markdown\Annotation

Code

public function getAvailableVersions() {
  return [];
}