forked from sergeysemko/SemaMinifierBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
26 lines (26 loc) · 833 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
{
"name": "sema/minifier-bundle",
"type": "symfony-bundle",
"description": "This bundle allows you to minify html code, combine and minify JavaScript files and CSS files without Java VM.",
"keywords": ["Symfony2", "bundle", "minify"],
"homepage": "https://lukas-zemek.cz",
"license": "MIT",
"authors": [
{
"name": "Gilles Gauthier",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "~2.1|~3.0",
"symfony/dependency-injection": "~2.1|~3.0",
"mrclay/minify": "*",
"kriswallsmith/assetic": "~1.2",
"symfony/console": "~2.3|~3.0"
},
"autoload": {
"psr-0": { "Sema\\Bundle\\MinifierBundle": "" }
},
"target-dir": "Sema/Bundle/MinifierBundle"
}