-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
57 lines (57 loc) · 1.94 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
48
49
50
51
52
53
54
55
56
57
{
"name": "sanpi/assetic",
"description": "Asset Management for PHP",
"keywords": [ "assets", "compression", "minification" ],
"homepage": "https://github.com/sanpi/assetic",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kris Wallsmith",
"email": "[email protected]",
"homepage": "http://kriswallsmith.net/"
}
],
"require": {
"php": ">=5.3.1",
"symfony/process": "^2.7|^3.0|^4.0"
},
"conflict": {
"twig/twig": "<1.34|>=2,<2.4"
},
"replace": {
"kriswallsmith/assetic": "self.version"
},
"require-dev": {
"leafo/lessphp": "^0.5",
"leafo/scssphp": "dev-master",
"leafo/scssphp-compass": "dev-master",
"linkorb/jsmin-php": "^1.0",
"meenie/javascript-packer": "^1.1",
"mrclay/minify": "^3.0",
"natxet/cssmin": "^3.0",
"nitra/php-min": "^0.0",
"patchwork/jsqueeze": "^2.0",
"phpunit/phpunit": "^7.0",
"psr/log": "^1.0",
"ptachoire/cssembed": "^1.0",
"symfony/phpunit-bridge": "^4.0",
"twig/twig": "^2.0",
"yfix/packager": "dev-master#d358c2a"
},
"suggest": {
"twig/twig": "Assetic provides the integration with the Twig templating engine",
"leafo/lessphp": "Assetic provides the integration with the lessphp LESS compiler",
"leafo/scssphp": "Assetic provides the integration with the scssphp SCSS compiler",
"ptachoire/cssembed": "Assetic provides the integration with phpcssembed to embed data uris",
"leafo/scssphp-compass": "Assetic provides the integration with the SCSS compass plugin",
"patchwork/jsqueeze": "Assetic provides the integration with the JSqueeze JavaScript compressor"
},
"autoload": {
"psr-0": { "Assetic": "src/" },
"files": [ "src/functions.php" ]
},
"config": {
"bin-dir": "bin"
}
}