Version.php 392 B

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