forked from trentrichardson/cakephp-shrink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 813 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
{
"name": "trentrichardson/cakephp-shrink",
"type": "cakephp-plugin",
"description": "Compiles, combines, and minifies javascript, coffee, less, scss, and css",
"keywords": ["cakephp","javascript","less","css","scss","sass","coffee","minify"],
"homepage": "http://github.com/trentrichardson/cakephp-shrink",
"license": "MIT",
"autoload": {
"psr-4": {
"Shrink\\": "src"
}
},
"require": {
"php": ">=5.4.16",
"composer/installers": "*",
"cakephp/cakephp": "~3.0",
"leafo/lessphp": "0.5.0",
"leafo/scssphp": "0.1.1",
"natxet/CssMin": "3.0.2",
"tedivm/jshrink": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "4.1.*"
},
"support": {
"source": "https://github.com/trentrichardson/cakephp-shrink"
},
"extra": {
"installer-name": "Shrink"
}
}