1{
2    "name": "kriswallsmith/assetic",
3    "description": "Asset Management for PHP",
4    "keywords": [ "assets", "compression", "minification" ],
5    "homepage": "https://github.com/kriswallsmith/assetic",
6    "type": "library",
7    "license": "MIT",
8    "authors": [
9        {
10            "name": "Kris Wallsmith",
11            "email": "kris.wallsmith@gmail.com",
12            "homepage": "http://kriswallsmith.net/"
13        }
14    ],
15    "require": {
16        "php": ">=5.3.1",
17        "symfony/process": "~2.1|~3.0"
18    },
19    "conflict": {
20        "twig/twig": "<1.27"
21    },
22    "require-dev": {
23        "leafo/lessphp": "^0.3.7",
24        "leafo/scssphp": "~0.1",
25        "meenie/javascript-packer": "^1.1",
26        "mrclay/minify": "<2.3",
27        "natxet/cssmin": "3.0.4",
28        "patchwork/jsqueeze": "~1.0|~2.0",
29        "phpunit/phpunit": "~4.8 || ^5.6",
30        "psr/log": "~1.0",
31        "ptachoire/cssembed": "~1.0",
32        "symfony/phpunit-bridge": "~2.7|~3.0",
33        "twig/twig": "~1.23|~2.0",
34        "yfix/packager": "dev-master"
35    },
36    "suggest": {
37        "twig/twig": "Assetic provides the integration with the Twig templating engine",
38        "leafo/lessphp": "Assetic provides the integration with the lessphp LESS compiler",
39        "leafo/scssphp": "Assetic provides the integration with the scssphp SCSS compiler",
40        "ptachoire/cssembed": "Assetic provides the integration with phpcssembed to embed data uris",
41        "leafo/scssphp-compass": "Assetic provides the integration with the SCSS compass plugin",
42        "patchwork/jsqueeze": "Assetic provides the integration with the JSqueeze JavaScript compressor"
43    },
44    "autoload": {
45        "psr-0": { "Assetic": "src/" },
46        "files": [ "src/functions.php" ]
47    },
48    "config": {
49        "bin-dir": "bin"
50    },
51    "extra": {
52        "branch-alias": {
53            "dev-master": "1.4-dev"
54        }
55    }
56}
57