├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── README.md ├── Sassphp.sln ├── Sassphp.vcxproj ├── Sassphp.vcxproj.filters ├── appveyor.yml ├── composer.json ├── config.m4 ├── config.w32 ├── install.php ├── package.xml ├── phpunit.xml ├── scripts └── sassphp_install.sh ├── src ├── php_sass.h ├── sass.c ├── utilities.c └── utilities.h ├── stubs └── sass.php └── tests ├── arginfo_present.phpt ├── available.phpt ├── check_bundled_libsass_version.phpt ├── class_exists.phpt ├── class_instantiatable.phpt ├── custom_function.phpt ├── custom_function_arg_type_boolean.phpt ├── custom_function_arg_type_color.phpt ├── custom_function_arg_type_list.phpt ├── custom_function_arg_type_map.phpt ├── custom_function_arg_type_number.phpt ├── custom_function_arg_type_string.phpt ├── custom_function_make_boolean.phpt ├── custom_function_make_color.phpt ├── custom_function_make_error.phpt ├── custom_function_make_list.phpt ├── custom_function_make_map.phpt ├── custom_function_make_null.phpt ├── custom_function_make_number.phpt ├── custom_function_make_qstring.phpt ├── custom_function_make_string.phpt ├── custom_function_make_warning.phpt ├── custom_importer_compiled_output.phpt ├── custom_importer_external_file.phpt ├── file_comments.phpt ├── file_embed.phpt ├── file_indent.phpt ├── get_map_path.phpt ├── get_map_root.phpt ├── handles_comments.phpt ├── handles_embed.phpt ├── handles_include_path.phpt ├── handles_indent.phpt ├── handles_map.phpt ├── handles_map_root.phpt ├── handles_precision.phpt ├── handles_style.phpt ├── old_compile_file_alias_exists.phpt ├── output_path_with_memory_compile.phpt ├── parse_file_parses_file.phpt ├── parse_parses_correct_sass.phpt ├── support ├── foo.scss ├── huge.css.map ├── huge.scss ├── import.scss ├── source_type.sass ├── sub │ └── subsub │ │ └── a.scss └── test.scss └── throw_exception.phpt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/README.md -------------------------------------------------------------------------------- /Sassphp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/Sassphp.sln -------------------------------------------------------------------------------- /Sassphp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/Sassphp.vcxproj -------------------------------------------------------------------------------- /Sassphp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/Sassphp.vcxproj.filters -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/appveyor.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/composer.json -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/config.w32 -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/install.php -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/package.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/phpunit.xml -------------------------------------------------------------------------------- /scripts/sassphp_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/scripts/sassphp_install.sh -------------------------------------------------------------------------------- /src/php_sass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/src/php_sass.h -------------------------------------------------------------------------------- /src/sass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/src/sass.c -------------------------------------------------------------------------------- /src/utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/src/utilities.c -------------------------------------------------------------------------------- /src/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/src/utilities.h -------------------------------------------------------------------------------- /stubs/sass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/stubs/sass.php -------------------------------------------------------------------------------- /tests/arginfo_present.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/arginfo_present.phpt -------------------------------------------------------------------------------- /tests/available.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/available.phpt -------------------------------------------------------------------------------- /tests/check_bundled_libsass_version.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/check_bundled_libsass_version.phpt -------------------------------------------------------------------------------- /tests/class_exists.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/class_exists.phpt -------------------------------------------------------------------------------- /tests/class_instantiatable.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/class_instantiatable.phpt -------------------------------------------------------------------------------- /tests/custom_function.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function.phpt -------------------------------------------------------------------------------- /tests/custom_function_arg_type_boolean.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_arg_type_boolean.phpt -------------------------------------------------------------------------------- /tests/custom_function_arg_type_color.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_arg_type_color.phpt -------------------------------------------------------------------------------- /tests/custom_function_arg_type_list.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_arg_type_list.phpt -------------------------------------------------------------------------------- /tests/custom_function_arg_type_map.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_arg_type_map.phpt -------------------------------------------------------------------------------- /tests/custom_function_arg_type_number.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_arg_type_number.phpt -------------------------------------------------------------------------------- /tests/custom_function_arg_type_string.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_arg_type_string.phpt -------------------------------------------------------------------------------- /tests/custom_function_make_boolean.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_make_boolean.phpt -------------------------------------------------------------------------------- /tests/custom_function_make_color.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_make_color.phpt -------------------------------------------------------------------------------- /tests/custom_function_make_error.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_make_error.phpt -------------------------------------------------------------------------------- /tests/custom_function_make_list.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_make_list.phpt -------------------------------------------------------------------------------- /tests/custom_function_make_map.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_make_map.phpt -------------------------------------------------------------------------------- /tests/custom_function_make_null.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_make_null.phpt -------------------------------------------------------------------------------- /tests/custom_function_make_number.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_make_number.phpt -------------------------------------------------------------------------------- /tests/custom_function_make_qstring.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_make_qstring.phpt -------------------------------------------------------------------------------- /tests/custom_function_make_string.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_make_string.phpt -------------------------------------------------------------------------------- /tests/custom_function_make_warning.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_function_make_warning.phpt -------------------------------------------------------------------------------- /tests/custom_importer_compiled_output.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_importer_compiled_output.phpt -------------------------------------------------------------------------------- /tests/custom_importer_external_file.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/custom_importer_external_file.phpt -------------------------------------------------------------------------------- /tests/file_comments.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/file_comments.phpt -------------------------------------------------------------------------------- /tests/file_embed.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/file_embed.phpt -------------------------------------------------------------------------------- /tests/file_indent.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/file_indent.phpt -------------------------------------------------------------------------------- /tests/get_map_path.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/get_map_path.phpt -------------------------------------------------------------------------------- /tests/get_map_root.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/get_map_root.phpt -------------------------------------------------------------------------------- /tests/handles_comments.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/handles_comments.phpt -------------------------------------------------------------------------------- /tests/handles_embed.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/handles_embed.phpt -------------------------------------------------------------------------------- /tests/handles_include_path.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/handles_include_path.phpt -------------------------------------------------------------------------------- /tests/handles_indent.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/handles_indent.phpt -------------------------------------------------------------------------------- /tests/handles_map.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/handles_map.phpt -------------------------------------------------------------------------------- /tests/handles_map_root.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/handles_map_root.phpt -------------------------------------------------------------------------------- /tests/handles_precision.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/handles_precision.phpt -------------------------------------------------------------------------------- /tests/handles_style.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/handles_style.phpt -------------------------------------------------------------------------------- /tests/old_compile_file_alias_exists.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/old_compile_file_alias_exists.phpt -------------------------------------------------------------------------------- /tests/output_path_with_memory_compile.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/output_path_with_memory_compile.phpt -------------------------------------------------------------------------------- /tests/parse_file_parses_file.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/parse_file_parses_file.phpt -------------------------------------------------------------------------------- /tests/parse_parses_correct_sass.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/parse_parses_correct_sass.phpt -------------------------------------------------------------------------------- /tests/support/foo.scss: -------------------------------------------------------------------------------- 1 | h2 { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /tests/support/huge.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/support/huge.css.map -------------------------------------------------------------------------------- /tests/support/huge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/support/huge.scss -------------------------------------------------------------------------------- /tests/support/import.scss: -------------------------------------------------------------------------------- 1 | @import 'foo'; 2 | h1 { 3 | color: red; 4 | } 5 | -------------------------------------------------------------------------------- /tests/support/source_type.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/support/source_type.sass -------------------------------------------------------------------------------- /tests/support/sub/subsub/a.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: red; 3 | } 4 | -------------------------------------------------------------------------------- /tests/support/test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/support/test.scss -------------------------------------------------------------------------------- /tests/throw_exception.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absalomedia/sassphp/HEAD/tests/throw_exception.phpt --------------------------------------------------------------------------------