-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.71 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.71 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
60
{
"name": "sjbr/static-info-tables",
"description": "Data and API for countries, languages and currencies for use in TYPO3 CMS.",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Stanislas Rolland",
"homepage": "https://www.sjbr.ca",
"role": "Developer"
},
{
"name": "René Fritz",
"role": "Developer"
}
],
"keywords": [
"TYPO3",
"Static Info Tables"
],
"homepage": "https://codeberg.org/sjbr/static-info-tables",
"support": {
"issues": "https://codeberg.org/sjbr/static-info-tables/issues"
},
"replace": {
"typo3-ter/static-info-tables": "self.version"
},
"require": {
"typo3/cms-backend": "12.*.*@dev || 13.*.*@dev || 14.*.*@dev || dev-main",
"typo3/cms-core": "12.*.*@dev || 13.*.*@dev || 14.*.*@dev || dev-main",
"typo3/cms-extbase": "12.*.*@dev || 13.*.*@dev || 14.*.*@dev || dev-main",
"typo3/cms-extensionmanager": "12.*.*@dev || 13.*.*@dev || 14.*.*@dev || dev-main",
"typo3/cms-fluid": "12.*.*@dev || 13.*.*@dev || 14.*.*@dev || dev-main",
"typo3/cms-frontend": "12.*.*@dev || 13.*.*@dev || 14.*.*@dev || dev-main"
},
"autoload": {
"psr-4": {
"SJBR\\StaticInfoTables\\": "Classes/"
},
"exclude-from-classmap": [
"Classes/Domain/Model/Country",
"Classes/Domain/Model/CountryZone",
"Classes/Domain/Model/Currency",
"Classes/Domain/Model/Language",
"Classes/Domain/Model/Territory"
]
},
"extra": {
"typo3/cms": {
"extension-key": "static_info_tables"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"preferred-install": "dist"
}
}