summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: d32a5d4afdc3200f0669ceb0ff998b494e7587c3 (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
{
    "name": "marcusschwarz/lesserphp",
    "type": "library",
    "description": "lesserphp is a compiler for LESS written in PHP based on leafo's lessphp.",
    "homepage": "http://leafo.net/lessphp/",
    "license": [
        "MIT",
        "GPL-3.0"
    ],
    "authors": [
        {
            "name": "Leaf Corcoran",
            "email": "leafot@gmail.com",
            "homepage": "http://leafo.net"
        },
        {
            "name": "Marcus Schwarz",
            "email": "github@maswaba.de",
            "homepage": "https://www.maswaba.de"
        }

    ],
    "bin": ["plessc"],
    "autoload": {
        "classmap": ["lessc.inc.php"]
    },
    "extra": {
        "branch-alias": {
            "dev-master": "0.5.1-dev"
        }
    },
    "require-dev": {
        "phpunit/phpunit": "~4.3"
    },
    "scripts": {
        "test": "phpunit"
    }
}