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
|
{
"name": "splitbrain/lesserphp",
"type": "library",
"description": "lesserphp is a compiler for LESS written in PHP based on leafo's 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"
},
{
"name": "Andreas Gohr",
"email": "andi@splitbrain.org",
"homepage": "https://www.splitbrain.org"
}
],
"autoload": {
"psr-4": {
"LesserPHP\\": "src",
"LesserPHP\\tests\\": "tests"
}
},
"require": {
"php": ">=7.4"
},
"suggest": {
"ext-fileinfo": "For mime type guessing of embedded files"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.8",
"rector/rector": "^0.19"
},
"scripts": {
"test": "phpunit",
"check": "phpcs -p -s",
"fix": "phpcbf",
"rector": "rector process"
}
}
|