Home > Software engineering >  Next semantic version php
Next semantic version php

Time:12-07

Hi I would like to update a semantic version number using php for a three digit system in string form. An example :

'1.0.0' => function => '1.0.1'
'1.0.12' => function => '1.0.13'
<iframe name="sif1" sandbox="allow-forms allow-modals allow-scripts" frameborder="0"></iframe> Does anyone know a solution to this problem? Thanks in advance

CodePudding user response:

All the answers you want for the semantic-versioning is you can get in,

PHLAK/SemVer

Composer also have the library for the same but the methods are easy from SemVer.

  • Related