forked from leafo/lessphp
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
37 lines (36 loc) · 917 Bytes
/
composer.json
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
{
"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": "[email protected]",
"homepage": "http://leafo.net"
},
{
"name": "Marcus Schwarz",
"email": "[email protected]",
"homepage": "https://www.maswaba.de"
}
],
"bin": ["plessc"],
"autoload": {
"psr-4": {"LesserPhp\\": "src/LesserPhp/"}
},
"require-dev": {
"phpunit/phpunit": "^9.3.0",
"squizlabs/php_codesniffer": "3.5.*"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"require": {
"php": "^7.4 || ~8.0.0"
}
}