forked from nochso/html-compress-twig
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 683 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 683 Bytes
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
{
"name": "voku/html-compress-twig",
"type": "library",
"description": "Twig extension for compressing HTML",
"keywords": [
"html",
"compress",
"twig",
"extension",
"minify"
],
"license": "ISC",
"authors": [
{
"name": "Marcel Voigt",
"email": "mv@noch.so"
},
{
"name": "Lars Moelleken",
"homepage": "http://www.moelleken.org/"
}
],
"require": {
"php": ">=7.0.0",
"twig/twig": "~2.7 || ^3",
"voku/html-min": "~4.4",
"voku/simple-cache": "~4.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
},
"autoload": {
"psr-4": {
"voku\\": "src/voku/"
}
}
}