-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathcomposer.json
47 lines (47 loc) · 1.05 KB
/
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
38
39
40
41
42
43
44
45
46
47
{
"name": "rmrevin/yii2-minify-view",
"description": "Yii2 View component with auto minification css & js in runtime",
"keywords": [
"yii2",
"minify",
"view",
"js",
"css"
],
"type": "yii2-extension",
"license": "MIT",
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/rmrevin/yii2-minify-view/issues?state=open",
"wiki": "https://github.com/rmrevin/yii2-minify-view/wiki",
"source": "https://github.com/rmrevin/yii2-minify-view"
},
"authors": [
{
"name": "Revin Roman",
"email": "roman@rmrevin.com",
"homepage": "https://rmrevin.com/"
}
],
"require": {
"yiisoft/yii2": "^2.0",
"mrclay/minify": "3.0.7",
"pimple/pimple": "~3.2.0"
},
"require-dev": {
"phpdocumentor/reflection-docblock": "~3.1.0",
"phpunit/phpunit": "^6.0",
"monolog/monolog": "^1.1"
},
"autoload": {
"psr-4": {
"rmrevin\\yii\\minify\\": ""
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}