summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 7591662ee69a7e6cd51f9a38879cc1d38b9edb85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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": "~4.6",
        "twbs/bootstrap": "~4.3",
        "zurb/foundation": "~6.5"
    },
    "bin": ["bin/pscss"],
    "archive": {
        "exclude": [
            "/Makefile",
            "/.gitattributes",
            "/.gitignore",
            "/.travis.yml",
            "/phpunit.xml.dist",
            "/tests"
        ]
    }
}