Version.php 381 B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\DAV;
  4. /**
  5. * This class contains the SabreDAV version constants.
  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 = '4.6.0';
  17. }