forked from markstory/asset_compress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.28 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
{
"name": "markstory/asset_compress",
"description": "An asset compression plugin for CakePHP. Provides file concatenation and a flexible filter system for preprocessing and minification.",
"type": "cakephp-plugin",
"keywords": ["cakephp", "assets", "minifier", "less", "coffee-script", "sass"],
"homepage": "https://github.com/markstory/asset_compress",
"license": "MIT",
"authors": [
{
"name": "Mark Story",
"homepage": "http://mark-story.com",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/markstory/asset_compress/issues",
"source": "https://github.com/markstory/asset_compress"
},
"require": {
"cakephp/cakephp": ">=3.3.3 <4.0.0",
"markstory/mini-asset": ">=1.4.0 <2.0.0"
},
"require-dev": {
"phpunit/phpunit": "5.*",
"cakephp/cakephp-codesniffer": "~2.1"
},
"autoload": {
"psr-4": {
"AssetCompress\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AssetCompress\\Test\\": "tests"
}
},
"suggest": {
"natxet/CssMin": "For using the CssMin filter.",
"tchwork/jsqueeze": "For using the JSqueeze filter.",
"tedivm/jshrink": "For using the JShrink filter.",
"leafo/scssphp": "For using the ScssPHP filter.",
"leafo/lessphp": "For using the LessPHP filter."
}
}