Skip to content

Instantly share code, notes, and snippets.

View willyarisky's full-sized avatar
🇮🇩
Working from paradise

Willy Arisky willyarisky

🇮🇩
Working from paradise
View GitHub Profile
@willyarisky
willyarisky / compiler.php
Created October 18, 2024 23:58
Compile SCSS files with PHP / SCSS PHP Compiler
<?php
require 'resources/vendor/autoload.php';
use ScssPhp\ScssPhp\Compiler;
$scss = new Compiler();
// Set the import paths for Bootstrap SCSS and other directories
$scss->setImportPaths('resources/scss');