From c185ae6e671c6bb261b62961b324f73603410842 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 24 Jul 2016 07:30:42 +0200 Subject: php-scssphp: 0.6.5 (backported from Fedora) --- composer.json | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..112a6bd --- /dev/null +++ b/composer.json @@ -0,0 +1,43 @@ +{ + "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": { + "psr-4": { "Leafo\\ScssPhp\\": "src/" } + }, + "autoload-dev": { + "psr-4": { "Leafo\\ScssPhp\\Test\\": "tests/" } + }, + "require": { + "php": ">=5.4.0" + }, + "require-dev": { + "squizlabs/php_codesniffer": "~2.5", + "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" + ] + } +} -- cgit