We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cad1c8 commit 1b168bfCopy full SHA for 1b168bf
3 files changed
.travis.yml
@@ -2,8 +2,6 @@ language: php
2
sudo: false
3
4
php:
5
- - 5.4
6
- - 5.5
7
- 5.6
8
- 7.0
9
- 7.1
scss.inc.php
@@ -1,6 +1,6 @@
1
<?php
-if (version_compare(PHP_VERSION, '5.4') < 0) {
- throw new \Exception('scssphp requires PHP 5.4 or above');
+if (version_compare(PHP_VERSION, '5.6') < 0) {
+ throw new \Exception('scssphp requires PHP 5.6 or above');
}
if (! class_exists('Leafo\ScssPhp\Version', false)) {
src/Version.php
@@ -18,5 +18,5 @@
18
*/
19
class Version
20
{
21
- const VERSION = 'v0.8.1';
+ const VERSION = 'v0.8.2';
22
0 commit comments