19 declare(strict_types=1);
28 private const REGEXP =
'(?<major>\d+)([.](?<minor>\d+)([.](?<patch>\d+))?)?';
37 if (!preg_match(
"/" . self::REGEXP .
"/", $version, $match)) {
38 throw new \InvalidArgumentException(
39 "Expected version string '$version' to match this regular expression: " . self::REGEXP
42 $this->major = (
int) $match[
"major"];
43 $this->minor = (
int) ($match[
"minor"] ?? 0);
44 $this->patch = (
int) ($match[
"patch"] ?? 0);
65 $this->major === $other->major
66 && $this->minor === $other->minor
67 && $this->patch === $other->patch;
72 return version_compare((
string) $this, (
string) $other,
'>');
92 return "$this->major.$this->minor.$this->patch";
isGreaterThan(Version $other)
__construct(string $version)
isSmallerThan(Version $other)
isGreaterThanOrEquals(Version $other)
isSmallerThanOrEquals(Version $other)
A version number that consists of three numbers (major, minor, patch).