Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a PHP equivalent to Compass?

From my understanding, Compass only works with Ruby. Is there a PHP equivalent to Compass?

like image 791
Bryan Downing Avatar asked Jun 14 '10 04:06

Bryan Downing


2 Answers

Compass actually works great for PHP projects. I've used it on several CakePHP and Symfony projects. Compass is built with Ruby, so you need Ruby on your machine, but it compiles to plain old CSS. If you have Ruby (and RubyGems) installed, just install the Compass gem and you should be ready to go. Earlier versions of Compass used a Ruby-style syntax, but my understanding is that later versions have adopted a more CSS-like option.

If you haven't already, start with the documentation where installation is discussed in more detail.

like image 172
Rob Wilkerson Avatar answered Oct 19 '22 23:10

Rob Wilkerson


PHAMLP is a php port of Sass and Compass:

http://code.google.com/p/phamlp/ or https://github.com/bluelovers/PHamlP

PHPSass is a port of PHamlP up-to-date with the v3.1.1.5 specification of SASS:

http://www.phpsass.com/ or https://github.com/richthegeek/phpsass

like image 44
Nicola Giulia Pernice Avatar answered Oct 19 '22 22:10

Nicola Giulia Pernice