mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-24 00:31:07 +00:00
16 lines
332 B
PHP
16 lines
332 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Release numbers
|
||
|
*
|
||
|
* @package Less
|
||
|
* @subpackage version
|
||
|
*/
|
||
|
class Less_Version{
|
||
|
|
||
|
const version = '1.7.0.13'; // The current build number of less.php
|
||
|
const less_version = '2.5.3'; // The less.js version that this build should be compatible with
|
||
|
const cache_version = '253'; // The parser cache version
|
||
|
|
||
|
}
|