Version.php 549 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Version Class
  4. *
  5. * This class contains the Sabre_CardDAV version information
  6. *
  7. * @package Sabre
  8. * @subpackage CardDAV
  9. * @copyright Copyright (C) 2007-2011 Rooftop Solutions. All rights reserved.
  10. * @author Evert Pot (http://www.rooftopsolutions.nl/)
  11. * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
  12. */
  13. class Sabre_CardDAV_Version {
  14. /**
  15. * Full version number
  16. */
  17. const VERSION = '1.5.3';
  18. /**
  19. * Stability : alpha, beta, stable
  20. */
  21. const STABILITY = 'stable';
  22. }