-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 896 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 896 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
38
39
40
41
{
"name": "b13/assetcollector",
"type": "typo3-cms-extension",
"description": "Add CSS and SVG files and strings as inline style tag/inline svg to the html code.",
"license": "GPL-2.0-or-later",
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"require": {
"typo3/cms-core": "^14.0",
"typo3/cms-frontend": "^14.0"
},
"extra": {
"typo3/cms": {
"extension-key": "assetcollector",
"web-dir": ".Build/Web",
"app-dir": ".Build"
}
},
"autoload": {
"psr-4": {
"B13\\Assetcollector\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"B13\\Assetcollector\\Tests\\": "Tests/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"typo3/coding-standards": "^0.5.5",
"typo3/tailor": "^1.1",
"typo3/testing-framework": "^9.1"
}
}