xref: /dokuwiki/vendor/splitbrain/lesserphp/composer.json (revision e6380ba37d6b3f7dd03146b3c03030ccc8c1b297)
1*e6380ba3SAndreas Gohr{
2*e6380ba3SAndreas Gohr    "name": "splitbrain/lesserphp",
3*e6380ba3SAndreas Gohr    "type": "library",
4*e6380ba3SAndreas Gohr    "description": "lesserphp is a compiler for LESS written in PHP based on leafo's lessphp.",
5*e6380ba3SAndreas Gohr    "license": [
6*e6380ba3SAndreas Gohr        "MIT",
7*e6380ba3SAndreas Gohr        "GPL-3.0"
8*e6380ba3SAndreas Gohr    ],
9*e6380ba3SAndreas Gohr    "authors": [
10*e6380ba3SAndreas Gohr        {
11*e6380ba3SAndreas Gohr            "name": "Leaf Corcoran",
12*e6380ba3SAndreas Gohr            "email": "leafot@gmail.com",
13*e6380ba3SAndreas Gohr            "homepage": "http://leafo.net"
14*e6380ba3SAndreas Gohr        },
15*e6380ba3SAndreas Gohr        {
16*e6380ba3SAndreas Gohr            "name": "Marcus Schwarz",
17*e6380ba3SAndreas Gohr            "email": "github@maswaba.de",
18*e6380ba3SAndreas Gohr            "homepage": "https://www.maswaba.de"
19*e6380ba3SAndreas Gohr        },
20*e6380ba3SAndreas Gohr        {
21*e6380ba3SAndreas Gohr            "name": "Andreas Gohr",
22*e6380ba3SAndreas Gohr            "email": "andi@splitbrain.org",
23*e6380ba3SAndreas Gohr            "homepage": "https://www.splitbrain.org"
24*e6380ba3SAndreas Gohr        }
25*e6380ba3SAndreas Gohr    ],
26*e6380ba3SAndreas Gohr    "autoload": {
27*e6380ba3SAndreas Gohr        "psr-4": {
28*e6380ba3SAndreas Gohr            "LesserPHP\\": "src",
29*e6380ba3SAndreas Gohr            "LesserPHP\\tests\\": "tests"
30*e6380ba3SAndreas Gohr        }
31*e6380ba3SAndreas Gohr    },
32*e6380ba3SAndreas Gohr    "require": {
33*e6380ba3SAndreas Gohr        "php": ">=7.4"
34*e6380ba3SAndreas Gohr    },
35*e6380ba3SAndreas Gohr    "suggest": {
36*e6380ba3SAndreas Gohr        "ext-fileinfo": "For mime type guessing of embedded files"
37*e6380ba3SAndreas Gohr    },
38*e6380ba3SAndreas Gohr    "require-dev": {
39*e6380ba3SAndreas Gohr        "phpunit/phpunit": "^8.5",
40*e6380ba3SAndreas Gohr        "squizlabs/php_codesniffer": "^3.8",
41*e6380ba3SAndreas Gohr        "rector/rector": "^0.19"
42*e6380ba3SAndreas Gohr    },
43*e6380ba3SAndreas Gohr    "scripts": {
44*e6380ba3SAndreas Gohr        "test": "phpunit --verbose",
45*e6380ba3SAndreas Gohr        "check": "phpcs -p -s",
46*e6380ba3SAndreas Gohr        "fix": "phpcbf",
47*e6380ba3SAndreas Gohr        "rector": "rector process"
48*e6380ba3SAndreas Gohr    }
49*e6380ba3SAndreas Gohr}
50