-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
29 lines (29 loc) · 871 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
{
"name": "lajax/yii2-asset-minifier",
"description": "Runtime minification and combination of asset files.",
"type": "yii2-extension",
"keywords": ["yii2","extension","css","js","minify","compress","combine client script","register"],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/lajax/yii2-asset-minifier/issues?state=open",
"source": "https://github.com/lajax/yii2-asset-minifier"
},
"authors": [
{
"name": "Lajos Molnar",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "*",
"natxet/cssmin":"3.*",
"tedivm/jshrink":"1.*",
"packagist/yuicompressor-bin":"*",
"packagist/closurecompiler-bin":"*"
},
"autoload": {
"psr-4": {
"lajax\\assetminifier\\": "src/"
}
}
}