xref: /plugin/davcal/vendor/sabre/xml/lib/Version.php (revision 185e2535914616e98630b0777145a3e6d5c8d81b)
1<?php
2
3namespace Sabre\Xml;
4
5/**
6 * This class contains the version number for this package.
7 *
8 * @copyright Copyright (C) 2009-2015 fruux GmbH (https://fruux.com/).
9 * @author Evert Pot (http://evertpot.com/)
10 * @license http://sabre.io/license/
11 */
12class Version {
13
14    /**
15     * Full version number
16     */
17    const VERSION = '1.2.0';
18
19}
20