PHP code example of ceus-media / semantic-versioning
1. Go to this page and download the library: Download ceus-media/semantic-versioning library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ceus-media / semantic-versioning example snippets
$v = new Version( '1.2.3' );
$v->incrementPatch(); // --> 1.2.4
$v->incrementMinor(); // --> 1.3.0
$v->incrementMajor(); // --> 2.0.0
$v1 = new Version( '1.2.3' );
$v2 = new Version( '1.2.4' );
$v2->isLowerThan( $v1 ); // --> no
$v2->isGreaterThan( $v1 ); // --> yes
$v2->isAtLeast( $v1 ); // --> yes
$v2->isAtMost( $v1 ); // --> no
$v2->isEqualTo( $v1 ); // --> no
$v2->isDifferentFrom( $v1 ); // --> yes
$r = new Range( '^1.2' );
Renderer::render( $r ); // -> '^1.2.0
$r->checkVersion( '1.0.0' ) // --> n;
$r->checkVersion( '1.1.0' ) // --> n;
$r->checkVersion( '1.2.0' ) // --> y;
$r->checkVersion( '1.3.0' ) // --> n;
$r->checkVersion( '2.0.0' ) // --> n;