Version.php 517 B

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