diff options
Diffstat (limited to '3dparty/Sabre/CardDAV/Version.php')
-rw-r--r-- | 3dparty/Sabre/CardDAV/Version.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/3dparty/Sabre/CardDAV/Version.php b/3dparty/Sabre/CardDAV/Version.php new file mode 100644 index 00000000000..8961027fc89 --- /dev/null +++ b/3dparty/Sabre/CardDAV/Version.php @@ -0,0 +1,28 @@ +<?php + +/** + * Version Class + * + * @package Sabre + * @subpackage CardDAV + * @copyright Copyright (C) 2007-2011 Rooftop Solutions. All rights reserved. + * @author Evert Pot (http://www.rooftopsolutions.nl/) + * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License + */ + +/** + * This class contains the Sabre_CardDAV version information + */ +class Sabre_CardDAV_Version { + + /** + * Full version number + */ + const VERSION = '0.2'; + + /** + * Stability : alpha, beta, stable + */ + const STABILITY = 'alpha'; + +} |