2026-05-28 09:34:28 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Sabre\VObject;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This class contains the version number for the VObject package.
|
|
|
|
|
*
|
|
|
|
|
* @copyright Copyright (C) fruux GmbH (https://fruux.com/)
|
|
|
|
|
* @author Evert Pot (http://evertpot.com/)
|
|
|
|
|
* @license http://sabre.io/license/ Modified BSD License
|
|
|
|
|
*/
|
|
|
|
|
class Version
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Full version number.
|
|
|
|
|
*/
|
2026-06-02 22:07:16 +02:00
|
|
|
public const VERSION = '4.6.0';
|
2026-05-28 09:34:28 +02:00
|
|
|
}
|