123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Version Class
- *
- * This class contains the Sabre_CardDAV version information
- *
- * @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
- */
- class Sabre_CardDAV_Version {
- /**
- * Full version number
- */
- const VERSION = '1.5.3';
- /**
- * Stability : alpha, beta, stable
- */
- const STABILITY = 'stable';
- }
|