annotate plugins/libcalendaring/lib/Sabre/VObject/Version.php @ 4:888e774ee983

libcalendar plugin as distributed
author Charlie Root
date Sat, 13 Jan 2018 08:57:56 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
1 <?php
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
2
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
3 namespace Sabre\VObject;
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
4
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
5 /**
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
6 * This class contains the version number for the VObject package
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
7 *
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
8 * @copyright Copyright (C) 2007-2013 fruux GmbH (https://fruux.com/).
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
9 * @author Evert Pot (http://evertpot.com/)
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
10 * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
11 */
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
12 class Version {
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
13
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
14 /**
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
15 * Full version number
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
16 */
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
17 const VERSION = '2.1.3';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
18
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
19 /**
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
20 * Stability : alpha, beta, stable
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
21 */
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
22 const STABILITY = 'stable';
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
23
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
24 }