Version.php 361 B

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