-
Notifications
You must be signed in to change notification settings - Fork 0
/
cundd_composer.json
42 lines (42 loc) · 1.07 KB
/
cundd_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
{
"name": "cundd/assetic",
"description": "Assetic for TYPO3 CMS",
"keywords": ["assets", "compression", "minification", "typo3"],
"homepage": "https://github.com/cundd/CunddAssetic",
"type": "typo3-cms-extension",
"license": "MIT",
"authors": [
{
"name": "Daniel Corn",
"email": "info@cundd.net",
"homepage": "https://cundd.net/"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-ctype": "*",
"cundd/assetic_additions": "^2.0.0",
"assetic/framework": "^3.0.1"
},
"autoload": {
"psr-4": {
"Cundd\\Assetic\\": "Classes/"
}
},
"suggest": {
"leafo/lessphp": "Allows to compile LESS with PHP",
"leafo/scssphp": "Allows to compile SCSS 3.x with PHP"
},
"replace": {
"assetic": "self.version",
"typo3-ter/assetic": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "assetic"
},
"cundd/composer": {
"install": true
}
}
}