for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Zemit Framework.
*
* (c) Zemit Team <[email protected]>
* For the full copyright and license information, please view the LICENSE.txt
* file that was distributed with this source code.
*/
namespace Zemit;
* Class Version
* This class allows to get the installed version of the zemit core
* @author Julien Turbide <[email protected]>
* @copyright Zemit Team <[email protected]>
* @since 1.0
* @version 1.9
* @package Zemit
class Version extends \Phalcon\Version
{
* Area where the version number is set. The format is as follows:
* ABBCCDE
* A - Major version
* B - Med version (two digits)
* C - Min version (two digits)
* D - Special release: 1 = Alpha, 2 = Beta, 3 = RC, 4 = Stable
* E - Special release version i.e. RC1, Beta2 etc.
protected static function getVersion() : array
return [0, 1, 31, 2, 0];
}