Blame view
sources/3rdparty/sabre/vobject/lib/Sabre/VObject/Version.php
485 Bytes
|
03e52840d
|
1 2 3 4 5 6 7 |
<?php namespace Sabre\VObject; /** * This class contains the version number for the VObject package * |
|
6d9380f96
|
8 9 |
* @copyright Copyright (C) 2007-2013 fruux GmbH (https://fruux.com/). * @author Evert Pot (http://evertpot.com/) |
|
03e52840d
|
10 11 12 13 14 15 16 |
* @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
*/
class Version {
/**
* Full version number
*/
|
|
6d9380f96
|
17 |
const VERSION = '2.1.3'; |
|
03e52840d
|
18 19 20 21 22 23 24 |
/**
* Stability : alpha, beta, stable
*/
const STABILITY = 'stable';
}
|