Translated using Weblate (Portuguese)
[phpmyadmin.git] / src / Version.php
blobbe0e2c5ded84afe10a9e2ab54dc333e32b7a31b7
1 <?php
3 declare(strict_types=1);
5 namespace PhpMyAdmin;
7 use const VERSION_SUFFIX;
9 /**
10 * This class is generated by bin/console.
12 * @see \PhpMyAdmin\Command\SetVersionCommand
14 final class Version
16 // The VERSION_SUFFIX constant is defined at ./app/constants.php
17 public const VERSION = '6.0.0-dev' . VERSION_SUFFIX;
18 public const SERIES = '6.0';
19 public const MAJOR = 6;
20 public const MINOR = 0;
21 public const PATCH = 0;
22 public const ID = 60000;
23 public const PRE_RELEASE_NAME = 'dev';
24 public const IS_DEV = true;