summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 884ddb66f58e2f32903e074067b246fc5bb03d82 (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
44
45
46
47
48
49
50
51
{
    "name": "scssphp/scssphp",
    "type": "library",
    "description": "scssphp is a compiler for SCSS written in PHP.",
    "keywords": ["css", "stylesheet", "scss", "sass", "less"],
    "homepage": "http://scssphp.github.io/scssphp/",
    "license": [
        "MIT"
    ],
    "authors": [
        {
            "name": "Anthon Pang",
            "email": "apang@softwaredevelopment.ca",
            "homepage": "https://github.com/robocoder"
        },
        {
            "name": "Cédric Morin",
            "email": "cedric@yterium.com",
            "homepage": "https://github.com/Cerdic"
        }
    ],
    "autoload": {
        "psr-4": { "ScssPhp\\ScssPhp\\": "src/" }
    },
    "autoload-dev": {
        "psr-4": { "ScssPhp\\ScssPhp\\Tests\\": "tests/" }
    },
    "require": {
        "php": ">=5.6.0",
        "ext-json": "*",
        "ext-ctype": "*"
    },
    "require-dev": {
        "squizlabs/php_codesniffer": "~2.5",
        "phpunit/phpunit": ">=4.8.36",
        "twbs/bootstrap": "~4.3",
        "zurb/foundation": "~6.5"
    },
    "minimum-stability": "dev",
    "bin": ["bin/pscss"],
    "archive": {
        "exclude": [
            "/Makefile",
            "/.gitattributes",
            "/.gitignore",
            "/.travis.yml",
            "/phpunit.xml.dist",
            "/tests"
        ]
    }
}