Méthode | Description | |
---|---|---|
nextPearVersion ( string $version ) : string | Increments the last part of a version number by one. | |
nextVersion ( string $version ) : string | Increments the last part of a version number by one. | |
parsePearVersion ( string $version ) : object | Converts the PEAR package version number to descriptive information. | |
pearToHordeWithBranch ( string $version, string $branch ) : string | Convert the PEAR package version number to Horde style and take the branch name into account. | |
pearToTicketDescription ( string $version ) : string | Converts the PEAR package version number to a descriptive tag used on bugs.horde.org. | |
validateApiStability ( string $version, string $stability ) | Validates the version and api stability tuple. | |
validatePear ( string $version ) : string | Validates and normalizes a version to be a valid PEAR version. | |
validateReleaseStability ( string $version, string $stability ) | Validates the version and release stability tuple. |
public static nextPearVersion ( string $version ) : string | ||
$version | string | A version number. |
Résultat | string | The incremented version number. |
public static nextVersion ( string $version ) : string | ||
$version | string | A version number. |
Résultat | string | The incremented version number. |
public static parsePearVersion ( string $version ) : object | ||
$version | string | The PEAR package version. |
Résultat | object | An object with the properties: - version: The base version string. - description: A stability description. - subversion: The sub version within the stability level. |
public static pearToTicketDescription ( string $version ) : string | ||
$version | string | The PEAR package version. |
Résultat | string | The description for bugs.horde.org. |
public static validateApiStability ( string $version, string $stability ) | ||
$version | string | A version string. |
$stability | string | Api stability information. |
public static validatePear ( string $version ) : string | ||
$version | string | A version string. |
Résultat | string | The normalized version string. |
public static validateReleaseStability ( string $version, string $stability ) | ||
$version | string | A version string. |
$stability | string | Release stability information. |