-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
64 lines (64 loc) · 1.62 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
58
59
60
61
62
63
64
{
"name": "sensiolabs/minify-bundle",
"description": "Assets Minifier (CSS, JS) for Symfony & Minify integration in Asset Mapper",
"license": "MIT",
"homepage": "https://github.com/sensiolabs/minify-bundle",
"type": "symfony-bundle",
"keywords": [
"symfony",
"assets",
"minify",
"minifier",
"compress",
"uglify",
"css",
"js",
"asset-mapper"
],
"authors": [
{
"name": "Simon André",
"email": "[email protected]"
},
{
"name": "SensioLabs",
"homepage": "https://sensiolabs.com"
}
],
"require": {
"php": ">=8.2",
"psr/log": "^2|^3",
"symfony/filesystem": "^6.4|^7.0",
"symfony/http-client-contracts": "^3.5",
"symfony/process": "^6.4|^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^10.5",
"symfony/asset-mapper": "^6.4|^7.0",
"symfony/console": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/http-client": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0"
},
"autoload": {
"psr-4": {
"Sensiolabs\\MinifyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sensiolabs\\MinifyBundle\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"thanks": {
"name": "tdewolff/minify",
"url": "https://github.com/tdewolff/minify"
}
}
}