view plugins/libcalendaring/lib/Sabre/VObject/Version.php @ 42:db1e51c59ddc

various small fixes from upgrades to PHP and/or hangover from fix to apt-get overwrite at beginning of the year somehow
author Charlie Root
date Sun, 26 Jan 2025 13:12:28 -0500
parents 888e774ee983
children
line wrap: on
line source

<?php

namespace Sabre\VObject;

/**
 * This class contains the version number for the VObject package
 *
 * @copyright Copyright (C) 2007-2013 fruux GmbH (https://fruux.com/).
 * @author Evert Pot (http://evertpot.com/)
 * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
 */
class Version {

    /**
     * Full version number
     */
    const VERSION = '2.1.3';

    /**
     * Stability : alpha, beta, stable
     */
    const STABILITY = 'stable';

}