herrera-io/version

This package is abandoned and no longer maintained. The author suggests using the kherge/semver package instead.

A library for creating, editing, and comparing semantic versioning numbers.

1.1.1 2014-05-27 05:29 UTC

This package is not auto-updated.

Last update: 2021-12-07 01:37:52 UTC


README

Build Status

Version is a library for creating, editing, and comparing semantic version numbers. Currently, v2.0.0 of the Semantic Versioning specification is supported.

use Herrera\Version\Dumper;
use Herrera\Version\Parser;

$builder = Parser::toBuilder('1.2.3-alpha+2');
$builder->incrementMajor();
$builder->clearBuild();
$builder->clearPreRelease();

echo Dumper::toString($builder); // echoes "2.0.0"

$finalVersion = $builder->getVersion();

Documentation