1 <?php 2 3 namespace 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 */ 12 class Version { 13 14 /** 15 * Full version number 16 */ 17 const VERSION = '1.5.0'; 18 19 } 20