PHP code example of exposuresoftware / versioner

1. Go to this page and download the library: Download exposuresoftware/versioner 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/ */

    

exposuresoftware / versioner example snippets


VersionString::incrementPatch('v1.0.0'); // 'v1.0.1'
VersionString::incrementMinor('v1.0.0'); // 'v1.1.0'
VersionString::incrementMajor('v0.1.30-alpha'); // 'v2.0.0'

(string)(new VersionString('v2.0.0-alpha'))->preserveSuffix()->increment(VersionSegment::MINOR); // 'v2.1.0-alpha'