Add formatting libraries to composer.json

This commit is contained in:
Kijin Sung 2016-03-17 20:37:43 +09:00
parent 59ee4a7387
commit 2b008f7be6
202 changed files with 28022 additions and 133 deletions

63
vendor/leafo/scssphp/classmap.php vendored Normal file
View file

@ -0,0 +1,63 @@
<?php
/**
* SCSSPHP
*
* Stub classes for backward compatibility
*
* @copyright 2012-2015 Leaf Corcoran
*
* @license http://opensource.org/licenses/MIT MIT
*
* @link http://leafo.github.io/scssphp
*/
// @codingStandardsIgnoreStart
/**
* @deprecated since 0.1.0
*/
class scssc extends \Leafo\ScssPhp\Compiler
{
}
/**
* @deprecated since 0.1.0
*/
class scss_parser extends \Leafo\ScssPhp\Parser
{
}
/**
* @deprecated since 0.1.0
*/
class scss_formatter extends \Leafo\ScssPhp\Formatter\Expanded
{
}
/**
* @deprecated since 0.1.0
*/
class scss_formatter_nested extends \Leafo\ScssPhp\Formatter\Nested
{
}
/**
* @deprecated since 0.1.0
*/
class scss_formatter_compressed extends \Leafo\ScssPhp\Formatter\Compressed
{
}
/**
* @deprecated since 0.1.0
*/
class scss_formatter_crunched extends \Leafo\ScssPhp\Formatter\Crunched
{
}
/**
* @deprecated since 0.1.0
*/
class scss_server extends \Leafo\ScssPhp\Server
{
}
// @codingStandardsIgnoreEnd