summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: d1246cb70f458c64d5c496752f78901f24b0dc0e (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
{
    "name": "marcusschwarz/lesserphp",
    "type": "library",
    "description": "lesserphp is a compiler for LESS written in PHP based on leafo's lessphp.",
    "homepage": "https://www.maswaba.de/lesserphpdocs/",
    "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"]
    },
    "require": {
        "php": "^7.2|^7.3|^7.4|^8.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^8.0|^9.0"
    },
    "scripts": {
        "test": "phpunit"
    }
}