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