-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
if (version_compare(PHP_VERSION, '5.6') < 0) { | ||
throw new \Exception('scssphp requires PHP 5.6 or above'); | ||
if (version_compare(PHP_VERSION, '5.4') < 0) { | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
mahagr
Contributor
|
||
throw new \Exception('scssphp requires PHP 5.4 or above'); | ||
} | ||
|
||
if (! class_exists('Leafo\ScssPhp\Version', false)) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,5 +18,5 @@ | |
*/ | ||
class Version | ||
{ | ||
const VERSION = 'v0.8.3'; | ||
const VERSION = 'v0.8.4'; | ||
} |
@robocoder You missed fixes for these two lines:
https://github.com/leafo/scssphp/blob/v0.8.1/src/Compiler.php#L1493
https://github.com/leafo/scssphp/blob/v0.8.1/src/Compiler.php#L2141