Version.php 365 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\Uri;
  4. /**
  5. * This class contains the version number for this package.
  6. *
  7. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  8. * @author Evert Pot (http://evertpot.com/)
  9. * @license http://sabre.io/license/
  10. */
  11. class Version
  12. {
  13. /**
  14. * Full version number.
  15. */
  16. public const VERSION = '2.3.4';
  17. }