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

44
vendor/leafo/scssphp/composer.json vendored Normal file
View file

@ -0,0 +1,44 @@
{
"name": "leafo/scssphp",
"type": "library",
"description": "scssphp is a compiler for SCSS written in PHP.",
"keywords": ["css", "stylesheet", "scss", "sass", "less"],
"homepage": "http://leafo.github.io/scssphp/",
"license": [
"MIT"
],
"authors": [
{
"name": "Leaf Corcoran",
"email": "leafot@gmail.com",
"homepage": "http://leafo.net"
}
],
"autoload": {
"classmap": ["classmap.php"],
"psr-4": { "Leafo\\ScssPhp\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Leafo\\ScssPhp\\Test\\": "tests/" }
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.3",
"phpunit/phpunit": "~3.7",
"kherge/box": "~2.5"
},
"bin": ["bin/pscss"],
"archive": {
"exclude": [
"/Makefile",
"/.gitattributes",
"/.gitignore",
"/.travis.yml",
"/box.json.dist",
"/phpunit.xml.dist",
"/tests"
]
}
}