Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
Less_Version
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2declare( strict_types = 1 );
3
4/**
5 * Version numbers
6 */
7class Less_Version {
8
9    /* Current release version of less.php */
10    public const version = '5.5.1';
11
12    /* Upstream less.js version that this release should be compatible with */
13    public const less_version = '3.13.1';
14
15    /* Parser cache version */
16    public const cache_version = '3131-12';
17}