-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.72 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.72 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
50
51
52
53
54
55
56
57
58
59
{
"name": "lia/lia_usercentrics",
"type": "typo3-cms-extension",
"description": "This TYPO3 extension integrates a cookie banner for managing consent for external services such as analytics, social media, etc. It ensures that external sources (like YouTube videos, Vimeo, or other integrated services) are blocked by default until the user grants consent for their use.",
"authors": [
{
"name": "LOUIS TYPO3 Developers",
"email": "info@dev.louis.info",
"homepage": "https://www.louis.info",
"role": "Developer"
}
],
"support": {
"email": "info@dev.louis.info",
"source": "https://github.com/LOUISINTERNET/lia_usercentrics",
"docs": "https://docs.typo3.org/p/lia/lia_usercentrics/main/en-us/",
"issues": "https://github.com/LOUISINTERNET/lia_usercentrics/issues"
},
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "^13.4"
},
"autoload": {
"psr-4": {
"LIA\\LiaUsercentrics\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"LIA\\LiaUsercentrics\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"extension-key": "lia_usercentrics"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"replace": {
"lia/lia-usercentrics": "self.version"
},
"scripts": {
"build-docs": [
"docker run --rm --pull always -v $(pwd):/project -it ghcr.io/typo3-documentation/render-guides:latest --config=Documentation"
]
},
"require-dev": {
"typo3/testing-framework": "^8.0",
"typo3/coding-standards": "^0.8.0",
"t3docs/fluid-documentation-generator": "^4.4"
}
}