Version.php 533 B

1234567891011121314151617181920212223
  1. <?php
  2. declare(strict_types=1);
  3. namespace PhpMyAdmin;
  4. /**
  5. * This class is generated by scripts/console.
  6. *
  7. * @see \PhpMyAdmin\Command\SetVersionCommand
  8. */
  9. final class Version
  10. {
  11. // The VERSION_SUFFIX constant is defined at libraries/vendor_config.php
  12. public const VERSION = '5.1.1' . VERSION_SUFFIX;
  13. public const SERIES = '5.1';
  14. public const MAJOR = 5;
  15. public const MINOR = 1;
  16. public const PATCH = 1;
  17. public const ID = 50101;
  18. public const PRE_RELEASE_NAME = '';
  19. public const IS_DEV = false;
  20. }