| 1 |
<?php |
| 2 |
if (version_compare(PHP_VERSION, '5.4') < 0) { |
| 3 |
throw new \Exception('scssphp requires PHP 5.4 or above'); |
| 4 |
} |
| 5 |
|
| 6 |
if (! class_exists('Leafo\ScssPhp\Version', false)) { |
| 7 |
include_once __DIR__ . '/src/Base/Range.php'; |
| 8 |
include_once __DIR__ . '/src/Block.php'; |
| 9 |
include_once __DIR__ . '/src/Colors.php'; |
| 10 |
include_once __DIR__ . '/src/Compiler.php'; |
| 11 |
include_once __DIR__ . '/src/Compiler/Environment.php'; |
| 12 |
include_once __DIR__ . '/src/Exception/CompilerException.php'; |
| 13 |
include_once __DIR__ . '/src/Exception/ParserException.php'; |
| 14 |
include_once __DIR__ . '/src/Exception/RangeException.php'; |
| 15 |
include_once __DIR__ . '/src/Exception/ServerException.php'; |
| 16 |
include_once __DIR__ . '/src/Formatter.php'; |
| 17 |
include_once __DIR__ . '/src/Formatter/Compact.php'; |
| 18 |
include_once __DIR__ . '/src/Formatter/Compressed.php'; |
| 19 |
include_once __DIR__ . '/src/Formatter/Crunched.php'; |
| 20 |
include_once __DIR__ . '/src/Formatter/Debug.php'; |
| 21 |
include_once __DIR__ . '/src/Formatter/Expanded.php'; |
| 22 |
include_once __DIR__ . '/src/Formatter/Nested.php'; |
| 23 |
include_once __DIR__ . '/src/Formatter/OutputBlock.php'; |
| 24 |
include_once __DIR__ . '/src/Node.php'; |
| 25 |
include_once __DIR__ . '/src/Node/Number.php'; |
| 26 |
include_once __DIR__ . '/src/Parser.php'; |
| 27 |
include_once __DIR__ . '/src/SourceMap/Base64VLQEncoder.php'; |
| 28 |
include_once __DIR__ . '/src/SourceMap/SourceMapGenerator.php'; |
| 29 |
include_once __DIR__ . '/src/Type.php'; |
| 30 |
include_once __DIR__ . '/src/Util.php'; |
| 31 |
include_once __DIR__ . '/src/Version.php'; |
| 32 |
} |
| 33 |
|