File: Version.php

package info (click to toggle)
less.php 4.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 616 kB
  • sloc: php: 7,595; makefile: 7
file content (16 lines) | stat: -rw-r--r-- 317 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

/**
 * Version numbers
 */
class Less_Version {

	/* Current release version of less.php */
	public const version = '4.2.1';

	/* Upstream less.js version that this release should be compatible with */
	public const less_version = '2.5.3';

	/* Parser cache version */
	public const cache_version = '253-2';
}