Version.php 371 B

123456789101112131415161718
  1. <?php
  2. namespace Sabre\VObject;
  3. /**
  4. * This class contains the version number for the VObject package.
  5. *
  6. * @copyright Copyright (C) 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. /**
  13. * Full version number.
  14. */
  15. public const VERSION = '4.5.7';
  16. }