-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.08 KB
/
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
43
44
45
46
47
{
"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": {
"php": "^7.0||^8.0",
"typo3/cms-core": ">=11.5, <12.0",
"typo3/cms-extbase": ">=11.5, <12.0",
"typo3/cms-extensionmanager": ">=11.5, <12.0"
},
"autoload": {
"psr-4": {
"SJBR\\StaticInfoTables\\": "Classes/"
},
"exclude-from-classmap": [
"Classes/Domain/Model/*"
]
},
"extra": {
"typo3/cms": {
"extension-key": "static_info_tables"
}
}
}