Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions scssphp/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,24 @@
"psr-4": { "ScssPhp\\ScssPhp\\Tests\\": "tests/" }
},
"require": {
"php": ">=7.2",
"ext-ctype": "*",
"php": ">=5.6.0",
"ext-json": "*",
"league/uri": "^6.4.0",
"league/uri-interfaces": "^2.3"
"ext-ctype": "*"
},
"suggest": {
"ext-mbstring": "For best performance, mbstring should be installed as it is faster than ext-iconv",
"ext-iconv": "Can be used as fallback when ext-mbstring is not available"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"phpunit/phpunit": "^8.5 || ^9.5",
"phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.3 || ^9.4",
"sass/sass-spec": "*",
"squizlabs/php_codesniffer": "~3.5",
"symfony/phpunit-bridge": "^5.1",
"thoughtbot/bourbon": "^7.0",
"twbs/bootstrap": "~5.0",
"twbs/bootstrap4": "4.6.1",
"zurb/foundation": "~6.5"
"zurb/foundation": "~6.7.0"
},
"repositories": [
{
Expand Down Expand Up @@ -103,6 +101,7 @@
}
}
],
"bin": ["bin/pscss"],
"config": {
"sort-packages": true,
"allow-plugins": {
Expand Down
4 changes: 2 additions & 2 deletions scssphp/scss.inc.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

if (version_compare(PHP_VERSION, '7.2') < 0) {
throw new \Exception('scssphp requires PHP 7.2 or above');
if (version_compare(PHP_VERSION, '5.6') < 0) {
throw new \Exception('scssphp requires PHP 5.6 or above');
}

if (! class_exists('ScssPhp\ScssPhp\Version')) {
Expand Down
27 changes: 0 additions & 27 deletions scssphp/src/Ast/AstNode.php

This file was deleted.

35 changes: 0 additions & 35 deletions scssphp/src/Ast/Css/CssAtRule.php

This file was deleted.

34 changes: 0 additions & 34 deletions scssphp/src/Ast/Css/CssComment.php

This file was deleted.

62 changes: 0 additions & 62 deletions scssphp/src/Ast/Css/CssDeclaration.php

This file was deleted.

37 changes: 0 additions & 37 deletions scssphp/src/Ast/Css/CssImport.php

This file was deleted.

30 changes: 0 additions & 30 deletions scssphp/src/Ast/Css/CssKeyframeBlock.php

This file was deleted.

Loading