-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 990 Bytes
/
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
{
"name": "wdb/wdb-content-conditions",
"type": "typo3-cms-extension",
"description": "This extension adds two different TypoScript conditions to check if content elements with special values on a page exist.",
"keywords": [
"TYPO3",
"extension",
"condition",
"custom condition",
"TypoScript"
],
"homepage": "https://github.com/DavidBruchmann",
"authors": [
{
"name": "David Bruchmann",
"role": "Developer"
}
],
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "^10.4.43 || ^11.5.35"
},
"autoload": {
"psr-4": {
"WDB\\WdbContentConditions\\": "Classes"
}
},
"replace": {
"typo3-ter/wdb_content_conditions": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "wdb_content_conditions",
"cms-package-dir": "{$vendor-dir}/typo3/cms"
}
}
}