Version.php 375 B

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