mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
16 lines
329 B
PHP
16 lines
329 B
PHP
<?php
|
|
|
|
/**
|
|
* Release numbers
|
|
*
|
|
* @package Less
|
|
* @subpackage version
|
|
*/
|
|
class Less_Version{
|
|
|
|
const version = '1.7.0.9'; // The current build number of less.php
|
|
const less_version = '1.7'; // The less.js version that this build should be compatible with
|
|
const cache_version = '170'; // The parser cache version
|
|
|
|
}
|