-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.12 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.12 KB
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
{
"name": "carbon/compression",
"type": "neos-carbon",
"description": "Output minification for Flow and Neos",
"license": "GPL-3.0-or-later",
"keywords": [
"flow",
"helper",
"carbon"
],
"require": {
"neos/neos": "^9.0",
"wyrihaximus/html-compress": "^4.4"
},
"authors": [
{
"name": "Jon Uhlmann",
"email": "me@jonnitto.ch",
"homepage": "https://jonnitto.ch",
"role": "Developer"
}
],
"archive": {
"exclude": [
".editorconfig",
".gitattributes",
".github",
".gitignore",
"CODE_OF_CONDUCT.md"
]
},
"autoload": {
"psr-4": {
"Carbon\\Compression\\": "Classes"
}
},
"extra": {
"marketplace-account": "me@jonnitto.ch",
"installer-name": "Carbon.Compression",
"neos": {
"package-key": "Carbon.Compression",
"loading-order": {
"after": [
"neos/neos"
]
}
}
}
}