-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 966 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": "rickkuipers/justless",
"type": "library",
"description": "ZF2 module that allows automation of compiling your LESS with the extra of minifying the files.",
"keywords": ["less","css","minify"],
"homepage": "https://github.com/rskuipers/JustLess",
"license": "MIT",
"authors": [
{
"name": "Rick Kuipers",
"homepage": "http://rskuipers.com/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/rskuipers/JustLess/issues"
},
"suggest": {
"natxet/CssMin": "CssMin minifies CSS"
},
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "2.*",
"leafo/lessphp": "~0.3.0"
},
"autoload": {
"psr-0": {
"JustLess": "src"
},
"classmap" : ["Module.php"]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}