2017 © Pedro Peláez
 

library stylus

Stylus preprocessor for PHP (see https://github.com/AustP/Stylus.php, it's an exact fork except the minimum stability)

image

kylekatarnls/stylus

Stylus preprocessor for PHP (see https://github.com/AustP/Stylus.php, it's an exact fork except the minimum stability)

  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 18 Forks
  • 0 Open issues
  • 11 Versions
  • 15 % Grown

The README.md

Stylus.php

A Stylus parser for PHP, (*1)


CSS needs a hero... again

When I first saw Stylus I thought it was amazing and I implemented it into my nodejs application. When I started my next project, which was a PHP project, I liked Stylus so much that I wanted to implement it into my PHP project as well. Surprisingly, I couldn't find any Stylus parser for PHP. So I did as any developer would do and created my own. And I want to share it., (*2)

Current Features

  • Omit braces
  • Omit colons
  • Omit semi-colons
  • Custom functions
  • Importing other files
  • '&' parent reference
  • Mixins
  • Interpolation
  • Variables

Using Stylus.php

Using Stylus.php is really easy! Just include the following code:, (*3)

require('Stylus.php');

$stylus = new Stylus();
$stylus->setReadDir('read');
$stylus->setWriteDir('write');
$stylus->setImportDir('import'); //if you import a file without setting this, it will import from the read directory
$stylus->parseFiles();

And that's all there is to it! Now a quick note about the parseFiles() function. It has one parameter called overwite which defaults to false. It is a flag indicating whether or not you want to overwrite your already parsed Stylus files., (*4)

This means that you could include this code on every page and you won't be parsing your Stylus files every time. But make sure that you set overwrite to true when you are developing or updating your Stylus files so the changes will be reflected in your site., (*5)

Parse a single file or strings

Instead of compiling all the files in the read directory, you can choose exactly what to do using the following syntax., (*6)

// From string to string
$css = $stylus->fromString("body\n  color black")->toString();

// From string to file
$stylus->fromString("body\n color black")->toFile("out.css");

// From file to string
$css = $stylus->fromFile("in.styl")->toString();

// From file to file
$stylus->fromFile("in.styl")->toFile("out.css");

toFile($file, $overwrite) takes two parameter, both of them optional., (*7)

  • $file: The filename to write to, if ommited or null it will take the input filename and change .styl to .css.
  • $overwrite: Specifies wheter or not to parse and write the file if a file with the same name is found.

Assigning Variables

Assigning variables is done the same way as in regular Stylus. But you now have the option of adding variables from PHP before parsing the stylus files by calling the assign function. Here is an example:, (*8)

PHP, (*9)

$stylus->assign('px_size', '30px');
$stylus->parseFiles();

Stylus, (*10)

div
  font-size px_size

Yields, (*11)

div {
    font-size: 30px;
}

The Versions

07/09 2017

dev-master

9999999-dev

Stylus preprocessor for PHP (see https://github.com/AustP/Stylus.php, it's an exact fork except the minimum stability)

  Sources   Download

The Requires

  • php >=5.3.0

 

The Development Requires

by Avatar AustP
by Avatar neemzy

07/09 2017

1.0.7

1.0.7.0

Stylus preprocessor for PHP (see https://github.com/AustP/Stylus.php, it's an exact fork except the minimum stability)

  Sources   Download

The Requires

  • php >=5.3.0

 

The Development Requires

by Avatar AustP
by Avatar neemzy

19/07 2017

1.0.6

1.0.6.0

Stylus preprocessor for PHP (see https://github.com/AustP/Stylus.php, it's an exact fork except the minimum stability)

  Sources   Download

The Requires

  • php >=5.3.0

 

The Development Requires

by Avatar AustP
by Avatar neemzy

10/05 2016

1.0.5

1.0.5.0

Stylus preprocessor for PHP (see https://github.com/AustP/Stylus.php, it's an exact fork except the minimum stability)

  Sources   Download

The Requires

  • php >=5.3.0

 

by Avatar AustP
by Avatar neemzy

10/05 2016

dev-at-rules

dev-at-rules

Stylus preprocessor for PHP

  Sources   Download

The Requires

  • php >=5.3.0

 

by Avatar AustP
by Avatar neemzy

10/05 2016

1.0.4

1.0.4.0

Stylus preprocessor for PHP (see https://github.com/AustP/Stylus.php, it's an exact fork except the minimum stability)

  Sources   Download

The Requires

  • php >=5.3.0

 

by Avatar AustP
by Avatar neemzy

15/04 2016

1.0.3

1.0.3.0

Stylus preprocessor for PHP (see https://github.com/AustP/Stylus.php, it's an exact fork except the minimum stability)

  Sources   Download

The Requires

  • php >=5.3.0

 

by Avatar AustP
by Avatar neemzy

15/04 2016

1.0.2

1.0.2.0

Stylus preprocessor for PHP (see https://github.com/AustP/Stylus.php, it's an exact fork except the minimum stability)

  Sources   Download

The Requires

  • php >=5.3.0

 

by Avatar AustP
by Avatar neemzy

15/04 2016

1.0.1

1.0.1.0

Stylus preprocessor for PHP (see https://github.com/AustP/Stylus.php, it's an exact fork except the minimum stability)

  Sources   Download

The Requires

  • php >=5.3.0

 

by Avatar AustP
by Avatar neemzy

17/03 2016

dev-patch-1

dev-patch-1

Stylus preprocessor for PHP

  Sources   Download

The Requires

  • php >=5.3.0

 

by Avatar AustP
by Avatar neemzy

08/09 2015

1.0.0

1.0.0.0

Stylus preprocessor for PHP

  Sources   Download

The Requires

  • php >=5.3.0

 

by Avatar AustP
by Avatar neemzy