├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Comparator.php ├── CompilingMatcher.php ├── Constraint ├── Bound.php ├── Constraint.php ├── ConstraintInterface.php ├── MatchAllConstraint.php ├── MatchNoneConstraint.php └── MultiConstraint.php ├── Interval.php ├── Intervals.php ├── Semver.php └── VersionParser.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/composer.json -------------------------------------------------------------------------------- /src/Comparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/src/Comparator.php -------------------------------------------------------------------------------- /src/CompilingMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/src/CompilingMatcher.php -------------------------------------------------------------------------------- /src/Constraint/Bound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/src/Constraint/Bound.php -------------------------------------------------------------------------------- /src/Constraint/Constraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/src/Constraint/Constraint.php -------------------------------------------------------------------------------- /src/Constraint/ConstraintInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/src/Constraint/ConstraintInterface.php -------------------------------------------------------------------------------- /src/Constraint/MatchAllConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/src/Constraint/MatchAllConstraint.php -------------------------------------------------------------------------------- /src/Constraint/MatchNoneConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/src/Constraint/MatchNoneConstraint.php -------------------------------------------------------------------------------- /src/Constraint/MultiConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/src/Constraint/MultiConstraint.php -------------------------------------------------------------------------------- /src/Interval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/src/Interval.php -------------------------------------------------------------------------------- /src/Intervals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/src/Intervals.php -------------------------------------------------------------------------------- /src/Semver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/src/Semver.php -------------------------------------------------------------------------------- /src/VersionParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composer/semver/HEAD/src/VersionParser.php --------------------------------------------------------------------------------